- From 5bda5090408e41fb51fe364a3f1802934c533841 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Wed, 2 Oct 2024 14:41:59 +0200
- Subject: [PATCH 1/5] tests: Add "drmemory on NFS filesystem" to manual tests
- Add "drmemory on NFS filesystem" to manual tests
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- tests/manual_testing.txt | 8 ++++++++
- 1 file changed, 8 insertions(+)
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index b0d6098..883f722 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -402,4 +402,12 @@ svn checkout https://svn.FreeBSD.org/base/head/share/man
- cd /cygdrive/n/xxx/
- time ksh93 $msnfs41clientgitroot/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93 all
- +
- +#
- +# Run DrMemory with log dir on NFSv4.1 filesystem
- +#
- +cd /cygdrive/n/xxx/
- +drmemory -batch -check_uninit_all -strict_bitops -logdir "$(cygpath -w "$PWD")" -- "$(cygpath -w /sbin/nfs_mount)"
- +
- +
- # EOF.
- --
- 2.45.1
- From e92bb6d4fe713603233a8b833a4ae26050ad919b Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Wed, 2 Oct 2024 15:12:53 +0200
- Subject: [PATCH 2/5] sys: Remove some NOP-debug code from hot codepaths+remove
- unused |xidLock|
- Remove some NOP-debug code from hot codepaths+remove unused |xidLock|
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- sys/nfs41_debug.c | 26 ++++++++++----------------
- sys/nfs41_debug.h | 14 +++++++-------
- sys/nfs41_driver.c | 34 ++++++++++++++++++----------------
- 3 files changed, 35 insertions(+), 39 deletions(-)
- diff --git a/sys/nfs41_debug.c b/sys/nfs41_debug.c
- index 4bd6692..854cdf4 100644
- --- a/sys/nfs41_debug.c
- +++ b/sys/nfs41_debug.c
- @@ -95,14 +95,12 @@ ULONG __cdecl print_error(IN PCCH fmt, ...)
- return 0;
- }
- -void print_hexbuf(int on, unsigned char *title, unsigned char *buf, int len)
- +void print_hexbuf(const char *title, unsigned char *buf, int len)
- {
- int j, k;
- LARGE_INTEGER timestamp, local_time;
- TIME_FIELDS time_fields;
- - if (!on) return;
- -
- KeQuerySystemTime(×tamp);
- ExSystemTimeToLocalTime(×tamp,&local_time);
- RtlTimeToTimeFields(&local_time, &time_fields);
- @@ -120,9 +118,8 @@ void print_hexbuf(int on, unsigned char *title, unsigned char *buf, int len)
- DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL, "\n");
- }
- -void print_ioctl(int on, int op)
- +void print_ioctl(int op)
- {
- - if(!on) return;
- switch(op) {
- case IRP_MJ_FILE_SYSTEM_CONTROL:
- DbgP("IRP_MJ_FILE_SYSTEM_CONTROL\n");
- @@ -138,9 +135,8 @@ void print_ioctl(int on, int op)
- };
- }
- -void print_fs_ioctl(int on, int op)
- +void print_fs_ioctl(int op)
- {
- - if(!on) return;
- switch(op) {
- case IOCTL_NFS41_INVALCACHE:
- DbgP("IOCTL_NFS41_INVALCACHE\n");
- @@ -209,16 +205,17 @@ void print_std_info(int on, PFILE_STANDARD_INFORMATION info)
- info->DeletePending);
- }
- -void print_ea_info(int on, PFILE_FULL_EA_INFORMATION info)
- +void print_ea_info(PFILE_FULL_EA_INFORMATION info)
- {
- - if (!on) return;
- DbgP("FULL_EA_INFO: NextOffset=%d Flags=%x EaNameLength=%d "
- "ExValueLength=%x EaName=%s\n", info->NextEntryOffset, info->Flags,
- info->EaNameLength, info->EaValueLength, info->EaName);
- +#if DEBUG_EAINFO_DETAILS
- if (info->EaValueLength)
- - print_hexbuf(0, (unsigned char *)"eavalue",
- + print_hexbuf("eavalue",
- (unsigned char *)info->EaName + info->EaNameLength + 1,
- info->EaValueLength);
- +#endif /* DEBUG_EAINFO_DETAILS */
- }
- void print_get_ea(int on, PFILE_GET_EA_INFORMATION info)
- @@ -228,9 +225,8 @@ void print_get_ea(int on, PFILE_GET_EA_INFORMATION info)
- info->NextEntryOffset, info->EaNameLength, info->EaName);
- }
- -VOID print_srv_call(int on, IN PMRX_SRV_CALL p)
- +VOID print_srv_call(IN PMRX_SRV_CALL p)
- {
- - if (!on) return;
- DbgP("PMRX_SRV_CALL %p\n", p);
- #if 0
- DbgP("\tNodeReferenceCount %ld\n", p->NodeReferenceCount);
- @@ -246,9 +242,8 @@ VOID print_srv_call(int on, IN PMRX_SRV_CALL p)
- #endif
- }
- -VOID print_net_root(int on, IN PMRX_NET_ROOT p)
- +VOID print_net_root(IN PMRX_NET_ROOT p)
- {
- - if (!on) return;
- DbgP("PMRX_NET_ROOT %p\n", p);
- #if 0
- DbgP("\tNodeReferenceCount %ld\n", p->NodeReferenceCount);
- @@ -267,9 +262,8 @@ VOID print_net_root(int on, IN PMRX_NET_ROOT p)
- #endif
- }
- -VOID print_v_net_root(int on, IN PMRX_V_NET_ROOT p)
- +VOID print_v_net_root(IN PMRX_V_NET_ROOT p)
- {
- - if (!on) return;
- DbgP("PMRX_V_NET_ROOT %p\n", p);
- #if 0
- DbgP("\tNodeReferenceCount %ld\n", p->NodeReferenceCount);
- diff --git a/sys/nfs41_debug.h b/sys/nfs41_debug.h
- index 45cf457..6fcaf27 100644
- --- a/sys/nfs41_debug.h
- +++ b/sys/nfs41_debug.h
- @@ -28,9 +28,9 @@
- ULONG __cdecl DbgP(IN PCCH fmt, ...);
- ULONG __cdecl print_error(IN PCCH fmt, ...);
- VOID print_fo_all(int on, IN PRX_CONTEXT c);
- -VOID print_srv_call(int on, IN PMRX_SRV_CALL p);
- -VOID print_net_root(int on, IN PMRX_NET_ROOT p);
- -VOID print_v_net_root(int on, IN PMRX_V_NET_ROOT p);
- +VOID print_srv_call(IN PMRX_SRV_CALL p);
- +VOID print_net_root(IN PMRX_NET_ROOT p);
- +VOID print_v_net_root(IN PMRX_V_NET_ROOT p);
- VOID print_fcb(int on, IN PMRX_FCB p);
- VOID print_srv_open(int on, IN PMRX_SRV_OPEN p);
- VOID print_fobx(int on, IN PMRX_FOBX p);
- @@ -39,14 +39,14 @@ VOID print_irps_flags(int on, PIO_STACK_LOCATION irps);
- void print_nt_create_params(int on, NT_CREATE_PARAMETERS params);
- unsigned char *print_file_information_class(int InfoClass);
- unsigned char *print_fs_information_class(int InfoClass);
- -void print_hexbuf(int on, unsigned char *title, unsigned char *buf, int len);
- -void print_ioctl(int on, int op);
- -void print_fs_ioctl(int on, int op);
- +void print_hexbuf(const char *title, unsigned char *buf, int len);
- +void print_ioctl(int op);
- +void print_fs_ioctl(int op);
- void print_driver_state(int state);
- void print_file_object(int on, PFILE_OBJECT file);
- void print_basic_info(int on, PFILE_BASIC_INFORMATION info);
- void print_std_info(int on, PFILE_STANDARD_INFORMATION info);
- -void print_ea_info(int on, PFILE_FULL_EA_INFORMATION info);
- +void print_ea_info(PFILE_FULL_EA_INFORMATION info);
- void print_get_ea(int on, PFILE_GET_EA_INFORMATION info);
- void print_caching_level(int on, ULONG flag, PUNICODE_STRING s);
- const char *opcode2string(int opcode);
- diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
- index 8143840..2f2038c 100644
- --- a/sys/nfs41_driver.c
- +++ b/sys/nfs41_driver.c
- @@ -109,7 +109,6 @@ PRDBSS_DEVICE_OBJECT nfs41_dev;
- KEVENT upcallEvent;
- FAST_MUTEX upcallLock, downcallLock, fcblistLock;
- -FAST_MUTEX xidLock;
- FAST_MUTEX openOwnerLock;
- LONGLONG xid = 0;
- @@ -1591,8 +1590,8 @@ static NTSTATUS handle_upcall(
- print_error("Unknown nfs41 ops %d\n", entry->opcode);
- }
- - if (status == STATUS_SUCCESS)
- - print_hexbuf(0, (unsigned char *)"upcall buffer", pbOut, *len);
- + // if (status == STATUS_SUCCESS)
- + // print_hexbuf("upcall buffer", pbOut, *len);
- out:
- return status;
- @@ -2090,13 +2089,17 @@ static NTSTATUS nfs41_downcall(
- {
- NTSTATUS status = STATUS_SUCCESS;
- PLOWIO_CONTEXT LowIoContext = &RxContext->LowIoContext;
- +#ifdef DEBUG_PRINT_DOWNCALL_HEXBUF
- ULONG in_len = LowIoContext->ParamsFor.IoCtl.InputBufferLength;
- +#endif /* DEBUG_PRINT_DOWNCALL_HEXBUF */
- unsigned char *buf = LowIoContext->ParamsFor.IoCtl.pInputBuffer;
- PLIST_ENTRY pEntry;
- nfs41_updowncall_entry *tmp, *cur= NULL;
- BOOLEAN found = 0;
- - print_hexbuf(0, (unsigned char *)"downcall buffer", buf, in_len);
- +#ifdef DEBUG_PRINT_DOWNCALL_HEXBUF
- + print_hexbuf("downcall buffer", buf, in_len);
- +#endif /* DEBUG_PRINT_DOWNCALL_HEXBUF */
- tmp = RxAllocatePoolWithTag(NonPagedPoolNx, sizeof(nfs41_updowncall_entry),
- NFS41_MM_POOLTAG_DOWN);
- @@ -2605,14 +2608,14 @@ static NTSTATUS nfs41_DevFcbXXXControlFile(
- //DbgEn();
- - print_ioctl(0, op);
- + //print_ioctl(op);
- switch(op) {
- case IRP_MJ_FILE_SYSTEM_CONTROL:
- status = STATUS_INVALID_DEVICE_REQUEST;
- break;
- case IRP_MJ_DEVICE_CONTROL:
- case IRP_MJ_INTERNAL_DEVICE_CONTROL:
- - print_fs_ioctl(0, fsop);
- + //print_fs_ioctl(fsop);
- switch (fsop) {
- case IOCTL_NFS41_INVALCACHE:
- status = nfs41_invalidate_cache(RxContext);
- @@ -2744,7 +2747,7 @@ static NTSTATUS _nfs41_CreateSrvCall(
- ASSERT( pSrvCall );
- ASSERT( NodeType(pSrvCall) == RDBSS_NTC_SRVCALL );
- - print_srv_call(0, pSrvCall);
- + // print_srv_call(pSrvCall);
- // validate the server name with the test name of 'pnfs'
- #ifdef DEBUG_MOUNT
- @@ -3402,9 +3405,9 @@ static NTSTATUS nfs41_CreateVNetRoot(
- #ifdef DEBUG_MOUNT
- DbgEn();
- - print_srv_call(0, pSrvCall);
- - print_net_root(0, pNetRoot);
- - print_v_net_root(0, pVNetRoot);
- + // print_srv_call(pSrvCall);
- + // print_net_root(pNetRoot);
- + // print_v_net_root(pVNetRoot);
- DbgP("pVNetRoot=0x%p pNetRoot=0x%p pSrvCall=0x%p\n", pVNetRoot, pNetRoot, pSrvCall);
- DbgP("pNetRoot='%wZ' Type=%d pSrvCallName='%wZ' VirtualNetRootStatus=0x%x "
- @@ -3825,7 +3828,7 @@ static NTSTATUS nfs41_FinalizeSrvCall(
- #ifdef DEBUG_MOUNT
- DbgEn();
- #endif
- - print_srv_call(0, pSrvCall);
- + // print_srv_call(pSrvCall);
- if (pSrvCall->Context == NULL)
- goto out;
- @@ -3854,7 +3857,7 @@ static NTSTATUS nfs41_FinalizeNetRoot(
- #ifdef DEBUG_MOUNT
- DbgEn();
- - print_net_root(1, pNetRoot);
- + print_net_root(pNetRoot);
- #endif
- if (pNetRoot->Type != NET_ROOT_DISK && pNetRoot->Type != NET_ROOT_WILD) {
- @@ -3954,7 +3957,7 @@ static NTSTATUS nfs41_FinalizeVNetRoot(
- NTSTATUS status = STATUS_SUCCESS;
- #ifdef DEBUG_MOUNT
- DbgEn();
- - print_v_net_root(1, pVNetRoot);
- + print_v_net_root(pVNetRoot);
- #endif
- if (pVNetRoot->pNetRoot->Type != NET_ROOT_DISK &&
- pVNetRoot->pNetRoot->Type != NET_ROOT_WILD)
- @@ -4251,7 +4254,7 @@ static NTSTATUS nfs41_Create(
- DbgEn();
- print_debug_header(RxContext);
- print_nt_create_params(1, RxContext->Create.NtCreateParameters);
- - if (ea) print_ea_info(0, ea);
- + // if (ea) print_ea_info(ea);
- #endif
- status = check_nfs41_create_args(RxContext);
- @@ -5376,7 +5379,7 @@ static NTSTATUS nfs41_SetEaInformation(
- #ifdef DEBUG_EA_SET
- DbgEn();
- print_debug_header(RxContext);
- - print_ea_info(1, eainfo);
- + print_ea_info(eainfo);
- #endif
- status = check_nfs41_setea_args(RxContext);
- @@ -7871,7 +7874,6 @@ NTSTATUS DriverEntry(
- KeInitializeEvent(&upcallEvent, SynchronizationEvent, FALSE );
- ExInitializeFastMutex(&upcallLock);
- ExInitializeFastMutex(&downcallLock);
- - ExInitializeFastMutex(&xidLock);
- ExInitializeFastMutex(&openOwnerLock);
- ExInitializeFastMutex(&fcblistLock);
- InitializeListHead(&upcall.head);
- --
- 2.45.1
- From b5965962642d9e4967ef3e25a83b74e5b2010580 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Wed, 2 Oct 2024 15:43:21 +0200
- Subject: [PATCH 3/5] daemon: Fix incomplete initalisation in |nfs41_link()|
- Fix incomplete initalisation in |nfs41_link()|.
- Reported-by: Dan Shelton <dan.f.shelton@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/nfs41_ops.c | 9 ++++++---
- 1 file changed, 6 insertions(+), 3 deletions(-)
- diff --git a/daemon/nfs41_ops.c b/daemon/nfs41_ops.c
- index 5e99522..878f34b 100644
- --- a/daemon/nfs41_ops.c
- +++ b/daemon/nfs41_ops.c
- @@ -44,10 +44,8 @@
- * uninitalised memory issues with DrMemory
- */
- #define NDSH(x) x
- -#define NDSH2(x,y) x,y
- #else
- #define NDSH(x)
- -#define NDSH2(x,y)
- #endif /* NFS41_DRIVER_STABILITY_HACKS */
- int nfs41_exchange_id(
- @@ -1512,10 +1510,15 @@ int nfs41_link(
- nfs41_lookup_res lookup_res;
- nfs41_getfh_res getfh_res;
- nfs41_getattr_args getattr_args[2];
- - nfs41_getattr_res getattr_res[2] NDSH2(= { 0, 0 });
- + nfs41_getattr_res getattr_res[2];
- nfs41_file_info info = { 0 };
- nfs41_path_fh file;
- +#ifdef NFS41_DRIVER_STABILITY_HACKS
- + /* gisburn: fixme, see comment about |NDSH| above */
- + (void)memset(getattr_res, 0, sizeof(getattr_res));
- +#endif /* NFS41_DRIVER_STABILITY_HACKS */
- +
- nfs41_superblock_getattr_mask(src->fh.superblock, &info.attrmask);
- nfs41_superblock_getattr_mask(dst_dir->fh.superblock, &cinfo->attrmask);
- cinfo->attrmask.arr[0] |= FATTR4_WORD0_FSID;
- --
- 2.45.1
- From 5a9536cb66349dddfa11d15e5c5876246aa40e19 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Fri, 4 Oct 2024 16:06:38 +0200
- Subject: [PATCH 4/5] cygwin,dll,mount: Implement UNC-path-only nfs_mounts
- Implement UNC-path-only nfs_mounts.
- This allows nfs_mount.exe and nfs_umount.exe to mount/umount
- NFS paths without assigning a DOS drive.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/README.bintarball.txt | 27 +++-
- dll/nfs41_np.c | 271 +++++++++++++++++++++++++++++------
- mount/mount.c | 162 +++++++++++----------
- 3 files changed, 342 insertions(+), 118 deletions(-)
- diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
- index 92f32f3..8fb6966 100644
- --- a/cygwin/README.bintarball.txt
- +++ b/cygwin/README.bintarball.txt
- @@ -43,6 +43,7 @@ NFSv4.1 filesystem driver for Windows 10/11&Windows Server 2019
- characters in the mount path, independent of current locale.
- - UNC paths
- + - Mounting UNC paths without DOS driver letter
- - IPv6 support in UNC paths
- - /sbin/nfs_mount prints UNC paths in Win32+Cygwin formats
- - Cygwin bash+ksh93 support UNC paths, e.g.
- @@ -246,9 +247,9 @@ $ sc config ms-nfs41-client-service start=disabled
- # - requires separate terminal
- $ /sbin/msnfs41client run_daemon
- -# Mount a filesystem and use it
- -$ /sbin/nfs_mount -o rw N 10.49.20.110:/net_tmpfs2
- -Successfully mounted '10.49.20.110@2049' to drive 'N:'
- +# Mount a filesystem to drive N: and use it
- +$ /sbin/nfs_mount -o rw N 10.49.202.230:/net_tmpfs2
- +Successfully mounted '10.49.202.230@2049' to drive 'N:'
- $ cd /cygdrive/n/
- $ ls -la
- total 4
- @@ -264,6 +265,26 @@ $ cd ~ && /sbin/nfs_umount N:
- $ cd ~
- $ net use N: /delete
- +# Mount a filesystem WITHOUT a dos drive assigned and use it via UNC path
- +$ /sbin/nfs_mount -o rw 10.49.202.230:/net_tmpfs2
- +Successfully mounted '10.49.202.230@2049' to drive '\0.49.202.230@2049\nfs4\net_tmpfs2'
- +$ cygpath -u '\0.49.202.230@2049\nfs4\net_tmpfs2'
- +//10.49.202.230@2049/nfs4/net_tmpfs2
- +$ cd '//10.49.202.230@2049/nfs4/net_tmpfs2'
- +$ ls -la
- +total 4
- +drwxrwxrwt 5 Unix_User+0 Unix_Group+0 100 Dec 7 14:17 .
- +dr-xr-xr-x 1 roland_mainz Kein 0 Dec 14 13:48 ..
- +drwxr-xr-x 3 Unix_User+197608 Unix_Group+197121 80 Dec 12 16:24 10492030
- +drwxr-xr-x 3 Unix_User+197608 Unix_Group+197121 60 Dec 13 17:58 directory_t
- +drwxr-xr-x 3 Unix_User+197608 Unix_Group+197121 60 Dec 7 11:01 test2
- +
- +# Unmount filesystem:
- +$ cd ~ && /sbin/nfs_umount '\0.49.202.230@2049\nfs4\net_tmpfs2'
- +# OR
- +$ cd ~
- +$ net use '\0.49.202.230@2049\nfs4\net_tmpfs2' /delete
- +
- # List mounted NFSv4.1 filesystems:
- $ /sbin/nfs_mount
- diff --git a/dll/nfs41_np.c b/dll/nfs41_np.c
- index 5a89134..490c0fa 100644
- --- a/dll/nfs41_np.c
- +++ b/dll/nfs41_np.c
- @@ -52,6 +52,13 @@
- const LUID SystemLuid = SYSTEM_LUID;
- #endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- +/* Internal marker for UNC entries in NFS41_USER_SHARED_MEMORY_NAME */
- +#define NFS41NP_LOCALNAME_UNC_MARKER L"_:"
- +
- +/* Local prototypes */
- +static DWORD is_unc_path_mounted(__in LPWSTR lpRemoteName);
- +
- +
- ULONG _cdecl NFS41DbgPrint(__in LPTSTR fmt, ...)
- {
- ULONG rc = 0;
- @@ -517,14 +524,21 @@ NPAddConnection3(
- WCHAR ServerName[NFS41_SYS_MAX_PATH_LEN];
- PWCHAR p;
- DWORD i;
- + LPWSTR lpLocalName = lpNetResource->lpLocalName;
- DbgP((L"--> NPAddConnection3(lpNetResource->lpLocalName='%s', "
- L"lpNetResource->lpRemoteName='%s', "
- L"username='%s', passwd='%s')\n",
- - lpNetResource->lpLocalName,
- + lpLocalName,
- lpNetResource->lpRemoteName,lpUserName,
- lpPassword));
- + if (lpLocalName == NULL) {
- + lpLocalName = NFS41NP_LOCALNAME_UNC_MARKER;
- + DbgP((L"lpLocalName==NULL, "
- + "changed to " NFS41NP_LOCALNAME_UNC_MARKER L"\n"));
- + }
- +
- Status = InitializeConnectionInfo(&Connection,
- (PMOUNT_OPTION_BUFFER)lpNetResource->lpComment,
- &ConnectionName);
- @@ -536,16 +550,16 @@ NPAddConnection3(
- // \device\miniredirector\;<DriveLetter>:\Server\Share
- // local name, must start with "X:"
- - if (lstrlen(lpNetResource->lpLocalName) < 2 ||
- - lpNetResource->lpLocalName[1] != L':') {
- - DbgP((L"lpNetResource->lpLocalName(='%s') "
- + if (lstrlen(lpLocalName) < 2 ||
- + lpLocalName[1] != L':') {
- + DbgP((L"lpLocalName(='%s') "
- "is not a device letter\n",
- - lpNetResource->lpLocalName));
- + lpLocalName));
- Status = WN_BAD_LOCALNAME;
- goto out;
- }
- - LocalName[0] = towupper(lpNetResource->lpLocalName[0]);
- + LocalName[0] = towupper(lpLocalName[0]);
- LocalName[1] = L':';
- LocalName[2] = L'\0';
- (void)StringCchCopyW(ConnectionName,
- @@ -659,15 +673,38 @@ NPAddConnection3(
- (wcslen(ConnectionName) + 1) * sizeof(WCHAR),
- (lstrlen(ConnectionName) + 1) * sizeof(WCHAR)));
- - wszScratch[0] = L'\0';
- - Status = QueryDosDevice(LocalName, wszScratch, 1024);
- - DbgP((L"QueryDosDevice(lpDeviceName='%s',lpTargetPath='%s') "
- - L"returned %d/GetLastError()=%d\n",
- - LocalName, wszScratch, Status, (int)GetLastError()));
- -
- - if (Status || (GetLastError() != ERROR_FILE_NOT_FOUND)) {
- - Status = WN_ALREADY_CONNECTED;
- - goto out;
- + if (lpNetResource->lpLocalName == NULL) {
- + DWORD gc_status;
- +
- + gc_status = is_unc_path_mounted(lpNetResource->lpRemoteName);
- + DbgP((L"lpNetResource->lpLocalName == NULL, "
- + "is_unc_path_mounted(lpNetResource->lpRemoteName='%s') "
- + "returned gc_status=%d\n",
- + lpNetResource->lpRemoteName,
- + (int)gc_status));
- +
- + if (gc_status == WN_SUCCESS) {
- + /*
- + * Do not return |WN_ALREADY_CONNECTED| here, as UNC
- + * paths are reused
- + * We explicitly use this to skip |StoreConnectionInfo()|
- + * below, so we only have one stored UNC connection
- + */
- + Status = WN_SUCCESS;
- + goto out;
- + }
- + }
- + else {
- + wszScratch[0] = L'\0';
- + Status = QueryDosDevice(LocalName, wszScratch, 1024);
- + DbgP((L"QueryDosDevice(lpDeviceName='%s',lpTargetPath='%s') "
- + L"returned %d/GetLastError()=%d\n",
- + LocalName, wszScratch, Status, (int)GetLastError()));
- +
- + if (Status || (GetLastError() != ERROR_FILE_NOT_FOUND)) {
- + Status = WN_ALREADY_CONNECTED;
- + goto out;
- + }
- }
- MarshalConnectionInfo(&Connection);
- @@ -680,18 +717,20 @@ NPAddConnection3(
- goto out;
- }
- - DbgP((L"DefineDosDevice(lpNetResource->lpLocalName='%s', "
- - L"ConnectionName='%s')\n",
- - lpNetResource->lpLocalName, ConnectionName));
- - if (!DefineDosDevice(DDD_RAW_TARGET_PATH |
- - DDD_NO_BROADCAST_SYSTEM,
- - lpNetResource->lpLocalName,
- - ConnectionName)) {
- - Status = GetLastError();
- - DbgP((L"DefineDosDevice(lpNetResource->lpLocalName='%s',"
- - L"ConnectionName='%s') failed with %d\n",
- - lpNetResource->lpLocalName, ConnectionName, Status));
- - goto out_delconn;
- + if (lpNetResource->lpLocalName != NULL) {
- + DbgP((L"DefineDosDevice(lpLocalName='%s', "
- + L"ConnectionName='%s')\n",
- + lpLocalName, ConnectionName));
- + if (!DefineDosDevice(DDD_RAW_TARGET_PATH |
- + DDD_NO_BROADCAST_SYSTEM,
- + lpLocalName,
- + ConnectionName)) {
- + Status = GetLastError();
- + DbgP((L"DefineDosDevice(lpLocalName='%s',"
- + L"ConnectionName='%s') failed with %d\n",
- + lpLocalName, ConnectionName, Status));
- + goto out_delconn;
- + }
- }
- // The connection was established and the local device mapping
- @@ -708,10 +747,12 @@ out:
- DbgP((L"<-- NPAddConnection3 returns %d\n", (int)Status));
- return Status;
- out_undefine:
- - (void)DefineDosDevice(DDD_REMOVE_DEFINITION |
- - DDD_RAW_TARGET_PATH |
- - DDD_EXACT_MATCH_ON_REMOVE,
- - LocalName, ConnectionName);
- + if (lpNetResource->lpLocalName != NULL) {
- + (void)DefineDosDevice(DDD_REMOVE_DEFINITION |
- + DDD_RAW_TARGET_PATH |
- + DDD_EXACT_MATCH_ON_REMOVE,
- + LocalName, ConnectionName);
- + }
- out_delconn:
- SendTo_NFS41Driver(IOCTL_NFS41_DELCONN, ConnectionName,
- Connection.Buffer->NameLength, NULL, &CopyBytes);
- @@ -730,10 +771,20 @@ NPCancelConnection(
- #ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- LUID authenticationid = { .LowPart = 0, .HighPart = 0L };
- #endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- + bool is_unc_path;
- DbgP((L"--> NPCancelConnection(lpName='%s', fForce=%d)\n",
- lpName, (int)fForce));
- + if (lpName && (lpName[0] == L'\\') && (lpName[1] == L'\\')) {
- + is_unc_path = true;
- + }
- + else {
- + is_unc_path = false;
- + }
- +
- + DbgP((L"is_unc_path=%d\n", (int)is_unc_path));
- +
- #ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- (void)get_token_authenticationid(GetCurrentThreadEffectiveToken(),
- &authenticationid);
- @@ -754,11 +805,57 @@ NPCancelConnection(
- pSharedMemory->NextAvailableIndex,
- pSharedMemory->NumberOfResourcesInUse));
- - for (Index = 0; Index < pSharedMemory->NextAvailableIndex; Index++)
- - {
- + for (Index = 0; Index < pSharedMemory->NextAvailableIndex; Index++) {
- pNetResource = &pSharedMemory->NetResources[Index];
- - if (pNetResource->InUse) {
- + if (!pNetResource->InUse)
- + continue;
- +
- + DbgP((L"Name '%s' EntryName '%s'\n",
- + lpName, pNetResource->LocalName));
- +
- + if (is_unc_path) {
- + LPWSTR unc_devname = NFS41NP_LOCALNAME_UNC_MARKER;
- +
- + if (
- +#ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- + /* Need exact match here, not |SYSTEM_LUID|! */
- + equal_luid(&authenticationid,
- + &pNetResource->MountAuthId) &&
- +#endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- + (((wcslen(unc_devname)+1) * sizeof(WCHAR)) ==
- + pNetResource->LocalNameLength) &&
- + (!wcscmp(unc_devname, pNetResource->LocalName)) &&
- + (((wcslen(lpName)+1) * sizeof(WCHAR)) ==
- + pNetResource->RemoteNameLength) &&
- + (!wcscmp(lpName, pNetResource->RemoteName))) {
- + ULONG CopyBytes;
- +
- + DbgP((L"NPCancelConnection: UNC Connection Found:\n"));
- +
- + CopyBytes = 0;
- +
- + Status = SendTo_NFS41Driver(IOCTL_NFS41_DELCONN,
- + pNetResource->ConnectionName,
- + pNetResource->ConnectionNameLength,
- + NULL,
- + &CopyBytes);
- +
- + if (Status != WN_SUCCESS) {
- + DbgP((L"SendToMiniRdr returned Status %lx\n",
- + Status));
- + break;
- + }
- +
- + pNetResource->InUse = FALSE;
- + pSharedMemory->NumberOfResourcesInUse--;
- +
- + if (Index+1 == pSharedMemory->NextAvailableIndex)
- + pSharedMemory->NextAvailableIndex--;
- + break;
- + }
- + }
- + else {
- if (
- #ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- /* Need exact match here, not |SYSTEM_LUID|! */
- @@ -774,7 +871,7 @@ NPCancelConnection(
- CopyBytes = 0;
- - Status = SendTo_NFS41Driver( IOCTL_NFS41_DELCONN,
- + Status = SendTo_NFS41Driver(IOCTL_NFS41_DELCONN,
- pNetResource->ConnectionName,
- pNetResource->ConnectionNameLength,
- NULL,
- @@ -787,7 +884,7 @@ NPCancelConnection(
- }
- if (DefineDosDevice(DDD_REMOVE_DEFINITION |
- - DDD_RAW_TARGET_PATH | DDD_EXACT_MATCH_ON_REMOVE,
- + DDD_RAW_TARGET_PATH | DDD_EXACT_MATCH_ON_REMOVE,
- lpName,
- pNetResource->ConnectionName) == FALSE) {
- DbgP((L"DefineDosDevice error: %d\n",
- @@ -803,12 +900,6 @@ NPCancelConnection(
- }
- break;
- }
- -
- - DbgP((L"Name '%s' EntryName '%s'\n",
- - lpName,pNetResource->LocalName));
- - DbgP((L"Name Length %d Entry Name Length %d\n",
- - pNetResource->LocalNameLength,
- - pNetResource->LocalName));
- }
- }
- @@ -820,6 +911,96 @@ out:
- return Status;
- }
- +static
- +DWORD is_unc_path_mounted(
- + __in LPWSTR lpRemoteName)
- +{
- + DWORD Status = 0;
- +
- + HANDLE hMutex, hMemory;
- + PNFS41NP_SHARED_MEMORY pSharedMemory;
- +#ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- + LUID authenticationid = { .LowPart = 0, .HighPart = 0L };
- +#endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- + LPWSTR lpLocalName = NFS41NP_LOCALNAME_UNC_MARKER;
- +
- + DbgP((L"--> is_unc_path_mounted(lpRemoteName='%s')\n", lpRemoteName));
- +
- +#ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- + (void)get_token_authenticationid(GetCurrentThreadEffectiveToken(),
- + &authenticationid);
- +#endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- +
- + Status = OpenSharedMemory(&hMutex,
- + &hMemory,
- + (PVOID)&pSharedMemory);
- + if (Status != WN_SUCCESS)
- + goto out;
- +
- + INT Index;
- + PNFS41NP_NETRESOURCE pNetResource;
- + PNFS41NP_NETRESOURCE foundNetResource = NULL;
- +#ifdef NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL
- + PNFS41NP_NETRESOURCE foundSystemLuidNetResource = NULL;
- +#endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- + Status = WN_NOT_CONNECTED;
- +
- + for (Index = 0; Index < pSharedMemory->NextAvailableIndex; Index++) {
- + pNetResource = &pSharedMemory->NetResources[Index];
- +
- + if (!pNetResource->InUse)
- + continue;
- +
- + if ((((wcslen(lpLocalName)+1)*sizeof(WCHAR)) ==
- + pNetResource->LocalNameLength) &&
- + (!wcscmp(lpLocalName, pNetResource->LocalName)) &&
- + (((wcslen(lpRemoteName)+1)*sizeof(WCHAR)) ==
- + pNetResource->RemoteNameLength) &&
- + (!wcscmp(lpRemoteName, pNetResource->RemoteName))) {
- +#ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- + if (equal_luid(&authenticationid,
- + &pNetResource->MountAuthId)) {
- + foundNetResource = pNetResource;
- + break;
- + }
- +#ifdef NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL
- + else if (equal_luid(&SystemLuid,
- + &pNetResource->MountAuthId)) {
- + /*
- + * Found netresource for user "SYSTEM", but
- + * continue searching |pSharedMemory->NetResources|
- + * for an exact match...
- + */
- + foundSystemLuidNetResource = pNetResource;
- + }
- +#endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- +#else /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- + foundNetResource = pNetResource;
- +#endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- + }
- + }
- +
- +#ifdef NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL
- + /*
- + * No exact match found ? Then fall-back to any match we found for
- + * user "SYSTEM"
- + */
- + if (foundNetResource == NULL) {
- + foundNetResource = foundSystemLuidNetResource;
- + }
- +#endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- +
- + if (foundNetResource) {
- + Status = WN_SUCCESS;
- + }
- +
- + CloseSharedMemory( &hMutex, &hMemory, (PVOID)&pSharedMemory);
- +out:
- + DbgP((L"<-- is_unc_path_mounted returns %d\n", (int)Status));
- +
- + return Status;
- +}
- +
- DWORD APIENTRY
- NPGetConnection(
- __in LPWSTR lpLocalName,
- @@ -836,6 +1017,12 @@ NPGetConnection(
- DbgP((L"--> NPGetConnection(lpLocalName='%s')\n", lpLocalName));
- + if (lpLocalName == NULL) {
- + lpLocalName = NFS41NP_LOCALNAME_UNC_MARKER;
- + DbgP((L"lpLocalName==NULL, "
- + "changed to " NFS41NP_LOCALNAME_UNC_MARKER L"\n"));
- + }
- +
- #ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- (void)get_token_authenticationid(GetCurrentThreadEffectiveToken(),
- &authenticationid);
- diff --git a/mount/mount.c b/mount/mount.c
- index ce8d94f..dd805de 100644
- --- a/mount/mount.c
- +++ b/mount/mount.c
- @@ -78,6 +78,7 @@ void PrintMountUsage(LPWSTR pProcess)
- {
- (void)fprintf(stderr,
- "Usage: %S [options] <drive letter|*> <hostname>:<path>\n"
- + "Usage: %S [options] <hostname>:<path>\n"
- "Usage: %S -d [options] <drive letter>\n"
- "Usage: %S\n"
- @@ -141,9 +142,11 @@ void PrintMountUsage(LPWSTR pProcess)
- "\tnfs_mount.exe -o sec=sys,rw '*' [fe80::21b:1bff:fec3:7713]://net_tmpfs2/test2\n"
- "\tnfs_mount.exe -o sec=sys,rw '*' nfs://[fe80::21b:1bff:fec3:7713]//net_tmpfs2/test2\n"
- "\tnfs_mount.exe -o sec=sys,rw S nfs://myhost1//dirwithspace/dir%%20space/test2\n"
- + "\tnfs_mount.exe -o sec=sys,rw nfs://myhost1//dirwithspace/dir%%20space/test2\n"
- "\tnfs_mount.exe -o sec=sys,rw S nfs://myhost1//dirwithspace/dir+space/test2\n"
- - "\tnfs_mount.exe -o sec=sys S nfs://myhost1//dirwithspace/dir+space/test2?rw=1\n",
- - pProcess, pProcess, pProcess,
- + "\tnfs_mount.exe -o sec=sys S nfs://myhost1//dirwithspace/dir+space/test2?rw=1\n"
- + "\tnfs_mount.exe -o sec=sys nfs://myhost1//dirwithspace/dir+space/test2?rw=1\n",
- + pProcess, pProcess, pProcess, pProcess,
- (int)NFS41_DRIVER_DEFAULT_CREATE_MODE);
- }
- @@ -166,7 +169,7 @@ int mount_main(int argc, wchar_t *argv[])
- {
- int i;
- DWORD result = NO_ERROR;
- - wchar_t szLocalName[] = L"C:\0";
- + wchar_t szLocalName[NFS41_SYS_MAX_PATH_LEN];
- LPWSTR pLocalName = NULL;
- LPWSTR pRemoteName = NULL;
- BOOL bUnmount = FALSE;
- @@ -363,11 +366,12 @@ opt_o_argv_i_again:
- goto out;
- }
- /* drive letter */
- - else if (pLocalName == NULL) {
- + else if ((!bUnmount) && (pLocalName == NULL) &&
- + (i == (argc-2)) && (wcslen(argv[i]) <= 2)) {
- pLocalName = argv[i];
- }
- /* remote path */
- - else if (pRemoteName == NULL) {
- + else if ((pRemoteName == NULL) && (i == (argc-1))) {
- pRemoteName = argv[i];
- }
- else {
- @@ -378,26 +382,21 @@ opt_o_argv_i_again:
- }
- /* validate local drive letter */
- - if (pLocalName == NULL)
- - {
- - result = ERROR_BAD_ARGUMENTS;
- - (void)fwprintf(stderr, L"Missing argument for drive letter.\n\n");
- - PrintMountUsage(argv[0]);
- - goto out_free;
- - }
- - if (FALSE == ParseDriveLetter(pLocalName, szLocalName))
- - {
- - result = ERROR_BAD_ARGUMENTS;
- - (void)fwprintf(stderr, L"Invalid drive letter '%s'. "
- - L"Expected 'C' or 'C:'.\n\n",
- - pLocalName);
- - PrintMountUsage(argv[0]);
- - goto out_free;
- + if (pLocalName) {
- + if (!ParseDriveLetter(pLocalName, szLocalName)) {
- + result = ERROR_BAD_ARGUMENTS;
- + (void)fwprintf(stderr, L"Invalid drive letter '%s'. "
- + L"Expected 'C' or 'C:'.\n\n",
- + pLocalName);
- + PrintMountUsage(argv[0]);
- + goto out_free;
- + }
- }
- if (bUnmount == TRUE) /* unmount */
- {
- - result = DoUnmount(szLocalName, bForceUnmount);
- + result = DoUnmount(pLocalName?szLocalName:pRemoteName,
- + bForceUnmount);
- if (result)
- PrintErrorMessage(result);
- }
- @@ -440,7 +439,9 @@ opt_o_argv_i_again:
- }
- }
- - result = DoMount(szLocalName, szRemoteName, szParsedRemoteName, bPersistent, &Options);
- + result = DoMount(pLocalName?szLocalName:NULL,
- + szRemoteName, szParsedRemoteName, bPersistent,
- + &Options);
- if (result)
- PrintErrorMessage(result);
- }
- @@ -977,47 +978,56 @@ static DWORD DoMount(
- RecursivePrintEaInformation((PFILE_FULL_EA_INFORMATION)pOptions->Buffer->Buffer);
- #endif /* DEBUG_MOUNT */
- - /* fail if the connection already exists */
- - dwLength = NFS41_SYS_MAX_PATH_LEN;
- - result = WNetGetConnection(pLocalName, (LPWSTR)szExisting, &dwLength);
- - if (result == NO_ERROR)
- - {
- - result = ERROR_ALREADY_ASSIGNED;
- - (void)fwprintf(stderr, L"Mount failed, drive '%s' is "
- - L"already assigned to '%s'.\n",
- - pLocalName, szExisting);
- + if (pLocalName) {
- + /* fail if the connection already exists */
- + dwLength = NFS41_SYS_MAX_PATH_LEN;
- + result = WNetGetConnection(pLocalName, (LPWSTR)szExisting, &dwLength);
- + if (result == NO_ERROR) {
- + result = ERROR_ALREADY_ASSIGNED;
- + (void)fwprintf(stderr, L"Mount failed, drive '%s' is "
- + L"already assigned to '%s'.\n",
- + pLocalName, szExisting);
- + return result;
- + }
- }
- - else
- - {
- - wchar_t szConnection[NFS41_SYS_MAX_PATH_LEN];
- - DWORD ConnectSize = NFS41_SYS_MAX_PATH_LEN, ConnectResult, Flags = 0;
- - ZeroMemory(&NetResource, sizeof(NETRESOURCE));
- - NetResource.dwType = RESOURCETYPE_DISK;
- - /* drive letter is chosen automatically if lpLocalName == NULL */
- + wchar_t szConnection[NFS41_SYS_MAX_PATH_LEN];
- + DWORD ConnectSize = NFS41_SYS_MAX_PATH_LEN;
- + DWORD ConnectResult;
- + DWORD Flags = 0;
- +
- + (void)memset(&NetResource, 0, sizeof(NETRESOURCE));
- + NetResource.dwType = RESOURCETYPE_DISK;
- + if (pLocalName) {
- + /* drive letter is chosen automatically if lpLocalName == "*" */
- NetResource.lpLocalName = *pLocalName == L'*' ? NULL : pLocalName;
- - NetResource.lpRemoteName = pRemoteName;
- - /* ignore other network providers */
- - NetResource.lpProvider = NFS41_PROVIDER_NAME_U;
- - /* pass mount options via lpComment */
- - if (pOptions->Buffer->Length) {
- - NetResource.lpComment = (LPWSTR)pOptions->Buffer;
- - }
- + }
- + else {
- + NetResource.lpLocalName = NULL;
- + }
- + NetResource.lpRemoteName = pRemoteName;
- + /* ignore other network providers */
- + NetResource.lpProvider = NFS41_PROVIDER_NAME_U;
- + /* pass mount options via lpComment */
- + if (pOptions->Buffer->Length) {
- + NetResource.lpComment = (LPWSTR)pOptions->Buffer;
- + }
- - if (bPersistent)
- - Flags |= CONNECT_UPDATE_PROFILE;
- + if (bPersistent)
- + Flags |= CONNECT_UPDATE_PROFILE;
- - result = WNetUseConnection(NULL,
- - &NetResource, NULL, NULL, Flags,
- - szConnection, &ConnectSize, &ConnectResult);
- -
- - if (result == NO_ERROR)
- - (void)wprintf(L"Successfully mounted '%s' to drive '%s'\n",
- - pParsedRemoteName, szConnection);
- - else
- - (void)fwprintf(stderr, L"WNetUseConnection('%s', '%s') "
- - L"failed with error code %u.\n",
- - pLocalName, pRemoteName, result);
- + result = WNetUseConnection(NULL,
- + &NetResource, NULL, NULL, Flags,
- + szConnection, &ConnectSize, &ConnectResult);
- +
- + if (result == NO_ERROR) {
- + (void)wprintf(L"Successfully mounted '%s' to drive '%s'\n",
- + pParsedRemoteName, szConnection);
- + }
- + else {
- + (void)fwprintf(stderr, L"WNetUseConnection('%s', '%s') "
- + L"failed with error code %u.\n",
- + pLocalName, pRemoteName, result);
- }
- return result;
- @@ -1050,26 +1060,32 @@ static DWORD DoUnmount(
- return result;
- }
- +#define ISWDOSLETTER(c) \
- + ( \
- + (((c) >= L'a') && ((c) <= L'z')) || \
- + (((c) >= L'A') && ((c) <= L'Z')) \
- + )
- +
- static BOOL ParseDriveLetter(
- IN LPWSTR pArg,
- - OUT PTCH pDriveLetter)
- + OUT PWCH pDriveLetter)
- {
- /* accept 'C' or 'C:' */
- - switch (wcslen(pArg))
- - {
- - case 2:
- - if (pArg[1] != L':')
- - return FALSE;
- - /* break intentionally missing */
- - case 1:
- - if (iswlower(*pArg))
- - *pArg = (wchar_t)towupper(*pArg);
- - else if (!iswupper(*pArg) && *pArg != L'*')
- - return FALSE;
- -
- - *pDriveLetter = *pArg;
- - return TRUE;
- + switch (wcslen(pArg)) {
- + case 2:
- + if (pArg[1] != L':')
- + return FALSE;
- + /* fall-through */
- + case 1:
- + if (!ISWDOSLETTER(*pArg) && (*pArg != L'*'))
- + return FALSE;
- +
- + pDriveLetter[0] = towupper(*pArg);
- + pDriveLetter[1] = L':';
- + pDriveLetter[2] = L'\0';
- + return TRUE;
- }
- +
- return FALSE;
- }
- --
- 2.45.1
- From 1d5acbedbe63f43fc705c0d58f2d0f211a3735ad Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Fri, 4 Oct 2024 16:47:28 +0200
- Subject: [PATCH 5/5] dll: Minor code cleanup
- Minor code cleanup in nfs41_np
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- dll/nfs41_np.c | 64 +++++++++++++++++++++++++-------------------------
- 1 file changed, 32 insertions(+), 32 deletions(-)
- diff --git a/dll/nfs41_np.c b/dll/nfs41_np.c
- index 490c0fa..07f2984 100644
- --- a/dll/nfs41_np.c
- +++ b/dll/nfs41_np.c
- @@ -256,7 +256,7 @@ static DWORD StoreConnectionInfo(
- IN LPCWSTR LocalName,
- IN LPCWSTR ConnectionName,
- IN USHORT ConnectionNameLength,
- - IN LPNETRESOURCE lpNetResource)
- + IN LPNETRESOURCEW lpNetResource)
- {
- DWORD status;
- HANDLE hMutex, hMemory;
- @@ -499,7 +499,7 @@ NPPasswordChangeNotify (
- DWORD APIENTRY
- NPAddConnection(
- - __in LPNETRESOURCE lpNetResource,
- + __in LPNETRESOURCEW lpNetResource,
- __in_opt LPWSTR lpPassword,
- __in_opt LPWSTR lpUserName )
- {
- @@ -510,7 +510,7 @@ NPAddConnection(
- DWORD APIENTRY
- NPAddConnection3(
- __in HWND hwndOwner,
- - __in LPNETRESOURCE lpNetResource,
- + __in LPNETRESOURCEW lpNetResource,
- __in_opt LPWSTR lpPassword,
- __in_opt LPWSTR lpUserName,
- __in DWORD dwFlags)
- @@ -1042,35 +1042,35 @@ NPGetConnection(
- #endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- Status = WN_NOT_CONNECTED;
- - for (Index = 0; Index < pSharedMemory->NextAvailableIndex; Index++)
- - {
- + for (Index = 0; Index < pSharedMemory->NextAvailableIndex; Index++) {
- pNetResource = &pSharedMemory->NetResources[Index];
- - if (pNetResource->InUse) {
- - if ((((wcslen(lpLocalName)+1)*sizeof(WCHAR)) ==
- - pNetResource->LocalNameLength) &&
- - (!wcscmp(lpLocalName, pNetResource->LocalName))) {
- + if (!pNetResource->InUse)
- + break;
- +
- + if ((((wcslen(lpLocalName)+1)*sizeof(WCHAR)) ==
- + pNetResource->LocalNameLength) &&
- + (!wcscmp(lpLocalName, pNetResource->LocalName))) {
- #ifdef NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE
- - if (equal_luid(&authenticationid,
- - &pNetResource->MountAuthId)) {
- - foundNetResource = pNetResource;
- - break;
- - }
- + if (equal_luid(&authenticationid,
- + &pNetResource->MountAuthId)) {
- + foundNetResource = pNetResource;
- + break;
- + }
- #ifdef NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL
- - else if (equal_luid(&SystemLuid,
- - &pNetResource->MountAuthId)) {
- - /*
- - * Found netresource for user "SYSTEM", but
- - * continue searching |pSharedMemory->NetResources|
- - * for an exact match...
- - */
- - foundSystemLuidNetResource = pNetResource;
- - }
- + else if (equal_luid(&SystemLuid,
- + &pNetResource->MountAuthId)) {
- + /*
- + * Found netresource for user "SYSTEM", but
- + * continue searching |pSharedMemory->NetResources|
- + * for an exact match...
- + */
- + foundSystemLuidNetResource = pNetResource;
- + }
- #endif /* NFS41_DRIVER_SYSTEM_LUID_MOUNTS_ARE_GLOBAL */
- #else /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- - foundNetResource = pNetResource;
- + foundNetResource = pNetResource;
- #endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- - }
- }
- }
- @@ -1110,7 +1110,7 @@ NPOpenEnum(
- DWORD dwScope,
- DWORD dwType,
- DWORD dwUsage,
- - LPNETRESOURCE lpNetResource,
- + LPNETRESOURCEW lpNetResource,
- LPHANDLE lphEnum)
- {
- DWORD Status;
- @@ -1158,7 +1158,7 @@ NPEnumResource(
- {
- DWORD Status = WN_SUCCESS;
- ULONG EntriesCopied;
- - LPNETRESOURCE pNetResource;
- + LPNETRESOURCEW pNetResource;
- ULONG SpaceNeeded = 0;
- ULONG SpaceAvailable;
- PWCHAR StringZone;
- @@ -1179,7 +1179,7 @@ NPEnumResource(
- &authenticationid);
- #endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
- - pNetResource = (LPNETRESOURCE) lpBuffer;
- + pNetResource = (LPNETRESOURCEW)lpBuffer;
- SpaceAvailable = *lpBufferSize;
- EntriesCopied = 0;
- StringZone = (PWCHAR) ((PBYTE)lpBuffer + *lpBufferSize);
- @@ -1289,9 +1289,9 @@ NPCloseEnum(
- DWORD APIENTRY
- NPGetResourceParent(
- - LPNETRESOURCE lpNetResource,
- - LPVOID lpBuffer,
- - LPDWORD lpBufferSize )
- + LPNETRESOURCEW lpNetResource,
- + LPVOID lpBuffer,
- + LPDWORD lpBufferSize )
- {
- DbgP((L"NPGetResourceParent: WN_NOT_SUPPORTED\n"));
- return WN_NOT_SUPPORTED;
- @@ -1299,7 +1299,7 @@ NPGetResourceParent(
- DWORD APIENTRY
- NPGetResourceInformation(
- - __in LPNETRESOURCE lpNetResource,
- + __in LPNETRESOURCEW lpNetResource,
- __out_bcount(*lpBufferSize) LPVOID lpBuffer,
- __inout LPDWORD lpBufferSize,
- __deref_out LPWSTR *lplpSystem )
- --
- 2.45.1
msnfs41client: Patches for UNC-path-only mounts, cleanup+misc, 2024-10-04
Posted by Anonymous on Fri 4th Oct 2024 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.