pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for tests, cleanup+misc, 2024-11-16
Posted by Anonymous on Sat 16th Nov 2024 15:48
raw | new post

  1. From 9ea2021bf9c88d29e6d81ff2eec6e92a36f32222 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Sat, 16 Nov 2024 14:03:38 +0100
  4. Subject: [PATCH 1/5] tests: Update tests for Windows native tar
  5.  
  6. Update tests for Windows native tar to cover more problem areas.
  7.  
  8. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  9. ---
  10. tests/wintartests/wintartest_seq001.bash | 110 +++++++++++++++++------
  11.  1 file changed, 84 insertions(+), 26 deletions(-)
  12.  
  13. diff --git a/tests/wintartests/wintartest_seq001.bash b/tests/wintartests/wintartest_seq001.bash
  14. index 489d169..ee9652b 100644
  15. --- a/tests/wintartests/wintartest_seq001.bash
  16. +++ b/tests/wintartests/wintartest_seq001.bash
  17. @@ -11,41 +11,99 @@
  18.  # Written by Roland Mainz <roland.mainz@nrubsig.org>
  19.  #
  20.  
  21. -export PATH='/bin:/usr/bin'
  22. +function test_wintar_seq
  23. +{
  24. +       set -o xtrace
  25. +       set -o errexit
  26. +       set -o nounset
  27.  
  28. -typeset -i i
  29. -typeset out
  30. +       # config
  31. +       typeset use_bzip2=$1
  32. +       typeset use_localdiskfortar=$2
  33.  
  34. -set -o xtrace
  35. -set -o errexit
  36. +       # local vars
  37. +       typeset tarfile_dir
  38. +       typeset tarfilename
  39. +       typeset -i i
  40. +       typeset out
  41. +       typeset -a testfiles
  42. +       typeset currf
  43.  
  44. -# Set umask=0000 to avoid permission trouble with SMB filesystems
  45. -umask 0000
  46. +       # seq 1040 == 4093 bytes
  47. +       # seq 1042 == 4103 bytes
  48. +       for i in 1 100 1040 5000 10000 12000 ; do
  49. +               rm -f -- "${i}seq.txt"
  50. +               seq "$i" >"${i}seq.txt"
  51. +               testfiles+=( "${i}seq.txt" )
  52. +       done
  53.  
  54. -rm -f '10000seq.txt'
  55. -seq 100000 >'10000seq.txt' ; tar -cvf - '10000seq.txt' >'10000seq.tar' #| pbzip2 -1 >'10000seq.tar.bz2'
  56. +       if "${use_localdiskfortar}" ; then
  57. +               tarfile_dir='/tmp'
  58. +       else
  59. +               tarfile_dir="$PWD"
  60. +       fi
  61.  
  62. -rm -Rf 'tmp'
  63. -mkdir 'tmp'
  64. -cd 'tmp'
  65. +       if ${use_bzip2} ; then
  66. +               tarfilename="${tarfile_dir}/test_seq.tar.bz2"
  67. +               tar -cvf - "${testfiles[@]}" | pbzip2 -1 >"${tarfilename}"
  68. +       else
  69. +               tarfilename="${tarfile_dir}/test_seq.tar"
  70. +               tar -cvf - "${testfiles[@]}" >"${tarfilename}"
  71. +       fi
  72.  
  73. -set +o xtrace
  74. +       rm -Rf 'tmp'
  75. +       mkdir 'tmp'
  76. +       cd 'tmp'
  77.  
  78. -for (( i=0 ; i < 2000 ; i++ )) ; do
  79. -       printf '# Cycle %d:\n' "$i"
  80. -       /cygdrive/c/Windows/system32/tar -xvf "$(cygpath -w '../10000seq.tar')"
  81. -       out="$(od -x -v '10000seq.txt' | grep -F ' 0000' | head -n 5)"
  82. +       set +o xtrace
  83.  
  84. -       if [[ "$out" != '' ]] ; then
  85. -               printf '# ERROR: Sequence of zero bytes in plain /usr/bin/seq output found:\n'
  86. -               printf -- '---- snip ----\n%s\n---- snip ----\n' "$out"
  87. -               exit 1
  88. -       fi
  89. +       for (( i=0 ; i < 2000 ; i++ )) ; do
  90. +               printf '#### Test cycle %d (usingbzip=%s,tarfileonlocaldisk=%s):\n' "$i" "$use_bzip2" "$use_localdiskfortar"
  91. +               /cygdrive/c/Windows/system32/tar -xvf "$(cygpath -w "${tarfilename}")"
  92. +
  93. +               for currf in "${testfiles[@]}" ; do
  94. +                       if [[ ! -r "$currf" ]] ; then
  95. +                               printf '## ERROR: File %q not found.\n' "$currf"
  96. +                               return 1
  97. +                       fi
  98. +                       if [[ ! -s "$currf" ]] ; then
  99. +                               printf '## ERROR: File %q is empty (ls -l == "%s").\n' "$currf" "$(ls -l "$currf")"
  100. +                               return 1
  101. +                       fi
  102. +
  103. +                       out="$(od -A x -t x1 -v "$currf" | grep -F ' 00' | head -n 5)"
  104. +
  105. +                       if [[ "$out" != '' ]] ; then
  106. +                               printf '## ERROR: Zero byte in plain /usr/bin/seq output %q found:\n' "$currf"
  107. +                               printf -- '---- snip ----\n%s\n---- snip ----\n' "$out"
  108. +                               return 1
  109. +                       fi
  110. +               done
  111. +
  112. +               rm -f -- "${testfiles[@]}"
  113. +       done
  114.  
  115. -       rm -f '10000seq.txt'
  116. -done
  117. +       printf '##### SUCCESS\n'
  118.  
  119. -printf '# SUCCESS\n'
  120. +       return 0
  121. +}
  122. +
  123. +
  124. +#
  125. +# main
  126. +#
  127. +
  128. +export PATH='/bin:/usr/bin'
  129. +
  130. +if [[ ! -x '/cygdrive/c/Windows/system32/tar' ]] ; then
  131. +       printf $"%s: %s not found.\n" \
  132. +               "$0" '/cygdrive/c/Windows/system32/tar' 1>&2
  133. +       exit 1
  134. +fi
  135. +
  136. +# Set umask=0000 to avoid permission trouble on SMB filesystems
  137. +umask 0000
  138.  
  139. -exit 0
  140. +test_wintar_seq true true
  141. +exit $?
  142.  # EOF.
  143. --
  144. 2.45.1
  145.  
  146. From 77d1590c0d1b51ac0106328c64720e293d9dc790 Mon Sep 17 00:00:00 2001
  147. From: Roland Mainz <roland.mainz@nrubsig.org>
  148. Date: Sat, 16 Nov 2024 15:22:20 +0100
  149. Subject: [PATCH 2/5] daemon,sys: Rename kernel driver op prefix from |NFS41_|
  150.  to |NFS41_SYSOP_|
  151.  
  152. Rename kernel driver op prefix from |NFS41_| to |NFS41_SYSOP_|
  153. to avoid confusion.
  154.  
  155. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  156. ---
  157. daemon/acl.c              |  4 +-
  158.  daemon/daemon_debug.c     | 41 ++++++++++----------
  159.  daemon/ea.c               |  8 ++--
  160.  daemon/getattr.c          |  6 +--
  161.  daemon/lock.c             |  8 ++--
  162.  daemon/mount.c            | 12 +++---
  163.  daemon/nfs41_daemon.c     |  2 +-
  164.  daemon/open.c             | 12 +++---
  165.  daemon/readdir.c          |  4 +-
  166.  daemon/readwrite.c        |  4 +-
  167.  daemon/setattr.c          |  4 +-
  168.  daemon/symlink.c          |  4 +-
  169.  daemon/upcall.c           | 14 +++----
  170.  daemon/volume.c           |  4 +-
  171.  sys/nfs41_driver.h        | 42 ++++++++++-----------
  172.  sys/nfs41sys_acl.c        |  4 +-
  173.  sys/nfs41sys_debug.c      | 36 +++++++++---------
  174.  sys/nfs41sys_dir.c        |  2 +-
  175.  sys/nfs41sys_driver.c     |  4 +-
  176.  sys/nfs41sys_ea.c         |  6 +--
  177.  sys/nfs41sys_fileinfo.c   |  4 +-
  178.  sys/nfs41sys_lock.c       |  4 +-
  179.  sys/nfs41sys_mount.c      |  4 +-
  180.  sys/nfs41sys_openclose.c  |  4 +-
  181.  sys/nfs41sys_readwrite.c  |  4 +-
  182.  sys/nfs41sys_symlink.c    |  4 +-
  183.  sys/nfs41sys_updowncall.c | 78 +++++++++++++++++++--------------------
  184.  sys/nfs41sys_volinfo.c    |  2 +-
  185.  28 files changed, 163 insertions(+), 162 deletions(-)
  186.  
  187. diff --git a/daemon/acl.c b/daemon/acl.c
  188. index b9b0191..27e04f2 100644
  189. --- a/daemon/acl.c
  190. +++ b/daemon/acl.c
  191. @@ -64,7 +64,7 @@ static int parse_getacl(unsigned char *buffer, uint32_t length,
  192.      status = safe_read(&buffer, &length, &args->query, sizeof(args->query));
  193.      if (status) goto out;
  194.  
  195. -    DPRINTF(1, ("parsing NFS41_ACL_QUERY: info_class=%d\n", args->query));
  196. +    DPRINTF(1, ("parsing NFS41_SYSOP_ACL_QUERY: info_class=%d\n", args->query));
  197.  out:
  198.      return status;
  199.  }
  200. @@ -526,7 +526,7 @@ static int parse_setacl(unsigned char *buffer, uint32_t length,
  201.      if (status) goto out;
  202.      args->sec_desc = (PSECURITY_DESCRIPTOR)buffer;
  203.  
  204. -    DPRINTF(1, ("parsing NFS41_ACL_SET: info_class=%d sec_desc_len=%d\n",
  205. +    DPRINTF(1, ("parsing NFS41_SYSOP_ACL_SET: info_class=%d sec_desc_len=%d\n",
  206.              args->query, sec_desc_len));
  207.  out:
  208.      return status;
  209. diff --git a/daemon/daemon_debug.c b/daemon/daemon_debug.c
  210. index a8d4f25..15a3855 100644
  211. --- a/daemon/daemon_debug.c
  212. +++ b/daemon/daemon_debug.c
  213. @@ -426,26 +426,27 @@ const char* opcode2string(nfs41_opcodes opcode)
  214.  {
  215.      switch(opcode) {
  216.  #define NFSOPCODE_TO_STRLITERAL(e) case e: return #e;
  217. -        NFSOPCODE_TO_STRLITERAL(NFS41_INVALID_OPCODE0)
  218. -        NFSOPCODE_TO_STRLITERAL(NFS41_SHUTDOWN)
  219. -        NFSOPCODE_TO_STRLITERAL(NFS41_MOUNT)
  220. -        NFSOPCODE_TO_STRLITERAL(NFS41_UNMOUNT)
  221. -        NFSOPCODE_TO_STRLITERAL(NFS41_OPEN)
  222. -        NFSOPCODE_TO_STRLITERAL(NFS41_CLOSE)
  223. -        NFSOPCODE_TO_STRLITERAL(NFS41_READ)
  224. -        NFSOPCODE_TO_STRLITERAL(NFS41_WRITE)
  225. -        NFSOPCODE_TO_STRLITERAL(NFS41_LOCK)
  226. -        NFSOPCODE_TO_STRLITERAL(NFS41_UNLOCK)
  227. -        NFSOPCODE_TO_STRLITERAL(NFS41_DIR_QUERY)
  228. -        NFSOPCODE_TO_STRLITERAL(NFS41_FILE_QUERY)
  229. -        NFSOPCODE_TO_STRLITERAL(NFS41_FILE_QUERY_TIME_BASED_COHERENCY)
  230. -        NFSOPCODE_TO_STRLITERAL(NFS41_FILE_SET)
  231. -        NFSOPCODE_TO_STRLITERAL(NFS41_EA_SET)
  232. -        NFSOPCODE_TO_STRLITERAL(NFS41_EA_GET)
  233. -        NFSOPCODE_TO_STRLITERAL(NFS41_SYMLINK)
  234. -        NFSOPCODE_TO_STRLITERAL(NFS41_VOLUME_QUERY)
  235. -        NFSOPCODE_TO_STRLITERAL(NFS41_ACL_QUERY)
  236. -        NFSOPCODE_TO_STRLITERAL(NFS41_ACL_SET)
  237. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_INVALID_OPCODE0)
  238. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_SHUTDOWN)
  239. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_MOUNT)
  240. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_UNMOUNT)
  241. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_OPEN)
  242. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_CLOSE)
  243. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_READ)
  244. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_WRITE)
  245. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_LOCK)
  246. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_UNLOCK)
  247. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_DIR_QUERY)
  248. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_FILE_QUERY)
  249. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY)
  250. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_FILE_SET)
  251. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_EA_SET)
  252. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_EA_GET)
  253. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_SYMLINK)
  254. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_VOLUME_QUERY)
  255. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_ACL_QUERY)
  256. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_ACL_SET)
  257. +        NFSOPCODE_TO_STRLITERAL(NFS41_SYSOP_INVALID_OPCODE1)
  258.          default: break;
  259.      }
  260.      return "<unknown NFS41 opcode>";
  261. diff --git a/daemon/ea.c b/daemon/ea.c
  262. index ae967df..8c94588 100644
  263. --- a/daemon/ea.c
  264. +++ b/daemon/ea.c
  265. @@ -143,7 +143,7 @@ out:
  266.  }
  267.  
  268.  
  269. -/* NFS41_EA_SET */
  270. +/* NFS41_SYSOP_EA_SET */
  271.  static int parse_setexattr(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  272.  {
  273.      int status;
  274. @@ -157,7 +157,7 @@ static int parse_setexattr(unsigned char *buffer, uint32_t length, nfs41_upcall
  275.      if (status) goto out;
  276.      args->buf = buffer;
  277.  
  278. -    DPRINTF(1, ("parsing NFS41_EA_SET: mode=%o\n", args->mode));
  279. +    DPRINTF(1, ("parsing NFS41_SYSOP_EA_SET: mode=%o\n", args->mode));
  280.  out:
  281.      return status;
  282.  }
  283. @@ -211,7 +211,7 @@ static int marshall_setexattr(unsigned char *buffer, uint32_t *length, nfs41_upc
  284.  }
  285.  
  286.  
  287. -/* NFS41_EA_GET */
  288. +/* NFS41_SYSOP_EA_GET */
  289.  static int parse_getexattr(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  290.  {
  291.      int status;
  292. @@ -231,7 +231,7 @@ static int parse_getexattr(unsigned char *buffer, uint32_t length, nfs41_upcall
  293.      if (status) goto out;
  294.      args->ealist = args->ealist_len ? buffer : NULL;
  295.  
  296. -    DPRINTF(1, ("parsing NFS41_EA_GET: buf_len=%d Index %d Restart %d "
  297. +    DPRINTF(1, ("parsing NFS41_SYSOP_EA_GET: buf_len=%d Index %d Restart %d "
  298.          "Single %d\n", args->buf_len,args->eaindex, args->restart, args->single));
  299.  out:
  300.      return status;
  301. diff --git a/daemon/getattr.c b/daemon/getattr.c
  302. index f6f7e3a..8356062 100644
  303. --- a/daemon/getattr.c
  304. +++ b/daemon/getattr.c
  305. @@ -27,7 +27,7 @@
  306.  #include "nfs41_build_features.h"
  307.  #include "nfs41_ops.h"
  308.  #include "name_cache.h"
  309. -#include "nfs41_driver.h" /* only for |NFS41_FILE_QUERY*| */
  310. +#include "nfs41_driver.h" /* only for |NFS41_SYSOP_FILE_QUERY*| */
  311.  #include "upcall.h"
  312.  #include "daemon_debug.h"
  313.  
  314. @@ -58,7 +58,7 @@ int nfs41_cached_getattr(
  315.      return status;
  316.  }
  317.  
  318. -/* NFS41_FILE_QUERY, NFS41_FILE_QUERY_TIME_BASED_COHERENCY */
  319. +/* NFS41_SYSOP_FILE_QUERY, NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY */
  320.  static int parse_getattr(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  321.  {
  322.      int status;
  323. @@ -270,7 +270,7 @@ static int marshall_getattr(unsigned char *buffer, uint32_t *length, nfs41_upcal
  324.      }
  325.      status = safe_write(&buffer, length, &args->ctime, sizeof(args->ctime));
  326.      if (status) goto out;
  327. -    DPRINTF(1, ("NFS41_FILE_QUERY: downcall changattr=%llu\n", args->ctime));
  328. +    DPRINTF(1, ("NFS41_SYSOP_FILE_QUERY: downcall changattr=%llu\n", args->ctime));
  329.  out:
  330.      return status;
  331.  }
  332. diff --git a/daemon/lock.c b/daemon/lock.c
  333. index 7f72188..e79ca26 100644
  334. --- a/daemon/lock.c
  335. +++ b/daemon/lock.c
  336. @@ -166,7 +166,7 @@ static void open_unlock_remove(
  337.  }
  338.  
  339.  
  340. -/* NFS41_LOCK */
  341. +/* NFS41_SYSOP_LOCK */
  342.  static int parse_lock(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  343.  {
  344.      int status;
  345. @@ -181,7 +181,7 @@ static int parse_lock(unsigned char *buffer, uint32_t length, nfs41_upcall *upca
  346.      status = safe_read(&buffer, &length, &args->blocking, sizeof(BOOLEAN));
  347.      if (status) goto out;
  348.  
  349. -    DPRINTF(1, ("parsing NFS41_LOCK: offset=0x%llx length=0x%llx exclusive=%u "
  350. +    DPRINTF(1, ("parsing NFS41_SYSOP_LOCK: offset=0x%llx length=0x%llx exclusive=%u "
  351.              "blocking=%u\n", args->offset, args->length, args->exclusive,
  352.              args->blocking));
  353.  out:
  354. @@ -302,7 +302,7 @@ out:
  355.  }
  356.  
  357.  
  358. -/* NFS41_UNLOCK */
  359. +/* NFS41_SYSOP_UNLOCK */
  360.  static int parse_unlock(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  361.  {
  362.      int status;
  363. @@ -314,7 +314,7 @@ static int parse_unlock(unsigned char *buffer, uint32_t length, nfs41_upcall *up
  364.      args->buf = buffer;
  365.      args->buf_len = length;
  366.  
  367. -    DPRINTF(1, ("parsing NFS41_UNLOCK: count=%u\n", args->count));
  368. +    DPRINTF(1, ("parsing NFS41_SYSOP_UNLOCK: count=%u\n", args->count));
  369.  out:
  370.      return status;
  371.  }
  372. diff --git a/daemon/mount.c b/daemon/mount.c
  373. index 7db317a..e508592 100644
  374. --- a/daemon/mount.c
  375. +++ b/daemon/mount.c
  376. @@ -34,7 +34,7 @@
  377.  #endif /* NFS41_DRIVER_USE_AUTHENTICATIONID_FOR_MOUNT_NAMESPACE */
  378.  
  379.  
  380. -/* NFS41_MOUNT */
  381. +/* NFS41_SYSOP_MOUNT */
  382.  static int parse_mount(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  383.  {
  384.      int status;
  385. @@ -53,13 +53,13 @@ static int parse_mount(unsigned char *buffer, uint32_t length, nfs41_upcall *upc
  386.      status = safe_read(&buffer, &length, &args->use_nfspubfh, sizeof(DWORD));
  387.      if (status) goto out;
  388.  
  389. -    DPRINTF(1, ("parsing NFS41_MOUNT: hostport='%s' root='%s' "
  390. +    DPRINTF(1, ("parsing NFS41_SYSOP_MOUNT: hostport='%s' root='%s' "
  391.          "sec_flavor='%s' rsize=%d wsize=%d use_nfspubfh=%d\n",
  392.          args->hostport, args->path, secflavorop2name(args->sec_flavor),
  393.          args->rsize, args->wsize, args->use_nfspubfh));
  394.      return status;
  395.  out:
  396. -    DPRINTF(1, ("parsing NFS41_MOUNT: failed %d\n", status));
  397. +    DPRINTF(1, ("parsing NFS41_SYSOP_MOUNT: failed %d\n", status));
  398.      return status;
  399.  }
  400.  
  401. @@ -240,7 +240,7 @@ static int marshall_mount(unsigned char *buffer, uint32_t *length, nfs41_upcall
  402.  {
  403.      mount_upcall_args *args = &upcall->args.mount;
  404.      int status;
  405. -    DPRINTF(2, ("NFS41_MOUNT: writing pointer to nfs41_root 0x%p, version %d, "
  406. +    DPRINTF(2, ("NFS41_SYSOP_MOUNT: writing pointer to nfs41_root 0x%p, version %d, "
  407.          "lease_time %d\n", upcall->root_ref, NFS41D_VERSION, args->lease_time));
  408.      status = safe_write(&buffer, length, &upcall->root_ref, sizeof(HANDLE));
  409.      if (status) goto out;
  410. @@ -268,10 +268,10 @@ const nfs41_upcall_op nfs41_op_mount = {
  411.  };
  412.  
  413.  
  414. -/* NFS41_UNMOUNT */
  415. +/* NFS41_SYSOP_UNMOUNT */
  416.  static int parse_unmount(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  417.  {
  418. -    DPRINTF(1, ("parsing NFS41_UNMOUNT: root=0x%p\n", upcall->root_ref));
  419. +    DPRINTF(1, ("parsing NFS41_SYSOP_UNMOUNT: root=0x%p\n", upcall->root_ref));
  420.      return ERROR_SUCCESS;
  421.  }
  422.  
  423. diff --git a/daemon/nfs41_daemon.c b/daemon/nfs41_daemon.c
  424. index ede4c58..e9fec3a 100644
  425. --- a/daemon/nfs41_daemon.c
  426. +++ b/daemon/nfs41_daemon.c
  427. @@ -193,7 +193,7 @@ static unsigned int nfsd_worker_thread_main(void *args)
  428.              goto write_downcall;
  429.          }
  430.  
  431. -        if (upcall.opcode == NFS41_SHUTDOWN) {
  432. +        if (upcall.opcode == NFS41_SYSOP_SHUTDOWN) {
  433.              printf("Shutting down...\n");
  434.              exit(0);
  435.          }
  436. diff --git a/daemon/open.c b/daemon/open.c
  437. index 83fcac1..756fd9b 100644
  438. --- a/daemon/open.c
  439. +++ b/daemon/open.c
  440. @@ -378,7 +378,7 @@ out:
  441.      return status;
  442.  }
  443.  
  444. -/* NFS41_OPEN */
  445. +/* NFS41_SYSOP_OPEN */
  446.  static int parse_open(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  447.  {
  448.      int status;
  449. @@ -414,7 +414,7 @@ static int parse_open(unsigned char *buffer, uint32_t length, nfs41_upcall *upca
  450.      if (status) goto out;
  451.  
  452.  #ifdef NFS41_DRIVER_FEATURE_LOCAL_UIDGID_IN_NFSV3ATTRIBUTES
  453. -    DPRINTF(1, ("parsing NFS41_OPEN: filename='%s' access mask=%d "
  454. +    DPRINTF(1, ("parsing NFS41_SYSOP_OPEN: filename='%s' access mask=%d "
  455.          "access mode=%d\n\tfile attrs=0x%x create attrs=0x%x "
  456.          "(kernel) disposition=%d\n\topen_owner_id=%d mode=%o "
  457.          "owner_local_uid=%u owner_group_local_gid=%u "
  458. @@ -425,7 +425,7 @@ static int parse_open(unsigned char *buffer, uint32_t length, nfs41_upcall *upca
  459.          args->srv_open,
  460.          args->symlink.path, args->ea));
  461.  #else
  462. -    DPRINTF(1, ("parsing NFS41_OPEN: filename='%s' access mask=%d "
  463. +    DPRINTF(1, ("parsing NFS41_SYSOP_OPEN: filename='%s' access mask=%d "
  464.          "access mode=%d\n\tfile attrs=0x%x create attrs=0x%x "
  465.          "(kernel) disposition=%d\n\topen_owner_id=%d mode=%o "
  466.          "srv_open=0x%p symlink=%s ea=0x%p\n", args->path, args->access_mask,
  467. @@ -1088,7 +1088,7 @@ static int marshall_open(unsigned char *buffer, uint32_t *length, nfs41_upcall *
  468.              goto out;
  469.          }
  470.      }
  471. -    DPRINTF(2, ("NFS41_OPEN: downcall open_state=0x%p mode %o changeattr 0x%llu\n",
  472. +    DPRINTF(2, ("NFS41_SYSOP_OPEN: downcall open_state=0x%p mode %o changeattr 0x%llu\n",
  473.          upcall->state_ref, args->mode, args->changeattr));
  474.  out:
  475.      return status;
  476. @@ -1139,7 +1139,7 @@ out:
  477.  }
  478.  
  479.  
  480. -/* NFS41_CLOSE */
  481. +/* NFS41_SYSOP_CLOSE */
  482.  static int parse_close(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  483.  {
  484.      int status;
  485. @@ -1156,7 +1156,7 @@ static int parse_close(unsigned char *buffer, uint32_t length, nfs41_upcall *upc
  486.          if (status) goto out;
  487.      }
  488.  
  489. -    DPRINTF(1, ("parsing NFS41_CLOSE: remove=%d srv_open=%x renamed=%d "
  490. +    DPRINTF(1, ("parsing NFS41_SYSOP_CLOSE: remove=%d srv_open=%x renamed=%d "
  491.          "filename='%s'\n", args->remove, args->srv_open, args->renamed,
  492.          args->remove ? args->path : ""));
  493.  out:
  494. diff --git a/daemon/readdir.c b/daemon/readdir.c
  495. index a2d7772..d244569 100644
  496. --- a/daemon/readdir.c
  497. +++ b/daemon/readdir.c
  498. @@ -255,7 +255,7 @@ typedef union _FILE_DIR_INFO_UNION {
  499.  } FILE_DIR_INFO_UNION, *PFILE_DIR_INFO_UNION;
  500.  
  501.  
  502. -/* NFS41_DIR_QUERY */
  503. +/* NFS41_SYSOP_DIR_QUERY */
  504.  static int parse_readdir(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  505.  {
  506.      int status;
  507. @@ -278,7 +278,7 @@ static int parse_readdir(unsigned char *buffer, uint32_t length, nfs41_upcall *u
  508.      args->root = upcall->root_ref;
  509.      args->state = upcall->state_ref;
  510.  
  511. -    DPRINTF(1, ("parsing NFS41_DIR_QUERY: info_class=%d buf_len=%d "
  512. +    DPRINTF(1, ("parsing NFS41_SYSOP_DIR_QUERY: info_class=%d buf_len=%d "
  513.          "filter='%s'\n\tInitial\\Restart\\Single %d\\%d\\%d buf=0x%p\n",
  514.          args->query_class, args->buf_len, args->filter,
  515.          args->initial, args->restart, args->single, args->kbuf));
  516. diff --git a/daemon/readwrite.c b/daemon/readwrite.c
  517. index 14e4bcb..81be0dd 100644
  518. --- a/daemon/readwrite.c
  519. +++ b/daemon/readwrite.c
  520. @@ -55,7 +55,7 @@ out:
  521.      return status;
  522.  }
  523.  
  524. -/* NFS41_READ */
  525. +/* NFS41_SYSOP_READ */
  526.  static int read_from_mds(
  527.      IN nfs41_upcall *upcall,
  528.      IN stateid_arg *stateid)
  529. @@ -170,7 +170,7 @@ out:
  530.  }
  531.  
  532.  
  533. -/* NFS41_WRITE */
  534. +/* NFS41_SYSOP_WRITE */
  535.  static int write_to_mds(
  536.      IN nfs41_upcall *upcall,
  537.      IN stateid_arg *stateid)
  538. diff --git a/daemon/setattr.c b/daemon/setattr.c
  539. index 5e401a8..0c67746 100644
  540. --- a/daemon/setattr.c
  541. +++ b/daemon/setattr.c
  542. @@ -33,7 +33,7 @@
  543.  #include "daemon_debug.h"
  544.  
  545.  
  546. -/* NFS41_FILE_SET */
  547. +/* NFS41_SYSOP_FILE_SET */
  548.  static int parse_setattr(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  549.  {
  550.      int status;
  551. @@ -50,7 +50,7 @@ static int parse_setattr(unsigned char *buffer, uint32_t length, nfs41_upcall *u
  552.      args->root = upcall->root_ref;
  553.      args->state = upcall->state_ref;
  554.  
  555. -    DPRINTF(1, ("parsing NFS41_FILE_SET: filename='%s' info_class=%d "
  556. +    DPRINTF(1, ("parsing NFS41_SYSOP_FILE_SET: filename='%s' info_class=%d "
  557.          "buf_len=%d\n", args->path, args->set_class, args->buf_len));
  558.  out:
  559.      return status;
  560. diff --git a/daemon/symlink.c b/daemon/symlink.c
  561. index aaeb456..350114e 100644
  562. --- a/daemon/symlink.c
  563. +++ b/daemon/symlink.c
  564. @@ -186,7 +186,7 @@ out:
  565.  }
  566.  
  567.  
  568. -/* NFS41_SYMLINK */
  569. +/* NFS41_SYSOP_SYMLINK */
  570.  static int parse_symlink(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  571.  {
  572.      symlink_upcall_args *args = &upcall->args.symlink;
  573. @@ -202,7 +202,7 @@ static int parse_symlink(unsigned char *buffer, uint32_t length, nfs41_upcall *u
  574.      else
  575.          args->target_set = NULL;
  576.  
  577. -    DPRINTF(1, ("parsing NFS41_SYMLINK: path='%s' set=%u target='%s'\n",
  578. +    DPRINTF(1, ("parsing NFS41_SYSOP_SYMLINK: path='%s' set=%u target='%s'\n",
  579.          args->path, args->set, args->target_set));
  580.  out:
  581.      return status;
  582. diff --git a/daemon/upcall.c b/daemon/upcall.c
  583. index f19e1b3..67d6ef3 100644
  584. --- a/daemon/upcall.c
  585. +++ b/daemon/upcall.c
  586. @@ -26,7 +26,7 @@
  587.  
  588.  #include "nfs41_build_features.h"
  589.  #include "upcall.h"
  590. -#include "nfs41_driver.h" /* only for |NFS41_UNMOUNT| */
  591. +#include "nfs41_driver.h" /* only for |NFS41_SYSOP_UNMOUNT| */
  592.  #include "daemon_debug.h"
  593.  #include "util.h"
  594.  
  595. @@ -60,8 +60,8 @@ static const nfs41_upcall_op *g_upcall_op_table[] = {
  596.      &nfs41_op_lock,
  597.      &nfs41_op_unlock,
  598.      &nfs41_op_readdir,
  599. -    &nfs41_op_getattr, /* NFS41_FILE_QUERY */
  600. -    &nfs41_op_getattr, /* NFS41_FILE_QUERY_TIME_BASED_COHERENCY */
  601. +    &nfs41_op_getattr, /* NFS41_SYSOP_FILE_QUERY */
  602. +    &nfs41_op_getattr, /* NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY */
  603.      &nfs41_op_setattr,
  604.      &nfs41_op_getexattr,
  605.      &nfs41_op_setexattr,
  606. @@ -177,8 +177,8 @@ int upcall_parse(
  607.      op = g_upcall_op_table[upcall_upcode];
  608.  
  609.      if (op) {
  610. -        /* |NFS41_UNMOUNT| has 0 payload */
  611. -        if (upcall_upcode != NFS41_UNMOUNT) {
  612. +        /* |NFS41_SYSOP_UNMOUNT| has 0 payload */
  613. +        if (upcall_upcode != NFS41_SYSOP_UNMOUNT) {
  614.              EASSERT_MSG(op->arg_size >= sizeof(void*),
  615.                  ("upcall->opcode=%u\n", (unsigned int)upcall_upcode));
  616.          }
  617. @@ -186,8 +186,8 @@ int upcall_parse(
  618.      }
  619.  
  620.      if (op && op->parse) {
  621. -        /* |NFS41_UNMOUNT| has 0 payload */
  622. -        if (upcall_upcode != NFS41_UNMOUNT) {
  623. +        /* |NFS41_SYSOP_UNMOUNT| has 0 payload */
  624. +        if (upcall_upcode != NFS41_SYSOP_UNMOUNT) {
  625.              EASSERT(length > 0);
  626.          }
  627.  
  628. diff --git a/daemon/volume.c b/daemon/volume.c
  629. index 96084a0..78d21c5 100644
  630. --- a/daemon/volume.c
  631. +++ b/daemon/volume.c
  632. @@ -42,7 +42,7 @@
  633.  #define VOLUME_CACHE_EXPIRATION 20
  634.  
  635.  
  636. -/* NFS41_VOLUME_QUERY */
  637. +/* NFS41_SYSOP_VOLUME_QUERY */
  638.  static int parse_volume(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
  639.  {
  640.      int status;
  641. @@ -51,7 +51,7 @@ static int parse_volume(unsigned char *buffer, uint32_t length, nfs41_upcall *up
  642.      status = safe_read(&buffer, &length, &args->query, sizeof(FS_INFORMATION_CLASS));
  643.      if (status) goto out;
  644.  
  645. -    DPRINTF(1, ("parsing NFS41_VOLUME_QUERY: query=%d\n", args->query));
  646. +    DPRINTF(1, ("parsing NFS41_SYSOP_VOLUME_QUERY: query=%d\n", args->query));
  647.  out:
  648.      return status;
  649.  }
  650. diff --git a/sys/nfs41_driver.h b/sys/nfs41_driver.h
  651. index d53f3ed..c08e8fb 100644
  652. --- a/sys/nfs41_driver.h
  653. +++ b/sys/nfs41_driver.h
  654. @@ -62,27 +62,27 @@
  655.  
  656.  /* |_nfs41_opcodes| and |g_upcall_op_table| must be in sync! */
  657.  typedef enum _nfs41_opcodes {
  658. -    NFS41_INVALID_OPCODE0,
  659. -    NFS41_MOUNT,
  660. -    NFS41_UNMOUNT,
  661. -    NFS41_OPEN,
  662. -    NFS41_CLOSE,
  663. -    NFS41_READ,
  664. -    NFS41_WRITE,
  665. -    NFS41_LOCK,
  666. -    NFS41_UNLOCK,
  667. -    NFS41_DIR_QUERY,
  668. -    NFS41_FILE_QUERY,
  669. -    NFS41_FILE_QUERY_TIME_BASED_COHERENCY,
  670. -    NFS41_FILE_SET,
  671. -    NFS41_EA_GET,
  672. -    NFS41_EA_SET,
  673. -    NFS41_SYMLINK,
  674. -    NFS41_VOLUME_QUERY,
  675. -    NFS41_ACL_QUERY,
  676. -    NFS41_ACL_SET,
  677. -    NFS41_SHUTDOWN,
  678. -    NFS41_INVALID_OPCODE1
  679. +    NFS41_SYSOP_INVALID_OPCODE0,
  680. +    NFS41_SYSOP_MOUNT,
  681. +    NFS41_SYSOP_UNMOUNT,
  682. +    NFS41_SYSOP_OPEN,
  683. +    NFS41_SYSOP_CLOSE,
  684. +    NFS41_SYSOP_READ,
  685. +    NFS41_SYSOP_WRITE,
  686. +    NFS41_SYSOP_LOCK,
  687. +    NFS41_SYSOP_UNLOCK,
  688. +    NFS41_SYSOP_DIR_QUERY,
  689. +    NFS41_SYSOP_FILE_QUERY,
  690. +    NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY,
  691. +    NFS41_SYSOP_FILE_SET,
  692. +    NFS41_SYSOP_EA_GET,
  693. +    NFS41_SYSOP_EA_SET,
  694. +    NFS41_SYSOP_SYMLINK,
  695. +    NFS41_SYSOP_VOLUME_QUERY,
  696. +    NFS41_SYSOP_ACL_QUERY,
  697. +    NFS41_SYSOP_ACL_SET,
  698. +    NFS41_SYSOP_SHUTDOWN,
  699. +    NFS41_SYSOP_INVALID_OPCODE1
  700.  } nfs41_opcodes;
  701.  
  702.  enum rpcsec_flavors {
  703. diff --git a/sys/nfs41sys_acl.c b/sys/nfs41sys_acl.c
  704. index 55c5789..1d64293 100644
  705. --- a/sys/nfs41sys_acl.c
  706. +++ b/sys/nfs41sys_acl.c
  707. @@ -254,7 +254,7 @@ NTSTATUS nfs41_QuerySecurityInformation(
  708.              goto out;
  709.      }
  710.  
  711. -    status = nfs41_UpcallCreate(NFS41_ACL_QUERY, &nfs41_fobx->sec_ctx,
  712. +    status = nfs41_UpcallCreate(NFS41_SYSOP_ACL_QUERY, &nfs41_fobx->sec_ctx,
  713.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  714.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  715.      if (status) goto out;
  716. @@ -392,7 +392,7 @@ NTSTATUS nfs41_SetSecurityInformation(
  717.          }
  718.      }
  719.  
  720. -    status = nfs41_UpcallCreate(NFS41_ACL_SET, &nfs41_fobx->sec_ctx,
  721. +    status = nfs41_UpcallCreate(NFS41_SYSOP_ACL_SET, &nfs41_fobx->sec_ctx,
  722.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  723.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  724.      if (status) goto out;
  725. diff --git a/sys/nfs41sys_debug.c b/sys/nfs41sys_debug.c
  726. index e6b22e6..eb7ab0e 100644
  727. --- a/sys/nfs41sys_debug.c
  728. +++ b/sys/nfs41sys_debug.c
  729. @@ -655,24 +655,24 @@ void print_caching_level(int on, ULONG flag, PUNICODE_STRING name)
  730.  const char *opcode2string(int opcode)
  731.  {
  732.      switch(opcode) {
  733. -    case NFS41_SHUTDOWN: return "NFS41_SHUTDOWN";
  734. -    case NFS41_MOUNT: return "NFS41_MOUNT";
  735. -    case NFS41_UNMOUNT: return "NFS41_UNMOUNT";
  736. -    case NFS41_OPEN: return "NFS41_OPEN";
  737. -    case NFS41_CLOSE: return "NFS41_CLOSE";
  738. -    case NFS41_READ: return "NFS41_READ";
  739. -    case NFS41_WRITE: return "NFS41_WRITE";
  740. -    case NFS41_LOCK: return "NFS41_LOCK";
  741. -    case NFS41_UNLOCK: return "NFS41_UNLOCK";
  742. -    case NFS41_DIR_QUERY: return "NFS41_DIR_QUERY";
  743. -    case NFS41_FILE_QUERY: return "NFS41_FILE_QUERY";
  744. -    case NFS41_FILE_SET: return "NFS41_FILE_SET";
  745. -    case NFS41_EA_SET: return "NFS41_EA_SET";
  746. -    case NFS41_EA_GET: return "NFS41_EA_GET";
  747. -    case NFS41_SYMLINK: return "NFS41_SYMLINK";
  748. -    case NFS41_VOLUME_QUERY: return "NFS41_VOLUME_QUERY";
  749. -    case NFS41_ACL_QUERY: return "NFS41_ACL_QUERY";
  750. -    case NFS41_ACL_SET: return "NFS41_ACL_SET";
  751. +    case NFS41_SYSOP_SHUTDOWN: return "NFS41_SYSOP_SHUTDOWN";
  752. +    case NFS41_SYSOP_MOUNT: return "NFS41_SYSOP_MOUNT";
  753. +    case NFS41_SYSOP_UNMOUNT: return "NFS41_SYSOP_UNMOUNT";
  754. +    case NFS41_SYSOP_OPEN: return "NFS41_SYSOP_OPEN";
  755. +    case NFS41_SYSOP_CLOSE: return "NFS41_SYSOP_CLOSE";
  756. +    case NFS41_SYSOP_READ: return "NFS41_SYSOP_READ";
  757. +    case NFS41_SYSOP_WRITE: return "NFS41_SYSOP_WRITE";
  758. +    case NFS41_SYSOP_LOCK: return "NFS41_SYSOP_LOCK";
  759. +    case NFS41_SYSOP_UNLOCK: return "NFS41_SYSOP_UNLOCK";
  760. +    case NFS41_SYSOP_DIR_QUERY: return "NFS41_SYSOP_DIR_QUERY";
  761. +    case NFS41_SYSOP_FILE_QUERY: return "NFS41_SYSOP_FILE_QUERY";
  762. +    case NFS41_SYSOP_FILE_SET: return "NFS41_SYSOP_FILE_SET";
  763. +    case NFS41_SYSOP_EA_SET: return "NFS41_SYSOP_EA_SET";
  764. +    case NFS41_SYSOP_EA_GET: return "NFS41_SYSOP_EA_GET";
  765. +    case NFS41_SYSOP_SYMLINK: return "NFS41_SYSOP_SYMLINK";
  766. +    case NFS41_SYSOP_VOLUME_QUERY: return "NFS41_SYSOP_VOLUME_QUERY";
  767. +    case NFS41_SYSOP_ACL_QUERY: return "NFS41_SYSOP_ACL_QUERY";
  768. +    case NFS41_SYSOP_ACL_SET: return "NFS41_SYSOP_ACL_SET";
  769.      default: return "UNKNOWN";
  770.      }
  771.  }
  772. diff --git a/sys/nfs41sys_dir.c b/sys/nfs41sys_dir.c
  773. index 83109ed..0031cbf 100644
  774. --- a/sys/nfs41sys_dir.c
  775. +++ b/sys/nfs41sys_dir.c
  776. @@ -256,7 +256,7 @@ NTSTATUS nfs41_QueryDirectory(
  777.          status = STATUS_NOT_SUPPORTED;
  778.          goto out;
  779.      }
  780. -    status = nfs41_UpcallCreate(NFS41_DIR_QUERY, &nfs41_fobx->sec_ctx,
  781. +    status = nfs41_UpcallCreate(NFS41_SYSOP_DIR_QUERY, &nfs41_fobx->sec_ctx,
  782.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  783.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  784.      if (status) goto out;
  785. diff --git a/sys/nfs41sys_driver.c b/sys/nfs41sys_driver.c
  786. index 362dc82..c43a5c0 100644
  787. --- a/sys/nfs41sys_driver.c
  788. +++ b/sys/nfs41sys_driver.c
  789. @@ -283,7 +283,7 @@ NTSTATUS nfs41_shutdown_daemon(
  790.      nfs41_updowncall_entry *entry = NULL;
  791.  
  792.      DbgEn();
  793. -    status = nfs41_UpcallCreate(NFS41_SHUTDOWN, NULL, INVALID_HANDLE_VALUE,
  794. +    status = nfs41_UpcallCreate(NFS41_SYSOP_SHUTDOWN, NULL, INVALID_HANDLE_VALUE,
  795.          INVALID_HANDLE_VALUE, version, NULL, &entry);
  796.      if (status) goto out;
  797.  
  798. @@ -1247,7 +1247,7 @@ VOID fcbopen_main(PVOID ctx)
  799.                  NFS41GetNetRootExtension(cur->fcb->pNetRoot);
  800.              /* place an upcall for this srv_open */
  801.              status = nfs41_UpcallCreate(
  802. -                NFS41_FILE_QUERY_TIME_BASED_COHERENCY,
  803. +                NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY,
  804.                  &cur->nfs41_fobx->sec_ctx, cur->session,
  805.                  cur->nfs41_fobx->nfs41_open_state,
  806.                  pNetRootContext->nfs41d_version, NULL, &entry);
  807. diff --git a/sys/nfs41sys_ea.c b/sys/nfs41sys_ea.c
  808. index dee8ef1..fbd61cb 100644
  809. --- a/sys/nfs41sys_ea.c
  810. +++ b/sys/nfs41sys_ea.c
  811. @@ -317,7 +317,7 @@ NTSTATUS nfs41_SetEaInformation(
  812.      status = check_nfs41_setea_args(RxContext);
  813.      if (status) goto out;
  814.  
  815. -    status = nfs41_UpcallCreate(NFS41_EA_SET, &nfs41_fobx->sec_ctx,
  816. +    status = nfs41_UpcallCreate(NFS41_SYSOP_EA_SET, &nfs41_fobx->sec_ctx,
  817.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  818.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  819.      if (status) goto out;
  820. @@ -442,7 +442,7 @@ NTSTATUS QueryCygwinSymlink(
  821.      TargetName.MaximumLength = (USHORT)min(RxContext->Info.LengthRemaining -
  822.          HeaderLen, 0xFFFF);
  823.  
  824. -    status = nfs41_UpcallCreate(NFS41_SYMLINK, &Fobx->sec_ctx,
  825. +    status = nfs41_UpcallCreate(NFS41_SYSOP_SYMLINK, &Fobx->sec_ctx,
  826.          VNetRootContext->session, Fobx->nfs41_open_state,
  827.          NetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  828.      if (status) goto out;
  829. @@ -591,7 +591,7 @@ NTSTATUS nfs41_QueryEaInformation(
  830.      if (status != STATUS_NONEXISTENT_EA_ENTRY)
  831.          goto out;
  832.  
  833. -    status = nfs41_UpcallCreate(NFS41_EA_GET, &nfs41_fobx->sec_ctx,
  834. +    status = nfs41_UpcallCreate(NFS41_SYSOP_EA_GET, &nfs41_fobx->sec_ctx,
  835.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  836.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  837.      if (status) goto out;
  838. diff --git a/sys/nfs41sys_fileinfo.c b/sys/nfs41sys_fileinfo.c
  839. index 5a21916..a06fe0e 100644
  840. --- a/sys/nfs41sys_fileinfo.c
  841. +++ b/sys/nfs41sys_fileinfo.c
  842. @@ -317,7 +317,7 @@ NTSTATUS nfs41_QueryFileInformation(
  843.          goto out;
  844.      }
  845.  
  846. -    status = nfs41_UpcallCreate(NFS41_FILE_QUERY, &nfs41_fobx->sec_ctx,
  847. +    status = nfs41_UpcallCreate(NFS41_SYSOP_FILE_QUERY, &nfs41_fobx->sec_ctx,
  848.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  849.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  850.      if (status) {
  851. @@ -656,7 +656,7 @@ NTSTATUS nfs41_SetFileInformation(
  852.          }
  853.      }
  854.  
  855. -    status = nfs41_UpcallCreate(NFS41_FILE_SET, &nfs41_fobx->sec_ctx,
  856. +    status = nfs41_UpcallCreate(NFS41_SYSOP_FILE_SET, &nfs41_fobx->sec_ctx,
  857.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  858.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  859.      if (status) goto out;
  860. diff --git a/sys/nfs41sys_lock.c b/sys/nfs41sys_lock.c
  861. index 50f0716..12e5a45 100644
  862. --- a/sys/nfs41sys_lock.c
  863. +++ b/sys/nfs41sys_lock.c
  864. @@ -261,7 +261,7 @@ NTSTATUS nfs41_Lock(
  865.  /*  RxReleaseFcbResourceForThreadInMRx(RxContext, RxContext->pFcb,
  866.          LowIoContext->ResourceThreadId); */
  867.  
  868. -    status = nfs41_UpcallCreate(NFS41_LOCK, &nfs41_fobx->sec_ctx,
  869. +    status = nfs41_UpcallCreate(NFS41_SYSOP_LOCK, &nfs41_fobx->sec_ctx,
  870.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  871.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  872.      if (status) goto out;
  873. @@ -360,7 +360,7 @@ NTSTATUS nfs41_Unlock(
  874.  /*  RxReleaseFcbResourceForThreadInMRx(RxContext, RxContext->pFcb,
  875.          LowIoContext->ResourceThreadId); */
  876.  
  877. -    status = nfs41_UpcallCreate(NFS41_UNLOCK, &nfs41_fobx->sec_ctx,
  878. +    status = nfs41_UpcallCreate(NFS41_SYSOP_UNLOCK, &nfs41_fobx->sec_ctx,
  879.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  880.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  881.      if (status) goto out;
  882. diff --git a/sys/nfs41sys_mount.c b/sys/nfs41sys_mount.c
  883. index 76da602..37b7f0c 100644
  884. --- a/sys/nfs41sys_mount.c
  885. +++ b/sys/nfs41sys_mount.c
  886. @@ -181,7 +181,7 @@ NTSTATUS nfs41_unmount(
  887.  #ifdef DEBUG_MOUNT
  888.      DbgEn();
  889.  #endif
  890. -    status = nfs41_UpcallCreate(NFS41_UNMOUNT, NULL, session,
  891. +    status = nfs41_UpcallCreate(NFS41_SYSOP_UNMOUNT, NULL, session,
  892.          INVALID_HANDLE_VALUE, version, NULL, &entry);
  893.      if (status) goto out;
  894.  
  895. @@ -252,7 +252,7 @@ NTSTATUS nfs41_mount(
  896.      DbgP("Server Name '%wZ' Mount Point '%wZ' SecFlavor %d\n",
  897.          &config->SrvName, &config->MntPt, sec_flavor);
  898.  #endif
  899. -    status = nfs41_UpcallCreate(NFS41_MOUNT, NULL, *session,
  900. +    status = nfs41_UpcallCreate(NFS41_SYSOP_MOUNT, NULL, *session,
  901.          INVALID_HANDLE_VALUE, *version, &config->MntPt, &entry);
  902.      if (status) goto out;
  903.  
  904. diff --git a/sys/nfs41sys_openclose.c b/sys/nfs41sys_openclose.c
  905. index 0a182af..af0cf10 100644
  906. --- a/sys/nfs41sys_openclose.c
  907. +++ b/sys/nfs41sys_openclose.c
  908. @@ -583,7 +583,7 @@ NTSTATUS nfs41_Create(
  909.      status = check_nfs41_create_args(RxContext);
  910.      if (status) goto out;
  911.  
  912. -    status = nfs41_UpcallCreate(NFS41_OPEN, NULL,
  913. +    status = nfs41_UpcallCreate(NFS41_SYSOP_OPEN, NULL,
  914.          pVNetRootContext->session, INVALID_HANDLE_VALUE,
  915.          pNetRootContext->nfs41d_version,
  916.          SrvOpen->pAlreadyPrefixedName, &entry);
  917. @@ -1009,7 +1009,7 @@ NTSTATUS nfs41_CloseSrvOpen(
  918.          nfs41_remove_fcb_entry(RxContext->pFcb);
  919.      }
  920.  
  921. -    status = nfs41_UpcallCreate(NFS41_CLOSE, &nfs41_fobx->sec_ctx,
  922. +    status = nfs41_UpcallCreate(NFS41_SYSOP_CLOSE, &nfs41_fobx->sec_ctx,
  923.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  924.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  925.      if (status) goto out;
  926. diff --git a/sys/nfs41sys_readwrite.c b/sys/nfs41sys_readwrite.c
  927. index c039d23..90d6d07 100644
  928. --- a/sys/nfs41sys_readwrite.c
  929. +++ b/sys/nfs41sys_readwrite.c
  930. @@ -240,7 +240,7 @@ NTSTATUS nfs41_Read(
  931.      status = check_nfs41_read_args(RxContext);
  932.      if (status) goto out;
  933.  
  934. -    status = nfs41_UpcallCreate(NFS41_READ, &nfs41_fobx->sec_ctx,
  935. +    status = nfs41_UpcallCreate(NFS41_SYSOP_READ, &nfs41_fobx->sec_ctx,
  936.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  937.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  938.      if (status) goto out;
  939. @@ -357,7 +357,7 @@ NTSTATUS nfs41_Write(
  940.      status = check_nfs41_write_args(RxContext);
  941.      if (status) goto out;
  942.  
  943. -    status = nfs41_UpcallCreate(NFS41_WRITE, &nfs41_fobx->sec_ctx,
  944. +    status = nfs41_UpcallCreate(NFS41_SYSOP_WRITE, &nfs41_fobx->sec_ctx,
  945.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  946.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  947.      if (status) goto out;
  948. diff --git a/sys/nfs41sys_symlink.c b/sys/nfs41sys_symlink.c
  949. index 938a733..b6cacd5 100644
  950. --- a/sys/nfs41sys_symlink.c
  951. +++ b/sys/nfs41sys_symlink.c
  952. @@ -276,7 +276,7 @@ NTSTATUS nfs41_SetReparsePoint(
  953.      TargetName.Buffer = &Reparse->SymbolicLinkReparseBuffer.PathBuffer[
  954.          Reparse->SymbolicLinkReparseBuffer.PrintNameOffset/sizeof(WCHAR)];
  955.  
  956. -    status = nfs41_UpcallCreate(NFS41_SYMLINK, &Fobx->sec_ctx,
  957. +    status = nfs41_UpcallCreate(NFS41_SYSOP_SYMLINK, &Fobx->sec_ctx,
  958.          VNetRootContext->session, Fobx->nfs41_open_state,
  959.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  960.      if (status) goto out;
  961. @@ -363,7 +363,7 @@ NTSTATUS nfs41_GetReparsePoint(
  962.      TargetName.MaximumLength = (USHORT)min(FsCtl->OutputBufferLength -
  963.          HeaderLen, 0xFFFF);
  964.  
  965. -    status = nfs41_UpcallCreate(NFS41_SYMLINK, &Fobx->sec_ctx,
  966. +    status = nfs41_UpcallCreate(NFS41_SYSOP_SYMLINK, &Fobx->sec_ctx,
  967.          VNetRootContext->session, Fobx->nfs41_open_state,
  968.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  969.      if (status) goto out;
  970. diff --git a/sys/nfs41sys_updowncall.c b/sys/nfs41sys_updowncall.c
  971. index f79712e..346b0de 100644
  972. --- a/sys/nfs41sys_updowncall.c
  973. +++ b/sys/nfs41sys_updowncall.c
  974. @@ -227,60 +227,60 @@ NTSTATUS handle_upcall(
  975.      }
  976.  
  977.      switch(entry->opcode) {
  978. -    case NFS41_SHUTDOWN:
  979. +    case NFS41_SYSOP_SHUTDOWN:
  980.          status = marshal_nfs41_shutdown(entry, pbOut, cbOut, len);
  981.          KeSetEvent(&entry->cond, 0, FALSE);
  982.          break;
  983. -    case NFS41_MOUNT:
  984. +    case NFS41_SYSOP_MOUNT:
  985.          status = marshal_nfs41_mount(entry, pbOut, cbOut, len);
  986.          break;
  987. -    case NFS41_UNMOUNT:
  988. +    case NFS41_SYSOP_UNMOUNT:
  989.          status = marshal_nfs41_unmount(entry, pbOut, cbOut, len);
  990.          break;
  991. -    case NFS41_OPEN:
  992. +    case NFS41_SYSOP_OPEN:
  993.          status = marshal_nfs41_open(entry, pbOut, cbOut, len);
  994.          break;
  995. -    case NFS41_READ:
  996. +    case NFS41_SYSOP_READ:
  997.          status = marshal_nfs41_rw(entry, pbOut, cbOut, len);
  998.          break;
  999. -    case NFS41_WRITE:
  1000. +    case NFS41_SYSOP_WRITE:
  1001.          status = marshal_nfs41_rw(entry, pbOut, cbOut, len);
  1002.          break;
  1003. -    case NFS41_LOCK:
  1004. +    case NFS41_SYSOP_LOCK:
  1005.          status = marshal_nfs41_lock(entry, pbOut, cbOut, len);
  1006.          break;
  1007. -    case NFS41_UNLOCK:
  1008. +    case NFS41_SYSOP_UNLOCK:
  1009.          status = marshal_nfs41_unlock(entry, pbOut, cbOut, len);
  1010.          break;
  1011. -    case NFS41_CLOSE:
  1012. +    case NFS41_SYSOP_CLOSE:
  1013.          status = marshal_nfs41_close(entry, pbOut, cbOut, len);
  1014.          break;
  1015. -    case NFS41_DIR_QUERY:
  1016. +    case NFS41_SYSOP_DIR_QUERY:
  1017.          status = marshal_nfs41_dirquery(entry, pbOut, cbOut, len);
  1018.          break;
  1019. -    case NFS41_FILE_QUERY:
  1020. -    case NFS41_FILE_QUERY_TIME_BASED_COHERENCY:
  1021. +    case NFS41_SYSOP_FILE_QUERY:
  1022. +    case NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY:
  1023.          status = marshal_nfs41_filequery(entry, pbOut, cbOut, len);
  1024.          break;
  1025. -    case NFS41_FILE_SET:
  1026. +    case NFS41_SYSOP_FILE_SET:
  1027.          status = marshal_nfs41_fileset(entry, pbOut, cbOut, len);
  1028.          break;
  1029. -    case NFS41_EA_SET:
  1030. +    case NFS41_SYSOP_EA_SET:
  1031.          status = marshal_nfs41_easet(entry, pbOut, cbOut, len);
  1032.          break;
  1033. -    case NFS41_EA_GET:
  1034. +    case NFS41_SYSOP_EA_GET:
  1035.          status = marshal_nfs41_eaget(entry, pbOut, cbOut, len);
  1036.          break;
  1037. -    case NFS41_SYMLINK:
  1038. +    case NFS41_SYSOP_SYMLINK:
  1039.          status = marshal_nfs41_symlink(entry, pbOut, cbOut, len);
  1040.          break;
  1041. -    case NFS41_VOLUME_QUERY:
  1042. +    case NFS41_SYSOP_VOLUME_QUERY:
  1043.          status = marshal_nfs41_volume(entry, pbOut, cbOut, len);
  1044.          break;
  1045. -    case NFS41_ACL_QUERY:
  1046. +    case NFS41_SYSOP_ACL_QUERY:
  1047.          status = marshal_nfs41_getacl(entry, pbOut, cbOut, len);
  1048.          break;
  1049. -    case NFS41_ACL_SET:
  1050. +    case NFS41_SYSOP_ACL_SET:
  1051.          status = marshal_nfs41_setacl(entry, pbOut, cbOut, len);
  1052.          break;
  1053.      default:
  1054. @@ -563,16 +563,16 @@ NTSTATUS nfs41_downcall(
  1055.      if (cur->state == NFS41_NOT_WAITING) {
  1056.          DbgP("[downcall] Nobody is waiting for this request!!!\n");
  1057.          switch(cur->opcode) {
  1058. -        case NFS41_WRITE:
  1059. -        case NFS41_READ:
  1060. +        case NFS41_SYSOP_WRITE:
  1061. +        case NFS41_SYSOP_READ:
  1062.              MmUnmapLockedPages(cur->buf, cur->u.ReadWrite.MdlAddress);
  1063.              break;
  1064. -        case NFS41_DIR_QUERY:
  1065. +        case NFS41_SYSOP_DIR_QUERY:
  1066.              MmUnmapLockedPages(cur->u.QueryFile.mdl_buf,
  1067.                      cur->u.QueryFile.mdl);
  1068.              IoFreeMdl(cur->u.QueryFile.mdl);
  1069.              break;
  1070. -        case NFS41_OPEN:
  1071. +        case NFS41_SYSOP_OPEN:
  1072.              if (cur->u.Open.EaMdl) {
  1073.                  MmUnmapLockedPages(cur->u.Open.EaBuffer,
  1074.                          cur->u.Open.EaMdl);
  1075. @@ -593,42 +593,42 @@ NTSTATUS nfs41_downcall(
  1076.  
  1077.      if (!tmp->status) {
  1078.          switch (tmp->opcode) {
  1079. -        case NFS41_MOUNT:
  1080. +        case NFS41_SYSOP_MOUNT:
  1081.              unmarshal_nfs41_mount(cur, &buf);
  1082.              break;
  1083. -        case NFS41_WRITE:
  1084. -        case NFS41_READ:
  1085. +        case NFS41_SYSOP_WRITE:
  1086. +        case NFS41_SYSOP_READ:
  1087.              status = unmarshal_nfs41_rw(cur, &buf);
  1088.              break;
  1089. -        case NFS41_OPEN:
  1090. +        case NFS41_SYSOP_OPEN:
  1091.              status = unmarshal_nfs41_open(cur, &buf);
  1092.              break;
  1093. -        case NFS41_DIR_QUERY:
  1094. +        case NFS41_SYSOP_DIR_QUERY:
  1095.              status = unmarshal_nfs41_dirquery(cur, &buf);
  1096.              break;
  1097. -        case NFS41_FILE_QUERY:
  1098. -        case NFS41_FILE_QUERY_TIME_BASED_COHERENCY:
  1099. +        case NFS41_SYSOP_FILE_QUERY:
  1100. +        case NFS41_SYSOP_FILE_QUERY_TIME_BASED_COHERENCY:
  1101.              unmarshal_nfs41_getattr(cur, &buf);
  1102.              break;
  1103. -        case NFS41_EA_GET:
  1104. +        case NFS41_SYSOP_EA_GET:
  1105.              unmarshal_nfs41_eaget(cur, &buf);
  1106.              break;
  1107. -        case NFS41_SYMLINK:
  1108. +        case NFS41_SYSOP_SYMLINK:
  1109.              unmarshal_nfs41_symlink(cur, &buf);
  1110.              break;
  1111. -        case NFS41_VOLUME_QUERY:
  1112. +        case NFS41_SYSOP_VOLUME_QUERY:
  1113.              unmarshal_nfs41_attrget(cur, cur->buf, &cur->buf_len, &buf);
  1114.              break;
  1115. -        case NFS41_ACL_QUERY:
  1116. +        case NFS41_SYSOP_ACL_QUERY:
  1117.              status = unmarshal_nfs41_getacl(cur, &buf);
  1118.              break;
  1119. -        case NFS41_FILE_SET:
  1120. +        case NFS41_SYSOP_FILE_SET:
  1121.              unmarshal_nfs41_setattr(cur, &cur->ChangeTime, &buf);
  1122.              break;
  1123. -        case NFS41_EA_SET:
  1124. +        case NFS41_SYSOP_EA_SET:
  1125.              unmarshal_nfs41_setattr(cur, &cur->ChangeTime, &buf);
  1126.              break;
  1127. -        case NFS41_ACL_SET:
  1128. +        case NFS41_SYSOP_ACL_SET:
  1129.              unmarshal_nfs41_setattr(cur, &cur->ChangeTime, &buf);
  1130.              break;
  1131.          }
  1132. @@ -636,8 +636,8 @@ NTSTATUS nfs41_downcall(
  1133.      ExReleaseFastMutex(&cur->lock);
  1134.      if (cur->async_op) {
  1135.          switch (cur->opcode) {
  1136. -            case NFS41_WRITE:
  1137. -            case NFS41_READ:
  1138. +            case NFS41_SYSOP_WRITE:
  1139. +            case NFS41_SYSOP_READ:
  1140.                  if (cur->status == STATUS_SUCCESS) {
  1141.                      cur->u.ReadWrite.rxcontext->StoredStatus =
  1142.                          STATUS_SUCCESS;
  1143. diff --git a/sys/nfs41sys_volinfo.c b/sys/nfs41sys_volinfo.c
  1144. index b153ddb..3648026 100644
  1145. --- a/sys/nfs41sys_volinfo.c
  1146. +++ b/sys/nfs41sys_volinfo.c
  1147. @@ -256,7 +256,7 @@ NTSTATUS nfs41_QueryVolumeInformation(
  1148.          status = STATUS_NOT_SUPPORTED;
  1149.          goto out;
  1150.      }
  1151. -    status = nfs41_UpcallCreate(NFS41_VOLUME_QUERY, &nfs41_fobx->sec_ctx,
  1152. +    status = nfs41_UpcallCreate(NFS41_SYSOP_VOLUME_QUERY, &nfs41_fobx->sec_ctx,
  1153.          pVNetRootContext->session, nfs41_fobx->nfs41_open_state,
  1154.          pNetRootContext->nfs41d_version, SrvOpen->pAlreadyPrefixedName, &entry);
  1155.      if (status) goto out;
  1156. --
  1157. 2.45.1
  1158.  
  1159. From bc31112a08d800e67208cff9780b7d8d9bd2a6eb Mon Sep 17 00:00:00 2001
  1160. From: Roland Mainz <roland.mainz@nrubsig.org>
  1161. Date: Sat, 16 Nov 2024 15:33:16 +0100
  1162. Subject: [PATCH 3/5] sys: |unmarshal_nfs41_getattr()|: Fix |cur->ChangeTime|
  1163.  datatype
  1164.  
  1165. Fix |cur->ChangeTime| datatype in |unmarshal_nfs41_getattr()|
  1166.  
  1167. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  1168. ---
  1169. sys/nfs41sys_fileinfo.c | 2 +-
  1170.  1 file changed, 1 insertion(+), 1 deletion(-)
  1171.  
  1172. diff --git a/sys/nfs41sys_fileinfo.c b/sys/nfs41sys_fileinfo.c
  1173. index a06fe0e..dae459d 100644
  1174. --- a/sys/nfs41sys_fileinfo.c
  1175. +++ b/sys/nfs41sys_fileinfo.c
  1176. @@ -157,7 +157,7 @@ void unmarshal_nfs41_getattr(
  1177.      unsigned char **buf)
  1178.  {
  1179.      unmarshal_nfs41_attrget(cur, cur->buf, &cur->buf_len, buf);
  1180. -    RtlCopyMemory(&cur->ChangeTime, *buf, sizeof(LONGLONG));
  1181. +    RtlCopyMemory(&cur->ChangeTime, *buf, sizeof(ULONGLONG));
  1182.  #ifdef DEBUG_MARSHAL_DETAIL
  1183.      if (cur->u.QueryFile.InfoClass == FileBasicInformation)
  1184.          DbgP("[unmarshal_nfs41_getattr] ChangeTime %llu\n", cur->ChangeTime);
  1185. --
  1186. 2.45.1
  1187.  
  1188. From 0e39c121f1b08b3d4f4724c51c6ec28444e4d4de Mon Sep 17 00:00:00 2001
  1189. From: Roland Mainz <roland.mainz@nrubsig.org>
  1190. Date: Sat, 16 Nov 2024 15:39:15 +0100
  1191. Subject: [PATCH 4/5] sys: Move |unmarshal_nfs41_attrget()| to
  1192.  nfs41sys_updowncall.c
  1193.  
  1194. Move |unmarshal_nfs41_attrget()| from nfs41sys_volinfo.c to
  1195. nfs41sys_updowncall.c
  1196.  
  1197. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  1198. ---
  1199. sys/nfs41sys_driver.h     | 10 +++++-----
  1200.  sys/nfs41sys_updowncall.c | 18 ++++++++++++++++++
  1201.  sys/nfs41sys_volinfo.c    | 18 ------------------
  1202.  3 files changed, 23 insertions(+), 23 deletions(-)
  1203.  
  1204. diff --git a/sys/nfs41sys_driver.h b/sys/nfs41sys_driver.h
  1205. index 721815e..9d582a6 100644
  1206. --- a/sys/nfs41sys_driver.h
  1207. +++ b/sys/nfs41sys_driver.h
  1208. @@ -788,6 +788,11 @@ NTSTATUS marshal_nfs41_header(
  1209.      unsigned char *buf,
  1210.      ULONG buf_len,
  1211.      ULONG *len);
  1212. +void unmarshal_nfs41_attrget(
  1213. +    nfs41_updowncall_entry *cur,
  1214. +    PVOID attr_value,
  1215. +    ULONG *attr_len,
  1216. +    unsigned char **buf);
  1217.  NTSTATUS nfs41_UpcallCreate(
  1218.      IN DWORD opcode,
  1219.      IN PSECURITY_CLIENT_CONTEXT clnt_sec_ctx,
  1220. @@ -834,11 +839,6 @@ NTSTATUS marshal_nfs41_volume(
  1221.      unsigned char *buf,
  1222.      ULONG buf_len,
  1223.      ULONG *len);
  1224. -void unmarshal_nfs41_attrget(
  1225. -    nfs41_updowncall_entry *cur,
  1226. -    PVOID attr_value,
  1227. -    ULONG *attr_len,
  1228. -    unsigned char **buf);
  1229.  NTSTATUS nfs41_QueryVolumeInformation(
  1230.      IN OUT PRX_CONTEXT RxContext);
  1231.  void nfs41_create_volume_info(
  1232. diff --git a/sys/nfs41sys_updowncall.c b/sys/nfs41sys_updowncall.c
  1233. index 346b0de..b359d2a 100644
  1234. --- a/sys/nfs41sys_updowncall.c
  1235. +++ b/sys/nfs41sys_updowncall.c
  1236. @@ -160,6 +160,24 @@ static void unmarshal_nfs41_header(
  1237.  #endif
  1238.  }
  1239.  
  1240. +void unmarshal_nfs41_attrget(
  1241. +    nfs41_updowncall_entry *cur,
  1242. +    PVOID attr_value,
  1243. +    ULONG *attr_len,
  1244. +    unsigned char **buf)
  1245. +{
  1246. +    ULONG buf_len;
  1247. +    RtlCopyMemory(&buf_len, *buf, sizeof(ULONG));
  1248. +    if (buf_len > *attr_len) {
  1249. +        cur->status = STATUS_BUFFER_TOO_SMALL;
  1250. +        return;
  1251. +    }
  1252. +    *buf += sizeof(ULONG);
  1253. +    *attr_len = buf_len;
  1254. +    RtlCopyMemory(attr_value, *buf, buf_len);
  1255. +    *buf += buf_len;
  1256. +}
  1257. +
  1258.  NTSTATUS handle_upcall(
  1259.      IN PRX_CONTEXT RxContext,
  1260.      IN nfs41_updowncall_entry *entry,
  1261. diff --git a/sys/nfs41sys_volinfo.c b/sys/nfs41sys_volinfo.c
  1262. index 3648026..a3efb33 100644
  1263. --- a/sys/nfs41sys_volinfo.c
  1264. +++ b/sys/nfs41sys_volinfo.c
  1265. @@ -99,24 +99,6 @@ out:
  1266.      return status;
  1267.  }
  1268.  
  1269. -void unmarshal_nfs41_attrget(
  1270. -    nfs41_updowncall_entry *cur,
  1271. -    PVOID attr_value,
  1272. -    ULONG *attr_len,
  1273. -    unsigned char **buf)
  1274. -{
  1275. -    ULONG buf_len;
  1276. -    RtlCopyMemory(&buf_len, *buf, sizeof(ULONG));
  1277. -    if (buf_len > *attr_len) {
  1278. -        cur->status = STATUS_BUFFER_TOO_SMALL;
  1279. -        return;
  1280. -    }
  1281. -    *buf += sizeof(ULONG);
  1282. -    *attr_len = buf_len;
  1283. -    RtlCopyMemory(attr_value, *buf, buf_len);
  1284. -    *buf += buf_len;
  1285. -}
  1286. -
  1287.  static void print_queryvolume_args(
  1288.      PRX_CONTEXT RxContext)
  1289.  {
  1290. --
  1291. 2.45.1
  1292.  
  1293. From 292707d8dac5de6f5b7744e52f7b0d2e8f3ac686 Mon Sep 17 00:00:00 2001
  1294. From: Roland Mainz <roland.mainz@nrubsig.org>
  1295. Date: Sat, 16 Nov 2024 16:25:31 +0100
  1296. Subject: [PATCH 5/5] cygwin: msnfs41client: Add cdb+drmemory Windows 32bit
  1297.  install paths to PATH
  1298.  
  1299. msnfs41client.bash: Add cdb+drmemory Windows 32bit install paths to PATH
  1300.  
  1301. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  1302. ---
  1303. cygwin/devel/msnfs41client.bash | 31 ++++++++++++++++++++++++-------
  1304.  1 file changed, 24 insertions(+), 7 deletions(-)
  1305.  
  1306. diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
  1307. index f0a110c..68e187e 100755
  1308. --- a/cygwin/devel/msnfs41client.bash
  1309. +++ b/cygwin/devel/msnfs41client.bash
  1310. @@ -44,6 +44,15 @@ function is_windows_admin_account
  1311.         return 1
  1312.  }
  1313.  
  1314. +function is_windows_64bit
  1315. +{
  1316. +       if [[ -d '/cygdrive/c/Windows/SysWOW64/' ]] ; then
  1317. +               return 0
  1318. +       else
  1319. +               return 1
  1320. +       fi
  1321. +}
  1322. +
  1323.  function check_machine_arch
  1324.  {
  1325.         typeset winpwd
  1326. @@ -303,7 +312,7 @@ function nfsclient_adddriver
  1327.         # 32bit applications can enumerate the ms-nfs41-client shares
  1328.         # (FIXME: technically nfs41rdr.inf should do this)
  1329.         #
  1330. -       if [[ -d '/cygdrive/c/Windows/SysWOW64/' ]] ; then
  1331. +       if is_windows_64bit ; then
  1332.                 # copy from the 32bit install dir
  1333.                 cp '../../../../../cygdrive/c/cygwin/lib/msnfs41client/nfs41_np.dll' '/cygdrive/c/Windows/SysWOW64/'
  1334.         fi
  1335. @@ -330,7 +339,7 @@ function nfsclient_removedriver
  1336.         nfs_install.exe 0
  1337.         rundll32.exe setupapi.dll,InstallHinfSection DefaultUninstall 132 ./nfs41rdr.inf
  1338.         rm /cygdrive/c/Windows/System32/nfs41_np.dll || true
  1339. -       if [[ -d '/cygdrive/c/Windows/SysWOW64/' ]] ; then
  1340. +       if is_windows_64bit ; then
  1341.                 rm '/cygdrive/c/Windows/SysWOW64/nfs41_np.dll' || true
  1342.         fi
  1343.         rm /cygdrive/c/Windows/System32/drivers/nfs41_driver.sys || true
  1344. @@ -775,16 +784,24 @@ function main
  1345.         # add Windows tools path (tasklist, taskkill etc.)
  1346.         PATH+=':/cygdrive/c/Windows/system32/'
  1347.  
  1348. -       # path to WinDBG cdb (fixme: 64bit x86-specific)
  1349. -       PATH+=':/cygdrive/c/Program Files (x86)/Windows Kits/10/Debuggers/x64/'
  1350. +       if is_windows_64bit ; then
  1351. +               # path to WinDBG cdb (fixme: 64bit x86-specific)
  1352. +               PATH+=':/cygdrive/c/Program Files (x86)/Windows Kits/10/Debuggers/x64/'
  1353. +
  1354. +               # PATH to DrMemory
  1355. +               PATH+=':/cygdrive/c/Program Files (x86)/Dr. Memory/bin/'
  1356. +       else
  1357. +               # path to WinDBG cdb (fixme: 64bit x86-specific)
  1358. +               PATH+=':/cygdrive/c/Program Files/Windows Kits/10/Debuggers/x86/'
  1359. +
  1360. +               # PATH to DrMemory
  1361. +               PATH+=':/cygdrive/c/Program Files/Dr. Memory/bin'
  1362. +       fi
  1363.  
  1364.         # PATH to VSDiagnostics.exe and AgentConfigs
  1365.         vsdiagnostics_path='/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/Team Tools/DiagnosticsHub/Collector/'
  1366.         PATH+=":${vsdiagnostics_path}"
  1367.  
  1368. -       # PATH to DrMemory
  1369. -       PATH+=':/cygdrive/c/Program Files (x86)/Dr. Memory/bin/'
  1370. -
  1371.         # my own path to pstools
  1372.         PATH+=':/home/roland_mainz/work/win_pstools/'
  1373.  
  1374. --
  1375. 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