pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patch for lookup ca_maxop rounding, debug messages+misc, 2024-03-18
Posted by Anonymous on Mon 18th Mar 2024 16:09
raw | new post

  1. From 971a08e70d03a723b3db29f62c37dcb1c6dbcff0 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Mon, 18 Mar 2024 13:31:37 +0100
  4. Subject: [PATCH 1/4] daemon: Lookup should not send more operations than
  5.  negotiated
  6.  
  7. Lookup should not send more operations than negotiated at session
  8. creation.
  9.  
  10. Turns out this is simply a rounding issue, we should round the
  11. number of operations down, not round them up.
  12.  
  13. Originally reported client-side error message for Linux kernel
  14. 6.6 LTS (reproduced with Linux 6.6.20-rt25), with
  15. |ca_maxoperations==50|:
  16. ---- snip ----
  17. 28a4: successful reply with only 50 operations, sent 52!
  18. 28a4: clnt_call returned rpc_status = 'RPC_CANTDECODERES'
  19. 28a4: UNHANDLED RPC_ERROR: 2
  20. 28a4: [session] sr_sessionid != sa_sessionid
  21. ---- snip ----
  22.  
  23. Reported-by: Martin Wege <martin.l.wege@gmail.com>
  24. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  25. ---
  26. daemon/lookup.c | 10 ++++++++--
  27.  1 file changed, 8 insertions(+), 2 deletions(-)
  28.  
  29. diff --git a/daemon/lookup.c b/daemon/lookup.c
  30. index e15046a..b93609a 100644
  31. --- a/daemon/lookup.c
  32. +++ b/daemon/lookup.c
  33. @@ -3,6 +3,7 @@
  34.   *
  35.   * Olga Kornievskaia <aglo@umich.edu>
  36.   * Casey Bodley <cbodley@umich.edu>
  37. + * Roland Mainz <roland.mainz@nrubsig.org>
  38.   *
  39.   * This library is free software; you can redistribute it and/or modify it
  40.   * under the terms of the GNU Lesser General Public License as published by
  41. @@ -45,6 +46,7 @@
  42.   * MAX_LOOKUP_COMPONENTS)|), see |max_lookup_components()| below.
  43.   *
  44.   * Linux 5.10.0-22-rt uses |ca_maxoperations==16|
  45. + * Linux 6.6.20-rt25  uses |ca_maxoperations==50|
  46.   * simplenfs/nfs4j    uses |ca_maxoperations==128|
  47.   *
  48.   */
  49. @@ -290,12 +292,16 @@ out:
  50.  static uint32_t max_lookup_components(
  51.      IN const nfs41_session *session)
  52.  {
  53. -#define ROUNDUPDIV(x, y) (((x)+((y)-1))/(y))
  54.      const uint32_t comps = min(
  55.          session->fore_chan_attrs.ca_maxoperations,
  56.          MAX_LOOKUP_COMPONENTS);
  57.  
  58. -    return ROUNDUPDIV(comps-4, 3);
  59. +    /*
  60. +     * Make sure we round this value down, otherwise not all
  61. +     * our requests will fit into the
  62. +     * |session->fore_chan_attrs.ca_maxoperations| limit
  63. +     */
  64. +    return ((comps-4) / 3);
  65.  }
  66.  
  67.  static uint32_t get_component_array(
  68. --
  69. 2.43.0
  70.  
  71. From 6c3abfc65cd261d21814c36b684e6d4ef5588764 Mon Sep 17 00:00:00 2001
  72. From: Roland Mainz <roland.mainz@nrubsig.org>
  73. Date: Mon, 18 Mar 2024 13:38:33 +0100
  74. Subject: [PATCH 2/4] cygwin: Bump Cygwin version in bintarball README
  75.  
  76. Bump Cygwin version in bintarball README to Cygwin 3.5.1+3.6.x
  77.  
  78. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  79. ---
  80. cygwin/README.bintarball.txt | 2 +-
  81.  1 file changed, 1 insertion(+), 1 deletion(-)
  82.  
  83. diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
  84. index 26cc9c3..a5ea187 100644
  85. --- a/cygwin/README.bintarball.txt
  86. +++ b/cygwin/README.bintarball.txt
  87. @@ -62,7 +62,7 @@ NFSv4.1 client and filesystem driver for Windows 10/11
  88.  # 3. Requirements:
  89.  #
  90.  - Windows 10 or Windows 11
  91. -- Cygwin 3.5.0
  92. +- Cygwin 3.5.1 (or 3.6.x-devel)
  93.      - Packages (required):
  94.          cygwin
  95.          cygwin-devel
  96. --
  97. 2.43.0
  98.  
  99. From e6dff639b3a2abd1ba9ee4d5b410ea551cde8da0 Mon Sep 17 00:00:00 2001
  100. From: Roland Mainz <roland.mainz@nrubsig.org>
  101. Date: Mon, 18 Mar 2024 13:41:02 +0100
  102. Subject: [PATCH 3/4] daemon: More debug output for |ca_*| values+warning if
  103.  |ca_maxoperations| too small
  104.  
  105. Add more debug output for |ca_*| values at session creation time, plus
  106. add a warning if |ca_maxoperations| too small for handling long
  107. paths with out splitting requests.
  108.  
  109. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  110. ---
  111. daemon/nfs41_ops.c | 26 ++++++++++++++++++++++++++
  112.  1 file changed, 26 insertions(+)
  113.  
  114. diff --git a/daemon/nfs41_ops.c b/daemon/nfs41_ops.c
  115. index 5d0bb20..cec58ad 100644
  116. --- a/daemon/nfs41_ops.c
  117. +++ b/daemon/nfs41_ops.c
  118. @@ -141,6 +141,9 @@ int nfs41_create_session(nfs41_client *clnt, nfs41_session *session, bool_t try_
  119.      nfs41_create_session_args req = { 0 };
  120.      nfs41_create_session_res reply = { 0 };
  121.  
  122. +    DPRINTF(1, ("--> nfs41_create_session(clnt=0x%p,session=0x%p,try_recovery=%d)\n",
  123. +        clnt, session, (int)try_recovery));
  124. +
  125.      compound_init(&compound, &argop, &resop, "create_session");
  126.  
  127.      compound_add_op(&compound, OP_CREATE_SESSION, &req, &reply);
  128. @@ -166,6 +169,13 @@ int nfs41_create_session(nfs41_client *clnt, nfs41_session *session, bool_t try_
  129.      reply.csr_fore_chan_attrs = &session->fore_chan_attrs;
  130.      reply.csr_back_chan_attrs = &session->back_chan_attrs;
  131.  
  132. +    DPRINTF(1, ("nfs41_create_session: "
  133. +        "Requested req.csa_fore_chan_attrs."
  134. +        "(ca_maxoperations=%d,ca_maxrequests=%d)\n",
  135. +        (int)req.csa_fore_chan_attrs.ca_maxoperations,
  136. +        (int)req.csa_fore_chan_attrs.ca_maxrequests));
  137. +
  138. +
  139.      status = compound_encode_send_decode(session, &compound, try_recovery);
  140.      if (status)
  141.          goto out;
  142. @@ -173,6 +183,19 @@ int nfs41_create_session(nfs41_client *clnt, nfs41_session *session, bool_t try_
  143.      if (compound_error(status = compound.res.status))
  144.          goto out;
  145.  
  146. +    DPRINTF(1, ("nfs41_create_session: "
  147. +        "Response from server: session->fore_chan_attrs->"
  148. +        "(ca_maxoperations=%d,ca_maxrequests=%d)\n",
  149. +        (int)session->fore_chan_attrs.ca_maxoperations,
  150. +        (int)session->fore_chan_attrs.ca_maxrequests));
  151. +
  152. +    if (session->fore_chan_attrs.ca_maxoperations < 64) {
  153. +        eprintf("WARNING: Server returned ca_maxoperations(=%d) "
  154. +        "< 64, this will lead to bad performance for deeply "
  155. +        "nested dirs\n",
  156. +        session->fore_chan_attrs.ca_maxoperations);
  157. +    }
  158. +
  159.      print_hexbuf(1, (unsigned char *)"session id: ", session->session_id, NFS4_SESSIONID_SIZE);
  160.      // check that csa_sequence is same as csr_sequence
  161.      if (reply.csr_sequence != clnt->seq_id) {
  162. @@ -214,6 +237,9 @@ int nfs41_create_session(nfs41_client *clnt, nfs41_session *session, bool_t try_
  163.          session->fore_chan_attrs.ca_maxrequests);
  164.      status = 0;
  165.  out:
  166. +    DPRINTF(1, ("<-- nfs41_create_session() returning %d\n",
  167. +        status));
  168. +
  169.      return status;
  170.  }
  171.  
  172. --
  173. 2.43.0
  174.  
  175. From 86107466341720d6d647a0110b811189233354f4 Mon Sep 17 00:00:00 2001
  176. From: Roland Mainz <roland.mainz@nrubsig.org>
  177. Date: Mon, 18 Mar 2024 14:19:31 +0100
  178. Subject: [PATCH 4/4] daemon: Fix |handle_readdir()| debug enter/leave
  179.  message+better debug output
  180.  
  181. Fix |handle_readdir()| debug enter/leave message (e.g. "->" ---> "-->"
  182. and "<-" ---> "<--") and improve debug output.
  183.  
  184. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  185. ---
  186. daemon/readdir.c | 28 +++++++++++++++++-----------
  187.  1 file changed, 17 insertions(+), 11 deletions(-)
  188.  
  189. diff --git a/daemon/readdir.c b/daemon/readdir.c
  190. index f4780e8..11186bf 100644
  191. --- a/daemon/readdir.c
  192. +++ b/daemon/readdir.c
  193. @@ -643,8 +643,8 @@ static int handle_readdir(void *deamon_context, nfs41_upcall *upcall)
  194.      const uint32_t max_buf_len = max(args->buf_len,
  195.          sizeof(nfs41_readdir_entry) + NFS41_MAX_COMPONENT_LEN);
  196.  
  197. -    DPRINTF(1, ("-> handle_nfs41_dirquery('%s',%d,%d,%d)\n",
  198. -        args->filter, args->initial, args->restart, args->single));
  199. +    DPRINTF(1, ("--> handle_nfs41_dirquery(filter='%s',initial=%d,restart=%d,single=%d)\n",
  200. +        args->filter, (int)args->initial, (int)args->restart, (int)args->single));
  201.  
  202.      args->query_reply_len = 0;
  203.  
  204. @@ -795,27 +795,33 @@ fetch_entries:
  205.  out_free_entry:
  206.      free(entry_buf);
  207.  out:
  208. -    DPRINTF(1, ("<- handle_nfs41_dirquery('%s',%d,%d,%d) returning ",
  209. -        args->filter, args->initial, args->restart, args->single));
  210. +    const char *debug_status_msg = "<NULL>";
  211. +
  212.      if (status) {
  213.          switch (status) {
  214.          case ERROR_FILE_NOT_FOUND:
  215. -            DPRINTF(1, ("ERROR_FILE_NOT_FOUND.\n"));
  216. +            debug_status_msg = "ERROR_FILE_NOT_FOUND";
  217.              break;
  218.          case ERROR_NO_MORE_FILES:
  219. -            DPRINTF(1, ("ERROR_NO_MORE_FILES.\n"));
  220. +            debug_status_msg = "ERROR_NO_MORE_FILES";
  221.              break;
  222.          case ERROR_BUFFER_OVERFLOW:
  223.              upcall->last_error = status;
  224.              status = ERROR_SUCCESS;
  225. -            break;
  226. -        default:
  227. -            DPRINTF(1, ("error code %d.\n", status));
  228. +            debug_status_msg = "ERROR_BUFFER_OVERFLOW==SUCCESS";
  229.              break;
  230.          }
  231. -    } else {
  232. -        DPRINTF(1, ("success!\n"));
  233.      }
  234. +    else {
  235. +        debug_status_msg = "SUCCESS";
  236. +    }
  237. +
  238. +    DPRINTF(1, ("<-- handle_nfs41_dirquery("
  239. +        "filter='%s',initial=%d,restart=%d,single=%d) "
  240. +        "returning %d ('%s')\n",
  241. +        args->filter, (int)args->initial, (int)args->restart,
  242. +        (int)args->single, status, debug_status_msg));
  243. +
  244.      return status;
  245.  out_free_cookie:
  246.      state->cookie.cookie = 0;
  247. --
  248. 2.43.0

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