pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for Solaris/Illumos nfsd setup doc, OP_READ_PLUS fix, relax GetReparsePoint check, 2025-03-26
Posted by Anonymous on Wed 26th Mar 2025 18:25
raw | new post

  1. From 4b53cb2ac410d2c0e05877ae3827204850625f59 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Wed, 26 Mar 2025 15:55:09 +0100
  4. Subject: [PATCH 1/3] tests: NFS server setup: Document difference of
  5.  /usr/sbin/share between Solaris 11.4 and Illumos
  6.  
  7. NFS server setup: Document difference of /usr/sbin/share between
  8. Solaris 11.4 and Illumos.
  9.  
  10. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  11. ---
  12. tests/nfs_server_setup.txt | 6 +++++-
  13.  1 file changed, 5 insertions(+), 1 deletion(-)
  14.  
  15. diff --git a/tests/nfs_server_setup.txt b/tests/nfs_server_setup.txt
  16. index 6262fd0..df90d3d 100644
  17. --- a/tests/nfs_server_setup.txt
  18. +++ b/tests/nfs_server_setup.txt
  19. @@ -63,7 +63,9 @@ sharectl set -p server_delegation=on nfs
  20.  # ("NFSv4.1 server refuses creation of XATTR")
  21.  mkdir -p /export/nfsdata
  22.  chmod a+rwxt /export/nfsdata
  23. -share -p -F nfs -o rw /export/nfsdata
  24. +# Note: Solaris 11.4 $ share -F nfs ... # shares are persistent across
  25. +# reboots, Illumos needs $ share -p -F nfs ... # for that
  26. +share -F nfs -o rw /export/nfsdata
  27.  
  28.  # verify whether mapid and nfs/server are running
  29.  svcs network/nfs/mapid
  30. @@ -110,6 +112,8 @@ sharectl set -p server_versmax=4.2 nfs
  31.  # ("NFSv4.1 server refuses creation of XATTR")
  32.  mkdir -p /export/nfsdata
  33.  chmod a+rwxt /export/nfsdata
  34. +# Note: Solaris 11.4 $ share -F nfs ... # shares are persistent across
  35. +# reboots, Illumos needs $ share -p -F nfs ... # for that
  36.  share -p -F nfs -o rw /export/nfsdata
  37.  
  38.  # verify whether mapid and nfs/server are running
  39. --
  40. 2.45.1
  41.  
  42. From ea7d7e267078b41e963af97e556359d6989859de Mon Sep 17 00:00:00 2001
  43. From: Roland Mainz <roland.mainz@nrubsig.org>
  44. Date: Wed, 26 Mar 2025 17:11:14 +0100
  45. Subject: [PATCH 2/3] daemon: |nfs42_read_plus_content| should use an |union|
  46.  for |data|/|hole| info
  47.  
  48. |nfs42_read_plus_content| should use an |union| for |data|/|hole| info.
  49.  
  50. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  51. ---
  52. daemon/nfs41_ops.h | 12 +++++++-----
  53.  daemon/nfs42_xdr.c | 30 +++++++++++++++---------------
  54.  2 files changed, 22 insertions(+), 20 deletions(-)
  55.  
  56. diff --git a/daemon/nfs41_ops.h b/daemon/nfs41_ops.h
  57. index 7e56cff..149bc08 100644
  58. --- a/daemon/nfs41_ops.h
  59. +++ b/daemon/nfs41_ops.h
  60. @@ -755,11 +755,13 @@ typedef struct __nfs42_read_plus_args {
  61.  typedef union __nfs42_read_plus_content {
  62.      /* switch (data_content4 rpc_content) */
  63.      data_content4   content;
  64. -    /* case NFS4_CONTENT_DATA: */
  65. -    data4           data;
  66. -    /* case NFS4_CONTENT_HOLE: */
  67. -    data_info4      hole;
  68. -    /* default: */
  69. +    union {
  70. +        /* case NFS4_CONTENT_DATA: */
  71. +        data4           data;
  72. +        /* case NFS4_CONTENT_HOLE: */
  73. +        data_info4      hole;
  74. +        /* default: */
  75. +    } u;
  76.  } nfs42_read_plus_content;
  77.  
  78.  typedef struct __nfs42_read_plus_res_ok {
  79. diff --git a/daemon/nfs42_xdr.c b/daemon/nfs42_xdr.c
  80. index 210adb1..c3367be 100644
  81. --- a/daemon/nfs42_xdr.c
  82. +++ b/daemon/nfs42_xdr.c
  83. @@ -175,33 +175,33 @@ static bool_t decode_read_plus_res_ok(
  84.  
  85.          switch(co) {
  86.              case NFS4_CONTENT_DATA:
  87. -                if (!xdr_u_hyper(xdr, &contents[i].data.offset)) {
  88. +                if (!xdr_u_hyper(xdr, &contents[i].u.data.offset)) {
  89.                      DPRINTF(0,
  90.                          ("i=%d, decoding 'offset' failed\n", (int)i));
  91.                      return FALSE;
  92.                  }
  93. -                if (!xdr_u_int32_t(xdr, &contents[i].data.count)) {
  94. +                if (!xdr_u_int32_t(xdr, &contents[i].u.data.count)) {
  95.                      DPRINTF(0,
  96.                          ("i=%d, decoding 'count' failed\n", (int)i));
  97.                      return FALSE;
  98.                  }
  99.  
  100. -                contents[i].data.data = res->data +
  101. -                    (contents[i].data.offset - res->args_offset);
  102. -                contents[i].data.data_len = contents[i].data.count;
  103. +                contents[i].u.data.data = res->data +
  104. +                    (contents[i].u.data.offset - res->args_offset);
  105. +                contents[i].u.data.data_len = contents[i].u.data.count;
  106.  
  107. -                EASSERT(((contents[i].data.data - res->data) +
  108. -                    contents[i].data.data_len) <= res->data_len);
  109. +                EASSERT(((contents[i].u.data.data - res->data) +
  110. +                    contents[i].u.data.data_len) <= res->data_len);
  111.                  if (!xdr_opaque(xdr,
  112. -                    (char *)contents[i].data.data,
  113. -                    contents[i].data.data_len)) {
  114. +                    (char *)contents[i].u.data.data,
  115. +                    contents[i].u.data.data_len)) {
  116.                      DPRINTF(0,
  117.                          ("i=%d, decoding 'bytes' failed\n", (int)i));
  118.                      return FALSE;
  119.                  }
  120.                  read_data_len = __max(read_data_len,
  121. -                    ((size_t)(contents[i].data.data - res->data) +
  122. -                        contents[i].data.data_len));
  123. +                    ((size_t)(contents[i].u.data.data - res->data) +
  124. +                        contents[i].u.data.data_len));
  125.                  break;
  126.              case NFS4_CONTENT_HOLE:
  127.                  unsigned char *hole_buff;
  128. @@ -209,15 +209,15 @@ static bool_t decode_read_plus_res_ok(
  129.  
  130.                  DPRINTF(0,
  131.                      ("i=%d, 'NFS4_CONTENT_HOLE' content\n", (int)i));
  132. -                if (!xdr_u_hyper(xdr, &contents[i].hole.offset))
  133. +                if (!xdr_u_hyper(xdr, &contents[i].u.hole.offset))
  134.                      return FALSE;
  135. -                if (!xdr_u_hyper(xdr, &contents[i].hole.length))
  136. +                if (!xdr_u_hyper(xdr, &contents[i].u.hole.length))
  137.                      return FALSE;
  138.  
  139.  
  140.                  hole_buff = res->data +
  141. -                    (contents[i].hole.offset - res->args_offset);
  142. -                hole_length = contents[i].hole.length;
  143. +                    (contents[i].u.hole.offset - res->args_offset);
  144. +                hole_length = contents[i].u.hole.length;
  145.  
  146.                  /*
  147.                   * NFSv4.2 "READ_PLUS" is required to return the
  148. --
  149. 2.45.1
  150.  
  151. From e6b1624c92939174c58cf59f9610dba2610dca9a Mon Sep 17 00:00:00 2001
  152. From: Roland Mainz <roland.mainz@nrubsig.org>
  153. Date: Wed, 26 Mar 2025 18:31:05 +0100
  154. Subject: [PATCH 3/3] sys: |nfs41_GetSymlinkReparsePoint()| should return
  155.  |STATUS_NOT_A_REPARSE_POINT| for non-symlink files in all cases
  156.  
  157. Remove |is_root_directory()| check from |check_nfs41_getsymlinkreparse_args()|
  158. to make sure |nfs41_GetSymlinkReparsePoint()| can return
  159. |STATUS_NOT_A_REPARSE_POINT| for non-symlink files in all cases.
  160.  
  161. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  162. ---
  163. sys/nfs41sys_symlink.c | 8 --------
  164.  1 file changed, 8 deletions(-)
  165.  
  166. diff --git a/sys/nfs41sys_symlink.c b/sys/nfs41sys_symlink.c
  167. index 51c6720..ead2e96 100644
  168. --- a/sys/nfs41sys_symlink.c
  169. +++ b/sys/nfs41sys_symlink.c
  170. @@ -433,14 +433,6 @@ NTSTATUS check_nfs41_getsymlinkreparse_args(
  171.      const USHORT HeaderLen = FIELD_OFFSET(REPARSE_DATA_BUFFER,
  172.          SymbolicLinkReparseBuffer.PathBuffer);
  173.  
  174. -    /* must have a filename longer than vnetroot name,
  175. -     * or it's trying to operate on the volume itself */
  176. -    if (is_root_directory(RxContext)) {
  177. -        status = STATUS_INVALID_PARAMETER;
  178. -        DbgP("check_nfs41_getsymlinkreparse_args: "
  179. -            "is_root_directory() == TRUE\n");
  180. -        goto out;
  181. -    }
  182.      /* ifs reparse tests expect STATUS_INVALID_PARAMETER,
  183.       * but 'dir' passes a buffer here when querying symlinks
  184.      if (FsCtl->pInputBuffer != NULL) {
  185. --
  186. 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