- From 4961320c1f5e2a64761f3f7b2f24eb86b5658ab6 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 10 Feb 2025 09:58:21 +0100
- Subject: [PATCH 1/2] cygwin: Remove packages from "required" list which are
- part of the Cygwin default installation
- Remove packages from "required" list which are part of the
- Cygwin default installation.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/README.bintarball.txt | 50 ++++++++++++++++++++----------------
- 1 file changed, 28 insertions(+), 22 deletions(-)
- diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
- index 819a4c7..4c3ca12 100644
- --- a/cygwin/README.bintarball.txt
- +++ b/cygwin/README.bintarball.txt
- @@ -115,47 +115,53 @@ NFSv4.2/NFSv4.1 filesystem driver for Windows 10/11&Windows Server 2019
- - Windows 10 (32bit or 64bit), Windows 11 or Windows Server 2019
- - Cygwin:
- - Cygwin versions:
- - - 64bit: >= 3.5.3 (or 3.6.x-devel)
- + - 64bit: >= 3.5.7 (or 3.6.x-devel)
- - 32bit: >= 3.3.6
- - Packages (required):
- cygwin
- - cygwin-devel
- cygrunsrv
- cygutils
- cygutils-extra
- - bash
- - bzip2
- - coreutils
- - getent
- - gdb
- - grep
- - hostname
- - less
- libiconv
- libiconv2
- - pax
- - pbzip2
- procps-ng
- - sed
- - tar
- - time
- util-linux
- - wget
- - - Packages (recommended):
- +
- + - Packages (optional, recommended):
- + bison
- + cygport
- + cygwin-devel
- + clang
- + dos2unix
- + pax
- + pbzip2
- libnfs-utils (for /usr/bin/nfs-ls)
- + libiconv-devel
- make
- bmake
- git
- gcc-core
- gcc-g++
- - clang
- + gdb
- mingw64-i686-clang
- mingw64-x86_64-clang
- - dos2unix
- unzip
- - bison
- - cygport
- - libiconv-devel
- + time
- +
- + - Packages (only-CI):
- + # required packages, but part of Cygwin default installation
- + # listed here for CI package list ONLY
- + bash
- + bzip2
- + coreutils
- + getent
- + grep
- + hostname
- + less
- + sed
- + tar
- + wget
- +
- - MSYS2 (64bit, optional):
- - Packages (recommended):
- base-devel
- --
- 2.45.1
- From f7989262758106e52411cab2f51eeede0b6691e3 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Mon, 10 Feb 2025 11:33:23 +0100
- Subject: [PATCH 2/2] daemon,include,sys: Make sure directories called "??" are
- not handled as NT paths in symlinks
- Make sure directories called "??" in a filesystems's root dir (i.e. "\??\")
- are not handled as NT paths in symlinks.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/open.c | 25 ++++++++++++++++---------
- daemon/upcall.h | 2 ++
- include/nfs41_driver.h | 14 ++++++++++++++
- sys/nfs41sys_driver.h | 1 +
- sys/nfs41sys_openclose.c | 32 +++++++++++++++++---------------
- 5 files changed, 50 insertions(+), 24 deletions(-)
- diff --git a/daemon/open.c b/daemon/open.c
- index ad7bb36..9440691 100644
- --- a/daemon/open.c
- +++ b/daemon/open.c
- @@ -608,7 +608,8 @@ static int create_with_ea(
- static
- void symlink2ntpath(
- - IN OUT nfs41_abs_path *restrict symlink)
- + IN OUT nfs41_abs_path *restrict symlink,
- + OUT nfs41_sysop_open_symlinktarget_type *out_target_type)
- {
- DPRINTF(1, ("--> symlink2ntpath(symlink='%.*s', len=%d)\n",
- (int)symlink->len,
- @@ -643,6 +644,7 @@ void symlink2ntpath(
- (int)symlink->len,
- symlink->path,
- (int)symlink->len));
- + *out_target_type = NFS41_SYMLINKTARGET_NTPATH;
- }
- /* UNC path (e.g. "\\server\path") ? */
- else if ((symlink->len > 3) &&
- @@ -662,27 +664,27 @@ void symlink2ntpath(
- (int)symlink->len,
- symlink->path,
- (int)symlink->len));
- + *out_target_type = NFS41_SYMLINKTARGET_NTPATH;
- }
- else {
- /*
- * All other paths just return a "drive abolute" path,
- * e.g. \foo\bar
- - *
- - * FIXME/BUG: What about a directory called "??" in the
- - * base of a filesystem, and access it with a trailing
- - * slash in the symlink - that would result in "\??\",
- - * which the kernel would treat as direct NT path...
- */
- /* These asserts should never be triggered... */
- EASSERT(symlink->len > 0);
- EASSERT((symlink->len > 0) && (symlink->path[0] == '\\'));
- + *out_target_type = NFS41_SYMLINKTARGET_FILESYSTEM_ABSOLUTE;
- }
- - DPRINTF(1, ("<-- symlink2ntpath(symlink='%.*s', len=%d)\n",
- + DPRINTF(1,
- + ("<-- symlink2ntpath(symlink='%.*s', len=%d, "
- + "*out_target_type=%d)\n",
- (int)symlink->len,
- symlink->path,
- - (int)symlink->len));
- + (int)symlink->len,
- + (int)*out_target_type));
- }
- static int handle_open(void *daemon_context, nfs41_upcall *upcall)
- @@ -759,6 +761,8 @@ static int handle_open(void *daemon_context, nfs41_upcall *upcall)
- status = NO_ERROR;
- upcall->last_error = ERROR_REPARSE;
- args->symlink_embedded = TRUE;
- + args->symlinktarget_type =
- + NFS41_SYMLINKTARGET_FILESYSTEM_ABSOLUTE;
- }
- goto out_free_state;
- }
- @@ -807,7 +811,7 @@ static int handle_open(void *daemon_context, nfs41_upcall *upcall)
- eprintf("nfs41_symlink_target() for '%s' failed with %d\n",
- args->path, status);
- } else {
- - symlink2ntpath(&args->symlink);
- + symlink2ntpath(&args->symlink, &args->symlinktarget_type);
- /* tell the driver to call RxPrepareToReparseSymbolicLink() */
- upcall->last_error = ERROR_REPARSE;
- args->symlink_embedded = FALSE;
- @@ -1224,6 +1228,9 @@ static int marshall_open(unsigned char *buffer, uint32_t *length, nfs41_upcall *
- unsigned short len = (args->symlink.len + 1) * sizeof(WCHAR);
- status = safe_write(&buffer, length, &args->symlink_embedded, sizeof(BOOLEAN));
- if (status) goto out;
- + BYTE tmp_symlinktarget_type = args->symlinktarget_type;
- + status = safe_write(&buffer, length, &tmp_symlinktarget_type, sizeof(BYTE));
- + if (status) goto out;
- status = safe_write(&buffer, length, &len, sizeof(len));
- if (status) goto out;
- /* convert args->symlink to wchar */
- diff --git a/daemon/upcall.h b/daemon/upcall.h
- index 797d9d8..26878f1 100644
- --- a/daemon/upcall.h
- +++ b/daemon/upcall.h
- @@ -25,6 +25,7 @@
- #include "nfs41_build_features.h"
- #include "nfs41_ops.h"
- +#include "nfs41_driver.h"
- #include "from_kernel.h"
- #define NFSD_VERSION_MISMATCH 116
- @@ -66,6 +67,7 @@ typedef struct __open_upcall_args {
- PFILE_FULL_EA_INFORMATION ea;
- BOOLEAN created;
- BOOLEAN symlink_embedded;
- + nfs41_sysop_open_symlinktarget_type symlinktarget_type;
- } open_upcall_args;
- typedef struct __close_upcall_args {
- diff --git a/include/nfs41_driver.h b/include/nfs41_driver.h
- index bddf5cc..13d880a 100644
- --- a/include/nfs41_driver.h
- +++ b/include/nfs41_driver.h
- @@ -86,6 +86,20 @@ typedef enum _nfs41_opcodes {
- NFS41_SYSOP_INVALID_OPCODE1
- } nfs41_opcodes;
- +/*
- + * Symlink target path types returned by the |NFS41_SYSOP_OPEN|
- + * downcall
- + */
- +typedef enum _nfs41_sysop_open_symlinktarget_type {
- + NFS41_SYMLINKTARGET_TYPE_UNDEFINED = 0,
- + /*
- + * Symlink within the same filesystem, but "absolute" from
- + * mount root
- + */
- + NFS41_SYMLINKTARGET_FILESYSTEM_ABSOLUTE = 1,
- + NFS41_SYMLINKTARGET_NTPATH = 2
- +} nfs41_sysop_open_symlinktarget_type;
- +
- enum rpcsec_flavors {
- RPCSEC_AUTH_SYS,
- RPCSEC_AUTHGSS_KRB5,
- diff --git a/sys/nfs41sys_driver.h b/sys/nfs41sys_driver.h
- index 4b875ee..762e832 100644
- --- a/sys/nfs41sys_driver.h
- +++ b/sys/nfs41sys_driver.h
- @@ -228,6 +228,7 @@ typedef struct _updowncall_entry {
- HANDLE srv_open;
- DWORD deleg_type;
- BOOLEAN symlink_embedded;
- + nfs41_sysop_open_symlinktarget_type symlinktarget_type;
- PMDL EaMdl;
- PVOID EaBuffer;
- } Open;
- diff --git a/sys/nfs41sys_openclose.c b/sys/nfs41sys_openclose.c
- index f28ede5..4d61e42 100644
- --- a/sys/nfs41sys_openclose.c
- +++ b/sys/nfs41sys_openclose.c
- @@ -288,6 +288,10 @@ NTSTATUS unmarshal_nfs41_open(
- if (cur->errno == ERROR_REPARSE) {
- RtlCopyMemory(&cur->u.Open.symlink_embedded, *buf, sizeof(BOOLEAN));
- *buf += sizeof(BOOLEAN);
- + BYTE tmp_symlinktarget_type;
- + RtlCopyMemory(&tmp_symlinktarget_type, *buf, sizeof(BYTE));
- + cur->u.Open.symlinktarget_type = tmp_symlinktarget_type;
- + *buf += sizeof(BYTE);
- RtlCopyMemory(&cur->u.Open.symlink.MaximumLength, *buf,
- sizeof(USHORT));
- *buf += sizeof(USHORT);
- @@ -735,19 +739,6 @@ retry_on_link:
- UNICODE_STRING AbsPath;
- PCHAR buf;
- BOOLEAN ReparseRequired;
- - /* symhasntpathprefix - symlink target has "\??\" prefix ? */
- - BOOLEAN symhasntpathprefix;
- -
- - if ((entry->u.Open.symlink.Length > (4*sizeof(wchar_t))) &&
- - (!memcmp(entry->u.Open.symlink.Buffer,
- - L"\\??\\", (4*sizeof(wchar_t))))) {
- - symhasntpathprefix = TRUE;
- - DbgP("symhasntpathprefix = TRUE\n");
- - }
- - else {
- - symhasntpathprefix = FALSE;
- - DbgP("symhasntpathprefix = TRUE\n");
- - }
- /*
- * Allocate the string for |RxPrepareToReparseSymbolicLink()|,
- @@ -757,10 +748,20 @@ retry_on_link:
- * (which starts with "\??\", see above)
- */
- AbsPath.Length = 0;
- - if (symhasntpathprefix == FALSE) {
- + if (entry->u.Open.symlinktarget_type ==
- + NFS41_SYMLINKTARGET_FILESYSTEM_ABSOLUTE) {
- AbsPath.Length += DeviceObject->DeviceName.Length +
- VNetRootPrefix->Length;
- }
- + else if (entry->u.Open.symlinktarget_type ==
- + NFS41_SYMLINKTARGET_NTPATH) {
- + }
- + else {
- + DbgP("nfs41_Create: Unknown symlinktarget_type=%d\n",
- + (int)entry->u.Open.symlinktarget_type);
- + status = STATUS_INVALID_PARAMETER;
- + goto out_free;
- + }
- AbsPath.Length += entry->u.Open.symlink.Length;
- AbsPath.MaximumLength = AbsPath.Length + sizeof(UNICODE_NULL);
- AbsPath.Buffer = RxAllocatePoolWithTag(NonPagedPoolNx,
- @@ -771,7 +772,8 @@ retry_on_link:
- }
- buf = (PCHAR)AbsPath.Buffer;
- - if (symhasntpathprefix == FALSE) {
- + if (entry->u.Open.symlinktarget_type ==
- + NFS41_SYMLINKTARGET_FILESYSTEM_ABSOLUTE) {
- RtlCopyMemory(buf, DeviceObject->DeviceName.Buffer,
- DeviceObject->DeviceName.Length);
- buf += DeviceObject->DeviceName.Length;
- --
- 2.45.1
msnfs41client: Patches for Cygwin package list+symlink fix, 2025-02-10
Posted by Anonymous on Mon 10th Feb 2025 13:06
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.