pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for VisualStudio2022 build support, tests+misc, 2024-10-08
Posted by Anonymous on Tue 8th Oct 2024 18:11
raw | new post

  1. From 95d1d4072d92109fa8a1e0b949bce4cfb637213d Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Tue, 8 Oct 2024 14:12:52 +0200
  4. Subject: [PATCH 1/5] tests: nfsbuildtest.ksh93 should test whether required
  5.  packages are installed
  6.  
  7. nfsbuildtest.ksh93 should test whether required Cygwin packages are
  8. installed
  9.  
  10. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  11. ---
  12. tests/nfsbuildtest/nfsbuildtest.ksh93 | 74 ++++++++++++++++++++++++++-
  13.  1 file changed, 72 insertions(+), 2 deletions(-)
  14.  
  15. diff --git a/tests/nfsbuildtest/nfsbuildtest.ksh93 b/tests/nfsbuildtest/nfsbuildtest.ksh93
  16. index e24618e..0a55c51 100644
  17. --- a/tests/nfsbuildtest/nfsbuildtest.ksh93
  18. +++ b/tests/nfsbuildtest/nfsbuildtest.ksh93
  19. @@ -414,20 +414,68 @@ function msnfs41client_clean
  20.         return 0
  21.  }
  22.  
  23. -builtin id
  24. -builtin mkdir
  25. +
  26. +#
  27. +# Enumerate installed Cygwin packages and fill
  28. +# an associative array with the package names
  29. +#
  30. +function enumerate_cygwin_packages
  31. +{
  32. +       nameref package_arr=$1
  33. +       typeset i
  34. +
  35. +       /usr/bin/cygcheck -n | while read i ; do
  36. +               package_arr["$i"]='true'
  37. +       done
  38. +       return 0
  39. +}
  40. +
  41. +
  42. +#
  43. +# test if a Cygwin package is installed, based on
  44. +# the array of package names passed as $1
  45. +#
  46. +function is_cygwin_pkg_installed
  47. +{
  48. +       nameref package_arr=$1
  49. +       typeset package_name="$2"
  50. +       if [[ ! -v package_arr["$package_name"] ]] ; then
  51. +               print -u2 -f $"Cygwin package '%s' not installed.\n" "$package_name"
  52. +               return 1
  53. +       fi
  54. +
  55. +       return 0
  56. +}
  57. +
  58.  
  59.  function main
  60.  {
  61. +       typeset -A icp # installed cygwin packages
  62. +       integer errc=0 # error counter
  63.         typeset target="$1"
  64.         typeset subcmd="$2"
  65.  
  66. +       enumerate_cygwin_packages icp
  67. +
  68.         case "${target}_${subcmd}" in
  69.                 'gcc_createcache')
  70. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  71.                         gcc_createcache
  72.                         return $?
  73.                         ;;
  74.                 'gcc_build')
  75. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  76. +                       is_cygwin_pkg_installed icp 'gcc-core' || (( errc++ ))
  77. +                       is_cygwin_pkg_installed icp 'gcc-g++' || (( errc++ ))
  78. +                       is_cygwin_pkg_installed icp 'make' || (( errc++ ))
  79. +                       is_cygwin_pkg_installed icp 'flex' || (( errc++ ))
  80. +                       is_cygwin_pkg_installed icp 'bison' || (( errc++ ))
  81. +                       is_cygwin_pkg_installed icp 'libgmp-devel' || (( errc++ ))
  82. +                       is_cygwin_pkg_installed icp 'libmpfr-devel' || (( errc++ ))
  83. +                       is_cygwin_pkg_installed icp 'libmpc-devel' || (( errc++ ))
  84. +                       is_cygwin_pkg_installed icp 'libintl-devel' || (( errc++ ))
  85. +                       is_cygwin_pkg_installed icp 'libisl-devel' || (( errc++ ))
  86. +                       (( errc > 0 )) && return 1
  87.                         gcc_build
  88.                         return $?
  89.                         ;;
  90. @@ -436,10 +484,17 @@ function main
  91.                         return $?
  92.                         ;;
  93.                 'bash_createcache')
  94. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  95.                         bash_createcache
  96.                         return $?
  97.                         ;;
  98.                 'bash_build')
  99. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  100. +                       is_cygwin_pkg_installed icp 'gcc-core' || (( errc++ ))
  101. +                       is_cygwin_pkg_installed icp 'gcc-g++' || (( errc++ ))
  102. +                       is_cygwin_pkg_installed icp 'bmake' || (( errc++ ))
  103. +                       is_cygwin_pkg_installed icp 'libncurses-devel' || (( errc++ ))
  104. +                       (( errc > 0 )) && return 1
  105.                         bash_build
  106.                         return $?
  107.                         ;;
  108. @@ -448,10 +503,21 @@ function main
  109.                         return $?
  110.                         ;;
  111.                 'msnfs41client_createcache')
  112. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  113.                         msnfs41client_createcache
  114.                         return $?
  115.                         ;;
  116.                 'msnfs41client_build')
  117. +                       is_cygwin_pkg_installed icp 'git' || (( errc++ ))
  118. +                       is_cygwin_pkg_installed icp 'gcc-core' || (( errc++ ))
  119. +                       is_cygwin_pkg_installed icp 'gcc-g++' || (( errc++ ))
  120. +                       is_cygwin_pkg_installed icp 'mingw64-i686-clang' || (( errc++ ))
  121. +                       is_cygwin_pkg_installed icp 'mingw64-x86_64-clang' || (( errc++ ))
  122. +                       is_cygwin_pkg_installed icp 'make' || (( errc++ ))
  123. +                       is_cygwin_pkg_installed icp 'tar' || (( errc++ ))
  124. +                       is_cygwin_pkg_installed icp 'bzip2' || (( errc++ ))
  125. +                       is_cygwin_pkg_installed icp 'openssl' || (( errc++ ))
  126. +                       (( errc > 0 )) && return 1
  127.                         msnfs41client_build
  128.                         return $?
  129.                         ;;
  130. @@ -470,9 +536,13 @@ function main
  131.         return 1
  132.  }
  133.  
  134. +
  135.  #
  136.  # main
  137.  #
  138. +builtin id
  139. +builtin mkdir
  140. +
  141.  main "$@"
  142.  return $?
  143.  
  144. --
  145. 2.45.1
  146.  
  147. From 7726a8690ecaed6db8f6de432417d1f74521fcf5 Mon Sep 17 00:00:00 2001
  148. From: Roland Mainz <roland.mainz@nrubsig.org>
  149. Date: Tue, 8 Oct 2024 14:31:14 +0200
  150. Subject: [PATCH 2/5] sys: |nfs41_downcall()| should warn if async op is
  151.  something else than r/w
  152.  
  153. |nfs41_downcall()| should warn if async op is something else than
  154. |NFS41_READ|/|NFS41_WRITE|
  155.  
  156. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  157. ---
  158. sys/nfs41_driver.c | 33 ++++++++++++++++++++++-----------
  159.  1 file changed, 22 insertions(+), 11 deletions(-)
  160.  
  161. diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
  162. index e1ad810..b0c065f 100644
  163. --- a/sys/nfs41_driver.c
  164. +++ b/sys/nfs41_driver.c
  165. @@ -2205,18 +2205,29 @@ static NTSTATUS nfs41_downcall(
  166.      }
  167.      ExReleaseFastMutex(&cur->lock);
  168.      if (cur->async_op) {
  169. -        if (cur->status == STATUS_SUCCESS) {
  170. -            cur->u.ReadWrite.rxcontext->StoredStatus = STATUS_SUCCESS;
  171. -            cur->u.ReadWrite.rxcontext->InformationToReturn =
  172. -                cur->buf_len;
  173. -        } else {
  174. -            cur->u.ReadWrite.rxcontext->StoredStatus =
  175. -                map_readwrite_errors(cur->status);
  176. -            cur->u.ReadWrite.rxcontext->InformationToReturn = 0;
  177. +        switch (cur->opcode) {
  178. +            case NFS41_WRITE:
  179. +            case NFS41_READ:
  180. +                if (cur->status == STATUS_SUCCESS) {
  181. +                    cur->u.ReadWrite.rxcontext->StoredStatus =
  182. +                        STATUS_SUCCESS;
  183. +                    cur->u.ReadWrite.rxcontext->InformationToReturn =
  184. +                        cur->buf_len;
  185. +                } else {
  186. +                    cur->u.ReadWrite.rxcontext->StoredStatus =
  187. +                        map_readwrite_errors(cur->status);
  188. +                    cur->u.ReadWrite.rxcontext->InformationToReturn = 0;
  189. +                }
  190. +                nfs41_RemoveEntry(downcallLock, cur);
  191. +                RxLowIoCompletion(cur->u.ReadWrite.rxcontext);
  192. +                nfs41_UpcallDestroy(cur);
  193. +                break;
  194. +            default:
  195. +                print_error("##### nfs41_downcall: "
  196. +                    "unknown async opcode=%d ####\n",
  197. +                    (int)cur->opcode);
  198. +                break;
  199.          }
  200. -        nfs41_RemoveEntry(downcallLock, cur);
  201. -        RxLowIoCompletion(cur->u.ReadWrite.rxcontext);
  202. -        nfs41_UpcallDestroy(cur);
  203.      } else
  204.          KeSetEvent(&cur->cond, 0, FALSE);
  205.  
  206. --
  207. 2.45.1
  208.  
  209. From e6c6daaa21cc8986a5162c9743aa00fbf370844c Mon Sep 17 00:00:00 2001
  210. From: Roland Mainz <roland.mainz@nrubsig.org>
  211. Date: Tue, 8 Oct 2024 14:33:12 +0200
  212. Subject: [PATCH 3/5] cygwin: Install some test scripts in
  213.  /usr/share/msnfs41client/tests/
  214.  
  215. Install some test scripts in /usr/share/msnfs41client/tests/ so
  216. end-users+QA can run them
  217.  
  218. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  219. ---
  220. cygwin/Makefile.install | 5 +++++
  221.  1 file changed, 5 insertions(+)
  222.  
  223. diff --git a/cygwin/Makefile.install b/cygwin/Makefile.install
  224. index 8c31d71..dee542c 100644
  225. --- a/cygwin/Makefile.install
  226. +++ b/cygwin/Makefile.install
  227. @@ -33,6 +33,9 @@ installdest:
  228.         mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/etc
  229.         mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/src/msnfs41client
  230.         mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/man/man1
  231. +       mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client
  232. +       mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests
  233. +       mkdir -p $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc
  234.         cp -r $(VS_BUILD_DIR)/nfsd.exe          $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfsd_debug.exe
  235.         cp -r $(VS_BUILD_DIR)/nfsd.pdb          $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/nfsd_debug.pdb
  236.         cp -r $(VS_BUILD_DIR)/nfs_mount.*       $(DESTDIR)/$(CYGWIN_BASEPATH)/sbin/.
  237. @@ -90,6 +93,8 @@ installdest:
  238.         else \
  239.                 cp "$(PROJECT_BASEDIR_DIR)/tests/ea/nfs_ea.i686.exe" $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/nfs_ea.exe ; \
  240.         fi
  241. +       cp $(PROJECT_BASEDIR_DIR)/tests/nfsbuildtest/nfsbuildtest.ksh93 $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/nfsbuildtest.ksh93
  242. +       cp $(PROJECT_BASEDIR_DIR)/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93 $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/fstest_make_numtree1.ksh93
  243.         @ printf "# Package ksh93&co (if available) since Cygwin does not ship with it yet\n"
  244.         [[ -x $(CYGWIN_BASEPATH)/bin/ksh93.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/ksh93.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/ksh93.exe || true
  245.         [[ -x $(CYGWIN_BASEPATH)/bin/shcomp.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/shcomp.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/shcomp.exe || true
  246. --
  247. 2.45.1
  248.  
  249. From b9279059a5ee8dbbb5849c9dd8ac5b3f55da3125 Mon Sep 17 00:00:00 2001
  250. From: Roland Mainz <roland.mainz@nrubsig.org>
  251. Date: Tue, 8 Oct 2024 17:44:39 +0200
  252. Subject: [PATCH 4/5] tests: nfsbuildtest.ksh93: Workaround for ms-nfs41-client
  253.  VC19 link.exe crash
  254.  
  255. nfsbuildtest.ksh93: Add workaround for ms-nfs41-client VC19 link.exe
  256. incremantal linker crash
  257.  
  258. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  259. ---
  260. tests/nfsbuildtest/nfsbuildtest.ksh93 | 11 ++++++++++-
  261.  1 file changed, 10 insertions(+), 1 deletion(-)
  262.  
  263. diff --git a/tests/nfsbuildtest/nfsbuildtest.ksh93 b/tests/nfsbuildtest/nfsbuildtest.ksh93
  264. index 0a55c51..96399b3 100644
  265. --- a/tests/nfsbuildtest/nfsbuildtest.ksh93
  266. +++ b/tests/nfsbuildtest/nfsbuildtest.ksh93
  267. @@ -347,7 +347,7 @@ function msnfs41client_build
  268.         #
  269.         # build config
  270.         #
  271. -       typeset config_cp_p_function_not_implemented_workaround=false
  272. +       typeset config_vs_disable_incremental_linker=true
  273.  
  274.         compound gitdata=(
  275.                 typeset url='https://github.com/kofemann/ms-nfs41-client.git'
  276. @@ -392,6 +392,15 @@ function msnfs41client_build
  277.         # patch sources and configure build
  278.         #
  279.  
  280. +       #
  281. +       # disable incremental linking, which causes VC19 link.exe to
  282. +       # crash, resulting in a
  283. +       # "LINK : fatal error LNK1000: Internal error during IMAGE::Pass1"
  284. +       #
  285. +       if $config_vs_disable_incremental_linker ; then
  286. +               sed -i -E 's/<LinkIncremental>true<\/LinkIncremental>/<LinkIncremental>false<\/LinkIncremental>/g' $(find 'build.vc19' -name \*.vcxproj)
  287. +       fi
  288. +
  289.         #
  290.         # build ms-nfs41-client
  291.         #
  292. --
  293. 2.45.1
  294.  
  295. From 628e9ecdc5c4e08574ea8df6f1825e67d16a88e4 Mon Sep 17 00:00:00 2001
  296. From: Roland Mainz <roland.mainz@nrubsig.org>
  297. Date: Tue, 8 Oct 2024 18:48:36 +0200
  298. Subject: [PATCH 5/5] build.vc19,cygwin,sys: Add Visual Studio 2022 support
  299.  
  300. Add Visual Studio 2022 support.
  301.  
  302. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  303. ---
  304. build.vc19/nfs41_driver/nfs41_driver.vcxproj |  16 +-
  305.  cygwin/README.txt                            |   5 +-
  306.  sys/copysup.c                                |  24 +++
  307.  sys/nfs41_debug.c                            |  25 +++
  308.  sys/nfs41_debug.h                            |   6 +-
  309.  sys/nfs41_driver.c                           | 174 ++++++++++++++-----
  310.  sys/wmlkm.c                                  |  25 +++
  311.  7 files changed, 214 insertions(+), 61 deletions(-)
  312.  
  313. diff --git a/build.vc19/nfs41_driver/nfs41_driver.vcxproj b/build.vc19/nfs41_driver/nfs41_driver.vcxproj
  314. index a786711..6463bbe 100644
  315. --- a/build.vc19/nfs41_driver/nfs41_driver.vcxproj
  316. +++ b/build.vc19/nfs41_driver/nfs41_driver.vcxproj
  317. @@ -135,7 +135,7 @@
  318.    </PropertyGroup>
  319.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  320.      <ClCompile>
  321. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  322. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  323.        <WarningLevel>Level4</WarningLevel>
  324.        <Optimization>Disabled</Optimization>
  325.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  326. @@ -149,7 +149,7 @@
  327.    </ItemDefinitionGroup>
  328.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  329.      <ClCompile>
  330. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  331. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  332.        <WarningLevel>Level4</WarningLevel>
  333.        <Optimization>MaxSpeed</Optimization>
  334.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  335. @@ -163,7 +163,7 @@
  336.    </ItemDefinitionGroup>
  337.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  338.      <ClCompile>
  339. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  340. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  341.        <WarningLevel>Level4</WarningLevel>
  342.        <Optimization>Disabled</Optimization>
  343.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  344. @@ -177,7 +177,7 @@
  345.    </ItemDefinitionGroup>
  346.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  347.      <ClCompile>
  348. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  349. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  350.        <WarningLevel>Level4</WarningLevel>
  351.        <Optimization>MaxSpeed</Optimization>
  352.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  353. @@ -191,7 +191,7 @@
  354.    </ItemDefinitionGroup>
  355.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  356.      <ClCompile>
  357. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  358. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  359.        <WarningLevel>Level4</WarningLevel>
  360.        <Optimization>Disabled</Optimization>
  361.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  362. @@ -205,7 +205,7 @@
  363.    </ItemDefinitionGroup>
  364.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  365.      <ClCompile>
  366. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  367. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  368.        <WarningLevel>Level4</WarningLevel>
  369.        <Optimization>MaxSpeed</Optimization>
  370.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  371. @@ -219,7 +219,7 @@
  372.    </ItemDefinitionGroup>
  373.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  374.      <ClCompile>
  375. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  376. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  377.        <WarningLevel>Level4</WarningLevel>
  378.        <Optimization>Disabled</Optimization>
  379.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  380. @@ -233,7 +233,7 @@
  381.    </ItemDefinitionGroup>
  382.    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  383.      <ClCompile>
  384. -      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  385. +      <AdditionalIncludeDirectories>..\..\include;..\..\dll;..\..;$(WindowsSdkDir)Include0.0.19041.0\km;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  386.        <WarningLevel>Level4</WarningLevel>
  387.        <Optimization>MaxSpeed</Optimization>
  388.        <PreprocessorDefinitions>EXPLODE_POOLTAGS;MONOLITHIC_MINIRDR;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  389. diff --git a/cygwin/README.txt b/cygwin/README.txt
  390. index 1e34fdb..24f3342 100644
  391. --- a/cygwin/README.txt
  392. +++ b/cygwin/README.txt
  393. @@ -19,8 +19,9 @@
  394.    (see "ms-nfs41-clientcygwin/README.bintarball.txt" for Cygwin 32bit
  395.    and 64bit installation instructions)
  396.  
  397. -** Build the project using Cygwin command line (bash/ksh93):
  398. -export PATH+=":/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/"
  399. +** Build the project using VS19/VS22+Cygwin command line (bash/ksh93):
  400. +export PATH="/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/:$PATH"
  401. +# VS22 use: $ export PATH="/cygdrive/c/Program Files/Microsoft Visual Studio/2022/Community/MSBuild/Current/Bin/:$PATH"
  402.  git clone https://github.com/kofemann/ms-nfs41-client.git
  403.  cd ms-nfs41-client
  404.  cd cygwin
  405. diff --git a/sys/copysup.c b/sys/copysup.c
  406. index 799caf9..8e9b384 100644
  407. --- a/sys/copysup.c
  408. +++ b/sys/copysup.c
  409. @@ -26,6 +26,30 @@
  410.  #error Code requires ISO C17
  411.  #endif
  412.  
  413. +/* FIXME: Why does VS22 need this, but not VC19 ? */
  414. +#if _MSC_VER >= 1900
  415. +#if defined(_WIN64) && defined(_M_X64)
  416. +#ifndef _AMD64_
  417. +#define _AMD64_
  418. +#endif
  419. +#elif defined(_WIN32) && defined(_M_IX86)
  420. +#ifndef _X86_
  421. +#define _X86_
  422. +#endif
  423. +#elif defined(_WIN64) && defined(_M_ARM64)
  424. +#ifndef _ARM64_
  425. +#define _ARM64_
  426. +#endif
  427. +#elif defined(_WIN32) && defined(_M_ARM)
  428. +#ifndef _ARM_
  429. +#define _ARM_
  430. +#endif
  431. +#else
  432. +#error Unsupported arch
  433. +#endif
  434. +#endif /* _MSC_VER >= 1900 */
  435. +
  436. +
  437.  #include <rx.h>
  438.  #include <windef.h>
  439.  #include <winerror.h>
  440. diff --git a/sys/nfs41_debug.c b/sys/nfs41_debug.c
  441. index 603f397..7792da5 100644
  442. --- a/sys/nfs41_debug.c
  443. +++ b/sys/nfs41_debug.c
  444. @@ -21,6 +21,31 @@
  445.   */
  446.  
  447.  #define MINIRDR__NAME "Value is ignored, only fact of definition"
  448. +
  449. +/* FIXME: Why does VS22 need this, but not VC19 ? */
  450. +#if _MSC_VER >= 1900
  451. +#if defined(_WIN64) && defined(_M_X64)
  452. +#ifndef _AMD64_
  453. +#define _AMD64_
  454. +#endif
  455. +#elif defined(_WIN32) && defined(_M_IX86)
  456. +#ifndef _X86_
  457. +#define _X86_
  458. +#endif
  459. +#elif defined(_WIN64) && defined(_M_ARM64)
  460. +#ifndef _ARM64_
  461. +#define _ARM64_
  462. +#endif
  463. +#elif defined(_WIN32) && defined(_M_ARM)
  464. +#ifndef _ARM_
  465. +#define _ARM_
  466. +#endif
  467. +#else
  468. +#error Unsupported arch
  469. +#endif
  470. +#endif /* _MSC_VER >= 1900 */
  471. +
  472. +
  473.  #include <rx.h>
  474.  
  475.  #include "nfs41_driver.h"
  476. diff --git a/sys/nfs41_debug.h b/sys/nfs41_debug.h
  477. index 8f45e51..0c3f7c4 100644
  478. --- a/sys/nfs41_debug.h
  479. +++ b/sys/nfs41_debug.h
  480. @@ -63,18 +63,18 @@ const char *fsctl2string(ULONG fsctl);
  481.  
  482.  #define DbgEn() DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL, \
  483.          "--> [%s] [%04x] %s\n", _DRIVER_NAME_, PsGetCurrentProcessShortDebugId(), \
  484. -        __func__); try {
  485. +        __func__); __try {
  486.  
  487.  #define DbgEx() DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL, \
  488.          "<-- [%s] [%04x] %s status = %08lx\n", _DRIVER_NAME_, PsGetCurrentProcessShortDebugId(), \
  489.          __func__, status); \
  490. -        } except (EXCEPTION_EXECUTE_HANDLER) { \
  491. +        } __except (EXCEPTION_EXECUTE_HANDLER) { \
  492.              status = GetExceptionCode() ; \
  493.              DbgP("Exception encountered with value = Ox%x\n", status); \
  494.          }
  495.  #define DbgR() DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL, \
  496.          "<-- [%s] [%04x] %s\n", _DRIVER_NAME_, PsGetCurrentProcessShortDebugId(), __func__); \
  497. -        } except (EXCEPTION_EXECUTE_HANDLER) { \
  498. +        } __except (EXCEPTION_EXECUTE_HANDLER) { \
  499.              NTSTATUS exc_status; \
  500.              exc_status = GetExceptionCode() ; \
  501.              DbgP("Exception encountered with value = Ox%x\n", (int)exc_status); \
  502. diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
  503. index b0c065f..2dd688e 100644
  504. --- a/sys/nfs41_driver.c
  505. +++ b/sys/nfs41_driver.c
  506. @@ -28,6 +28,30 @@
  507.  #error Code requires ISO C17
  508.  #endif
  509.  
  510. +/* FIXME: Why does VS22 need this, but not VC19 ? */
  511. +#if _MSC_VER >= 1900
  512. +#if defined(_WIN64) && defined(_M_X64)
  513. +#ifndef _AMD64_
  514. +#define _AMD64_
  515. +#endif
  516. +#elif defined(_WIN32) && defined(_M_IX86)
  517. +#ifndef _X86_
  518. +#define _X86_
  519. +#endif
  520. +#elif defined(_WIN64) && defined(_M_ARM64)
  521. +#ifndef _ARM64_
  522. +#define _ARM64_
  523. +#endif
  524. +#elif defined(_WIN32) && defined(_M_ARM)
  525. +#ifndef _ARM_
  526. +#define _ARM_
  527. +#endif
  528. +#else
  529. +#error Unsupported arch
  530. +#endif
  531. +#endif /* _MSC_VER >= 1900 */
  532. +
  533. +
  534.  #define MINIRDR__NAME "Value is ignored, only fact of definition"
  535.  #include <rx.h>
  536.  #include <windef.h>
  537. @@ -292,6 +316,18 @@ typedef struct _updowncall_list {
  538.  nfs41_updowncall_list upcall, downcall;
  539.  
  540.  
  541. +#if _MSC_VER >= 1900
  542. +/*
  543. + * gisburn: VS22 chokes on the original define for
  544. + * |DECLARE_CONST_UNICODE_STRING|, so we use one
  545. + * without the offending stuff
  546. + */
  547. +#undef DECLARE_CONST_UNICODE_STRING
  548. +#define DECLARE_CONST_UNICODE_STRING(_var, _string) \
  549. +       const WCHAR _var ## _buffer[] = _string; \
  550. +       const UNICODE_STRING _var = { sizeof(_string) - sizeof(WCHAR), sizeof(_string), (PWCH) _var ## _buffer }
  551. +#endif /* _MSC_VER >= 1900 */
  552. +
  553.  
  554.  /*
  555.   * In order to cooperate with other network providers,
  556. @@ -2816,7 +2852,7 @@ static NTSTATUS nfs41_CreateSrvCall(
  557.          status = _nfs41_CreateSrvCall(pCallbackContext);
  558.      } else {
  559.          status = RxDispatchToWorkerThread(nfs41_dev, DelayedWorkQueue,
  560. -            _nfs41_CreateSrvCall, pCallbackContext);
  561. +           (PRX_WORKERTHREAD_ROUTINE)_nfs41_CreateSrvCall, pCallbackContext);
  562.          if (status != STATUS_SUCCESS) {
  563.              print_error("RxDispatchToWorkerThread returned status 0x%08lx\n",
  564.                  status);
  565. @@ -7636,83 +7672,125 @@ static NTSTATUS nfs41_init_ops()
  566.      // while the others continue to operate.
  567.      //
  568.  
  569. -    nfs41_ops.MRxStart                = nfs41_Start;
  570. -    nfs41_ops.MRxStop                 = nfs41_Stop;
  571. -    nfs41_ops.MRxDevFcbXXXControlFile = nfs41_DevFcbXXXControlFile;
  572. +    nfs41_ops.MRxStart                = (PMRX_CALLDOWN_CTX)nfs41_Start;
  573. +    nfs41_ops.MRxStop                 = (PMRX_CALLDOWN_CTX)nfs41_Stop;
  574. +    nfs41_ops.MRxDevFcbXXXControlFile =
  575. +        (PMRX_CALLDOWN)nfs41_DevFcbXXXControlFile;
  576.  
  577.      //
  578.      // Mini redirector name resolution.
  579.      //
  580.  
  581. -    nfs41_ops.MRxCreateSrvCall       = nfs41_CreateSrvCall;
  582. -    nfs41_ops.MRxSrvCallWinnerNotify = nfs41_SrvCallWinnerNotify;
  583. -    nfs41_ops.MRxCreateVNetRoot      = nfs41_CreateVNetRoot;
  584. -    nfs41_ops.MRxExtractNetRootName  = nfs41_ExtractNetRootName;
  585. -    nfs41_ops.MRxFinalizeSrvCall     = nfs41_FinalizeSrvCall;
  586. -    nfs41_ops.MRxFinalizeNetRoot     = nfs41_FinalizeNetRoot;
  587. -    nfs41_ops.MRxFinalizeVNetRoot    = nfs41_FinalizeVNetRoot;
  588. +    nfs41_ops.MRxCreateSrvCall       =
  589. +        (PMRX_CREATE_SRVCALL)nfs41_CreateSrvCall;
  590. +    nfs41_ops.MRxSrvCallWinnerNotify =
  591. +        (PMRX_SRVCALL_WINNER_NOTIFY)nfs41_SrvCallWinnerNotify;
  592. +    nfs41_ops.MRxCreateVNetRoot      =
  593. +        (PMRX_CREATE_V_NET_ROOT)nfs41_CreateVNetRoot;
  594. +    nfs41_ops.MRxExtractNetRootName  =
  595. +        (PMRX_EXTRACT_NETROOT_NAME)nfs41_ExtractNetRootName;
  596. +    nfs41_ops.MRxFinalizeSrvCall     =
  597. +        (PMRX_FINALIZE_SRVCALL_CALLDOWN)nfs41_FinalizeSrvCall;
  598. +    nfs41_ops.MRxFinalizeNetRoot     =
  599. +        (PMRX_FINALIZE_NET_ROOT_CALLDOWN)nfs41_FinalizeNetRoot;
  600. +    nfs41_ops.MRxFinalizeVNetRoot    =
  601. +        (PMRX_FINALIZE_V_NET_ROOT_CALLDOWN)nfs41_FinalizeVNetRoot;
  602.  
  603.      //
  604.      // File System Object Creation/Deletion.
  605.      //
  606.  
  607. -    nfs41_ops.MRxCreate            = nfs41_Create;
  608. -    nfs41_ops.MRxCollapseOpen      = nfs41_CollapseOpen;
  609. -    nfs41_ops.MRxShouldTryToCollapseThisOpen = nfs41_ShouldTryToCollapseThisOpen;
  610. -    nfs41_ops.MRxExtendForCache    = nfs41_ExtendForCache;
  611. -    nfs41_ops.MRxExtendForNonCache = nfs41_ExtendForCache;
  612. -    nfs41_ops.MRxCloseSrvOpen      = nfs41_CloseSrvOpen;
  613. -    nfs41_ops.MRxFlush             = nfs41_Flush;
  614. -    nfs41_ops.MRxDeallocateForFcb  = nfs41_DeallocateForFcb;
  615. -    nfs41_ops.MRxDeallocateForFobx = nfs41_DeallocateForFobx;
  616. -    nfs41_ops.MRxIsLockRealizable    = nfs41_IsLockRealizable;
  617. +    nfs41_ops.MRxCreate            =
  618. +        (PMRX_CALLDOWN)nfs41_Create;
  619. +    nfs41_ops.MRxCollapseOpen      =
  620. +        (PMRX_CALLDOWN)nfs41_CollapseOpen;
  621. +    nfs41_ops.MRxShouldTryToCollapseThisOpen =
  622. +        (PMRX_CALLDOWN)nfs41_ShouldTryToCollapseThisOpen;
  623. +    nfs41_ops.MRxExtendForCache    =
  624. +        (PMRX_EXTENDFILE_CALLDOWN)nfs41_ExtendForCache;
  625. +    nfs41_ops.MRxExtendForNonCache =
  626. +        (PMRX_EXTENDFILE_CALLDOWN)nfs41_ExtendForCache;
  627. +    nfs41_ops.MRxCloseSrvOpen      =
  628. +        (PMRX_CALLDOWN)nfs41_CloseSrvOpen;
  629. +    nfs41_ops.MRxFlush             =
  630. +        (PMRX_CALLDOWN)nfs41_Flush;
  631. +    nfs41_ops.MRxDeallocateForFcb  =
  632. +        (PMRX_DEALLOCATE_FOR_FCB)nfs41_DeallocateForFcb;
  633. +    nfs41_ops.MRxDeallocateForFobx =
  634. +        (PMRX_DEALLOCATE_FOR_FOBX)nfs41_DeallocateForFobx;
  635. +    nfs41_ops.MRxIsLockRealizable  =
  636. +        (PMRX_IS_LOCK_REALIZABLE)nfs41_IsLockRealizable;
  637.  
  638.      //
  639.      // File System Objects query/Set
  640.      //
  641.  
  642. -    nfs41_ops.MRxQueryDirectory       = nfs41_QueryDirectory;
  643. -    nfs41_ops.MRxQueryVolumeInfo      = nfs41_QueryVolumeInformation;
  644. -    nfs41_ops.MRxQueryEaInfo          = nfs41_QueryEaInformation;
  645. -    nfs41_ops.MRxSetEaInfo            = nfs41_SetEaInformation;
  646. -    nfs41_ops.MRxQuerySdInfo          = nfs41_QuerySecurityInformation;
  647. -    nfs41_ops.MRxSetSdInfo            = nfs41_SetSecurityInformation;
  648. -    nfs41_ops.MRxQueryFileInfo        = nfs41_QueryFileInformation;
  649. -    nfs41_ops.MRxSetFileInfo          = nfs41_SetFileInformation;
  650. +    nfs41_ops.MRxQueryDirectory       =
  651. +        (PMRX_CALLDOWN)nfs41_QueryDirectory;
  652. +    nfs41_ops.MRxQueryVolumeInfo      =
  653. +        (PMRX_CALLDOWN)nfs41_QueryVolumeInformation;
  654. +    nfs41_ops.MRxSetVolumeInfo        =
  655. +        (PMRX_CALLDOWN)nfs41_Unimplemented;
  656. +    nfs41_ops.MRxQueryEaInfo          =
  657. +        (PMRX_CALLDOWN)nfs41_QueryEaInformation;
  658. +    nfs41_ops.MRxSetEaInfo            =
  659. +        (PMRX_CALLDOWN)nfs41_SetEaInformation;
  660. +    nfs41_ops.MRxQuerySdInfo          =
  661. +        (PMRX_CALLDOWN)nfs41_QuerySecurityInformation;
  662. +    nfs41_ops.MRxSetSdInfo            =
  663. +        (PMRX_CALLDOWN)nfs41_SetSecurityInformation;
  664. +    nfs41_ops.MRxQueryFileInfo        =
  665. +        (PMRX_CALLDOWN)nfs41_QueryFileInformation;
  666. +    nfs41_ops.MRxSetFileInfo          =
  667. +        (PMRX_CALLDOWN)nfs41_SetFileInformation;
  668. +    nfs41_ops.MRxQueryQuotaInfo       =
  669. +        (PMRX_CALLDOWN)nfs41_Unimplemented;
  670. +    nfs41_ops.MRxSetQuotaInfo         =
  671. +        (PMRX_CALLDOWN)nfs41_Unimplemented;
  672.  
  673.      //
  674.      // Buffering state change
  675.      //
  676.  
  677. -    nfs41_ops.MRxComputeNewBufferingState = nfs41_ComputeNewBufferingState;
  678. +    nfs41_ops.MRxComputeNewBufferingState =
  679. +        (PMRX_COMPUTE_NEW_BUFFERING_STATE)nfs41_ComputeNewBufferingState;
  680.  
  681.      //
  682.      // File System Object I/O
  683.      //
  684.  
  685. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_READ]            = nfs41_Read;
  686. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_WRITE]           = nfs41_Write;
  687. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_SHAREDLOCK]      = nfs41_Lock;
  688. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_EXCLUSIVELOCK]   = nfs41_Lock;
  689. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_UNLOCK]          = nfs41_Unlock;
  690. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_UNLOCK_MULTIPLE] = nfs41_Unlock;
  691. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_FSCTL]           = nfs41_FsCtl;
  692. -    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_IOCTL]           = nfs41_IoCtl;
  693. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_READ]            =
  694. +        (PMRX_CALLDOWN)nfs41_Read;
  695. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_WRITE]           =
  696. +        (PMRX_CALLDOWN)nfs41_Write;
  697. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_SHAREDLOCK]      =
  698. +        (PMRX_CALLDOWN)nfs41_Lock;
  699. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_EXCLUSIVELOCK]   =
  700. +        (PMRX_CALLDOWN)nfs41_Lock;
  701. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_UNLOCK]          =
  702. +        (PMRX_CALLDOWN)nfs41_Unlock;
  703. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_UNLOCK_MULTIPLE] =
  704. +        (PMRX_CALLDOWN)nfs41_Unlock;
  705. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_FSCTL]           =
  706. +        (PMRX_CALLDOWN)nfs41_FsCtl;
  707. +    nfs41_ops.MRxLowIOSubmit[LOWIO_OP_IOCTL]           =
  708. +        (PMRX_CALLDOWN)nfs41_IoCtl;
  709.  
  710.      //
  711.      // Miscellanous
  712.      //
  713.  
  714. -    nfs41_ops.MRxCompleteBufferingStateChangeRequest =
  715. -        nfs41_CompleteBufferingStateChangeRequest;
  716. -    nfs41_ops.MRxIsValidDirectory     = nfs41_IsValidDirectory;
  717. -
  718. -    nfs41_ops.MRxTruncate = nfs41_Unimplemented;
  719. -    nfs41_ops.MRxZeroExtend = nfs41_Unimplemented;
  720. -    nfs41_ops.MRxAreFilesAliased = nfs41_AreFilesAliased;
  721. -    nfs41_ops.MRxQueryQuotaInfo = nfs41_Unimplemented;
  722. -    nfs41_ops.MRxSetQuotaInfo = nfs41_Unimplemented;
  723. -    nfs41_ops.MRxSetVolumeInfo = nfs41_Unimplemented;
  724. +    nfs41_ops.MRxCompleteBufferingStateChangeRequest =
  725. +        (PMRX_CHANGE_BUFFERING_STATE_CALLDOWN)nfs41_CompleteBufferingStateChangeRequest;
  726. +    nfs41_ops.MRxIsValidDirectory =
  727. +        (PMRX_CHKDIR_CALLDOWN)nfs41_IsValidDirectory;
  728. +
  729. +    nfs41_ops.MRxTruncate =
  730. +        (PMRX_CALLDOWN)nfs41_Unimplemented;
  731. +    nfs41_ops.MRxZeroExtend =
  732. +        (PMRX_CALLDOWN)nfs41_Unimplemented;
  733. +    nfs41_ops.MRxAreFilesAliased =
  734. +        (PMRX_CHKFCB_CALLDOWN)nfs41_AreFilesAliased;
  735.  
  736.      DbgR();
  737.      return(STATUS_SUCCESS);
  738. diff --git a/sys/wmlkm.c b/sys/wmlkm.c
  739. index 6c7161c..3fb63bb 100644
  740. --- a/sys/wmlkm.c
  741. +++ b/sys/wmlkm.c
  742. @@ -23,6 +23,31 @@
  743.  
  744.  #pragma hdrstop
  745.  
  746. +/* FIXME: Why does VS22 need this, but not VC19 ? */
  747. +#if _MSC_VER >= 1900
  748. +#if defined(_WIN64) && defined(_M_X64)
  749. +#ifndef _AMD64_
  750. +#define _AMD64_
  751. +#endif
  752. +#elif defined(_WIN32) && defined(_M_IX86)
  753. +#ifndef _X86_
  754. +#define _X86_
  755. +#endif
  756. +#elif defined(_WIN64) && defined(_M_ARM64)
  757. +#ifndef _ARM64_
  758. +#define _ARM64_
  759. +#endif
  760. +#elif defined(_WIN32) && defined(_M_ARM)
  761. +#ifndef _ARM_
  762. +#define _ARM_
  763. +#endif
  764. +#else
  765. +#error Unsupported arch
  766. +#endif
  767. +#endif /* _MSC_VER >= 1900 */
  768. +
  769. +
  770. +
  771.  #include <ntddk.h>
  772.  #include <ntdef.h>
  773.  #define LPVOID PVOID64 // BUG - need to find include for this
  774. --
  775. 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