pastebin - collaborative debugging tool
rovema.kpaste.net RSS


ms-nfsv41-client "port" option prototype
Posted by Anonymous on Mon 4th Sep 2023 00:47
raw | new post

  1. diff --git a/daemon/mount.c b/daemon/mount.c
  2. index 55345f6..6489558 100644
  3. --- a/daemon/mount.c
  4. +++ b/daemon/mount.c
  5. @@ -37,6 +37,8 @@ static int parse_mount(unsigned char *buffer, uint32_t length, nfs41_upcall *upc
  6.  
  7.      status = get_name(&buffer, &length, &args->hostname);
  8.      if(status) goto out;
  9. +    status = safe_read(&buffer, &length, &args->port, sizeof(DWORD));
  10. +    if (status) goto out;
  11.      status = get_name(&buffer, &length, &args->path);
  12.      if(status) goto out;
  13.      status = safe_read(&buffer, &length, &args->sec_flavor, sizeof(DWORD));
  14. @@ -46,8 +48,8 @@ static int parse_mount(unsigned char *buffer, uint32_t length, nfs41_upcall *upc
  15.      status = safe_read(&buffer, &length, &args->wsize, sizeof(DWORD));
  16.      if (status) goto out;
  17.  
  18. -    dprintf(1, "parsing NFS14_MOUNT: srv_name=%s root=%s sec_flavor=%s "
  19. -        "rsize=%d wsize=%d\n", args->hostname, args->path,
  20. +    dprintf(1, "parsing NFS14_MOUNT: srv_name=%s port=%d root=%s sec_flavor=%s "
  21. +        "rsize=%d wsize=%d\n", args->hostname, args->port, args->path,
  22.          secflavorop2name(args->sec_flavor), args->rsize, args->wsize);
  23.  out:
  24.      return status;
  25. @@ -64,7 +66,7 @@ static int handle_mount(nfs41_upcall *upcall)
  26.      nfs41_path_fh file;
  27.  
  28.      // resolve hostname,port
  29. -    status = nfs41_server_resolve(args->hostname, 2049, &addrs);
  30. +    status = nfs41_server_resolve(args->hostname, args->port, &addrs);
  31.      if (status) {
  32.          eprintf("nfs41_server_resolve() failed with %d\n", status);
  33.          goto out;
  34. diff --git a/daemon/upcall.h b/daemon/upcall.h
  35. index fd26353..f9cb95e 100644
  36. --- a/daemon/upcall.h
  37. +++ b/daemon/upcall.h
  38. @@ -30,6 +30,7 @@
  39.  /* structures for upcall arguments */
  40.  typedef struct __mount_upcall_args {
  41.      const char *hostname;
  42. +    DWORD      port;
  43.      const char *path;
  44.      DWORD       sec_flavor;
  45.      DWORD       rsize;
  46. diff --git a/mount/mount.c b/mount/mount.c
  47. index 4615fc9..929a90d 100644
  48. --- a/mount/mount.c
  49. +++ b/mount/mount.c
  50. @@ -61,6 +61,7 @@ static VOID PrintUsage(LPTSTR pProcess)
  51.          TEXT("\t-o <comma-separated mount options>\n")
  52.          TEXT("Mount options:\n")
  53.          TEXT("\tro\tmount as read-only\n")
  54. +        TEXT("\tport=#\tTCP port for NFS (defaults to 2049)\n")
  55.          TEXT("\trsize=#\tread buffer size in bytes\n")
  56.          TEXT("\twsize=#\twrite buffer size in bytes\n")
  57.          TEXT("\tsec=krb5:krb5i:krb5p\tspecify gss security flavor\n")
  58. diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
  59. index 187894d..cb96009 100644
  60. --- a/sys/nfs41_driver.c
  61. +++ b/sys/nfs41_driver.c
  62. @@ -328,6 +328,7 @@ typedef struct _NFS41_MOUNT_CONFIG {
  63.      BOOLEAN nocache;
  64.      WCHAR srv_buffer[SERVER_NAME_BUFFER_SIZE];
  65.      UNICODE_STRING SrvName;
  66. +    DWORD Port;
  67.      WCHAR mntpt_buffer[MAX_PATH];
  68.      UNICODE_STRING MntPt;
  69.      WCHAR sec_flavor[MAX_SEC_FLAVOR_LEN];
  70. @@ -2566,14 +2567,15 @@ NTSTATUS nfs41_mount(
  71.  
  72.  #ifdef DEBUG_MOUNT
  73.      DbgEn();
  74. -    DbgP("Server Name %wZ Mount Point %wZ SecFlavor %d\n",
  75. -        &config->SrvName, &config->MntPt, sec_flavor);
  76. +    DbgP("Server Name %wZ Port %d Mount Point %wZ SecFlavor %d\n",
  77. +        &config->SrvName, &config->Port, &config->MntPt, sec_flavor);
  78.  #endif
  79.      status = nfs41_UpcallCreate(NFS41_MOUNT, NULL, *session,
  80.          INVALID_HANDLE_VALUE, *version, &config->MntPt, &entry);
  81.      if (status) goto out;
  82.  
  83.      entry->u.Mount.srv_name = &config->SrvName;
  84. +    entry->u.Mount.port = config->Port;
  85.      entry->u.Mount.root = &config->MntPt;
  86.      entry->u.Mount.rsize = config->ReadSize;
  87.      entry->u.Mount.wsize = config->WriteSize;
  88. @@ -2724,6 +2726,11 @@ NTSTATUS nfs41_MountConfig_ParseOptions(
  89.              else
  90.                  RtlCopyUnicodeString(&Config->SrvName, &usValue);
  91.          }
  92. +        else if (wcsncmp(L"port", Name, NameLen) == 0) {
  93. +            status = nfs41_MountConfig_ParseDword(Option, &usValue,
  94. +                &Config->Port, 1,
  95. +                65535);
  96. +        }
  97.          else if (wcsncmp(L"mntpt", Name, NameLen) == 0) {
  98.              if (usValue.Length > Config->MntPt.MaximumLength)
  99.                  status = STATUS_NAME_TOO_LONG;

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at