pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patch for EaSize in dir listing, implementing |FileIdExtdDirectoryInfo|&co for WSL+misc, 2025-03-28
Posted by Anonymous on Fri 28th Mar 2025 17:27
raw | new post

  1. From c5db6fc20df4954573244f28af58195c83c6989d Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Fri, 28 Mar 2025 15:37:13 +0100
  4. Subject: [PATCH 1/3] daemon: |readdir_copy_full_dir_info()| should set
  5.  |EaSize| to a non-zero value
  6.  
  7. |readdir_copy_full_dir_info()| should set |EaSize| to a non-zero value
  8. to indicate that we *MAY* have EAs.
  9. The real size used by our EAs does not matter, as there is a possible
  10. race-condition anyway and applications have to deal with that since ages.
  11. We now return 64k, which is the maximum EA size on NTFS.
  12.  
  13. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  14. ---
  15. daemon/readdir.c | 25 ++++++++++++++++++-------
  16.  1 file changed, 18 insertions(+), 7 deletions(-)
  17.  
  18. diff --git a/daemon/readdir.c b/daemon/readdir.c
  19. index 9711dba..1561ea2 100644
  20. --- a/daemon/readdir.c
  21. +++ b/daemon/readdir.c
  22. @@ -401,13 +401,24 @@ static void readdir_copy_full_dir_info(
  23.      IN PFILE_DIR_INFO_UNION info)
  24.  {
  25.      readdir_copy_dir_info(entry, superblock, info);
  26. -    /* for files with the FILE_ATTRIBUTE_REPARSE_POINT attribute,
  27. -     * EaSize is used instead to specify its reparse tag. this makes
  28. -     * the 'dir' command to show files as <SYMLINK>, and triggers a
  29. -     * FSCTL_GET_REPARSE_POINT to query the symlink target
  30. -     */
  31. -    info->fifdi.EaSize = entry->attr_info.type == NF4LNK ?
  32. -        IO_REPARSE_TAG_SYMLINK : 0;
  33. +    if (entry->attr_info.type == NF4LNK) {
  34. +        /*
  35. +         * For files with the |FILE_ATTRIBUTE_REPARSE_POINT|
  36. +         * attribute, |EaSize| is used instead to specify its
  37. +         * reparse tag. This makes the cmd.exe 'dir' command to
  38. +         * show files as <SYMLINK>/<SYMLINKD>, and triggers a
  39. +         * |FSCTL_GET_REPARSE_POINT| to query the symlink target
  40. +         */
  41. +        info->fifdi.EaSize = IO_REPARSE_TAG_SYMLINK;
  42. +    }
  43. +    else {
  44. +        /*
  45. +         * Always return the maximum EA size (64k), so
  46. +         + applications will look for EAs (a value of |0| would
  47. +         * mean "no EAs here")
  48. +         */
  49. +        info->fifdi.EaSize = (64*1024)-1;
  50. +    }
  51.  }
  52.  
  53.  static void readdir_copy_both_dir_info(
  54. --
  55. 2.45.1
  56.  
  57. From 014b31742b29107a4a87b4ffdd0a305f5c47fefa Mon Sep 17 00:00:00 2001
  58. From: Roland Mainz <roland.mainz@nrubsig.org>
  59. Date: Fri, 28 Mar 2025 16:48:43 +0100
  60. Subject: [PATCH 2/3] include,daemon: ReactOS: Use WDK/ntifs.h names for
  61.  directory info types
  62.  
  63. ReactOS: Use WDK/ntifs.h names for directory info types.
  64.  
  65. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  66. ---
  67. daemon/daemon_debug.c |  2 +-
  68.  daemon/daemon_debug.h |  3 ++-
  69.  daemon/readdir.c      | 16 ++++++++--------
  70.  include/from_kernel.h | 32 ++++++++++++++++++++++++--------
  71.  4 files changed, 35 insertions(+), 18 deletions(-)
  72.  
  73. diff --git a/daemon/daemon_debug.c b/daemon/daemon_debug.c
  74. index 083fe2f..50856e9 100644
  75. --- a/daemon/daemon_debug.c
  76. +++ b/daemon/daemon_debug.c
  77. @@ -369,7 +369,7 @@ void print_share_mode(int level, DWORD mode)
  78.      fprintf(dlog_file, "\n");
  79.  }
  80.  
  81. -void print_file_id_both_dir_info(int level, const FILE_ID_BOTH_DIR_INFO *pboth_dir_info)
  82. +void print_file_id_both_dir_info(int level, const FILE_ID_BOTH_DIR_INFORMATION *pboth_dir_info)
  83.  {
  84.      /* printf %zd is for |size_t| */
  85.  
  86. diff --git a/daemon/daemon_debug.h b/daemon/daemon_debug.h
  87. index 4b0a336..a4408f0 100644
  88. --- a/daemon/daemon_debug.h
  89. +++ b/daemon/daemon_debug.h
  90. @@ -137,7 +137,8 @@ void print_create_attributes(int level, DWORD create_opts);
  91.  void print_disposition(int level, DWORD disposition);
  92.  void print_access_mask(int level, DWORD access_mask);
  93.  void print_share_mode(int level, DWORD mode);
  94. -void print_file_id_both_dir_info(int level, const FILE_ID_BOTH_DIR_INFO *p);
  95. +typedef struct _FILE_ID_BOTH_DIR_INFORMATION FILE_ID_BOTH_DIR_INFORMATION, *PFILE_ID_BOTH_DIR_INFORMATION;
  96. +void print_file_id_both_dir_info(int level, const FILE_ID_BOTH_DIR_INFORMATION *p);
  97.  void print_sid(const char *label, PSID sid);
  98.  typedef enum _nfs41_opcodes nfs41_opcodes;
  99.  const char* opcode2string(nfs41_opcodes opcode);
  100. diff --git a/daemon/readdir.c b/daemon/readdir.c
  101. index 1561ea2..385534f 100644
  102. --- a/daemon/readdir.c
  103. +++ b/daemon/readdir.c
  104. @@ -251,11 +251,11 @@ int main(int ac, char *av[])
  105.  typedef union _FILE_DIR_INFO_UNION {
  106.      ULONG NextEntryOffset;
  107.      FILE_NAMES_INFORMATION fni;
  108. -    FILE_DIRECTORY_INFO fdi;
  109. -    FILE_FULL_DIR_INFO ffdi;
  110. -    FILE_ID_FULL_DIR_INFO fifdi;
  111. +    FILE_DIRECTORY_INFORMATION fdi;
  112. +    FILE_FULL_DIR_INFORMATION ffdi;
  113. +    FILE_ID_FULL_DIR_INFORMATION fifdi;
  114.      FILE_BOTH_DIR_INFORMATION fbdi;
  115. -    FILE_ID_BOTH_DIR_INFO fibdi;
  116. +    FILE_ID_BOTH_DIR_INFORMATION fibdi;
  117.  } FILE_DIR_INFO_UNION, *PFILE_DIR_INFO_UNION;
  118.  
  119.  
  120. @@ -299,16 +299,16 @@ static uint32_t readdir_size_for_entry(
  121.      switch (query_class)
  122.      {
  123.      case FileDirectoryInformation:
  124. -        needed += FIELD_OFFSET(FILE_DIRECTORY_INFO, FileName);
  125. +        needed += FIELD_OFFSET(FILE_DIRECTORY_INFORMATION, FileName);
  126.          break;
  127.      case FileIdFullDirectoryInformation:
  128. -        needed += FIELD_OFFSET(FILE_ID_FULL_DIR_INFO, FileName);
  129. +        needed += FIELD_OFFSET(FILE_ID_FULL_DIR_INFORMATION, FileName);
  130.          break;
  131.      case FileFullDirectoryInformation:
  132. -        needed += FIELD_OFFSET(FILE_FULL_DIR_INFO, FileName);
  133. +        needed += FIELD_OFFSET(FILE_FULL_DIR_INFORMATION, FileName);
  134.          break;
  135.      case FileIdBothDirectoryInformation:
  136. -        needed += FIELD_OFFSET(FILE_ID_BOTH_DIR_INFO, FileName);
  137. +        needed += FIELD_OFFSET(FILE_ID_BOTH_DIR_INFORMATION, FileName);
  138.          break;
  139.      case FileBothDirectoryInformation:
  140.          needed += FIELD_OFFSET(FILE_BOTH_DIR_INFORMATION, FileName);
  141. diff --git a/include/from_kernel.h b/include/from_kernel.h
  142. index 753f31c..66d0cec 100644
  143. --- a/include/from_kernel.h
  144. +++ b/include/from_kernel.h
  145. @@ -153,7 +153,7 @@ typedef struct _FILE_NAMES_INFORMATION {
  146.      WCHAR FileName[1];
  147.  } FILE_NAMES_INFORMATION, *PFILE_NAMES_INFORMATION;
  148.  
  149. -typedef struct _FILE_DIRECTORY_INFO {
  150. +typedef struct _FILE_DIRECTORY_INFORMATION {
  151.      ULONG NextEntryOffset;
  152.      ULONG FileIndex;
  153.      LARGE_INTEGER CreationTime;
  154. @@ -165,7 +165,7 @@ typedef struct _FILE_DIRECTORY_INFO {
  155.      ULONG FileAttributes;
  156.      ULONG FileNameLength;
  157.      WCHAR FileName[1];
  158. -} FILE_DIRECTORY_INFO, *PFILE_DIRECTORY_INFO;
  159. +} FILE_DIRECTORY_INFORMATION, *PFILE_DIRECTORY_INFORMATION;
  160.  
  161.  typedef struct _FILE_BOTH_DIR_INFORMATION {
  162.      ULONG NextEntryOffset;
  163. @@ -184,8 +184,7 @@ typedef struct _FILE_BOTH_DIR_INFORMATION {
  164.      WCHAR FileName[1];
  165.  } FILE_BOTH_DIR_INFORMATION, *PFILE_BOTH_DIR_INFORMATION;
  166.  
  167. -#ifdef FIXME_OLD_DDK
  168. -typedef struct _FILE_FULL_DIR_INFO {
  169. +typedef struct _FILE_FULL_DIR_INFORMATION {
  170.      ULONG NextEntryOffset;
  171.      ULONG FileIndex;
  172.      LARGE_INTEGER CreationTime;
  173. @@ -198,10 +197,9 @@ typedef struct _FILE_FULL_DIR_INFO {
  174.      ULONG FileNameLength;
  175.      ULONG EaSize;
  176.      WCHAR FileName[1];
  177. -} FILE_FULL_DIR_INFO, *PFILE_FULL_DIR_INFO;
  178. -#endif /* FIXME_OLD_DDK */
  179. +} FILE_FULL_DIR_INFORMATION, *PFILE_FULL_DIR_INFORMATION;
  180.  
  181. -typedef struct _FILE_ID_FULL_DIR_INFO {
  182. +typedef struct _FILE_ID_FULL_DIR_INFORMATION {
  183.      ULONG NextEntryOffset;
  184.      ULONG FileIndex;
  185.      LARGE_INTEGER CreationTime;
  186. @@ -215,7 +213,25 @@ typedef struct _FILE_ID_FULL_DIR_INFO {
  187.      ULONG EaSize;
  188.      LARGE_INTEGER FileId;
  189.      WCHAR FileName[1];
  190. -} FILE_ID_FULL_DIR_INFO, *PFILE_ID_FULL_DIR_INFO;
  191. +} FILE_ID_FULL_DIR_INFORMATION, *PFILE_ID_FULL_DIR_INFORMATION;
  192. +
  193. +typedef struct _FILE_ID_BOTH_DIR_INFORMATION {
  194. +    ULONG NextEntryOffset;
  195. +    ULONG FileIndex;
  196. +    LARGE_INTEGER CreationTime;
  197. +    LARGE_INTEGER LastAccessTime;
  198. +    LARGE_INTEGER LastWriteTime;
  199. +    LARGE_INTEGER ChangeTime;
  200. +    LARGE_INTEGER EndOfFile;
  201. +    LARGE_INTEGER AllocationSize;
  202. +    ULONG FileAttributes;
  203. +    ULONG FileNameLength;
  204. +    ULONG EaSize;
  205. +    CCHAR ShortNameLength;
  206. +    WCHAR ShortName[12];
  207. +    LARGE_INTEGER FileId;
  208. +    WCHAR FileName[1];
  209. +} FILE_ID_BOTH_DIR_INFORMATION, *PFILE_ID_BOTH_DIR_INFORMATION;
  210.  
  211.  typedef struct _FILE_LINK_INFORMATION {
  212.      BOOLEAN ReplaceIfExists;
  213. --
  214. 2.45.1
  215.  
  216. From 5fde0e7180ac0fc44c618eacd278a74a674effd0 Mon Sep 17 00:00:00 2001
  217. From: Roland Mainz <roland.mainz@nrubsig.org>
  218. Date: Fri, 28 Mar 2025 18:16:10 +0100
  219. Subject: [PATCH 3/3] daemon,include,sys: Implement
  220.  |FileIdExtdDirectoryInformation|+|FileIdExtdBothDirectoryInformation|
  221.  
  222. Implement |FileIdExtdDirectoryInformation| and
  223. |FileIdExtdBothDirectoryInformation| dir query classes.
  224.  
  225. Needed for (better) WSL support.
  226.  
  227. Reported-by: Cedric Blancher <cedric.blancher@gmail.com>
  228. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  229. ---
  230. daemon/fileinfoutil.c | 11 +++++++++
  231.  daemon/getattr.c      |  6 +----
  232.  daemon/readdir.c      | 54 ++++++++++++++++++++++++++++++++++++++-----
  233.  daemon/util.h         |  4 ++++
  234.  include/from_kernel.h | 36 +++++++++++++++++++++++++++++
  235.  sys/nfs41sys_dir.c    |  2 ++
  236.  6 files changed, 102 insertions(+), 11 deletions(-)
  237.  
  238. diff --git a/daemon/fileinfoutil.c b/daemon/fileinfoutil.c
  239. index be684fc..85a36ae 100644
  240. --- a/daemon/fileinfoutil.c
  241. +++ b/daemon/fileinfoutil.c
  242. @@ -33,6 +33,17 @@
  243.  #include "nfs41_ops.h"
  244.  #include "nfs41_driver.h" /* for |FILE_INFO_TIME_NOT_SET| */
  245.  
  246. +void nfs41_file_info_to_FILE_ID_128(
  247. +    IN const nfs41_file_info *restrict info,
  248. +    OUT FILE_ID_128 *restrict out_fid128)
  249. +{
  250. +    uint64_t fileid128[2] = {
  251. +        (info->fsid.minor ^ info->fsid.major),
  252. +        info->fileid
  253. +    };
  254. +    (void)memcpy(out_fid128, &fileid128[0], 16);
  255. +}
  256. +
  257.  
  258.  ULONG nfs_file_info_to_attributes(
  259.      IN const nfs41_superblock *restrict superblock,
  260. diff --git a/daemon/getattr.c b/daemon/getattr.c
  261. index 0eb7869..c9a0904 100644
  262. --- a/daemon/getattr.c
  263. +++ b/daemon/getattr.c
  264. @@ -219,12 +219,8 @@ static int handle_getattr(void *daemon_context, nfs41_upcall *upcall)
  265.              &args->remote_protocol_info);
  266.          break;
  267.      case FileIdInformation:
  268. -        uint64_t fileid128[2] = {
  269. -            (info.fsid.minor ^ info.fsid.major),
  270. -            info.fileid
  271. -        };
  272. +        nfs41_file_info_to_FILE_ID_128(&info, &args->id_info.FileId);
  273.          args->id_info.VolumeSerialNumber = 0xBABAFACE; /* 64bit! */
  274. -        (void)memcpy(&args->id_info.FileId, &fileid128[0], 16);
  275.          break;
  276.  #ifdef NFS41_DRIVER_WSL_SUPPORT
  277.      case FileStatInformation:
  278. diff --git a/daemon/readdir.c b/daemon/readdir.c
  279. index 385534f..0dc1190 100644
  280. --- a/daemon/readdir.c
  281. +++ b/daemon/readdir.c
  282. @@ -256,6 +256,8 @@ typedef union _FILE_DIR_INFO_UNION {
  283.      FILE_ID_FULL_DIR_INFORMATION fifdi;
  284.      FILE_BOTH_DIR_INFORMATION fbdi;
  285.      FILE_ID_BOTH_DIR_INFORMATION fibdi;
  286. +    FILE_ID_EXTD_DIR_INFORMATION fiedi;
  287. +    FILE_ID_EXTD_BOTH_DIR_INFORMATION fiebdi;
  288.  } FILE_DIR_INFO_UNION, *PFILE_DIR_INFO_UNION;
  289.  
  290.  
  291. @@ -304,6 +306,13 @@ static uint32_t readdir_size_for_entry(
  292.      case FileIdFullDirectoryInformation:
  293.          needed += FIELD_OFFSET(FILE_ID_FULL_DIR_INFORMATION, FileName);
  294.          break;
  295. +    case FileIdExtdDirectoryInformation:
  296. +        needed += FIELD_OFFSET(FILE_ID_EXTD_DIR_INFORMATION, FileName);
  297. +        break;
  298. +    case FileIdExtdBothDirectoryInformation:
  299. +        needed += FIELD_OFFSET(FILE_ID_EXTD_BOTH_DIR_INFORMATION,
  300. +            FileName);
  301. +        break;
  302.      case FileFullDirectoryInformation:
  303.          needed += FIELD_OFFSET(FILE_FULL_DIR_INFORMATION, FileName);
  304.          break;
  305. @@ -395,6 +404,17 @@ static void readdir_copy_shortname(
  306.  }
  307.  #endif /* !NFS41_DRIVER_DISABLE_8DOT3_SHORTNAME_GENERATION */
  308.  
  309. +static
  310. +ULONG get_ea_size(void)
  311. +{
  312. +    /*
  313. +     * Always return the maximum EA size (64k), so
  314. +     + applications will look for EAs (a value of |0| would
  315. +     * mean "no EAs here")
  316. +     */
  317. +    return (64*1024UL)-1;
  318. +}
  319. +
  320.  static void readdir_copy_full_dir_info(
  321.      IN nfs41_readdir_entry *entry,
  322.      IN const nfs41_superblock *restrict superblock,
  323. @@ -412,12 +432,7 @@ static void readdir_copy_full_dir_info(
  324.          info->fifdi.EaSize = IO_REPARSE_TAG_SYMLINK;
  325.      }
  326.      else {
  327. -        /*
  328. -         * Always return the maximum EA size (64k), so
  329. -         + applications will look for EAs (a value of |0| would
  330. -         * mean "no EAs here")
  331. -         */
  332. -        info->fifdi.EaSize = (64*1024)-1;
  333. +        info->fifdi.EaSize = get_ea_size();
  334.      }
  335.  }
  336.  
  337. @@ -592,6 +607,33 @@ static int readdir_copy_entry(
  338.          readdir_copy_filename(wname, wname_size,
  339.              info->fifdi.FileName, &info->fifdi.FileNameLength);
  340.          break;
  341. +    case FileIdExtdDirectoryInformation:
  342. +        readdir_copy_dir_info(entry, superblock, info);
  343. +        info->fiedi.EaSize = get_ea_size();
  344. +        info->fiedi.ReparsePointTag =
  345. +            (entry->attr_info.type == NF4LNK)?
  346. +                IO_REPARSE_TAG_SYMLINK : 0;
  347. +        nfs41_file_info_to_FILE_ID_128(&entry->attr_info, &info->fiedi.FileId);
  348. +        readdir_copy_filename(wname, wname_size,
  349. +            info->fiedi.FileName, &info->fiedi.FileNameLength);
  350. +        break;
  351. +    case FileIdExtdBothDirectoryInformation:
  352. +        readdir_copy_dir_info(entry, superblock, info);
  353. +        info->fiebdi.EaSize = get_ea_size();
  354. +        info->fiebdi.ReparsePointTag =
  355. +            (entry->attr_info.type == NF4LNK)?
  356. +                IO_REPARSE_TAG_SYMLINK : 0;
  357. +        nfs41_file_info_to_FILE_ID_128(&entry->attr_info, &info->fiebdi.FileId);
  358. +#ifdef NFS41_DRIVER_DISABLE_8DOT3_SHORTNAME_GENERATION
  359. +        info->fiebdi.ShortName[0] = L'\0';
  360. +        info->fiebdi.ShortNameLength = 0;
  361. +#else
  362. +        readdir_copy_shortname(wname, info->fiebdi.ShortName,
  363. +            &info->fiebdi.ShortNameLength);
  364. +#endif /* NFS41_DRIVER_DISABLE_8DOT3_SHORTNAME_GENERATION */
  365. +        readdir_copy_filename(wname, wname_size,
  366. +            info->fiebdi.FileName, &info->fiebdi.FileNameLength);
  367. +        break;
  368.      case FileBothDirectoryInformation:
  369.          readdir_copy_both_dir_info(entry, wname, superblock, info);
  370.          readdir_copy_filename(wname, wname_size,
  371. diff --git a/daemon/util.h b/daemon/util.h
  372. index 65a1eee..fa01c7e 100644
  373. --- a/daemon/util.h
  374. +++ b/daemon/util.h
  375. @@ -187,6 +187,10 @@ static __inline void open_delegation4_cpy(
  376.      (void)memcpy(dst, src, sizeof(open_delegation4));
  377.  }
  378.  
  379. +typedef struct _FILE_ID_128 FILE_ID_128, *PFILE_ID_128;
  380. +void nfs41_file_info_to_FILE_ID_128(
  381. +    IN const nfs41_file_info *restrict info,
  382. +    OUT FILE_ID_128 *restrict out_fid128);
  383.  ULONG nfs_file_info_to_attributes(
  384.      IN const nfs41_superblock *restrict superblock,
  385.      IN const nfs41_file_info *restrict info);
  386. diff --git a/include/from_kernel.h b/include/from_kernel.h
  387. index 66d0cec..db8817c 100644
  388. --- a/include/from_kernel.h
  389. +++ b/include/from_kernel.h
  390. @@ -233,6 +233,42 @@ typedef struct _FILE_ID_BOTH_DIR_INFORMATION {
  391.      WCHAR FileName[1];
  392.  } FILE_ID_BOTH_DIR_INFORMATION, *PFILE_ID_BOTH_DIR_INFORMATION;
  393.  
  394. +typedef struct _FILE_ID_EXTD_DIR_INFORMATION {
  395. +    ULONG NextEntryOffset;
  396. +    ULONG FileIndex;
  397. +    LARGE_INTEGER CreationTime;
  398. +    LARGE_INTEGER LastAccessTime;
  399. +    LARGE_INTEGER LastWriteTime;
  400. +    LARGE_INTEGER ChangeTime;
  401. +    LARGE_INTEGER EndOfFile;
  402. +    LARGE_INTEGER AllocationSize;
  403. +    ULONG FileAttributes;
  404. +    ULONG FileNameLength;
  405. +    ULONG EaSize;
  406. +    ULONG ReparsePointTag;
  407. +    FILE_ID_128 FileId;
  408. +   WCHAR FileName[1];
  409. +} FILE_ID_EXTD_DIR_INFORMATION, *PFILE_ID_EXTD_DIR_INFORMATION;
  410. +
  411. +typedef struct _FILE_ID_EXTD_BOTH_DIR_INFORMATION {
  412. +    ULONG NextEntryOffset;
  413. +    ULONG FileIndex;
  414. +    LARGE_INTEGER CreationTime;
  415. +    LARGE_INTEGER LastAccessTime;
  416. +    LARGE_INTEGER LastWriteTime;
  417. +    LARGE_INTEGER ChangeTime;
  418. +    LARGE_INTEGER EndOfFile;
  419. +    LARGE_INTEGER AllocationSize;
  420. +    ULONG FileAttributes;
  421. +    ULONG FileNameLength;
  422. +    ULONG EaSize;
  423. +    ULONG ReparsePointTag;
  424. +    FILE_ID_128 FileId;
  425. +    CCHAR ShortNameLength;
  426. +    WCHAR ShortName[12];
  427. +    WCHAR FileName[1];
  428. +} FILE_ID_EXTD_BOTH_DIR_INFORMATION, *PFILE_ID_EXTD_BOTH_DIR_INFORMATION;
  429. +
  430.  typedef struct _FILE_LINK_INFORMATION {
  431.      BOOLEAN ReplaceIfExists;
  432.      HANDLE RootDirectory;
  433. diff --git a/sys/nfs41sys_dir.c b/sys/nfs41sys_dir.c
  434. index fee2847..4d0681d 100644
  435. --- a/sys/nfs41sys_dir.c
  436. +++ b/sys/nfs41sys_dir.c
  437. @@ -249,6 +249,8 @@ NTSTATUS nfs41_QueryDirectory(
  438.      case FileIdFullDirectoryInformation:
  439.      case FileBothDirectoryInformation:
  440.      case FileIdBothDirectoryInformation:
  441. +    case FileIdExtdDirectoryInformation:
  442. +    case FileIdExtdBothDirectoryInformation:
  443.          break;
  444.      default:
  445.          print_error("nfs41_QueryDirectory: unhandled dir query class %d\n",
  446. --
  447. 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