pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for testing+misc, 2024-07-19
Posted by Anonymous on Fri 19th Jul 2024 16:37
raw | new post

  1. From 7ab1a731a8e8912cd15b27f5f0cc52c9ff6ebef3 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Fri, 19 Jul 2024 11:26:15 +0200
  4. Subject: [PATCH 1/2] Backout "sys: Driver code should use |NTSTATUS()| to test
  5.  for success", needs mor work
  6.  
  7. Backout commit #79da3c97ec17d1dc59212f9be01d10392c943540 ("sys: Driver
  8. code should use |NTSTATUS()| to test for success"), this seems
  9. to cause kernel crashes.
  10.  
  11. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  12. ---
  13.  sys/nfs41_driver.c | 18 ++++++++----------
  14.  1 file changed, 8 insertions(+), 10 deletions(-)
  15.  
  16. diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
  17. index 50f7342..8a92bdb 100644
  18. --- a/sys/nfs41_driver.c
  19. +++ b/sys/nfs41_driver.c
  20. @@ -1464,7 +1464,7 @@ NTSTATUS handle_upcall(
  21.  #else
  22.      status = SeImpersonateClientEx(entry->psec_ctx, NULL);
  23.  #endif /* NFS41_DRIVER_STABILITY_HACKS */
  24. -    if (!NT_SUCCESS(status)) {
  25. +    if (status != STATUS_SUCCESS) {
  26.          print_error("handle_upcall: "
  27.              "SeImpersonateClientEx() failed 0x%x\n", status);
  28.          goto out;
  29. @@ -1532,10 +1532,8 @@ NTSTATUS handle_upcall(
  30.          print_error("Unknown nfs41 ops %d\n", entry->opcode);
  31.      }
  32.  
  33. -#if 0
  34. -    if (NT_SUCCESS(status))
  35. +    if (status == STATUS_SUCCESS)
  36.          print_hexbuf(0, (unsigned char *)"upcall buffer", pbOut, *len);
  37. -#endif
  38.  
  39.  out:
  40.      return status;
  41. @@ -1593,7 +1591,7 @@ NTSTATUS nfs41_UpcallCreate(
  42.           */
  43.          status = SeCreateClientSecurityFromSubjectContext(&sec_ctx, &sec_qos,
  44.                      FALSE, entry->psec_ctx);
  45. -        if (!NT_SUCCESS(status)) {
  46. +        if (status != STATUS_SUCCESS) {
  47.              print_error("nfs41_UpcallCreate: "
  48.                  "SeCreateClientSecurityFromSubjectContext() "
  49.                  "failed with 0x%x\n",
  50. @@ -1713,8 +1711,8 @@ process_upcall:
  51.          ExAcquireFastMutex(&entry->lock);
  52.          nfs41_AddEntry(downcallLock, downcall, entry);
  53.          status = handle_upcall(RxContext, entry, &len);
  54. -        if (NT_SUCCESS(status) &&
  55. -            (entry->state == NFS41_WAITING_FOR_UPCALL))
  56. +        if (status == STATUS_SUCCESS &&
  57. +                entry->state == NFS41_WAITING_FOR_UPCALL)
  58.              entry->state = NFS41_WAITING_FOR_DOWNCALL;
  59.          ExReleaseFastMutex(&entry->lock);
  60.          if (status) {
  61. @@ -2144,7 +2142,7 @@ NTSTATUS nfs41_downcall(
  62.      }
  63.      ExReleaseFastMutex(&cur->lock);
  64.      if (cur->async_op) {
  65. -        if (NT_SUCCESS(cur->status)) {
  66. +        if (cur->status == STATUS_SUCCESS) {
  67.              cur->u.ReadWrite.rxcontext->StoredStatus = STATUS_SUCCESS;
  68.              cur->u.ReadWrite.rxcontext->InformationToReturn =
  69.                  cur->buf_len;
  70. @@ -2397,7 +2395,7 @@ NTSTATUS nfs41_CreateConnection(
  71.  
  72.      status = nfs41_GetConnectionInfoFromBuffer(Buffer, BufferLen,
  73.          &FileName, &EaBuffer, &EaLength);
  74. -    if (!NT_SUCCESS(status))
  75. +    if (status != STATUS_SUCCESS)
  76.          goto out;
  77.  
  78.      status = GetConnectionHandle(&FileName, EaBuffer, EaLength, &Handle);
  79. @@ -2502,7 +2500,7 @@ NTSTATUS nfs41_DeleteConnection (
  80.      FileName.MaximumLength = (USHORT) ConnectNameLen;
  81.  
  82.      status = GetConnectionHandle(&FileName, NULL, 0, &Handle);
  83. -    if (!NT_SUCCESS(status))
  84. +    if (status != STATUS_SUCCESS)
  85.          goto out;
  86.  
  87.      status = ObReferenceObjectByHandle(Handle, 0L, NULL, KernelMode,
  88. --
  89. 2.45.1
  90.  
  91. From 774dec64c24594f543d4eb3aa1d19b7b56e5b055 Mon Sep 17 00:00:00 2001
  92. From: Roland Mainz <roland.mainz@nrubsig.org>
  93. Date: Fri, 19 Jul 2024 14:50:08 +0200
  94. Subject: [PATCH 2/2] cygwin,tests: Add
  95.  tests/fstest_make_numtree1/fstest_make_numtree1.ksh93+bmake dependicy
  96.  
  97. Add tests/fstest_make_numtree1/fstest_make_numtree1.ksh93
  98. and bmake (BSD make) dependicy
  99.  
  100. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  101. ---
  102.  cygwin/README.bintarball.txt                  |   5 +-
  103.  .../fstest_make_numtree1.ksh93                | 165 ++++++++++++++++++
  104.  tests/manual_testing.txt                      |   7 +
  105.  3 files changed, 175 insertions(+), 2 deletions(-)
  106.  create mode 100644 tests/fstest_make_numtree1/fstest_make_numtree1.ksh93
  107.  
  108. diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
  109. index 8101f2b..8cca4cc 100644
  110. --- a/cygwin/README.bintarball.txt
  111. +++ b/cygwin/README.bintarball.txt
  112. @@ -117,6 +117,7 @@ NFSv4.1 client and filesystem driver for Windows 10/11
  113.      - Packages (recommended):
  114.          libnfs-utils (for /usr/bin/nfs-ls)
  115.          make
  116. +        bmake
  117.          git
  118.          gcc-core
  119.          gcc-g++
  120. @@ -148,7 +149,7 @@ echo %PROCESSOR_ARCHITECTURE%
  121.  # 1. Get installer from https://cygwin.com/setup-x86_64.exe
  122.  curl --remote-name "https://www.cygwin.com/setup-x86_64.exe"
  123.  # 2. Run installer with these arguments:
  124. -setup-x86_64.exe -q --site "https://mirrors.kernel.org/sourceware/cygwin" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,git,dos2unix,unzip
  125. +setup-x86_64.exe -q --site "https://mirrors.kernel.org/sourceware/cygwin" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,bmake,git,dos2unix,unzip
  126.  # ---- snip ----
  127.  
  128.  
  129. @@ -159,7 +160,7 @@ setup-x86_64.exe -q --site "https://mirrors.kernel.org/sourceware/cygwin" -P cyg
  130.  # 1. Get installer from https://www.cygwin.com/setup-x86.exe
  131.  curl --remote-name "https://www.cygwin.com/setup-x86.exe"
  132.  # 2. Run installer with these arguments:
  133. -setup-x86.exe --allow-unsupported-windows -q --no-verify --site "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/2022/11/23/063457" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,git,dos2unix,unzip
  134. +setup-x86.exe --allow-unsupported-windows -q --no-verify --site "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/2022/11/23/063457" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,bmake,git,dos2unix,unzip
  135.  # ---- snip ----
  136.  
  137.  
  138. diff --git a/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93 b/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93
  139. new file mode 100644
  140. index 0000000..ccfbe94
  141. --- /dev/null
  142. +++ b/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93
  143. @@ -0,0 +1,165 @@
  144. +#!/bin/ksh93
  145. +
  146. +#
  147. +# fstest_make_numtree1.ksh93 - filesystem stress test using parallel makefile
  148. +#
  149. +# The script builds a makefile to generate number sequence
  150. +# The resulting Makefile is intended to be used with
  151. +# $ bmake -j128 all # as filesystem test
  152. +#
  153. +# Written by Roland Mainz <roland.mainz@nrubsig.org>
  154. +#
  155. +
  156. +function genmakefile_make_number_seq
  157. +{
  158. +       set -o nounset
  159. +       nameref out_maketarget=$1
  160. +       integer start_i=$2
  161. +       integer stop_i=$3
  162. +       typeset payload=$4
  163. +       integer i
  164. +       typeset -a make_targets
  165. +
  166. +       if (( (stop_i - start_i) > 10 )) ; then
  167. +               (( i=(stop_i - start_i)/2 ))
  168. +               genmakefile_make_number_seq make_targets[0] $start_i $(( start_i+i )) "$payload"
  169. +               genmakefile_make_number_seq make_targets[1] $(( start_i+i )) $stop_i  "$payload"
  170. +       else
  171. +               for ((i=start_i ; i < stop_i ; i++ )) ; do
  172. +                       printf 'i_%d:\n' i
  173. +                       printf '\t@printf "%d\\t%s\\n" >"i_%d"\n' i "$payload" i
  174. +                       make_targets+=( "i_$i" )
  175. +               done
  176. +       fi
  177. +
  178. +       out_maketarget="i_${start_i}_${stop_i}"
  179. +       printf 'i_%d_%d: %s\n' start_i stop_i "${make_targets[*]}"
  180. +
  181. +       printf '\tcat '
  182. +       printf '%q ' "${make_targets[@]}"
  183. +       printf ' >"%s"\n' "$out_maketarget"
  184. +
  185. +       return 0
  186. +}
  187. +
  188. +function genmakefile
  189. +{
  190. +       set -o nounset
  191. +       typeset make_target
  192. +       integer max_num=$1
  193. +       typeset string_payload=$2
  194. +
  195. +       genmakefile_make_number_seq make_target 0 ${max_num} "${string_payload}"
  196. +
  197. +       printf 'all: %s\n' "$make_target"
  198. +
  199. +       return 0
  200. +}
  201. +
  202. +function parallal_make
  203. +{
  204. +       if true ; then
  205. +               # BSD make
  206. +               bmake -j 128 "$@"
  207. +       else
  208. +               # GNU make
  209. +               make --load-average 128 -j 128 "$@"
  210. +       fi
  211. +}
  212. +
  213. +function main
  214. +{
  215. +       set -o nounset
  216. +       typeset subcmd="$1"
  217. +
  218. +       compound config=(
  219. +               # workdir
  220. +               typeset workdir="$PWD/fstest_make_numtree1_workdir"
  221. +               # max number of iterations
  222. +               integer max_num=4000
  223. +               # 8192 bytes of payload
  224. +               typeset string_payload="$(
  225. +                       integer p ;
  226. +                       for ((p=0 ; p < 8192 ; p++ )) ; do
  227. +                               printf '%x' $((p%0x10)) ;
  228. +                       done)"
  229. +       )
  230. +
  231. +       #
  232. +       # We need BSD make, as GNU make -j128 somehow does not
  233. +       # yield parallism
  234. +       #
  235. +       if [[ "$(which 'bmake' 2>'/dev/null')" == '' ]] ; then
  236. +               print -u2 -f $"%s: bmake (BSD make) required\n" "${.sh.file}"
  237. +               return 1
  238. +       fi
  239. +       if [[ "$(which 'seq' 2>'/dev/null')" == '' ]] ; then
  240. +               print -u2 -f $"%s: seq required\n" "${.sh.file}"
  241. +               return 1
  242. +       fi
  243. +
  244. +       #
  245. +       # subcmd dispatch
  246. +       #
  247. +       case "$subcmd" in
  248. +               'generate')
  249. +                       set -o xtrace
  250. +                       mkdir -p -- "${config.workdir}"
  251. +                       cd -- "${config.workdir}" || return $?
  252. +
  253. +                       genmakefile ${config.max_num} "${config.string_payload}" >"make_numtree1.Makefile"
  254. +                       set +o xtrace
  255. +                       ;;
  256. +               'run')
  257. +                       set -o xtrace
  258. +                       cd -- "${config.workdir}" || return $?
  259. +
  260. +                       time parallal_make -f "make_numtree1.Makefile" all
  261. +                       set +o xtrace
  262. +                       ;;
  263. +               'clean')
  264. +                       set -o xtrace
  265. +                       rm -rf -- "${config.workdir}"
  266. +                       set +o xtrace
  267. +                       ;;
  268. +               # all-in-one
  269. +               'all')
  270. +                       set -o xtrace
  271. +                       (
  272. +                               set -o errexit
  273. +                               rm -rf -- "${config.workdir}"
  274. +                               mkdir -p -- "${config.workdir}"
  275. +                               cd -- "${config.workdir}" || return $?
  276. +
  277. +                               genmakefile ${config.max_num} "${config.string_payload}" >"make_numtree1.Makefile"
  278. +
  279. +                               time parallal_make -f "make_numtree1.Makefile" all
  280. +                               ls -l "i_0_${config.max_num}"
  281. +
  282. +                               # compare results (minus payload) with output of /usr/bin/seq
  283. +                               diff -u <(awk '{ print $1 }' "i_0_${config.max_num}") <(seq 0 $(( config.max_num-1 )))
  284. +                               set +o xtrace
  285. +
  286. +                               # we only reach this if we did not leave the
  287. +                               # subshell via errexit
  288. +                               printf $"#### Run OK ####\n"
  289. +                       )
  290. +                       return $?
  291. +                       ;;
  292. +
  293. +               *)
  294. +                       print -u2 -f \
  295. +                               $"%s: Unknown subcmd, supported are 'generate', 'run', 'clean', 'all'\n" \
  296. +                               "${.sh.file}"
  297. +                       return 1
  298. +                       ;;
  299. +       esac
  300. +
  301. +       return 0
  302. +}
  303. +
  304. +builtin mkdir
  305. +builtin printf
  306. +
  307. +main "$@"
  308. +# EOF.
  309. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  310. index 9a66289..27da444 100644
  311. --- a/tests/manual_testing.txt
  312. +++ b/tests/manual_testing.txt
  313. @@ -16,6 +16,7 @@
  314.  #   mingw64-x86_64-clang
  315.  #   gdb
  316.  #   make
  317. +#   bmake
  318.  #   netpbm
  319.  #   git
  320.  #   subversion
  321. @@ -334,4 +335,10 @@ chmod a+rx setup-x86_64.exe
  322.  svn checkout https://svn.FreeBSD.org/base/head/share/man
  323.  
  324.  
  325. +#
  326. +# Run parallel make job on NFSv4.1 filesystem (/cygdrive/n/xxx/)
  327. +#
  328. +cd /cygdrive/n/xxx/
  329. +time ksh93 $msnfs41clientgitroot/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93 all
  330. +
  331.  # EOF.
  332. --
  333. 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