- From b23912f1be572dfb1a925a0ec4d24ec44dd2177d Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 23 Nov 2024 14:06:41 +0100
- Subject: [PATCH 1/4] cygwin: msnfs41client: terminal output should show UTF-8
- output correctly via UTF-8 codepage
- msnfs41client should switch to UTF-8 codepage (cp65001) so the terminal
- shows UTF-8 output from nfsd/nfsd_debug correctly.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/devel/msnfs41client.bash | 8 ++++++++
- 1 file changed, 8 insertions(+)
- diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
- index 68e187e..739ab30 100755
- --- a/cygwin/devel/msnfs41client.bash
- +++ b/cygwin/devel/msnfs41client.bash
- @@ -401,6 +401,10 @@ function nfsclient_rundeamon
- set -o xtrace
- + # switch to UTF-8 codepage so debug output with non-ASCII characters
- + # gets printed correctly on a terminal
- + chcp.com 65001
- +
- typeset -a nfsd_args=(
- 'nfsd.exe'
- '-debug'
- @@ -508,6 +512,10 @@ function nfsclient_system_rundeamon
- set -o xtrace
- + # switch to UTF-8 codepage so debug output with non-ASCII characters
- + # gets printed correctly on a terminal
- + chcp.com 65001
- +
- typeset -a nfsd_args=(
- 'nfsd.exe'
- '-debug'
- --
- 2.45.1
- From 171a65f65ed402f0f7f59cbeb272a56e2c63f3c9 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 23 Nov 2024 14:10:24 +0100
- Subject: [PATCH 2/4] daemon: |handle_nfs41_rename()|+|handle_nfs41_link()|
- |WideCharToMultiByte()| errors should print filenames correctly
- |WideCharToMultiByte()| errors in |handle_nfs41_rename()|+|handle_nfs41_link()|
- should print filenames correctly.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/setattr.c | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
- diff --git a/daemon/setattr.c b/daemon/setattr.c
- index bfdcd4b..9eaafb5 100644
- --- a/daemon/setattr.c
- +++ b/daemon/setattr.c
- @@ -282,6 +282,8 @@ static int handle_nfs41_rename(void *daemon_context, setattr_upcall_args *args)
- goto out;
- }
- + EASSERT((rename->FileNameLength%sizeof(WCHAR)) == 0);
- +
- dst_path.len = (unsigned short)WideCharToMultiByte(CP_UTF8,
- WC_ERR_INVALID_CHARS|WC_NO_BEST_FIT_CHARS,
- rename->FileName, rename->FileNameLength/sizeof(WCHAR),
- @@ -289,8 +291,11 @@ static int handle_nfs41_rename(void *daemon_context, setattr_upcall_args *args)
- if (dst_path.len == 0) {
- eprintf("handle_nfs41_rename(args->path='%s'): "
- "WideCharToMultiByte() failed to convert destination "
- - "filename '%S', lasterr=%d.\n",
- - args->path, rename->FileName, (int)GetLastError());
- + "filename '%*S', lasterr=%d.\n",
- + args->path,
- + (int)(rename->FileNameLength/sizeof(WCHAR)),
- + rename->FileName,
- + (int)GetLastError());
- status = ERROR_INVALID_PARAMETER;
- goto out;
- }
- @@ -436,6 +441,8 @@ static int handle_nfs41_link(void *daemon_context, setattr_upcall_args *args)
- (void)memset(&info, 0, sizeof(info));
- + EASSERT((link->FileNameLength%sizeof(WCHAR)) == 0);
- +
- dst_path.len = (unsigned short)WideCharToMultiByte(CP_UTF8,
- WC_ERR_INVALID_CHARS|WC_NO_BEST_FIT_CHARS,
- link->FileName, link->FileNameLength/sizeof(WCHAR),
- @@ -443,8 +450,10 @@ static int handle_nfs41_link(void *daemon_context, setattr_upcall_args *args)
- if (dst_path.len == 0) {
- eprintf("handle_nfs41_link(args->path='%s'): "
- "WideCharToMultiByte() failed to convert destination "
- - "filename '%S', lasterr=%d.\n",
- - args->path, link->FileName, (int)GetLastError());
- + "filename '%*S', lasterr=%d.\n",
- + args->path,
- + (int)(link->FileNameLength/sizeof(WCHAR)),
- + link->FileName, (int)GetLastError());
- status = ERROR_INVALID_PARAMETER;
- goto out;
- }
- --
- 2.45.1
- From d8a232472f4e6086a1c2d2b6308b9511714a22d4 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 23 Nov 2024 15:30:25 +0100
- Subject: [PATCH 3/4] daemon: Minor cleanup in |create_silly_rename()|
- Minor cleanup in |create_silly_rename()|
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/util.c | 40 +++++++++++++++++++++++++---------------
- 1 file changed, 25 insertions(+), 15 deletions(-)
- diff --git a/daemon/util.c b/daemon/util.c
- index ef41a30..85acb99 100644
- --- a/daemon/util.c
- +++ b/daemon/util.c
- @@ -331,11 +331,16 @@ int create_silly_rename(
- PBYTE buffer;
- DWORD length;
- const char *end = path->path + NFS41_MAX_PATH_LEN;
- - const unsigned short extra_len = 2 + 16; //md5 is 16
- +#define MD5_HASH_LEN (16L)
- +#define SILLY_RENAME_PREPOSTFIX_LEN (2L)
- + const unsigned short extra_len =
- + SILLY_RENAME_PREPOSTFIX_LEN + MD5_HASH_LEN;
- char name[NFS41_MAX_COMPONENT_LEN+1];
- - unsigned char fhmd5[17] = { 0 };
- + unsigned char fhmd5[MD5_HASH_LEN+1];
- char *tmp;
- int status = NO_ERROR, i;
- +
- + (void)memset(fhmd5, 0, sizeof(fhmd5));
- if (path->len + extra_len >= NFS41_MAX_PATH_LEN) {
- status = ERROR_FILENAME_EXCED_RANGE;
- @@ -346,47 +351,52 @@ int create_silly_rename(
- if (!CryptAcquireContext(&context, NULL, NULL,
- PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) {
- status = GetLastError();
- - eprintf("CryptAcquireContext() failed with %d\n", status);
- + eprintf("create_silly_rename: "
- + "CryptAcquireContext() failed with %d\n", status);
- goto out;
- }
- if (!CryptCreateHash(context, CALG_MD5, 0, 0, &hash)) {
- status = GetLastError();
- - eprintf("CryptCreateHash() failed with %d\n", status);
- + eprintf("create_silly_rename: "
- + "CryptCreateHash() failed with %d\n", status);
- goto out_context;
- }
- if (!CryptHashData(hash, (const BYTE*)fh->fh, (DWORD)fh->len, 0)) {
- status = GetLastError();
- - eprintf("CryptHashData() failed with %d\n", status);
- + eprintf("create_silly_rename: "
- + "CryptHashData() failed with %d\n", status);
- goto out_hash;
- }
- /* extract the hash buffer */
- buffer = (PBYTE)fhmd5;
- - length = 16;
- + length = MD5_HASH_LEN;
- if (!CryptGetHashParam(hash, HP_HASHVAL, buffer, &length, 0)) {
- status = GetLastError();
- - eprintf("CryptGetHashParam(val) failed with %d\n", status);
- + eprintf("create_silly_rename: "
- + "CryptGetHashParam(val) failed with %d\n", status);
- goto out_hash;
- - }
- + }
- last_component(path->path, path->path + path->len, silly);
- - StringCchCopyNA(name, NFS41_MAX_COMPONENT_LEN+1, silly->name, silly->len);
- + (void)StringCchCopyNA(name, NFS41_MAX_COMPONENT_LEN+1,
- + silly->name, silly->len);
- tmp = (char*)silly->name;
- - StringCchPrintfA(tmp, end - tmp, ".%s.", name);
- - tmp += (size_t)silly->len + 2L;
- + (void)StringCchPrintfA(tmp, end - tmp, ".%s.", name);
- + tmp += (size_t)silly->len + SILLY_RENAME_PREPOSTFIX_LEN;
- - for (i = 0; i < 16; i++, tmp++)
- - StringCchPrintfA(tmp, end - tmp, "%x", fhmd5[i]);
- + for (i = 0; i < MD5_HASH_LEN; i++, tmp++)
- + (void)StringCchPrintfA(tmp, end - tmp, "%1.1x", fhmd5[i]);
- path->len = path->len + extra_len;
- silly->len = silly->len + extra_len;
- out_hash:
- - CryptDestroyHash(hash);
- + (void)CryptDestroyHash(hash);
- out_context:
- - CryptReleaseContext(context, 0);
- + (void)CryptReleaseContext(context, 0);
- out:
- return status;
- }
- --
- 2.45.1
- From f79bfc7d7c7801b140d84c616a27fdd7dc71781d Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 23 Nov 2024 15:54:12 +0100
- Subject: [PATCH 4/4] daemon,tests: NFS "silly rename" should prefix renamed
- files with ".nfs"
- Deleing a file which is still in use (i.e. open fd) causes a NFS client
- to do a "silly rename", e.g. "foo" gets renamed to ".nfsXXXX" until
- the client does not use it any more.
- The NFS server has a weekly cron job removing files called ".nfs*" which
- are more than a week old to deal with .nfs* files from NFS clients which
- crashed while having deleted files open.
- Unfortunately we didn't use the ".nfs" prefix, which causes the
- NFS server scripts to ignore such files.
- The fix is to use the ".nfs" prefix.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/util.c | 5 +++--
- tests/manual_testing.txt | 13 +++++++++++++
- 2 files changed, 16 insertions(+), 2 deletions(-)
- diff --git a/daemon/util.c b/daemon/util.c
- index 85acb99..a84cca0 100644
- --- a/daemon/util.c
- +++ b/daemon/util.c
- @@ -332,7 +332,8 @@ int create_silly_rename(
- DWORD length;
- const char *end = path->path + NFS41_MAX_PATH_LEN;
- #define MD5_HASH_LEN (16L)
- -#define SILLY_RENAME_PREPOSTFIX_LEN (2L)
- +/* |SILLY_RENAME_PREPOSTFIX_LEN| == 2*strlen(".")+strlen(".nfs") */
- +#define SILLY_RENAME_PREPOSTFIX_LEN (6L)
- const unsigned short extra_len =
- SILLY_RENAME_PREPOSTFIX_LEN + MD5_HASH_LEN;
- char name[NFS41_MAX_COMPONENT_LEN+1];
- @@ -384,7 +385,7 @@ int create_silly_rename(
- silly->name, silly->len);
- tmp = (char*)silly->name;
- - (void)StringCchPrintfA(tmp, end - tmp, ".%s.", name);
- + (void)StringCchPrintfA(tmp, end - tmp, ".nfs.%s.", name);
- tmp += (size_t)silly->len + SILLY_RENAME_PREPOSTFIX_LEN;
- for (i = 0; i < MD5_HASH_LEN; i++, tmp++)
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index 8ba983c..16972b0 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -422,4 +422,17 @@ bash /usr/share/msnfs41client/tests/misc/wintartests/wintartest_seq001.bash
- cd /cygdrive/n/xxx/
- bash /usr/share/msnfs41client/tests/misc/wintartest_comparewinvsgnu001.bash mytarfile.tar.bz2
- +#
- +# Test "silly rename"
- +#
- +# Deleing a file which is still in use (i.e. open fd) causes a NFS client
- +# to do a "silly rename", e.g. "foo" gets renamed to ".nfsXXXX" until
- +# the client does not use it any more.
- +#
- +# The NFS server has a weekly cron job removing files called ".nfs*" which
- +# are more than a week old to deal with .nfs* files from NFS clients which
- +# crashed while having deleted files open.
- +bash -c 'set -o errexit ; rm -Rf sillytestdir ; mkdir sillytestdir ; cd sillytestdir ; touch sillytest ; ( command exec {n}<"sillytest" ; printf "fd=%d\n" $n ; sleep 10) & sleep 1 ; ls -la ; cmd /C "del sillytest" ; ls -la ; if [[ "$(ls -1 .nfs*)" != "" ]] ; then echo "# test OK" ; else echo "# test FAILED" ; fi ; wait'
- +
- +#
- # EOF.
- --
- 2.45.1
msnfs41client: Patches for setting Win32 UTF-8 codepage, debugging illegal Win32 widechars, sillyrename fixes+tests+misc, 2024-11-23
Posted by Anonymous on Sat 23rd Nov 2024 15:28
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.