pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for inheritance ACE flags, nfs_ea utility+misc, 2024-06-26
Posted by Anonymous on Wed 26th Jun 2024 17:28
raw | new post

  1. From 411563658b3a9a1e5f87def47b3b40be5a7985aa Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Wed, 26 Jun 2024 12:23:09 +0200
  4. Subject: [PATCH 1/4] daemon,tests: setacl should clear |ACE4_INHERITED_ACE|
  5.  per RFC8884
  6.  
  7. setacl should clear |ACE4_INHERITED_ACE| per RFC8884 Section-6.2.1.4.1
  8.  
  9. This fixes |NFS4ERR_ATTRNOTSUPP| on directories which have
  10. default/inheritance ACLs.
  11.  
  12. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  13. ---
  14. daemon/acl.c             | 38 +++++++++++++++++++++++++++++++++-----
  15.  tests/manual_testing.txt | 12 +++++++++++-
  16.  2 files changed, 44 insertions(+), 6 deletions(-)
  17.  
  18. diff --git a/daemon/acl.c b/daemon/acl.c
  19. index 73c1c7a..331fc8e 100644
  20. --- a/daemon/acl.c
  21. +++ b/daemon/acl.c
  22. @@ -673,12 +673,13 @@ void map_winaccessmask2nfs4acemask(ACCESS_MASK win_mask,
  23.      }
  24.  
  25.  #if 1
  26. -    /* Compare old and new code */
  27. -    EASSERT_MSG(((long)*nfs4_mask == (long)(win_mask /*& 0x00ffffff*/)),
  28. +    /* DEBUG: Compare old and new code */
  29. +    DASSERT_MSG(0,
  30. +        ((long)*nfs4_mask == (long)(win_mask & 0x00ffffff)),
  31.          ("map_winaccessmask2nfs4acemask: "
  32.          "new code nfs4_mask=0x%lx, "
  33.          "old code nfs4_mask=0x%lx\n",
  34. -        (long)*nfs4_mask, (long)(win_mask /*& 0x00ffffff*/)));
  35. +        (long)*nfs4_mask, (long)(win_mask & 0x00ffffff)));
  36.  #endif
  37.  }
  38.  
  39. @@ -837,12 +838,13 @@ void map_nfs4acemask2winaccessmask(uint32_t nfs4_mask,
  40.      }
  41.  
  42.  #if 1
  43. -    /* Compare old and new code */
  44. +    /* DEBUG: Compare old and new code */
  45.  #ifdef MAP_WIN32GENERIC2ACE4GENERIC
  46.      if (!is_generic)
  47.  #endif /* MAP_WIN32GENERIC2ACE4GENERIC */
  48.      {
  49. -        EASSERT_MSG(((long)*win_mask == (long)(nfs4_mask /*& 0x00ffffff*/)),
  50. +        DASSERT_MSG(0,
  51. +            ((long)*win_mask == (long)(nfs4_mask /*& 0x00ffffff*/)),
  52.              ("#### map_nfs4acemask2winaccessmask: "
  53.              "new code win_mask=0x%lx, "
  54.              "old code win_mask=0x%lx\n",
  55. @@ -1081,6 +1083,32 @@ static int map_dacl_2_nfs4acl(PACL acl, PSID sid, PSID gsid, nfsacl41 *nfs4_acl,
  56.                  file_type, named_attr_support,
  57.                  &nfs4_acl->aces[i].acemask);
  58.  
  59. +            /*
  60. +             * Clear |ACE4_INHERITED_ACE|
  61. +             *
  62. +             * (See RFC 8884 Section-6.2.1.4.1:
  63. +             * ACE4_INHERITED_ACE
  64. +             * Indicates that this ACE is inherited from a parent
  65. +             * directory. A server that supports automatic inheritance
  66. +             * will place this flag on any ACEs inherited from the
  67. +             * parent directory when creating a new object.
  68. +             * Client applications will use this to perform automatic
  69. +             * inheritance. Clients and servers MUST clear this bit in
  70. +             * the acl attribute; it may only be used in the dacl and
  71. +             * sacl attributes.
  72. +             * ---- snip ----
  73. +             * )
  74. +             *
  75. +             * If we do not clear this bit Linux 6.6.32-RT32 nfsd
  76. +             * will reject setting ACLs |NFS4ERR_ATTRNOTSUPP| via
  77. +             * icacls(1win) if the parent directory has inheritance
  78. +             * ACLs.
  79. +             */
  80. +            if (nfs4_acl->aces[i].aceflag & ACE4_INHERITED_ACE) {
  81. +                nfs4_acl->aces[i].aceflag &= ~ACE4_INHERITED_ACE;
  82. +                DPRINTF(ACLLVL3, ("clearning ACE4_INHERITED_ACE\n"));
  83. +            }
  84. +
  85.              /*
  86.               * Treat |SidTypeAlias| as (local) group
  87.               *
  88. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  89. index 9402886..2ab20f2 100644
  90. --- a/tests/manual_testing.txt
  91. +++ b/tests/manual_testing.txt
  92. @@ -1,5 +1,5 @@
  93.  #
  94. -# ms-nfs41-client manual testing sequence, 2024-05-21
  95. +# ms-nfs41-client manual testing sequence, 2024-06-26
  96.  #
  97.  # Draft version, needs to be turned into automated tests
  98.  # if possible
  99. @@ -155,6 +155,16 @@ $ ksh93 -c 'set -o xtrace ; rm -f test1.txt ; touch test1.txt ; icacls test1.txt
  100.  # Expectation:
  101.  The ACL entry for user "siegfried_wulsch" should have the "GW" flag set
  102.  
  103. +#
  104. +# Test for default (inheritance) ACLs:
  105. +#
  106. +mkdir test1
  107. +cd test1
  108. +icacls . /grant "cygwingrp2:(OI)(CI)(IO)(GR)"
  109. +touch mytestfile1.txt
  110. +icacls mytestfile1.txt | grep --colour -E 'cygwingrp2.+GR'
  111. +# file "mytestfile1.txt" must have the "GR" flag set
  112. +
  113.  #
  114.  # Compile each of the following package
  115.  # on a NFSv4.1 share, and run each build in parallel/sequence
  116. --
  117. 2.45.1
  118.  
  119. From 16a9817c421f4fdc3fe6d55ce8dc4dba45b11dd8 Mon Sep 17 00:00:00 2001
  120. From: Cedric Blancher <cedric.blancher@gmail.com>
  121. Date: Wed, 26 Jun 2024 12:42:47 +0200
  122. Subject: [PATCH 2/4] cygwin: msnfs41client: Killing DrMemory with <CTRL-C>
  123.  does not terminate nfsd_debug
  124.  
  125. msnfs41client: Killing DrMemory with <CTRL-C> does not terminate
  126. nfsd_debug.exe, which can lead to confusion. Better use taskkill to
  127. explicitly terminate nfsd_debug.exe in this case.
  128.  
  129. Signed-off-by: Roland Mainz <roland.mainz@nrubsig.org>
  130. ---
  131. cygwin/devel/msnfs41client.bash | 9 +++++++++
  132.  1 file changed, 9 insertions(+)
  133.  
  134. diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
  135. index c83dcfc..34a9634 100644
  136. --- a/cygwin/devel/msnfs41client.bash
  137. +++ b/cygwin/devel/msnfs41client.bash
  138. @@ -320,6 +320,11 @@ function nfsclient_rundeamon
  139.                                 "${nfsd_args[@]}"
  140.                                 '--crtdbgmem' 'none'
  141.                         )
  142. +
  143. +               # Killing DrMemory with <CTRL-C> does not terminate nfsd,
  144. +               # so we have to do it ourselves
  145. +               trap 'taskkill /F /IM nfsd_debug.exe' SIGINT SIGTERM
  146. +
  147.                 "${nfsd_args[@]}"
  148.         elif false ; then
  149.                 typeset -i vsdiagnostics_id=50
  150. @@ -439,6 +444,10 @@ function nfsclient_system_rundeamon
  151.                         "${nfsd_args[@]}"
  152.                 )
  153.  
  154. +               # Killing DrMemory with <CTRL-C> does not terminate nfsd,
  155. +               # so we have to do it ourselves
  156. +               trap 'taskkill /F /IM nfsd_debug.exe' SIGINT SIGTERM
  157. +
  158.                 "${nfsd_args[@]}"
  159.         elif false ; then
  160.                 typeset -i vsdiagnostics_id=50
  161. --
  162. 2.45.1
  163.  
  164. From 4c49e09f1d2dbd7009d40dc0a773066426d18abf Mon Sep 17 00:00:00 2001
  165. From: Cedric Blancher <cedric.blancher@gmail.com>
  166. Date: Wed, 26 Jun 2024 13:13:58 +0200
  167. Subject: [PATCH 3/4] daemon: DPRINTF()&co should save&restore GetLastError()
  168.  code
  169.  
  170. DPRINTF()&co should save&restore GetLastError() code
  171.  
  172. Signed-off-by: Roland Mainz <roland.mainz@nrubsig.org>
  173. ---
  174. daemon/daemon_debug.h | 45 +++++++++++++++++++++++++++++++------------
  175.  1 file changed, 33 insertions(+), 12 deletions(-)
  176.  
  177. diff --git a/daemon/daemon_debug.h b/daemon/daemon_debug.h
  178. index 3b376f0..c6f48a9 100644
  179. --- a/daemon/daemon_debug.h
  180. +++ b/daemon/daemon_debug.h
  181. @@ -56,36 +56,55 @@
  182.  
  183.  #define EASSERT(exp) \
  184.      if (!(exp)) { \
  185. +        DWORD d_saved_lasterr = GetLastError(); \
  186.          eprintf("ASSERTION '%s' in '%s'/%ld failed.\n", \
  187. -            ""#exp"", __FILE__, (long)__LINE__); }
  188. +            ""#exp"", __FILE__, (long)__LINE__); \
  189. +        SetLastError(d_saved_lasterr); \
  190. +    }
  191.  #define EASSERT_MSG(exp, msg) \
  192.      if (!(exp)) { \
  193. +        DWORD d_saved_lasterr = GetLastError(); \
  194.          eprintf("ASSERTION '%s' in '%s'/%ld failed, msg=", \
  195.              ""#exp"", __FILE__, (long)__LINE__); \
  196. -        eprintf_out msg ; }
  197. +        eprintf_out msg ; \
  198. +        SetLastError(d_saved_lasterr); \
  199. +    }
  200.  #define DASSERT(exp, level) \
  201. -    if (!(exp)) { \
  202. -        DPRINTF((level), ("ASSERTION '%s' in '%s'/%ld failed.\n", \
  203. -            ""#exp"", __FILE__, (long)__LINE__)); }
  204. +    if (!(exp) && DPRINTF_LEVEL_ENABLED(level)) { \
  205. +        DWORD d_saved_lasterr = GetLastError(); \
  206. +        dprintf_out("ASSERTION '%s' in '%s'/%ld failed.\n", \
  207. +            ""#exp"", __FILE__, (long)__LINE__); \
  208. +        SetLastError(d_saved_lasterr); \
  209. +    }
  210.  #define DASSERT_MSG(exp, level, msg) \
  211.      if (!(exp) && DPRINTF_LEVEL_ENABLED(level)) { \
  212. -        DPRINTF((level), ("ASSERTION '%s' in '%s'/%ld failed, msg=", \
  213. -            ""#exp"", __FILE__, (long)__LINE__)); \
  214. -        dprintf_out msg ; }
  215. +        DWORD d_saved_lasterr = GetLastError(); \
  216. +        dprintf_out("ASSERTION '%s' in '%s'/%ld failed, msg=", \
  217. +            ""#exp"", __FILE__, (long)__LINE__); \
  218. +        dprintf_out msg ; \
  219. +        SetLastError(d_saved_lasterr); \
  220. +    }
  221.  
  222.  #define DASSERT_IS_VALID_NON_NULL_PTR(exp, level) \
  223. -    if (!DEBUG_IS_VALID_NON_NULL_PTR(exp)) { \
  224. -        DPRINTF((level), ("ASSERTION " \
  225. +    if (!DEBUG_IS_VALID_NON_NULL_PTR(exp) && \
  226. +        DPRINTF_LEVEL_ENABLED(level)) { \
  227. +        DWORD d_saved_lasterr = GetLastError(); \
  228. +        dprintf_out("ASSERTION " \
  229.              "!DEBUG_IS_VALID_NON_NULL_PTR('%s'=0x%p) " \
  230.              "in '%s'/%ld failed.\n", \
  231. -            ""#exp"", (void *)(exp), __FILE__, (long)__LINE__)); }
  232. +            ""#exp"", (void *)(exp), __FILE__, (long)__LINE__); \
  233. +        SetLastError(d_saved_lasterr); \
  234. +    }
  235.  
  236.  #define EASSERT_IS_VALID_NON_NULL_PTR(exp) \
  237.      if (!DEBUG_IS_VALID_NON_NULL_PTR(exp)) { \
  238. +        DWORD d_saved_lasterr = GetLastError(); \
  239.          eprintf("ASSERTION " \
  240.              "!DEBUG_IS_VALID_NON_NULL_PTR('%s'=0x%p) " \
  241.              "in '%s'/%ld failed.\n", \
  242. -            ""#exp"", (void *)(exp), __FILE__, (long)__LINE__); }
  243. +            ""#exp"", (void *)(exp), __FILE__, (long)__LINE__); \
  244. +        SetLastError(d_saved_lasterr); \
  245. +    }
  246.  
  247.  extern int g_debug_level;
  248.  
  249. @@ -93,7 +112,9 @@ extern int g_debug_level;
  250.  #define DPRINTF(level, args) \
  251.      { \
  252.          if (DPRINTF_LEVEL_ENABLED(level)) { \
  253. +            DWORD d_saved_lasterr = GetLastError(); \
  254.              dprintf_out args; \
  255. +            SetLastError(d_saved_lasterr); \
  256.          } \
  257.      }
  258.  
  259. --
  260. 2.45.1
  261.  
  262. From dd6beab985e0a6152d3e767870a6fc59e935e4a1 Mon Sep 17 00:00:00 2001
  263. From: Roland Mainz <roland.mainz@nrubsig.org>
  264. Date: Wed, 26 Jun 2024 15:43:30 +0200
  265. Subject: [PATCH 4/4] cygwin,tests: Port "nfs_ea" utility to clang and add it
  266.  to the default build
  267.  
  268. Port "nfs_ea" utility to clang and add it to the default build.
  269.  
  270. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  271. ---
  272. cygwin/Makefile         |  1 +
  273.  cygwin/Makefile.install |  5 ++++
  274.  tests/ea/Makefile       | 24 +++++++++++++++++
  275.  tests/ea/main.c         | 58 ++++++++++++++++++++++++-----------------
  276.  4 files changed, 64 insertions(+), 24 deletions(-)
  277.  create mode 100644 tests/ea/Makefile
  278.  
  279. diff --git a/cygwin/Makefile b/cygwin/Makefile
  280. index bcd07d5..a814d3f 100644
  281. --- a/cygwin/Makefile
  282. +++ b/cygwin/Makefile
  283. @@ -54,6 +54,7 @@ build_32bit_debug:
  284.         MSBuild.exe '$(shell cygpath -w "$(PROJECT_BASEDIR_DIR)/build.vc19/nfs41-client.sln")' -t:Build  -p:Configuration=Debug -p:Platform=x86
  285.  
  286.  build_testutils:
  287. +       (cd "$(PROJECT_BASEDIR_DIR)/tests/ea" && make all)
  288.         (cd "$(PROJECT_BASEDIR_DIR)/tests/winfsinfo1" && make all)
  289.         (cd "$(PROJECT_BASEDIR_DIR)/tests/winsg" && make all)
  290.  
  291. diff --git a/cygwin/Makefile.install b/cygwin/Makefile.install
  292. index 5aa2cc1..cf0f700 100644
  293. --- a/cygwin/Makefile.install
  294. +++ b/cygwin/Makefile.install
  295. @@ -75,6 +75,11 @@ installdest:
  296.         else \
  297.                 cp "$(PROJECT_BASEDIR_DIR)/tests/winsg/winsg.i686.exe" $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/winsg.exe ; \
  298.         fi
  299. +       if [[ "$(CYGWIN_BASEPATH)" == *64* ]] ; then \
  300. +               cp "$(PROJECT_BASEDIR_DIR)/tests/ea/nfs_ea.x86_64.exe" $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/nfs_ea.exe ; \
  301. +       else \
  302. +               cp "$(PROJECT_BASEDIR_DIR)/tests/ea/nfs_ea.i686.exe" $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/nfs_ea.exe ; \
  303. +       fi
  304.         @ printf "# Package ksh93&co (if available) since Cygwin does not ship with it yet\n"
  305.         [[ -x $(CYGWIN_BASEPATH)/bin/ksh93.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/ksh93.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/ksh93.exe || true
  306.         [[ -x $(CYGWIN_BASEPATH)/bin/shcomp.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/shcomp.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/shcomp.exe || true
  307. diff --git a/tests/ea/Makefile b/tests/ea/Makefile
  308. new file mode 100644
  309. index 0000000..9f2bc98
  310. --- /dev/null
  311. +++ b/tests/ea/Makefile
  312. @@ -0,0 +1,24 @@
  313. +#
  314. +# Makefile for nfs_ea
  315. +#
  316. +
  317. +# POSIX Makefile
  318. +
  319. +all: nfs_ea.i686.exe nfs_ea.x86_64.exe nfs_ea.exe
  320. +
  321. +nfs_ea.i686.exe: main.c
  322. +       clang -target i686-pc-windows-gnu -municode -Wall -DUNICODE=1 -D_UNICODE=1 -isystem /usr/include/w32api/ddk -g main.c -lntdll -o nfs_ea.i686.exe
  323. +
  324. +nfs_ea.x86_64.exe: main.c
  325. +       clang -target x86_64-pc-windows-gnu -municode -Wall -DUNICODE=1 -D_UNICODE=1 -isystem /usr/include/w32api/ddk -g main.c -lntdll -o nfs_ea.x86_64.exe
  326. +
  327. +nfs_ea.exe: nfs_ea.x86_64.exe
  328. +       rm -f nfs_ea.exe
  329. +       ln -s nfs_ea.x86_64.exe nfs_ea.exe
  330. +
  331. +clean:
  332. +       rm -fv \
  333. +               nfs_ea.i686.exe \
  334. +               nfs_ea.x86_64.exe \
  335. +               nfs_ea.exe \
  336. +# EOF.
  337. diff --git a/tests/ea/main.c b/tests/ea/main.c
  338. index a123d78..03b72e6 100644
  339. --- a/tests/ea/main.c
  340. +++ b/tests/ea/main.c
  341. @@ -3,6 +3,7 @@
  342.   *
  343.   * Olga Kornievskaia <aglo@umich.edu>
  344.   * Casey Bodley <cbodley@umich.edu>
  345. + * Roland Mainz <roland.mainz@nrubsig.org>
  346.   *
  347.   * This library is free software; you can redistribute it and/or modify it
  348.   * under the terms of the GNU Lesser General Public License as published by
  349. @@ -23,6 +24,9 @@
  350.  #include <strsafe.h>
  351.  #include <stdio.h>
  352.  
  353. +#if 1
  354. +typedef unsigned long DWORD, *PDWORD, *LPDWORD;
  355. +#endif
  356.  
  357.  #define MAX_LIST_LEN 4096
  358.  #define MAX_EA_VALUE 256
  359. @@ -33,12 +37,14 @@
  360.  static NTSTATUS ea_list(
  361.      HANDLE FileHandle)
  362.  {
  363. -    IO_STATUS_BLOCK IoStatusBlock = { 0 };
  364. +    IO_STATUS_BLOCK IoStatusBlock;
  365.      CHAR Buffer[MAX_LIST_LEN];
  366.      PFILE_FULL_EA_INFORMATION EaBuffer;
  367.      NTSTATUS status;
  368.      BOOLEAN RestartScan = TRUE;
  369.  
  370. +    (void)memset(&IoStatusBlock, 0, sizeof(IoStatusBlock));
  371. +
  372.  on_overflow:
  373.      EaBuffer = (PFILE_FULL_EA_INFORMATION)Buffer;
  374.  
  375. @@ -49,10 +55,10 @@ on_overflow:
  376.      case STATUS_BUFFER_OVERFLOW:
  377.          break;
  378.      case STATUS_NO_EAS_ON_FILE:
  379. -        printf("No EAs on file.\n", status);
  380. +        printf("No EAs on file, status=0x%lx.\n", (long)status);
  381.          goto out;
  382.      default:
  383. -        fprintf(stderr, "ZwQueryEaFile() failed with %X\n", status);
  384. +        fprintf(stderr, "ZwQueryEaFile() failed with 0x%lx\n", (long)status);
  385.          goto out;
  386.      }
  387.  
  388. @@ -67,7 +73,7 @@ on_overflow:
  389.      }
  390.  
  391.      if (status == STATUS_BUFFER_OVERFLOW) {
  392. -        printf("overflow, querying more\n", status);
  393. +        printf("overflow, querying more, status=0x%lx\n", (long)status);
  394.          RestartScan = FALSE;
  395.          goto on_overflow;
  396.      }
  397. @@ -80,7 +86,7 @@ static NTSTATUS ea_get(
  398.      IN LPCWSTR EaNames[],
  399.      IN DWORD Count)
  400.  {
  401. -    IO_STATUS_BLOCK IoStatusBlock = { 0 };
  402. +    IO_STATUS_BLOCK IoStatusBlock;
  403.      CHAR GetBuffer[MAX_LIST_LEN] = { 0 };
  404.      CHAR FullBuffer[MAX_LIST_LEN] = { 0 };
  405.      PFILE_GET_EA_INFORMATION EaList = (PFILE_GET_EA_INFORMATION)GetBuffer, EaQuery;
  406. @@ -89,6 +95,8 @@ static NTSTATUS ea_get(
  407.      DWORD i;
  408.      NTSTATUS status;
  409.  
  410. +    (void)memset(&IoStatusBlock, 0, sizeof(IoStatusBlock));
  411. +
  412.      EaQuery = EaList;
  413.      EaListLength = 0;
  414.  
  415. @@ -100,7 +108,7 @@ static NTSTATUS ea_get(
  416.          status = RtlUnicodeToUTF8N(EaQuery->EaName, MAX_EA_VALUE,
  417.              &ActualByteCount, EaName, EaNameLength);
  418.          if (status) {
  419. -            fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with %X\n", EaName, status);
  420. +            fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with 0x%lx\n", EaName, (long)status);
  421.              goto out;
  422.          }
  423.          EaQuery->EaNameLength = (UCHAR)ActualByteCount - 1;
  424. @@ -115,20 +123,20 @@ static NTSTATUS ea_get(
  425.          }
  426.          EaQuery = (PFILE_GET_EA_INFORMATION)((PCHAR)EaQuery + EaQuery->NextEntryOffset);
  427.      }
  428. -
  429. +
  430.      status = ZwQueryEaFile(FileHandle, &IoStatusBlock,
  431.          EaBuffer, MAX_FULLEA, FALSE, EaList, EaListLength, NULL, TRUE);
  432.      switch (status) {
  433.      case STATUS_SUCCESS:
  434.          break;
  435.      case STATUS_NO_EAS_ON_FILE:
  436. -        printf("No EAs on file.\n", status);
  437. +        printf("No EAs on file, status=0x%lx.\n", (long)status);
  438.          goto out;
  439.      default:
  440. -        fprintf(stderr, "ZwQueryEaFile('%s') failed with %X\n", EaList->EaName, status);
  441. +        fprintf(stderr, "ZwQueryEaFile('%s') failed with 0x%lx\n", EaList->EaName, (long)status);
  442.          goto out;
  443.      }
  444. -    
  445. +
  446.      while (EaBuffer) {
  447.          printf("%s = %.*s\n", EaBuffer->EaName, EaBuffer->EaValueLength,
  448.              EaBuffer->EaName + EaBuffer->EaNameLength + 1);
  449. @@ -161,7 +169,7 @@ static NTSTATUS full_ea_init(
  450.          FIELD_OFFSET(FILE_FULL_EA_INFORMATION, EaName),
  451.          &ActualByteCount, EaName, EaNameLength);
  452.      if (status) {
  453. -        fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with %X\n", EaName, status);
  454. +        fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with 0x%lx\n", EaName, (long)status);
  455.          goto out;
  456.      }
  457.      EaBuffer->EaNameLength = (UCHAR)ActualByteCount - 1;
  458. @@ -176,7 +184,7 @@ static NTSTATUS full_ea_init(
  459.              MAX_FULLEA - FIELD_OFFSET(FILE_FULL_EA_INFORMATION, EaName) - EaBuffer->EaNameLength - 1,
  460.              &ActualByteCount, EaValue, EaValueLength);
  461.          if (status) {
  462. -            fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with %X\n", EaName, status);
  463. +            fwprintf(stderr, L"RtlUnicodeToUTF8N('%s') failed with 0x%lx\n", EaName, (long)status);
  464.              goto out;
  465.          }
  466.          EaBuffer->EaValueLength = (UCHAR)ActualByteCount - 1;
  467. @@ -193,9 +201,11 @@ static NTSTATUS ea_set(
  468.      IN PFILE_FULL_EA_INFORMATION EaBuffer,
  469.      IN ULONG EaLength)
  470.  {
  471. -    IO_STATUS_BLOCK IoStatusBlock = { 0 };
  472. +    IO_STATUS_BLOCK IoStatusBlock;
  473.      NTSTATUS status;
  474.  
  475. +    (void)memset(&IoStatusBlock, 0, sizeof(IoStatusBlock));
  476. +
  477.      status = ZwSetEaFile(FileHandle, &IoStatusBlock, EaBuffer, EaLength);
  478.      switch (status) {
  479.      case STATUS_SUCCESS:
  480. @@ -203,13 +213,13 @@ static NTSTATUS ea_set(
  481.              EaBuffer->EaName + EaBuffer->EaNameLength + 1);
  482.          break;
  483.      default:
  484. -        fprintf(stderr, "ZwSetEaFile() failed with %X\n", status);
  485. +        fprintf(stderr, "ZwSetEaFile() failed with 0x%lx\n", (long)status);
  486.          break;
  487.      }
  488.      return status;
  489.  }
  490.  
  491. -int wmain(DWORD argc, LPWSTR argv[])
  492. +int wmain(int argc, const wchar_t *argv[])
  493.  {
  494.      UNICODE_STRING FileName;
  495.      OBJECT_ATTRIBUTES ObjectAttributes;
  496. @@ -228,13 +238,13 @@ int wmain(DWORD argc, LPWSTR argv[])
  497.      ULONG EaLength = 0;
  498.  
  499.      if (argc < 3) {
  500. -        fwprintf(stderr, L"Usage: nfs_ea <filename> <create|set|get|list> ...\n");
  501. +        fwprintf(stderr, L"Usage: nfs_ea <ntobjectpath> <create|set|get|list> ...\n");
  502.          status = STATUS_INVALID_PARAMETER;
  503.          goto out;
  504.      }
  505.      if (wcscmp(argv[2], L"create") == 0) {
  506.          if (argc < 5) {
  507. -            fwprintf(stderr, L"Usage: nfs_ea <filename> create <name> <value>\n");
  508. +            fwprintf(stderr, L"Usage: nfs_ea <ntobjectpath> create <name> <value>\n");
  509.              status = STATUS_INVALID_PARAMETER;
  510.              goto out;
  511.          }
  512. @@ -246,19 +256,19 @@ int wmain(DWORD argc, LPWSTR argv[])
  513.          wprintf(L"Creating file %s.\n", argv[1]);
  514.      } else if (wcscmp(argv[2], L"set") == 0) {
  515.          if (argc < 4) {
  516. -            fwprintf(stderr, L"Usage: nfs_ea <filename> set <name> [value]\n");
  517. +            fwprintf(stderr, L"Usage: nfs_ea <ntobjectpath> set <name> [value]\n");
  518.              status = STATUS_INVALID_PARAMETER;
  519.              goto out;
  520.          }
  521.          DesiredAccess |= GENERIC_WRITE;
  522.      } else if (wcscmp(argv[2], L"get") == 0) {
  523.          if (argc < 4) {
  524. -            fwprintf(stderr, L"Usage: nfs_ea <filename> get <name> [name...]\n");
  525. +            fwprintf(stderr, L"Usage: nfs_ea <ntobjectpath> get <name> [name...]\n");
  526.              status = STATUS_INVALID_PARAMETER;
  527.              goto out;
  528.          }
  529.      } else if (wcscmp(argv[2], L"list") != 0) {
  530. -        fwprintf(stderr, L"Usage: nfs_ea <filename> <create|set|get|list> ...\n");
  531. +        fwprintf(stderr, L"Usage: nfs_ea <ntobjectpath> <create|set|get|list> ...\n");
  532.          status = STATUS_INVALID_PARAMETER;
  533.          goto out;
  534.      }
  535. @@ -270,7 +280,7 @@ int wmain(DWORD argc, LPWSTR argv[])
  536.          &IoStatusBlock, NULL, FileAttributes, ShareAccess,
  537.          CreateDisposition, CreateOptions, EaBuffer, EaLength);
  538.      if (status) {
  539. -        fwprintf(stderr, L"NtCreateFile(%s) failed with %X\n", FileName.Buffer, status);
  540. +        fwprintf(stderr, L"NtCreateFile(%s) failed with 0x%lx\n", FileName.Buffer, (long)status);
  541.          goto out;
  542.      }
  543.  
  544. @@ -281,15 +291,15 @@ int wmain(DWORD argc, LPWSTR argv[])
  545.          if (status)
  546.              goto out_close;
  547.  
  548. -        wprintf(L"Setting extended attribute '%s' on file %s:\n",
  549. +        wprintf(L"Setting extended attribute '%s' on file '%s':\n",
  550.              argv[3], FileName.Buffer);
  551.          status = ea_set(FileHandle, EaBuffer, EaLength);
  552.      } else if (wcscmp(argv[2], L"get") == 0) {
  553. -        wprintf(L"Querying extended attribute on file %s:\n",
  554. +        wprintf(L"Querying extended attribute on file '%s':\n",
  555.              argv[3], FileName.Buffer);
  556.          status = ea_get(FileHandle, argv + 3, argc - 3);
  557.      } else if (wcscmp(argv[2], L"list") == 0) {
  558. -        wprintf(L"Listing extended attributes for %s:\n", FileName.Buffer);
  559. +        wprintf(L"Listing extended attributes for '%s':\n", FileName.Buffer);
  560.          status = ea_list(FileHandle);
  561.      } else if (wcscmp(argv[2], L"create") == 0) {
  562.          wprintf(L"File '%s' was created with \n", FileName.Buffer);
  563. --
  564. 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