pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for NFSv4.2 MinorProtocolversion in FileRemoteProtocolInfo+winfsinfo support for FileRemoteProtocolInfo, 2025-02-11
Posted by Anonymous on Tue 11th Feb 2025 01:51
raw | new post

  1. From 8187c3749c8875e43bc6b8ae0d50283f590273aa Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Tue, 11 Feb 2025 02:11:02 +0100
  4. Subject: [PATCH 1/2] daemon,include,sys: QueryInfo
  5.  FileRemoteProtocolInformation should show the correct NFSv4.x minor version
  6.  
  7. QueryInfo FileRemoteProtocolInformation should show the correct
  8. NFSv4.x minor version in the
  9. |FILE_REMOTE_PROTOCOL_INFORMATION.ProtocolMinorVersion| field (e.g.
  10. |2| for NFSv4.2 and |1| for NFSv4.1).
  11.  
  12. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  13. ---
  14. daemon/fileinfoutil.c   | 24 ++++++++++++++++++++++++
  15.  daemon/getattr.c        | 20 +++++++++++++++++++-
  16.  daemon/upcall.h         |  4 +++-
  17.  daemon/util.h           |  7 ++++++-
  18.  include/from_kernel.h   | 39 ++++++++++++++++++++++++++++++++++++++-
  19.  sys/nfs41sys_fileinfo.c | 35 +++--------------------------------
  20.  6 files changed, 93 insertions(+), 36 deletions(-)
  21.  
  22. diff --git a/daemon/fileinfoutil.c b/daemon/fileinfoutil.c
  23. index 93fbde5..97eff4f 100644
  24. --- a/daemon/fileinfoutil.c
  25. +++ b/daemon/fileinfoutil.c
  26. @@ -200,6 +200,30 @@ void nfs_to_network_openinfo(
  27.          nfs_file_info_to_attributes(superblock, info);
  28.  }
  29.  
  30. +void nfs_to_remote_protocol_info(
  31. +    IN nfs41_open_state *state,
  32. +    OUT PFILE_REMOTE_PROTOCOL_INFORMATION restrict rpi_out)
  33. +{
  34. +    (void)memset(rpi_out, 0, sizeof(FILE_REMOTE_PROTOCOL_INFORMATION));
  35. +
  36. +    rpi_out->StructureVersion = 1;
  37. +    rpi_out->StructureSize = sizeof(FILE_REMOTE_PROTOCOL_INFORMATION);
  38. +    rpi_out->Protocol = WNNC_NET_RDR2SAMPLE; /* FIXME! */
  39. +
  40. +    /* ToDo: Add pNFS info */
  41. +    rpi_out->ProtocolMajorVersion = 4;
  42. +    rpi_out->ProtocolMinorVersion =
  43. +        (USHORT)state->session->client->root->nfsminorvers;
  44. +    rpi_out->ProtocolRevision = 0;
  45. +
  46. +    /*
  47. +     * FIXME: |FILE_REMOTE_PROTOCOL_INFORMATION.Flags| should contain
  48. +     * |REMOTE_PROTOCOL_FLAG_PRIVACY| (krb5p) and
  49. +     * |REMOTE_PROTOCOL_FLAG_INTEGRITY| (krb5i) in case of Krb5 auth
  50. +     */
  51. +    rpi_out->Flags = 0;
  52. +}
  53. +
  54.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  55.  void nfs_to_stat_info(
  56.      IN const char *restrict name,
  57. diff --git a/daemon/getattr.c b/daemon/getattr.c
  58. index 9be46be..17238a5 100644
  59. --- a/daemon/getattr.c
  60. +++ b/daemon/getattr.c
  61. @@ -1,5 +1,6 @@
  62.  /* NFSv4.1 client for Windows
  63. - * Copyright (C) 2012 The Regents of the University of Michigan
  64. + * Copyright (C) 2012 The Regents of the University of Michigan
  65. + * Copyright (C) 2023-2025 Roland Mainz <roland.mainz@nrubsig.org>
  66.   *
  67.   * Olga Kornievskaia <aglo@umich.edu>
  68.   * Casey Bodley <cbodley@umich.edu>
  69. @@ -209,6 +210,15 @@ static int handle_getattr(void *daemon_context, nfs41_upcall *upcall)
  70.              &info,
  71.              &args->network_info);
  72.          break;
  73. +    case FileRemoteProtocolInformation:
  74. +        /*
  75. +         * |FileRemoteProtocolInformation| does not use |info|, but
  76. +         * we have to do the |nfs41_cached_getattr()| anyway to fill
  77. +         * out |info.change| to return the proper |args->ctime|
  78. +         */
  79. +        nfs_to_remote_protocol_info(state,
  80. +            &args->remote_protocol_info);
  81. +        break;
  82.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  83.      case FileStatInformation:
  84.          nfs_to_stat_info(state->file.name.name,
  85. @@ -278,6 +288,14 @@ static int marshall_getattr(unsigned char *buffer, uint32_t *length, nfs41_upcal
  86.          status = safe_write(&buffer, length, &args->network_info, info_len);
  87.          if (status) goto out;
  88.          break;
  89. +    case FileRemoteProtocolInformation:
  90. +        info_len = sizeof(args->remote_protocol_info);
  91. +        status = safe_write(&buffer, length, &info_len, sizeof(info_len));
  92. +        if (status) goto out;
  93. +        status = safe_write(&buffer, length,
  94. +            &args->remote_protocol_info, info_len);
  95. +        if (status) goto out;
  96. +        break;
  97.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  98.      case FileStatInformation:
  99.          info_len = sizeof(args->stat_info);
  100. diff --git a/daemon/upcall.h b/daemon/upcall.h
  101. index 26878f1..59ad8ea 100644
  102. --- a/daemon/upcall.h
  103. +++ b/daemon/upcall.h
  104. @@ -1,5 +1,6 @@
  105.  /* NFSv4.1 client for Windows
  106. - * Copyright (C) 2012 The Regents of the University of Michigan
  107. + * Copyright (C) 2012 The Regents of the University of Michigan
  108. + * Copyright (C) 2023-2025 Roland Mainz <roland.mainz@nrubsig.org>
  109.   *
  110.   * Olga Kornievskaia <aglo@umich.edu>
  111.   * Casey Bodley <cbodley@umich.edu>
  112. @@ -105,6 +106,7 @@ typedef struct __getattr_upcall_args {
  113.      FILE_ATTRIBUTE_TAG_INFO tag_info;
  114.      FILE_INTERNAL_INFORMATION intr_info;
  115.      FILE_NETWORK_OPEN_INFORMATION network_info;
  116. +    FILE_REMOTE_PROTOCOL_INFORMATION remote_protocol_info;
  117.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  118.      FILE_STAT_INFORMATION stat_info;
  119.      FILE_STAT_LX_INFORMATION stat_lx_info;
  120. diff --git a/daemon/util.h b/daemon/util.h
  121. index 3325a3a..05ea0d8 100644
  122. --- a/daemon/util.h
  123. +++ b/daemon/util.h
  124. @@ -1,5 +1,6 @@
  125.  /* NFSv4.1 client for Windows
  126. - * Copyright (C) 2012 The Regents of the University of Michigan
  127. + * Copyright (C) 2012 The Regents of the University of Michigan
  128. + * Copyright (C) 2023-2025 Roland Mainz <roland.mainz@nrubsig.org>
  129.   *
  130.   * Olga Kornievskaia <aglo@umich.edu>
  131.   * Casey Bodley <cbodley@umich.edu>
  132. @@ -192,6 +193,10 @@ void nfs_to_network_openinfo(
  133.      IN const nfs41_superblock *restrict superblock,
  134.      IN const nfs41_file_info *restrict info,
  135.      OUT PFILE_NETWORK_OPEN_INFORMATION restrict std_out);
  136. +typedef struct __nfs41_open_state nfs41_open_state;
  137. +void nfs_to_remote_protocol_info(
  138. +    IN nfs41_open_state *state,
  139. +    OUT PFILE_REMOTE_PROTOCOL_INFORMATION restrict rpi_out);
  140.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  141.  void nfs_to_stat_info(
  142.      IN const char *restrict name,
  143. diff --git a/include/from_kernel.h b/include/from_kernel.h
  144. index c750239..85cacce 100644
  145. --- a/include/from_kernel.h
  146. +++ b/include/from_kernel.h
  147. @@ -1,6 +1,6 @@
  148.  /* NFSv4.1 client for Windows
  149.   * Copyright (C) 2012 The Regents of the University of Michigan
  150. - * Copyright (C) 2023-2024 Roland Mainz <roland.mainz@nrubsig.org>
  151. + * Copyright (C) 2023-2025 Roland Mainz <roland.mainz@nrubsig.org>
  152.   *
  153.   * Olga Kornievskaia <aglo@umich.edu>
  154.   * Casey Bodley <cbodley@umich.edu>
  155. @@ -252,6 +252,43 @@ typedef struct _FILE_NETWORK_OPEN_INFORMATION {
  156.      ULONG FileAttributes;
  157.  } FILE_NETWORK_OPEN_INFORMATION, *PFILE_NETWORK_OPEN_INFORMATION;
  158.  
  159. +#define REMOTE_PROTOCOL_FLAG_LOOPBACK           0x00000001
  160. +#define REMOTE_PROTOCOL_FLAG_OFFLINE            0x00000002
  161. +#define REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE  0x00000004
  162. +#define REMOTE_PROTOCOL_FLAG_PRIVACY            0x00000008
  163. +#define REMOTE_PROTOCOL_FLAG_INTEGRITY          0x00000010
  164. +#define REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH        0x00000020
  165. +
  166. +/*
  167. + * Note: |struct _FILE_REMOTE_PROTOCOL_INFORMATION| must be identical
  168. + * to the Win32 |struct FILE_REMOTE_PROTOCOL_INFO|
  169. + */
  170. +typedef struct _FILE_REMOTE_PROTOCOL_INFORMATION
  171. +{
  172. +    USHORT  StructureVersion;
  173. +    USHORT  StructureSize;
  174. +    ULONG   Protocol; /* |WNNC_NET_*| defines */
  175. +    USHORT  ProtocolMajorVersion;
  176. +    USHORT  ProtocolMinorVersion;
  177. +    USHORT  ProtocolRevision;
  178. +    USHORT  Reserved;
  179. +    ULONG   Flags;
  180. +
  181. +    struct {
  182. +        ULONG Reserved[8];
  183. +    } GenericReserved;
  184. +
  185. +#if (_WIN32_WINNT < _WIN32_WINNT_WIN8)
  186. +    struct {
  187. +        ULONG Reserved[16];
  188. +    } ProtocolSpecificReserved;
  189. +#else
  190. +    union {
  191. +        ULONG Reserved[16];
  192. +    } ProtocolSpecific;
  193. +#endif /* (_WIN32_WINNT < _WIN32_WINNT_WIN8) */
  194. +} FILE_REMOTE_PROTOCOL_INFORMATION, *PFILE_REMOTE_PROTOCOL_INFORMATION;
  195. +
  196.  #ifndef LX_FILE_METADATA_HAS_UID
  197.  typedef struct _FILE_STAT_INFORMATION {
  198.      LARGE_INTEGER FileId;
  199. diff --git a/sys/nfs41sys_fileinfo.c b/sys/nfs41sys_fileinfo.c
  200. index dae459d..f6457e5 100644
  201. --- a/sys/nfs41sys_fileinfo.c
  202. +++ b/sys/nfs41sys_fileinfo.c
  203. @@ -1,6 +1,6 @@
  204.  /* NFSv4.1 client for Windows
  205.   * Copyright (C) 2012 The Regents of the University of Michigan
  206. - * Copyright (C) 2023-2024 Roland Mainz <roland.mainz@nrubsig.org>
  207. + * Copyright (C) 2023-2025 Roland Mainz <roland.mainz@nrubsig.org>
  208.   *
  209.   * Olga Kornievskaia <aglo@umich.edu>
  210.   * Casey Bodley <cbodley@umich.edu>
  211. @@ -237,37 +237,6 @@ NTSTATUS nfs41_QueryFileInformation(
  212.          status = STATUS_SUCCESS;
  213.          goto out;
  214.      }
  215. -    case FileRemoteProtocolInformation:
  216. -    {
  217. -        if (RxContext->Info.LengthRemaining <
  218. -            sizeof(FILE_REMOTE_PROTOCOL_INFORMATION)) {
  219. -            print_error("nfs41_QueryFileInformation: "
  220. -                "FILE_REMOTE_PROTOCOL_INFORMATION buffer too small\n");
  221. -            status = STATUS_BUFFER_TOO_SMALL;
  222. -            goto out;
  223. -        }
  224. -
  225. -        PFILE_REMOTE_PROTOCOL_INFORMATION info =
  226. -            (PFILE_REMOTE_PROTOCOL_INFORMATION)RxContext->Info.Buffer;
  227. -
  228. -        (void)RtlZeroMemory(info,
  229. -            sizeof(FILE_REMOTE_PROTOCOL_INFORMATION));
  230. -        info->StructureVersion = 1;
  231. -        info->StructureSize = sizeof(FILE_REMOTE_PROTOCOL_INFORMATION);
  232. -        info->Protocol = WNNC_NET_RDR2SAMPLE; /* FIXME! */
  233. -        /*
  234. -         * ToDo: If we add NFSv4.1/NFSv4.2 protocol negotiation, then
  235. -         * we need to call the userland daemon to return the correct
  236. -         * protocol minor version
  237. -         */
  238. -        info->ProtocolMajorVersion = 4;
  239. -        info->ProtocolMinorVersion = 1;
  240. -        info->ProtocolRevision = 0;
  241. -        RxContext->Info.LengthRemaining -=
  242. -            sizeof(FILE_REMOTE_PROTOCOL_INFORMATION);
  243. -        status = STATUS_SUCCESS;
  244. -        goto out;
  245. -    }
  246.      case FileCaseSensitiveInformation:
  247.      {
  248.          if (RxContext->Info.LengthRemaining <
  249. @@ -306,6 +275,7 @@ NTSTATUS nfs41_QueryFileInformation(
  250.      case FileInternalInformation:
  251.      case FileAttributeTagInformation:
  252.      case FileNetworkOpenInformation:
  253. +    case FileRemoteProtocolInformation:
  254.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  255.      case FileStatInformation:
  256.      case FileStatLxInformation:
  257. @@ -401,6 +371,7 @@ NTSTATUS nfs41_QueryFileInformation(
  258.  #endif
  259.              break;
  260.          case FileNetworkOpenInformation:
  261. +        case FileRemoteProtocolInformation:
  262.          case FileInternalInformation:
  263.          case FileAttributeTagInformation:
  264.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  265. --
  266. 2.45.1
  267.  
  268. From 5f3ea20553caa20e6d9111081630aa23869ee4e2 Mon Sep 17 00:00:00 2001
  269. From: Roland Mainz <roland.mainz@nrubsig.org>
  270. Date: Tue, 11 Feb 2025 02:16:04 +0100
  271. Subject: [PATCH 2/2] tests: winfsinfo: Add support for QueryInfo
  272.  FileRemoteProtocolInformation
  273.  
  274. winfsinfo: Add support for QueryInfo FileRemoteProtocolInformation
  275.  
  276. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  277. ---
  278. tests/winfsinfo1/winfsinfo.c | 124 ++++++++++++++++++++++++++++++++++-
  279.  1 file changed, 123 insertions(+), 1 deletion(-)
  280.  
  281. diff --git a/tests/winfsinfo1/winfsinfo.c b/tests/winfsinfo1/winfsinfo.c
  282. index e9c098f..3a6c26a 100644
  283. --- a/tests/winfsinfo1/winfsinfo.c
  284. +++ b/tests/winfsinfo1/winfsinfo.c
  285. @@ -851,6 +851,124 @@ done:
  286.      return res;
  287.  }
  288.  
  289. +static
  290. +bool get_file_remote_protocol_info(const char *progname, const char *filename)
  291. +{
  292. +    int res = EXIT_FAILURE;
  293. +    bool ok;
  294. +    FILE_REMOTE_PROTOCOL_INFO frpi;
  295. +    int i;
  296. +    (void)memset(&frpi, 0, sizeof(frpi));
  297. +
  298. +    HANDLE fileHandle = CreateFileA(filename,
  299. +        GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
  300. +        FILE_FLAG_BACKUP_SEMANTICS, NULL);
  301. +    if (fileHandle == INVALID_HANDLE_VALUE) {
  302. +        (void)fprintf(stderr,
  303. +            "%s: Error opening file '%s'. Last error was %d.\n",
  304. +            progname,
  305. +            filename,
  306. +            (int)GetLastError());
  307. +        return EXIT_FAILURE;
  308. +    }
  309. +
  310. +    ok = GetFileInformationByHandleEx(fileHandle,
  311. +        FileRemoteProtocolInfo, &frpi, sizeof(frpi));
  312. +
  313. +    if (!ok) {
  314. +        (void)fprintf(stderr, "%s: GetFileInformationByHandleEx() "
  315. +            "error. GetLastError()==%d.\n",
  316. +            progname,
  317. +            (int)GetLastError());
  318. +        res = EXIT_FAILURE;
  319. +        goto done;
  320. +    }
  321. +
  322. +    (void)printf("(\n");
  323. +    (void)printf("\tfilename='%s'\n", filename);
  324. +
  325. +    (void)printf("\tStructureVersion=%u\n",
  326. +        (unsigned int)frpi.StructureVersion);
  327. +    (void)printf("\tStructureSize=%u\n",
  328. +        (unsigned int)frpi.StructureSize);
  329. +    (void)printf("\tProtocol=%ld\n",
  330. +        (long)frpi.Protocol);
  331. +    (void)printf("\tProtocolMajorVersion=%u\n",
  332. +        (unsigned int)frpi.ProtocolMajorVersion);
  333. +    (void)printf("\tProtocolMinorVersion=%u\n",
  334. +        (unsigned int)frpi.ProtocolMinorVersion);
  335. +    (void)printf("\tProtocolRevision=%u\n",
  336. +        (unsigned int)frpi.ProtocolRevision);
  337. +    (void)printf("\tReserved=0x%x\n",
  338. +        (unsigned int)frpi.Reserved);
  339. +
  340. +    (void)printf("\ttypeset -a Flags=(\n");
  341. +
  342. +#define TESTREMOTEPROTOCOLFLAG(s) \
  343. +    if (frpi.Flags & (s)) { \
  344. +        (void)puts("\t\t"#s); \
  345. +        frpi.Flags &= ~(s); \
  346. +    }
  347. +
  348. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_LOOPBACK);
  349. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_OFFLINE);
  350. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE);
  351. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_PRIVACY);
  352. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_INTEGRITY);
  353. +    TESTREMOTEPROTOCOLFLAG(REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH);
  354. +
  355. +    (void)printf("\t)\n");
  356. +
  357. +    /*
  358. +     * print any leftover flags not covered by
  359. +     * |TESTREMOTEPROTOCOLFLAG()| above
  360. +     */
  361. +    if (frpi.Flags) {
  362. +        (void)printf("\tattr=0x%lx\n", (long)frpi.Flags);
  363. +    }
  364. +
  365. +    /* GenericReserved */
  366. +    (void)printf("\tcompound GenericReserved=(\n");
  367. +    (void)printf("\t\ttypeset -a Reserved=(\n");
  368. +    for (i=0 ; i < 8 ; i++) {
  369. +        (void)printf("\t\t\t[%d]=%lx\n",
  370. +            i,
  371. +            (long)frpi.GenericReserved.Reserved[i]);
  372. +    }
  373. +    (void)printf("\t\t)\n");
  374. +    (void)printf("\t)\n");
  375. +
  376. +#if (_WIN32_WINNT < _WIN32_WINNT_WIN8)
  377. +    /* ProtocolSpecificReserved */
  378. +    (void)printf("\tcompound ProtocolSpecificReserved=(\n");
  379. +    (void)printf("\t\ttypeset -a Reserved=(\n");
  380. +    for (i=0 ; i < 16 ; i++) {
  381. +        (void)printf("\t\t\t[%d]=%lx\n",
  382. +            i,
  383. +            (long)frpi.ProtocolSpecificReserved.Reserved[i]);
  384. +    }
  385. +    (void)printf("\t\t)\n");
  386. +    (void)printf("\t)\n");
  387. +#else
  388. +    /* ProtocolSpecific */
  389. +    (void)printf("\tcompound ProtocolSpecific=(\n");
  390. +    (void)printf("\t\ttypeset -a Reserved=(\n");
  391. +    for (i=0 ; i < 16 ; i++) {
  392. +        (void)printf("\t\t\t[%d]=%lx\n",
  393. +            i,
  394. +            (long)frpi.ProtocolSpecific.Reserved[i]);
  395. +    }
  396. +    (void)printf("\t\t)\n");
  397. +    (void)printf("\t)\n");
  398. +#endif /* (_WIN32_WINNT < _WIN32_WINNT_WIN8) */
  399. +    (void)printf(")\n");
  400. +    res = EXIT_SUCCESS;
  401. +
  402. +done:
  403. +    (void)CloseHandle(fileHandle);
  404. +    return res;
  405. +}
  406. +
  407.  static
  408.  void usage(void)
  409.  {
  410. @@ -866,7 +984,8 @@ void usage(void)
  411.          "filenormalizednameinfo|"
  412.          "filecasesensitiveinfo|"
  413.          "getfiletime|"
  414. -        "nfs3attr"
  415. +        "nfs3attr|"
  416. +        "fileremoteprotocolinfo"
  417.          "> path\n");
  418.  }
  419.  
  420. @@ -913,6 +1032,9 @@ int main(int ac, char *av[])
  421.      else if (!strcmp(subcmd, "nfs3attr")) {
  422.          return get_nfs3attr(av[0], av[2]);
  423.      }
  424. +    else if (!strcmp(subcmd, "fileremoteprotocolinfo")) {
  425. +        return get_file_remote_protocol_info(av[0], av[2]);
  426. +    }
  427.      else {
  428.          (void)fprintf(stderr, "%s: Unknown subcmd '%s'\n", av[0], subcmd);
  429.          return EXIT_FAILURE;
  430. --
  431. 2.45.1

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