- From ed2838ea466b1b524c26a244bb7155c6dd252d0d Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 4 Nov 2024 15:11:25 +0100
- Subject: [PATCH 1/4] daemon: |nfs41_setattr()|: Always do a (cache) lookup to
- get the correct attribute differences
- |nfs41_setattr()| should always do a |nfs41_attr_cache_lookup()|
- to make sure we always get the correct differences between old and new
- attribute data.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/setattr.c | 80 ++++++++++++++++++++++++++++--------------------
- 1 file changed, 47 insertions(+), 33 deletions(-)
- diff --git a/daemon/setattr.c b/daemon/setattr.c
- index 6209f43..5c04d24 100644
- --- a/daemon/setattr.c
- +++ b/daemon/setattr.c
- @@ -3,6 +3,7 @@
- *
- * Olga Kornievskaia <aglo@umich.edu>
- * Casey Bodley <cbodley@umich.edu>
- + * Roland Mainz <roland.mainz@nrubsig.org>
- *
- * This library is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as published by
- @@ -62,34 +63,52 @@ static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- nfs41_superblock *superblock = state->file.fh.superblock;
- stateid_arg stateid;
- nfs41_file_info info = { 0 }, old_info = { 0 };
- - int status = NO_ERROR, getattr_status;
- -
- - if (basic_info->FileAttributes) {
- - info.hidden = basic_info->FileAttributes & FILE_ATTRIBUTE_HIDDEN ? 1 : 0;
- - info.system = basic_info->FileAttributes & FILE_ATTRIBUTE_SYSTEM ? 1 : 0;
- - info.archive = basic_info->FileAttributes & FILE_ATTRIBUTE_ARCHIVE ? 1 : 0;
- - getattr_status = nfs41_attr_cache_lookup(session_name_cache(state->session),
- - state->file.fh.fileid, &old_info);
- -
- - if (getattr_status || info.hidden != old_info.hidden) {
- - info.attrmask.arr[0] = FATTR4_WORD0_HIDDEN;
- - info.attrmask.count = 1;
- - }
- - if (getattr_status || info.archive != old_info.archive) {
- - info.attrmask.arr[0] |= FATTR4_WORD0_ARCHIVE;
- - info.attrmask.count = 1;
- - }
- - if (getattr_status || info.system != old_info.system) {
- - info.attrmask.arr[1] = FATTR4_WORD1_SYSTEM;
- - info.attrmask.count = 2;
- - }
- - }
- - if (old_info.mode == 0444 &&
- - ((basic_info->FileAttributes & FILE_ATTRIBUTE_READONLY) == 0)) {
- - info.mode = 0644;
- + int status = NO_ERROR;
- + int getattr_status;
- +
- + getattr_status = nfs41_attr_cache_lookup(session_name_cache(state->session),
- + state->file.fh.fileid, &old_info);
- + if (getattr_status) {
- + DPRINTF(0, ("handle_nfs41_setattr(args->path='%s'): "
- + "nfs41_attr_cache_lookup() failed with error '%s'.\n",
- + args->path,
- + nfs_error_string(getattr_status)));
- + status = nfs_to_windows_error(getattr_status, ERROR_NOT_SUPPORTED);
- + goto out;
- + }
- +
- + if (basic_info->FileAttributes) {
- + info.hidden = basic_info->FileAttributes & FILE_ATTRIBUTE_HIDDEN ? 1 : 0;
- + info.system = basic_info->FileAttributes & FILE_ATTRIBUTE_SYSTEM ? 1 : 0;
- + info.archive = basic_info->FileAttributes & FILE_ATTRIBUTE_ARCHIVE ? 1 : 0;
- +
- + if (info.hidden != old_info.hidden) {
- + info.attrmask.arr[0] = FATTR4_WORD0_HIDDEN;
- + info.attrmask.count = 1;
- + }
- + if (info.archive != old_info.archive) {
- + info.attrmask.arr[0] |= FATTR4_WORD0_ARCHIVE;
- + info.attrmask.count = 1;
- + }
- + if (info.system != old_info.system) {
- + info.attrmask.arr[1] = FATTR4_WORD1_SYSTEM;
- + info.attrmask.count = 2;
- + }
- + }
- +
- + /* mode */
- + if (basic_info->FileAttributes & FILE_ATTRIBUTE_READONLY) {
- + info.mode = 0444;
- info.attrmask.arr[1] |= FATTR4_WORD1_MODE;
- info.attrmask.count = 2;
- }
- + else {
- + if (old_info.mode == 0444) {
- + info.mode = 0644;
- + info.attrmask.arr[1] |= FATTR4_WORD1_MODE;
- + info.attrmask.count = 2;
- + }
- + }
- if (superblock->cansettime) {
- /* set the time_delta so xdr_settime4() can decide
- @@ -119,13 +138,6 @@ static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- }
- }
- - /* mode */
- - if (basic_info->FileAttributes & FILE_ATTRIBUTE_READONLY) {
- - info.mode = 0444;
- - info.attrmask.arr[1] |= FATTR4_WORD1_MODE;
- - info.attrmask.count = 2;
- - }
- -
- /* mask out unsupported attributes */
- nfs41_superblock_supported_attrs(superblock, &info.attrmask);
- @@ -140,7 +152,9 @@ static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- status = nfs41_setattr(state->session, &state->file, &stateid, &info);
- if (status) {
- - DPRINTF(1, ("nfs41_setattr() failed with error '%s'.\n",
- + DPRINTF(1, ("handle_nfs41_setattr(args->path='%s'): "
- + "nfs41_setattr() failed with error '%s'.\n",
- + args->path,
- nfs_error_string(status)));
- status = nfs_to_windows_error(status, ERROR_NOT_SUPPORTED);
- goto out;
- --
- 2.45.1
- From 10136c21d7609d2c1e6fc172cb4c18cb66693e0f Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 4 Nov 2024 15:16:22 +0100
- Subject: [PATCH 2/4] daemon: Rename |handle_nfs41_setattr()| to
- |handle_nfs41_setattr_basicinfo()|
- Rename |handle_nfs41_setattr()| to |handle_nfs41_setattr_basicinfo()|
- as preparation of handling more fileinfo classes.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/setattr.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
- diff --git a/daemon/setattr.c b/daemon/setattr.c
- index 5c04d24..4f782c8 100644
- --- a/daemon/setattr.c
- +++ b/daemon/setattr.c
- @@ -56,7 +56,7 @@ out:
- return status;
- }
- -static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- +static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_args *args)
- {
- PFILE_BASIC_INFO basic_info = (PFILE_BASIC_INFO)args->buf;
- nfs41_open_state *state = args->state;
- @@ -69,7 +69,7 @@ static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- getattr_status = nfs41_attr_cache_lookup(session_name_cache(state->session),
- state->file.fh.fileid, &old_info);
- if (getattr_status) {
- - DPRINTF(0, ("handle_nfs41_setattr(args->path='%s'): "
- + DPRINTF(0, ("handle_nfs41_setattr_basicinfo(args->path='%s'): "
- "nfs41_attr_cache_lookup() failed with error '%s'.\n",
- args->path,
- nfs_error_string(getattr_status)));
- @@ -152,7 +152,7 @@ static int handle_nfs41_setattr(void *daemon_context, setattr_upcall_args *args)
- status = nfs41_setattr(state->session, &state->file, &stateid, &info);
- if (status) {
- - DPRINTF(1, ("handle_nfs41_setattr(args->path='%s'): "
- + DPRINTF(1, ("handle_nfs41_setattr_basicinfo(args->path='%s'): "
- "nfs41_setattr() failed with error '%s'.\n",
- args->path,
- nfs_error_string(status)));
- @@ -518,7 +518,7 @@ static int handle_setattr(void *daemon_context, nfs41_upcall *upcall)
- switch (args->set_class) {
- case FileBasicInformation:
- - status = handle_nfs41_setattr(daemon_context, args);
- + status = handle_nfs41_setattr_basicinfo(daemon_context, args);
- break;
- case FileDispositionInformation:
- status = handle_nfs41_remove(daemon_context, args);
- --
- 2.45.1
- From e61108b5d7a9f9a6e42033812108e15c840c975c Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 4 Nov 2024 16:52:36 +0100
- Subject: [PATCH 3/4] daemon: |handle_nfs41_setattr_basicinfo()| asserts for
- |FILE_ATTRIBUTE_EA|+|FILE_ATTRIBUTE_COMPRESSED|
- Add asserts to |handle_nfs41_setattr_basicinfo()| to warn if someone tries
- to set |FILE_ATTRIBUTE_EA| and/or |FILE_ATTRIBUTE_COMPRESSED|.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/setattr.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
- diff --git a/daemon/setattr.c b/daemon/setattr.c
- index 4f782c8..64e6b36 100644
- --- a/daemon/setattr.c
- +++ b/daemon/setattr.c
- @@ -94,6 +94,15 @@ static int handle_nfs41_setattr_basicinfo(void *daemon_context, setattr_upcall_a
- info.attrmask.arr[1] = FATTR4_WORD1_SYSTEM;
- info.attrmask.count = 2;
- }
- +
- + EASSERT_MSG(((basic_info->FileAttributes & FILE_ATTRIBUTE_EA) == 0),
- + ("handle_nfs41_setattr_basicinfo(args->path='%s)': "
- + "Unsupported flag FILE_ATTRIBUTE_EA ignored.\n",
- + args->path));
- + EASSERT_MSG(((basic_info->FileAttributes & FILE_ATTRIBUTE_COMPRESSED) == 0),
- + ("handle_nfs41_setattr_basicinfo(args->path='%s)': "
- + "Unsupported flag FILE_ATTRIBUTE_COMPRESSED ignored.\n",
- + args->path));
- }
- /* mode */
- --
- 2.45.1
- From fef9bc082fa00d1c54464ba75219077830647a6c Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 4 Nov 2024 17:12:22 +0100
- Subject: [PATCH 4/4] cygwin: Add src git bundle location to
- README.bintarball.txt
- Add src git bundle location
- ("/usr/src/msnfs41client/msnfs41client_git.bundle") to
- "README.bintarball.txt".
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/README.bintarball.txt | 1 +
- 1 file changed, 1 insertion(+)
- diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
- index 1d24dec..7a6271b 100644
- --- a/cygwin/README.bintarball.txt
- +++ b/cygwin/README.bintarball.txt
- @@ -604,6 +604,7 @@ $ mount -t drvfs '\0.49.202.230@2049\nfs4\bigdisk' /mnt/bigdisk
- # 12. Source code:
- #
- - Source code can be obtained from https://github.com/kofemann/ms-nfs41-client
- + or as git bundle from /usr/src/msnfs41client/msnfs41client_git.bundle
- - Build instructions can be found at
- https://github.com/kofemann/ms-nfs41-client/tree/master/cygwin
- --
- 2.45.1
msnfs41client: Patches for setattr+misc, 2024-11-04
Posted by Anonymous on Mon 4th Nov 2024 16:52
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.