- From 7bb77bd12e5c4699549bb2bda3ea1d76431d9ef6 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 13:53:46 +0100
- Subject: [PATCH 1/7] tests: cthon04 should be build with -DNATIVE64=1 for
- largefile tests
- cthon04 should be build with -DNATIVE64=1 for largefile tests,
- otherwise these tests are skipped.
- Reported-by: Josh Hurst <joshhurst@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- tests/manual_testing.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index ea321e2..100ab00 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -1,5 +1,5 @@
- #
- -# ms-nfs41-client manual testing sequence, 2025-02-18
- +# ms-nfs41-client manual testing sequence, 2025-02-24
- #
- # Draft version, needs to be turned into automated tests
- # if possible
- @@ -157,7 +157,7 @@ cd cthon04/
- git config --global --add safe.directory "$PWD"
- git checkout 6c9abfd6907b2b43036af111cc600ab60ef804e5
- git am ../ms-nfs41-client/tests/cthon04/*.patch
- -(make CC="gcc -std=gnu17 -Wno-implicit-int -Wno-implicit-function-declaration -Wno-incompatible-pointer-types" 2>&1 | tee buildlog.log)
- +(make CC="gcc -std=gnu17 -Wno-implicit-int -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -DNATIVE64=1" 2>&1 | tee buildlog.log)
- (rm -Rf testdir1 && mkdir testdir1 && PATH="$PATH:." ksh93 ./runtests -a -t "$PWD/testdir1" 2>&1 | tee testrun.log)
- --
- 2.45.1
- From eda1566285437051c2188899a0b0f5649508bfc5 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 13:55:58 +0100
- Subject: [PATCH 2/7] cygwin: C:\etc should contain a symlink to the systems
- etc/hosts
- C:\etc should contain a symlink to the systems etc/hosts, so
- non-Windows admins can find it faster
- Reported-by: Lionel Cons <lionelcons1972@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/devel/msnfs41client.bash | 2 ++
- 1 file changed, 2 insertions(+)
- diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
- index 701ad59..b12eb1e 100755
- --- a/cygwin/devel/msnfs41client.bash
- +++ b/cygwin/devel/msnfs41client.bash
- @@ -147,6 +147,8 @@ function nfsclient_install
- mkdir -p /cygdrive/c/etc
- cp etc_netconfig /cygdrive/c/etc/netconfig
- cp ms-nfs41-idmap.conf /cygdrive/c/etc/.
- + # help non-Windows admins find /etc/hosts by providing a symlink
- + ln -sf /cygdrive/c/Windows/System32/drivers/etc/hosts /cygdrive/c/etc/hosts
- # enable symlink lookup
- # and then print the status
- --
- 2.45.1
- From e4d1f104bea748e3f5eaa457465cfe12e234c359 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 13:57:36 +0100
- Subject: [PATCH 3/7] daemon: |attr_cache_entry_create()| should init more
- fields by default
- |attr_cache_entry_create()| should init more fields by default, to
- make sure we get less noise while debugging.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/name_cache.c | 5 +++++
- 1 file changed, 5 insertions(+)
- diff --git a/daemon/name_cache.c b/daemon/name_cache.c
- index 11295b5..631d362 100644
- --- a/daemon/name_cache.c
- +++ b/daemon/name_cache.c
- @@ -159,7 +159,12 @@ static int attr_cache_entry_create(
- list_remove(&entry->free_entry);
- entry->nc_attrs = 0;
- + entry->change = 0ULL;
- + entry->size = 0ULL;
- + entry->space_used = 0ULL;
- entry->fileid = fileid;
- + entry->fsid_major = 0ULL;
- + entry->fsid_minor = 0ULL;
- entry->invalidated = FALSE;
- entry->delegated = FALSE;
- *entry_out = entry;
- --
- 2.45.1
- From 101f66b905bed487525e8cda577dc56570530b1d Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 14:20:30 +0100
- Subject: [PATCH 4/7] sys,tests: Add support for reading absolute POSIX
- symlinks
- Add support for reading absolute POSIX symlinks, e.g.
- $ ln -s "/" symlink2root #, plus add some tests for them.
- These symlinks are relative to C:\cygwin64 (64bit kernels) or
- C:\cygwin (32bit kernels)
- Reported-by: Josh Hurst <joshhurst@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- sys/nfs41sys_symlink.c | 69 ++++++++++++++++++++++++++++++++++++++++
- tests/manual_testing.txt | 7 ++++
- 2 files changed, 76 insertions(+)
- diff --git a/sys/nfs41sys_symlink.c b/sys/nfs41sys_symlink.c
- index 442b883..fdfd4fc 100644
- --- a/sys/nfs41sys_symlink.c
- +++ b/sys/nfs41sys_symlink.c
- @@ -540,6 +540,16 @@ bool is_us_cygdrive_path(UNICODE_STRING *restrict us)
- return false;
- }
- +static
- +bool is_us_posixroot_path(UNICODE_STRING *restrict us)
- +{
- + if ((us->Length >= (1*sizeof(wchar_t))) &&
- + (!memcmp(&us->Buffer[0],
- + L"\\", (1*sizeof(wchar_t)))))
- + return true;
- + return false;
- +}
- +
- NTSTATUS nfs41_GetSymlinkReparsePoint(
- IN OUT PRX_CONTEXT RxContext)
- {
- @@ -803,6 +813,65 @@ NTSTATUS nfs41_GetSymlinkReparsePoint(
- RxContext->IoStatusBlock.Information =
- (ULONG_PTR)HeaderLen + TargetName.Length;
- }
- + else if (is_us_posixroot_path(&TargetName)) {
- + const USHORT HeaderLen = FIELD_OFFSET(REPARSE_DATA_BUFFER,
- + SymbolicLinkReparseBuffer.PathBuffer);
- +
- + DbgP("nfs41_GetSymlinkReparsePoint: POSIX root symlink codepath\n");
- +
- + /*
- + * Copy data into FsCtl buffer, using L"C:\\cygwin64"
- + * as prefix
- + */
- + wchar_t *outbuff = (wchar_t *)
- + ((PBYTE)FsCtl->pOutputBuffer + HeaderLen);
- + size_t outbuff_len;
- + if ((TargetName.Buffer[0] == L'\\') &&
- + (TargetName.Length == (1*sizeof(wchar_t)))) {
- + /*
- + * Special case "bar -> /", to avoid that the
- + * symlink target will be "//"
- + */
- + TargetName.Length = 0;
- + }
- + (void)_snwprintf(outbuff,
- + (FsCtl->OutputBufferLength-HeaderLen) / sizeof(wchar_t),
- +#ifdef _WIN64
- + /* |TargetName| always starts with a backslash */
- + L"C:\\cygwin64%wZ",
- +#else
- + /* |TargetName| always starts with a backslash */
- + L"C:\\cygwin%wZ",
- +#endif /* _WIN64 */
- + &TargetName);
- + outbuff_len = wcslen(outbuff);
- +
- + TargetName.Length =
- + (USHORT)outbuff_len*sizeof(wchar_t);
- +
- + DbgP("nfs41_GetSymlinkReparsePoint: "
- + "new posixroot TargetName='%wZ'\n",
- + &TargetName);
- +
- + Reparse->ReparseTag = IO_REPARSE_TAG_SYMLINK;
- + Reparse->ReparseDataLength = HeaderLen + TargetName.Length -
- + REPARSE_DATA_BUFFER_HEADER_SIZE;
- + Reparse->Reserved = 0;
- + Reparse->SymbolicLinkReparseBuffer.Flags =
- + SYMLINK_FLAG_RELATIVE;
- + /* PrintName and SubstituteName point to the same string */
- + Reparse->SymbolicLinkReparseBuffer.SubstituteNameOffset = 0;
- + Reparse->SymbolicLinkReparseBuffer.SubstituteNameLength =
- + TargetName.Length;
- + Reparse->SymbolicLinkReparseBuffer.PrintNameOffset = 0;
- + Reparse->SymbolicLinkReparseBuffer.PrintNameLength =
- + TargetName.Length;
- +
- + print_reparse_buffer(Reparse);
- +
- + RxContext->IoStatusBlock.Information =
- + (ULONG_PTR)HeaderLen + TargetName.Length;
- + }
- else {
- status = STATUS_IO_REPARSE_DATA_INVALID;
- DbgP("nfs41_GetSymlinkReparsePoint: "
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index 100ab00..a72751d 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -237,6 +237,13 @@ rm -f symlink1_to_unc ; cmd /C 'mklink /D symlink1_to_unc \\derfwnb4966_ipv6link
- # \\derfwpc5131_ipv4@2049\nfs4\export\home2\rmainz\ with a subdir "tmp")
- rm -f symlink1_to_h_tmp ; cmd /C 'mklink /D symlink1_to_h_tmp \\derfwpc5131_ipv4@2049\nfs4\export\home2\rmainz\tmp' ; powershell -Command 'cd symlink1_to_h_tmp ; if ($?) { dir ; if ($?) { echo "test OK" } else { echo "dir failed" } } else { echo "cd failed" }'
- +#
- +# Tests for absolute (start from root "/") POSIX symlinks
- +#
- +# all test should print "OK test <testnum>"
- +# ("." is a relative symlink, just included here for more coverage)
- +ksh93 -c 'typeset -a a=( "/" "/usr" "/tmp" "/usr/bin" "$PWD" "/dev/null" "." ) ; for ((i=0 ; i < ${#a[@]} ; i++ )) ; do rm -f "syml$i" ; ln -sf "${a[$i]}" "syml$i" ; l="$(readlink "syml$i")" ; if [[ "$l" == "${a[$i]}" ]] ; then printf "OK test %d\n" i ; else printf "FAIL test %d\n" i ; fi ; done'
- +
- #
- # Tests for groups
- # (Add groups "cygwingrp1" and "cygwingrp2" to both Linux NFSv4 server
- --
- 2.45.1
- From 8180088f7abed011dabc52f7fe3256d72e89ff5b Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 15:14:30 +0100
- Subject: [PATCH 5/7] tests: Update winfstest usage instructions
- Update winfstest usage instructions
- Reported-by: Josh Hurst <joshhurst@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- tests/winfstest/README.txt | 2 ++
- 1 file changed, 2 insertions(+)
- diff --git a/tests/winfstest/README.txt b/tests/winfstest/README.txt
- index a6b35b3..455b64f 100644
- --- a/tests/winfstest/README.txt
- +++ b/tests/winfstest/README.txt
- @@ -10,6 +10,7 @@ set -o errexit
- git clone https://github.com/kofemann/ms-nfs41-client.git
- git clone https://github.com/dimov-cz/winfstest.git
- cd winfstest/
- +git config --global --add safe.directory "$PWD"
- # switch to commit which is known to work (with our patches)
- git checkout '525f878c06c585619eadd769c8ed9dcdf175b026'
- @@ -21,6 +22,7 @@ MSBuild.exe winfstest.sln -t:Build -p:Configuration=Debug -p:Platform=x64
- # get testsuite binary path
- cd TestSuite
- +chmod a+x winfstest.exe
- winfstest_testsuite_path="$(pwd)"
- # create test dir on NFSv4.1 filesystem
- --
- 2.45.1
- From b15531fb083df853e4d63b01d4ea822e563f4433 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 15:52:59 +0100
- Subject: [PATCH 6/7] cygwin: Windows 32bit should have a
- /sbin/nfs_mount.i686.exe too
- Windows 32bit should have a /sbin/nfs_mount.i686.exe too, so
- scripts do not trip over the lack of nfs_mount.i686.exe on 32bit
- machines
- Reported-by: Cedric Blancher <cedric.blancher@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/Makefile.install | 9 ++++++---
- 1 file changed, 6 insertions(+), 3 deletions(-)
- diff --git a/cygwin/Makefile.install b/cygwin/Makefile.install
- index 98e4235..c722344 100644
- --- a/cygwin/Makefile.install
- +++ b/cygwin/Makefile.install
- @@ -43,11 +43,14 @@ installdest:
- # we need a hardlink for nfs_umount.exe, softlinks do not work
- ln -f $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_umount.exe
- # install 32bit nfs_mount.exe on 64bit Windows to assist with debugging 32bit issues
- - # we use the "Release" version to avoid issues with missing debug libraries
- + # we use the "Release" version on 64bit to avoid issues with missing debug libraries
- + # on 32bit we just create a hardlink from nfs_mount.exe to nfs_mount.i686.exe
- if [[ "$(CYGWIN_BASEPATH)" == *64* ]] ; then \
- - cp $(VS_BUILD_DIR32)/../Release/nfs_mount.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.i686.exe ; \
- - ln -f $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.i686.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_umount.i686.exe ; \
- + cp $(VS_BUILD_DIR32)/../Release/nfs_mount.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.i686.exe ; \
- + else \
- + ln -f $(VS_BUILD_DIR32)/../Debug/nfs_mount.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.i686.exe ; \
- fi
- + ln -f $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_mount.i686.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfs_umount.i686.exe
- cp $(VS_BUILD_DIR)/nfsd.* $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/.
- cp $(VS_BUILD_DIR)/nfs_install.* $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/.
- cp $(VS_BUILD_DIR)/libtirpc.* $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/.
- --
- 2.45.1
- From 3ac7a3b30385a5891de57e9f2296395f8b68a5bf Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 24 Feb 2025 16:42:49 +0100
- Subject: [PATCH 7/7] tests: Add tests for mkdir with UNC path
- Add tests for mkdir with UNC path, because early Cygwin 3.6 test
- releases choked on the '@' in the UNC path.
- Reported-by: Martin Wege <martin.l.wege@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- tests/manual_testing.txt | 14 ++++++++++++++
- 1 file changed, 14 insertions(+)
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index a72751d..0bf5029 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -244,6 +244,20 @@ rm -f symlink1_to_h_tmp ; cmd /C 'mklink /D symlink1_to_h_tmp \\derfwpc5131_ipv4
- # ("." is a relative symlink, just included here for more coverage)
- ksh93 -c 'typeset -a a=( "/" "/usr" "/tmp" "/usr/bin" "$PWD" "/dev/null" "." ) ; for ((i=0 ; i < ${#a[@]} ; i++ )) ; do rm -f "syml$i" ; ln -sf "${a[$i]}" "syml$i" ; l="$(readlink "syml$i")" ; if [[ "$l" == "${a[$i]}" ]] ; then printf "OK test %d\n" i ; else printf "FAIL test %d\n" i ; fi ; done'
- +#
- +# Test for mkdir with UNC path
- +#
- +Example:
- +---- snip ----
- +# get UNC path for driver letterr 'L':
- +$ powershell -Command 'Get-PSDrive -Name L | Select-Object -Property DisplayRoot,CurrentLocation | Format-List' | ksh93 -c 'compound c=(typeset -A ar) ; while IFS="" read -r l ; do dummy="${l/~(Elr)(.+?)[[:space:]]*:[[:space:]](.+)\015/x}" ; [[ "${.sh.match[1]-}" == "" ]] && continue ; c.ar["${.sh.match[1]}"]="${.sh.match[2]}" ; done ; cygpath -u "$(printf "%s\\\\%s\n" "${c.ar[DisplayRoot]}" "${c.ar[CurrentLocation]}")"'
- +//derfwnb4966_ipv6linklocal@2049/nfs4/bigdisk/builds/bash_build1
- +# tests
- +mkdir -p //derfwnb4966_ipv6linklocal@2049/nfs4/bigdisk/builds/bash_build1/a1/b1/c1 || echo FAIL
- +mkdir //derfwnb4966_ipv6linklocal@2049/nfs4/bigdisk/builds/bash_build1/a2 || echo FAIL
- +mkdir //derfwnb4966_ipv6linklocal@2049/nfs4/bigdisk/builds/bash_build1/a2/b2 || echo FAIL
- +---- snip ----
- +
- #
- # Tests for groups
- # (Add groups "cygwingrp1" and "cygwingrp2" to both Linux NFSv4 server
- --
- 2.45.1
msnfs41client: Patches to support reading POSIX symlinks with absolute paths, tests+misc, 2025-02-24
Posted by Anonymous on Mon 24th Feb 2025 16:45
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.