pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patch for readdir issues, long paths and misc compiler warning/flags stuff, 2023-12-29
Posted by Anonymous on Fri 29th Dec 2023 06:15
raw | new post

  1. From ae406887a2c2897ecc3f038c44f592a41730d542 Mon Sep 17 00:00:00 2001
  2. From: Martin Wege <martin.l.wege@gmail.com>
  3. Date: Thu, 28 Dec 2023 05:19:21 +0100
  4. Subject: [PATCH 1/5] daemon/readdir.c does not support all pattern required by
  5.  NtQueryDirectoryFile()
  6.  
  7. daemon/readdir.c does not support all filter filename pattern required by
  8. NtQueryDirectoryFile(), e.g. '<', '>', '"', '*' and '?'.
  9.  
  10. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  11. ---
  12. daemon/readdir.c | 257 ++++++++++++++++++++++++++++++++++++++++-------
  13.  1 file changed, 220 insertions(+), 37 deletions(-)
  14.  
  15. diff --git a/daemon/readdir.c b/daemon/readdir.c
  16. index 431adde..66e117c 100644
  17. --- a/daemon/readdir.c
  18. +++ b/daemon/readdir.c
  19. @@ -22,6 +22,9 @@
  20.  #include <Windows.h>
  21.  #include <strsafe.h>
  22.  #include <stdlib.h>
  23. +#include <stdbool.h>
  24. +#include <string.h>
  25. +#include <stdio.h>
  26.  #include "from_kernel.h"
  27.  #include "nfs41_ops.h"
  28.  #include "daemon_debug.h"
  29. @@ -29,6 +32,214 @@
  30.  #include "util.h"
  31.  
  32.  
  33. +/*
  34. + * Handle filename pattern for NtQueryDirectoryFile()
  35. + */
  36. +
  37. +/*
  38. + * See
  39. + * https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/nf-ntifs-_fsrtl_advanced_fcb_header-fsrtlisdbcsinexpression
  40. + * for a description of the pattern syntax
  41. + */
  42. +#define FILTER_STAR ('<')
  43. +#define FILTER_QM   ('>')
  44. +#define FILTER_DOT  ('"')
  45. +
  46. +bool
  47. +readdir_filter(const char *filter, const char *name)
  48. +{
  49. +#define MAX_NUM_BACKTRACKING (256)
  50. +    const size_t filter_len = strlen(filter);
  51. +    const size_t name_len = strlen(name);
  52. +    size_t foff;
  53. +    size_t pos;
  54. +    const int bt_buf_size = MAX_NUM_BACKTRACKING;
  55. +    size_t bt_buf[MAX_NUM_BACKTRACKING], old_bt_buf[MAX_NUM_BACKTRACKING] = { 0 };
  56. +    size_t *bt = bt_buf, *old_bt = old_bt_buf;
  57. +    size_t bt_pos, old_bt_pos;
  58. +    size_t filter_pos, name_pos = 0, matching_chars = 1;
  59. +    int n_ch = 0, f_ch;
  60. +    bool endofnamebuf = false;
  61. +    bool res;
  62. +    bool donotskipdot;
  63. +
  64. +    if ((filter_len == 0) || (name_len == 0))
  65. +    {
  66. +        if ((name_len == 0) && (filter_len == 0))
  67. +            return true;
  68. +
  69. +        return false;
  70. +    }
  71. +
  72. +    if ((filter_len == 1) && (filter[0] == '*'))
  73. +        return true;
  74. +
  75. +    for (; !endofnamebuf; matching_chars = bt_pos)
  76. +    {
  77. +        old_bt_pos = bt_pos = 0;
  78. +
  79. +        if (name_pos >= name_len)
  80. +        {
  81. +            endofnamebuf = true;
  82. +            if (matching_chars && (old_bt[matching_chars - 1] == (filter_len * 2)))
  83. +                break;
  84. +        }
  85. +        else
  86. +        {
  87. +            n_ch = name[name_pos];
  88. +            name_pos++;
  89. +        }
  90. +
  91. +        while (matching_chars > old_bt_pos)
  92. +        {
  93. +            filter_pos = (old_bt[old_bt_pos++] + 1) / 2;
  94. +
  95. +            for (foff = 0; filter_pos < filter_len; )
  96. +            {
  97. +                filter_pos += foff;
  98. +
  99. +                if (filter_pos == filter_len)
  100. +                {
  101. +                    bt[bt_pos++] = filter_len * 2;
  102. +                    break;
  103. +                }
  104. +
  105. +                /* backtracking buffer too small ? */
  106. +                if (bt_pos > (bt_buf_size - 3))
  107. +                {
  108. +                    (void)fprintf(stderr,
  109. +                        "ASSERT: bt buffer too small: bt_buf_size=%x\n",
  110. +                        (int)bt_buf_size);
  111. +                    res = false;
  112. +                    goto done;
  113. +                }
  114. +
  115. +                f_ch = filter[filter_pos];
  116. +                foff = 1;
  117. +
  118. +                if ((f_ch == n_ch) && !endofnamebuf)
  119. +                {
  120. +                    bt[bt_pos++] = (filter_pos + foff) * 2;
  121. +                }
  122. +                else if ((f_ch == '?') && !endofnamebuf)
  123. +                {
  124. +                    bt[bt_pos++] = (filter_pos + foff) * 2;
  125. +                }
  126. +                else if (f_ch == '*')
  127. +                {
  128. +                    bt[bt_pos++] = filter_pos * 2;
  129. +                    bt[bt_pos++] = (filter_pos * 2) + 1;
  130. +                    continue;
  131. +                }
  132. +                else if (f_ch == FILTER_STAR)
  133. +                {
  134. +                    donotskipdot = true;
  135. +                    if (!endofnamebuf && (n_ch == '.'))
  136. +                    {
  137. +                        for (pos = name_pos; pos < name_len; pos++)
  138. +                        {
  139. +                            if (name[pos] == '.')
  140. +                            {
  141. +                                donotskipdot = false;
  142. +                                break;
  143. +                            }
  144. +                         }
  145. +                    }
  146. +
  147. +                    if (endofnamebuf || (n_ch != '.') || !donotskipdot)
  148. +                        bt[bt_pos++] = filter_pos * 2;
  149. +
  150. +                    bt[bt_pos++] = (filter_pos * 2) + 1;
  151. +                    continue;
  152. +                }
  153. +                else if (f_ch == FILTER_QM)
  154. +                {
  155. +                    if (endofnamebuf || (n_ch == '.'))
  156. +                        continue;
  157. +
  158. +                    bt[bt_pos++] = (filter_pos + foff) * 2;
  159. +                }
  160. +                else if (f_ch == FILTER_DOT)
  161. +                {
  162. +                    if (endofnamebuf)
  163. +                        continue;
  164. +
  165. +                    if (n_ch == '.')
  166. +                        bt[bt_pos++] = (filter_pos + foff) * 2;
  167. +                }
  168. +
  169. +                break;
  170. +            }
  171. +
  172. +            for (pos = 0; (matching_chars > old_bt_pos) && (pos < bt_pos); pos++)
  173. +            {
  174. +                while ((matching_chars > old_bt_pos) && (bt[pos] > old_bt[old_bt_pos]))
  175. +                {
  176. +                    old_bt_pos++;
  177. +                }
  178. +            }
  179. +        }
  180. +
  181. +        size_t *bt_swap;
  182. +        bt_swap = bt;
  183. +        bt = old_bt;
  184. +        old_bt = bt_swap;
  185. +    }
  186. +
  187. +    res = matching_chars && (old_bt[matching_chars - 1] == (filter_len * 2));
  188. +
  189. +done:
  190. +    return res;
  191. +}
  192. +
  193. +#ifdef TEST_FILTER
  194. +static
  195. +void test_filter(const char *filter, const char *name, int expected_res)
  196. +{
  197. +    int res;
  198. +    res = filter_name(filter, name);
  199. +
  200. +    (void)printf("filter_name(filter='%s',\tname='%s')\t = %s - \t%s\n",
  201. +        filter, name, res?"true":"false", ((expected_res==res)?"OK":"FAIL"));
  202. +}
  203. +
  204. +int main(int ac, char *av[])
  205. +{
  206. +    test_filter("foo",              "foo",  1);
  207. +    test_filter("foo",              "",     0);
  208. +    test_filter("",                 "foo",  0);
  209. +    test_filter("",                 "",     1);
  210. +    test_filter("f*?",              "foo",  1);
  211. +    test_filter("f??",              "foo",  1);
  212. +    test_filter("f?x",              "foo",  0);
  213. +    test_filter("f*",               "foo",  1);
  214. +    test_filter("f<",               "foo",  1);
  215. +    test_filter("x*",               "foo",  0);
  216. +    test_filter("x<",               "foo",  0);
  217. +    test_filter("*o",               "foo",  1);
  218. +    test_filter("<o",               "foo",  1);
  219. +    test_filter("f*oo",             "foo",  1);
  220. +    test_filter("f\"o",             "f.o",  1);
  221. +    test_filter("f***********oo",   "foo",  1);
  222. +    test_filter("f<<<<<<<<<<<oo",   "foo",  1);
  223. +    test_filter("f<*<*<*<?<*<o",    "foo",  1);
  224. +    test_filter("f<*<*<*<?<*<",     "foo",  1);
  225. +    test_filter("<*<*<*<?<*<",      "foo",  1);
  226. +    test_filter("CL.write\"<.tlog", "CL.write.foo.bar.tlog", 1);
  227. +    test_filter("CL.write\"foo<.tlog", "CL.write.foo.bar.tlog", 1);
  228. +    test_filter("CL.write\">>><.tlog", "CL.write.foo.bar.tlog", 1);
  229. +    test_filter("<.tlog",           "bar.tlog", 1);
  230. +    test_filter(">.tlog",           "a.tlog", 1);
  231. +    test_filter(">.tlog",           "ab.tlog", 0);
  232. +    test_filter(">>.tlog",          "ab.tlog", 1);
  233. +    test_filter(">*.tlog",          "ab.tlog", 1);
  234. +    test_filter("*>*.tlog",         "ab.tlog", 1);
  235. +    test_filter(">?.tlog",          "ab.tlog", 1);
  236. +    return 0;
  237. +}
  238. +#endif /* TEST_FILTER */
  239. +
  240. +
  241.  typedef union _FILE_DIR_INFO_UNION {
  242.      ULONG NextEntryOffset;
  243.      FILE_NAMES_INFORMATION fni;
  244. @@ -71,38 +282,6 @@ out:
  245.      return status;
  246.  }
  247.  
  248. -#define FILTER_STAR '*'
  249. -#define FILTER_QM   '>'
  250. -
  251. -static __inline const char* skip_stars(
  252. -    const char *filter)
  253. -{
  254. -    while (*filter == FILTER_STAR)
  255. -        filter++;
  256. -    return filter;
  257. -}
  258. -
  259. -static int readdir_filter(
  260. -    const char *filter,
  261. -    const char *name)
  262. -{
  263. -    const char *f = filter, *n = name;
  264. -
  265. -    while (*f && *n) {
  266. -        if (*f == FILTER_STAR) {
  267. -            f = skip_stars(f);
  268. -            if (*f == '\0')
  269. -                return 1;
  270. -            while (*n && !readdir_filter(f, n))
  271. -                n++;
  272. -        } else if (*f == FILTER_QM || *f == *n) {
  273. -            f++;
  274. -            n++;
  275. -        } else
  276. -            return 0;
  277. -    }
  278. -    return *f == *n || *skip_stars(f) == '\0';
  279. -}
  280.  
  281.  static uint32_t readdir_size_for_entry(
  282.      IN int query_class,
  283. @@ -381,7 +560,7 @@ static int readdir_add_dots(
  284.      case 0:
  285.          if (entry_buf_len < entry_len + 2) {
  286.              status = ERROR_BUFFER_OVERFLOW;
  287. -            dprintf(1, "not enough room for '.' entry. received %d need %d\n",
  288. +            dprintf(0, "readdir_add_dots: not enough room for '.' entry. received %d need %d\n",
  289.                      entry_buf_len, entry_len + 2);
  290.              args->query_reply_len = entry_len + 2;
  291.              goto out;
  292. @@ -393,7 +572,7 @@ static int readdir_add_dots(
  293.          status = nfs41_cached_getattr(state->session,
  294.              &state->file, &entry->attr_info);
  295.          if (status) {
  296. -            dprintf(1, "failed to add '.' entry.\n");
  297. +            dprintf(0, "readdir_add_dots: failed to add '.' entry.\n");
  298.              goto out;
  299.          }
  300.          entry->cookie = COOKIE_DOT;
  301. @@ -411,7 +590,7 @@ static int readdir_add_dots(
  302.      case COOKIE_DOT:
  303.          if (entry_buf_len < entry_len + 3) {
  304.              status = ERROR_BUFFER_OVERFLOW;
  305. -            dprintf(1, "not enough room for '..' entry. received %d need %d\n",
  306. +            dprintf(0, "readdir_add_dots: not enough room for '..' entry. received %d need %d\n",
  307.                      entry_buf_len, entry_len);
  308.              args->query_reply_len = entry_len + 2;
  309.              goto out;
  310. @@ -427,7 +606,7 @@ static int readdir_add_dots(
  311.              &state->parent, &entry->attr_info);
  312.          if (status) {
  313.              status = ERROR_FILE_NOT_FOUND;
  314. -            dprintf(1, "failed to add '..' entry.\n");
  315. +            dprintf(0, "readdir_add_dots: failed to add '..' entry.\n");
  316.              goto out;
  317.          }
  318.          entry->cookie = COOKIE_DOTDOT;
  319. @@ -493,7 +672,11 @@ fetch_entries:
  320.      nfs41_superblock_getattr_mask(state->file.fh.superblock, &attr_request);
  321.      attr_request.arr[0] |= FATTR4_WORD0_RDATTR_ERROR;
  322.  
  323. -    if (strchr(args->filter, FILTER_STAR) || strchr(args->filter, FILTER_QM)) {
  324. +    if (strchr(args->filter, FILTER_STAR) ||
  325. +        strchr(args->filter, FILTER_QM) ||
  326. +        strchr(args->filter, FILTER_DOT) ||
  327. +        strchr(args->filter, '?') ||
  328. +        strchr(args->filter, '*')) {
  329.          /* use READDIR for wildcards */
  330.  
  331.          uint32_t dots_len = 0;
  332. --
  333. 2.42.1
  334.  
  335. From 4481e4eecb8fa1b9a6eb27371514c401a715508d Mon Sep 17 00:00:00 2001
  336. From: Martin Wege <martin.l.wege@gmail.com>
  337. Date: Fri, 29 Dec 2023 02:16:13 +0100
  338. Subject: [PATCH 2/5] Fix VC19 "Arithmetic overflow" warnings
  339.  
  340. Fix Visual Studio 19's "Arithmetic overflow" warnings
  341. generated by MSBuild.exe 'ms-nfs41-client\build.vc19\nfs41-client.sln'
  342. -t:Build /p:RunCodeAnalysis=true -p:Configuration=Debug -p:Platform=x64
  343.  
  344. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  345. ---
  346. daemon/ea.c                 | 4 ++--
  347.  daemon/nfs41_xdr.c          | 4 ++--
  348.  daemon/readdir.c            | 9 ++++-----
  349.  daemon/util.c               | 2 +-
  350.  libtirpc/src/auth_sspi.c    | 2 +-
  351.  libtirpc/src/getnetconfig.c | 4 ++--
  352.  libtirpc/src/rpc_callmsg.c  | 2 +-
  353.  libtirpc/src/svc_dg.c       | 6 +++---
  354.  libtirpc/src/xdr_rec.c      | 6 +++---
  355.  9 files changed, 19 insertions(+), 20 deletions(-)
  356.  
  357. diff --git a/daemon/ea.c b/daemon/ea.c
  358. index ac8707c..55643da 100644
  359. --- a/daemon/ea.c
  360. +++ b/daemon/ea.c
  361. @@ -269,7 +269,7 @@ static int read_entire_dir(
  362.          if (len < READDIR_LEN_MIN) {
  363.              const ptrdiff_t diff = (unsigned char*)last_entry - buffer;
  364.              /* realloc the buffer to fit more entries */
  365. -            unsigned char *tmp = realloc(buffer, buffer_len * 2);
  366. +            unsigned char *tmp = realloc(buffer, (size_t)buffer_len * 2L);
  367.              if (tmp == NULL) {
  368.                  status = GetLastError();
  369.                  goto out_free;
  370. @@ -605,7 +605,7 @@ static int handle_getexattr(void *daemon_context, nfs41_upcall *upcall)
  371.          }
  372.  
  373.          ea->EaNameLength = query->EaNameLength;
  374. -        StringCchCopy(ea->EaName, ea->EaNameLength + 1, query->EaName);
  375. +        StringCchCopy(ea->EaName, (size_t)ea->EaNameLength + 1, query->EaName);
  376.          ea->Flags = 0;
  377.  
  378.          /* read the value from file */
  379. diff --git a/daemon/nfs41_xdr.c b/daemon/nfs41_xdr.c
  380. index 4252785..56bfcb8 100644
  381. --- a/daemon/nfs41_xdr.c
  382. +++ b/daemon/nfs41_xdr.c
  383. @@ -2078,7 +2078,7 @@ static bool_t decode_modified_limit4(
  384.      if (!xdr_u_int32_t(xdr, &bytes_per_block))
  385.          return FALSE;
  386.  
  387. -    *filesize = blocks * bytes_per_block;
  388. +    *filesize = (uint64_t)blocks * bytes_per_block;
  389.      return TRUE;
  390.  }
  391.  
  392. @@ -2346,7 +2346,7 @@ static bool_t decode_readdir_entry(
  393.              entry->attr_info.rdattr_error = NFS4ERR_BADXDR;
  394.          StringCchCopyA(entry->name, name_len, (STRSAFE_LPCSTR)name);
  395.  
  396. -        it->buf_pos += entry_len + name_len;
  397. +        it->buf_pos += (size_t)entry_len + name_len;
  398.          it->remaining_len -= entry_len + name_len;
  399.          it->last_entry_offset = &entry->next_entry_offset;
  400.      }
  401. diff --git a/daemon/readdir.c b/daemon/readdir.c
  402. index 66e117c..5cbe66c 100644
  403. --- a/daemon/readdir.c
  404. +++ b/daemon/readdir.c
  405. @@ -48,12 +48,11 @@
  406.  bool
  407.  readdir_filter(const char *filter, const char *name)
  408.  {
  409. -#define MAX_NUM_BACKTRACKING (256)
  410. +#define MAX_NUM_BACKTRACKING (256L)
  411.      const size_t filter_len = strlen(filter);
  412.      const size_t name_len = strlen(name);
  413.      size_t foff;
  414.      size_t pos;
  415. -    const int bt_buf_size = MAX_NUM_BACKTRACKING;
  416.      size_t bt_buf[MAX_NUM_BACKTRACKING], old_bt_buf[MAX_NUM_BACKTRACKING] = { 0 };
  417.      size_t *bt = bt_buf, *old_bt = old_bt_buf;
  418.      size_t bt_pos, old_bt_pos;
  419. @@ -105,11 +104,11 @@ readdir_filter(const char *filter, const char *name)
  420.                  }
  421.  
  422.                  /* backtracking buffer too small ? */
  423. -                if (bt_pos > (bt_buf_size - 3))
  424. +                if (bt_pos > (MAX_NUM_BACKTRACKING - 3L))
  425.                  {
  426.                      (void)fprintf(stderr,
  427. -                        "ASSERT: bt buffer too small: bt_buf_size=%x\n",
  428. -                        (int)bt_buf_size);
  429. +                        "ASSERT: bt buffer too small: MAX_NUM_BACKTRACKING=%x\n",
  430. +                        (int)MAX_NUM_BACKTRACKING);
  431.                      res = false;
  432.                      goto done;
  433.                  }
  434. diff --git a/daemon/util.c b/daemon/util.c
  435. index da309b2..27b0be0 100644
  436. --- a/daemon/util.c
  437. +++ b/daemon/util.c
  438. @@ -444,7 +444,7 @@ int create_silly_rename(
  439.  
  440.      tmp = (char*)silly->name;
  441.      StringCchPrintf(tmp, end - tmp, ".%s.", name);
  442. -    tmp += silly->len + 2;
  443. +    tmp += (size_t)silly->len + 2L;
  444.  
  445.      for (i = 0; i < 16; i++, tmp++)
  446.          StringCchPrintf(tmp, end - tmp, "%x", fhmd5[i]);
  447. diff --git a/libtirpc/src/auth_sspi.c b/libtirpc/src/auth_sspi.c
  448. index 546a86d..78dc6ba 100644
  449. --- a/libtirpc/src/auth_sspi.c
  450. +++ b/libtirpc/src/auth_sspi.c
  451. @@ -720,7 +720,7 @@ void sspi_release_buffer(sspi_buffer_desc *buf)
  452.  
  453.  uint32_t sspi_import_name(sspi_buffer_desc *name_in, sspi_name_t *name_out)
  454.  {
  455. -    *name_out = calloc(name_in->length + 5, sizeof(char));
  456. +    *name_out = calloc((size_t)name_in->length + 5L, sizeof(char));
  457.      if (*name_out == NULL)
  458.          return SEC_E_INSUFFICIENT_MEMORY;
  459.  
  460. diff --git a/libtirpc/src/getnetconfig.c b/libtirpc/src/getnetconfig.c
  461. index 0330d86..2e847f9 100644
  462. --- a/libtirpc/src/getnetconfig.c
  463. +++ b/libtirpc/src/getnetconfig.c
  464. @@ -605,7 +605,7 @@ struct netconfig *ncp;      /* where to put results */
  465.                         tokenp = _get_next_token(cp, ',');
  466.                         ncp->nc_lookups[(size_t)ncp->nc_nlookups++] = cp;
  467.                         ncp->nc_lookups = (char **)realloc(ncp->nc_lookups,
  468. -                       (size_t)(ncp->nc_nlookups+1) *sizeof(char *));  /* for next loop */
  469. +                       ((size_t)ncp->nc_nlookups+1L) *sizeof(char *)); /* for next loop */
  470.                 }
  471.      }
  472.      return (0);
  473. @@ -687,7 +687,7 @@ struct netconfig    *ncp;
  474.      p->nc_proto = (char *)strcpy(tmp,ncp->nc_proto);
  475.      tmp = strchr(tmp, 0) + 1;
  476.      p->nc_device = (char *)strcpy(tmp,ncp->nc_device);
  477. -    p->nc_lookups = (char **)malloc((size_t)(p->nc_nlookups+1) * sizeof(char *));
  478. +    p->nc_lookups = (char **)malloc(((size_t)p->nc_nlookups+1L) * sizeof(char *));
  479.      if (p->nc_lookups == NULL) {
  480.                 free(p->nc_netid);
  481.                 return(NULL);
  482. diff --git a/libtirpc/src/rpc_callmsg.c b/libtirpc/src/rpc_callmsg.c
  483. index 48d34cd..cf864c6 100644
  484. --- a/libtirpc/src/rpc_callmsg.c
  485. +++ b/libtirpc/src/rpc_callmsg.c
  486. @@ -86,7 +86,7 @@ xdr_callmsg(xdrs, cmsg)
  487.                         IXDR_PUT_INT32(buf, oa->oa_length);
  488.                         if (oa->oa_length) {
  489.                                 memmove(buf, oa->oa_base, oa->oa_length);
  490. -                               buf += RNDUP(oa->oa_length) / sizeof (int32_t);
  491. +                               buf += RNDUP((size_t)oa->oa_length) / sizeof (int32_t);
  492.                         }
  493.                         oa = &cmsg->rm_call.cb_verf;
  494.                         IXDR_PUT_ENUM(buf, oa->oa_flavor);
  495. diff --git a/libtirpc/src/svc_dg.c b/libtirpc/src/svc_dg.c
  496. index 34bb7a8..3369394 100644
  497. --- a/libtirpc/src/svc_dg.c
  498. +++ b/libtirpc/src/svc_dg.c
  499. @@ -125,7 +125,7 @@ svc_dg_create(fd, sendsize, recvsize)
  500.         su = mem_alloc(sizeof (*su));
  501.         if (su == NULL)
  502.                 goto freedata;
  503. -       su->su_iosz = ((MAX(sendsize, recvsize) + 3) / 4) * 4;
  504. +       su->su_iosz = (((size_t)MAX(sendsize, recvsize) + 3) / 4) * 4;
  505.         if ((rpc_buffer(xprt) = mem_alloc(su->su_iosz)) == NULL)
  506.                 goto freedata;
  507.         assert(su->su_iosz < UINT_MAX);
  508. @@ -408,14 +408,14 @@ svc_dg_enablecache(transp, size)
  509.         }
  510.         uc->uc_size = size;
  511.         uc->uc_nextvictim = 0;
  512. -       uc->uc_entries = ALLOC(cache_ptr, size * SPARSENESS);
  513. +       uc->uc_entries = ALLOC(cache_ptr, (size_t)size * SPARSENESS);
  514.         if (uc->uc_entries == NULL) {
  515.                 warnx(cache_enable_str, alloc_err, "data");
  516.                 FREE(uc, struct cl_cache, 1);
  517.                 mutex_unlock(&dupreq_lock);
  518.                 return (0);
  519.         }
  520. -       MEMZERO(uc->uc_entries, cache_ptr, size * SPARSENESS);
  521. +       MEMZERO(uc->uc_entries, cache_ptr, (size_t)size * SPARSENESS);
  522.         uc->uc_fifo = ALLOC(cache_ptr, size);
  523.         if (uc->uc_fifo == NULL) {
  524.                 warnx(cache_enable_str, alloc_err, "fifo");
  525. diff --git a/libtirpc/src/xdr_rec.c b/libtirpc/src/xdr_rec.c
  526. index 8245e33..8d5422a 100644
  527. --- a/libtirpc/src/xdr_rec.c
  528. +++ b/libtirpc/src/xdr_rec.c
  529. @@ -254,7 +254,7 @@ xdrrec_getlong(xdrs, lp)
  530.  
  531.         /* first try the inline, fast case */
  532.         if ((rstrm->fbtbc >= sizeof(int32_t)) &&
  533. -               ((PtrToLong(rstrm->in_boundry) - PtrToLong(buflp)) >= sizeof(int32_t))) {
  534. +               (((ssize_t)PtrToLong(rstrm->in_boundry) - (ssize_t)PtrToLong(buflp)) >= sizeof(int32_t))) {
  535.                 *lp = (long)ntohl((u_int32_t)(*buflp));
  536.                 rstrm->fbtbc -= sizeof(int32_t);
  537.                 rstrm->in_finger += sizeof(int32_t);
  538. @@ -747,8 +747,8 @@ get_input_bytes(rstrm, addr, in_len)
  539.         }
  540.  
  541.         while (len > 0) {
  542. -               current = (size_t)(PtrToLong(rstrm->in_boundry) -
  543. -                   PtrToLong(rstrm->in_finger));
  544. +               current = (ssize_t)PtrToLong(rstrm->in_boundry) -
  545. +                   (ssize_t)PtrToLong(rstrm->in_finger);
  546.                 if (current == 0) {
  547.                         if (! fill_input_buf(rstrm))
  548.                                 return (FALSE);
  549. --
  550. 2.42.1
  551.  
  552. From 512eaa400343fe8b15086cb978005d13d13a01a7 Mon Sep 17 00:00:00 2001
  553. From: Roland Mainz <roland.mainz@nrubsig.org>
  554. Date: Fri, 29 Dec 2023 04:07:17 +0100
  555. Subject: [PATCH 3/5] daemon/readdir: |readdir_filter()| should use
  556.  |eprintf()|, not stdio
  557.  
  558. |readdir_filter()| should use |eprintf()|, not stdio. This also adds
  559. better diagnostic in case the backtracking buffer is too small.
  560. Also, |readdir_filter()| should be |static|.
  561.  
  562. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  563. ---
  564. daemon/readdir.c | 10 +++++++---
  565.  1 file changed, 7 insertions(+), 3 deletions(-)
  566.  
  567. diff --git a/daemon/readdir.c b/daemon/readdir.c
  568. index 5cbe66c..1027e69 100644
  569. --- a/daemon/readdir.c
  570. +++ b/daemon/readdir.c
  571. @@ -24,7 +24,6 @@
  572.  #include <stdlib.h>
  573.  #include <stdbool.h>
  574.  #include <string.h>
  575. -#include <stdio.h>
  576.  #include "from_kernel.h"
  577.  #include "nfs41_ops.h"
  578.  #include "daemon_debug.h"
  579. @@ -45,6 +44,7 @@
  580.  #define FILTER_QM   ('>')
  581.  #define FILTER_DOT  ('"')
  582.  
  583. +static
  584.  bool
  585.  readdir_filter(const char *filter, const char *name)
  586.  {
  587. @@ -106,8 +106,12 @@ readdir_filter(const char *filter, const char *name)
  588.                  /* backtracking buffer too small ? */
  589.                  if (bt_pos > (MAX_NUM_BACKTRACKING - 3L))
  590.                  {
  591. -                    (void)fprintf(stderr,
  592. -                        "ASSERT: bt buffer too small: MAX_NUM_BACKTRACKING=%x\n",
  593. +                    eprintf("readdir_filter(filter='%s',name='%s'): "
  594. +                        "bt buffer too small: "
  595. +                        "bt_pos=%d, MAX_NUM_BACKTRACKING=%x\n",
  596. +                        filter,
  597. +                        name,
  598. +                        (int)bt_pos,
  599.                          (int)MAX_NUM_BACKTRACKING);
  600.                      res = false;
  601.                      goto done;
  602. --
  603. 2.42.1
  604.  
  605. From c7c36c90b61e8360e75c7cb4cf1940aeb457c239 Mon Sep 17 00:00:00 2001
  606. From: Roland Mainz <roland.mainz@nrubsig.org>
  607. Date: Fri, 29 Dec 2023 05:17:27 +0100
  608. Subject: [PATCH 4/5] Compile all userland code with -DUNICODE -D_UNICODE
  609.  
  610. As suggested by Martin Wege, we should compile all userland code
  611. with -DUNICODE -D_UNICODE, to make sure we always use the right APIs.
  612.  
  613. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  614. ---
  615. build.vc19/libtirpc/libtirpc.vcxproj       | 4 ++--
  616.  build.vc19/nfs41_np/nfs41_np.vcxproj       | 4 ++--
  617.  build.vc19/nfs_install/nfs_install.vcxproj | 4 ++--
  618.  build.vc19/nfs_mount/nfs_mount.vcxproj     | 4 ++--
  619.  build.vc19/nfsd/nfsd.vcxproj               | 4 ++--
  620.  tests/winfsinfo1/Makefile                  | 2 +-
  621.  6 files changed, 11 insertions(+), 11 deletions(-)
  622.  
  623. diff --git a/build.vc19/libtirpc/libtirpc.vcxproj b/build.vc19/libtirpc/libtirpc.vcxproj
  624. index 2a463fa..a639750 100644
  625. --- a/build.vc19/libtirpc/libtirpc.vcxproj
  626. +++ b/build.vc19/libtirpc/libtirpc.vcxproj
  627. @@ -87,7 +87,7 @@
  628.        </PrecompiledHeader>
  629.        <WarningLevel>Level3</WarningLevel>
  630.        <Optimization>Disabled</Optimization>
  631. -      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  632. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;UNICODE;_UNICODE;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  633.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  634.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  635.      </ClCompile>
  636. @@ -123,7 +123,7 @@
  637.        <Optimization>MaxSpeed</Optimization>
  638.        <FunctionLevelLinking>true</FunctionLevelLinking>
  639.        <IntrinsicFunctions>true</IntrinsicFunctions>
  640. -      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  641. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;UNICODE;_UNICODE;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  642.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  643.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  644.      </ClCompile>
  645. diff --git a/build.vc19/nfs41_np/nfs41_np.vcxproj b/build.vc19/nfs41_np/nfs41_np.vcxproj
  646. index f62fced..da8755d 100644
  647. --- a/build.vc19/nfs41_np/nfs41_np.vcxproj
  648. +++ b/build.vc19/nfs41_np/nfs41_np.vcxproj
  649. @@ -87,7 +87,7 @@
  650.        </PrecompiledHeader>
  651.        <WarningLevel>Level3</WarningLevel>
  652.        <Optimization>Disabled</Optimization>
  653. -      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;NFS41_NP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  654. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;_DEBUG;_WINDOWS;_USRDLL;NFS41_NP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  655.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  656.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  657.      </ClCompile>
  658. @@ -121,7 +121,7 @@
  659.        <Optimization>MaxSpeed</Optimization>
  660.        <FunctionLevelLinking>true</FunctionLevelLinking>
  661.        <IntrinsicFunctions>true</IntrinsicFunctions>
  662. -      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;NFS41_NP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  663. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;NDEBUG;_WINDOWS;_USRDLL;NFS41_NP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  664.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  665.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  666.      </ClCompile>
  667. diff --git a/build.vc19/nfs_install/nfs_install.vcxproj b/build.vc19/nfs_install/nfs_install.vcxproj
  668. index 6ca73bc..2fab595 100644
  669. --- a/build.vc19/nfs_install/nfs_install.vcxproj
  670. +++ b/build.vc19/nfs_install/nfs_install.vcxproj
  671. @@ -87,7 +87,7 @@
  672.        </PrecompiledHeader>
  673.        <WarningLevel>Level3</WarningLevel>
  674.        <Optimization>Disabled</Optimization>
  675. -      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  676. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  677.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  678.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  679.      </ClCompile>
  680. @@ -119,7 +119,7 @@
  681.        <Optimization>MaxSpeed</Optimization>
  682.        <FunctionLevelLinking>true</FunctionLevelLinking>
  683.        <IntrinsicFunctions>true</IntrinsicFunctions>
  684. -      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  685. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  686.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  687.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  688.      </ClCompile>
  689. diff --git a/build.vc19/nfs_mount/nfs_mount.vcxproj b/build.vc19/nfs_mount/nfs_mount.vcxproj
  690. index 7422a8c..73158bd 100644
  691. --- a/build.vc19/nfs_mount/nfs_mount.vcxproj
  692. +++ b/build.vc19/nfs_mount/nfs_mount.vcxproj
  693. @@ -87,7 +87,7 @@
  694.        </PrecompiledHeader>
  695.        <WarningLevel>Level3</WarningLevel>
  696.        <Optimization>Disabled</Optimization>
  697. -      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  698. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  699.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  700.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  701.      </ClCompile>
  702. @@ -121,7 +121,7 @@
  703.        <Optimization>MaxSpeed</Optimization>
  704.        <FunctionLevelLinking>true</FunctionLevelLinking>
  705.        <IntrinsicFunctions>true</IntrinsicFunctions>
  706. -      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  707. +      <PreprocessorDefinitions>WIN32;UNICODE;_UNICODE;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  708.        <AdditionalIncludeDirectories>..\..\sys;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  709.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  710.      </ClCompile>
  711. diff --git a/build.vc19/nfsd/nfsd.vcxproj b/build.vc19/nfsd/nfsd.vcxproj
  712. index 4fa0012..c45559e 100644
  713. --- a/build.vc19/nfsd/nfsd.vcxproj
  714. +++ b/build.vc19/nfsd/nfsd.vcxproj
  715. @@ -87,7 +87,7 @@
  716.        </PrecompiledHeader>
  717.        <WarningLevel>Level3</WarningLevel>
  718.        <Optimization>Disabled</Optimization>
  719. -      <PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;STANDALONE_NFSD;_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  720. +      <PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;STANDALONE_NFSD;_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;UNICODE;_UNICODE;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  721.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;..\..\sys;..\..\dll;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  722.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  723.      </ClCompile>
  724. @@ -121,7 +121,7 @@
  725.        <Optimization>MaxSpeed</Optimization>
  726.        <FunctionLevelLinking>true</FunctionLevelLinking>
  727.        <IntrinsicFunctions>true</IntrinsicFunctions>
  728. -      <PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  729. +      <PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;UNICODE;_UNICODE;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  730.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;..\..\sys;..\..\dll;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  731.        <LanguageStandard_C>stdc17</LanguageStandard_C>
  732.      </ClCompile>
  733. diff --git a/tests/winfsinfo1/Makefile b/tests/winfsinfo1/Makefile
  734. index 8e7d10a..91ef665 100644
  735. --- a/tests/winfsinfo1/Makefile
  736. +++ b/tests/winfsinfo1/Makefile
  737. @@ -5,7 +5,7 @@
  738.  # POSIX Makefile
  739.  
  740.  winfsinfo: winfsinfo.c
  741. -       gcc -Wall -g winfsinfo.c -o winfsinfo
  742. +       gcc -Wall -DUNICODE=1 -D_UNICODE=1 -g winfsinfo.c -o winfsinfo
  743.  
  744.  all: winfsinfo
  745.  
  746. --
  747. 2.42.1
  748.  
  749. From 93958c395e19b4c1ecb8cdfd06355a4ec72b327d Mon Sep 17 00:00:00 2001
  750. From: Roland Mainz <roland.mainz@nrubsig.org>
  751. Date: Fri, 29 Dec 2023 06:37:49 +0100
  752. Subject: [PATCH 5/5] daemon: Increase up-/downcall buffer to accommodate paths
  753.  >= 1024 bytes
  754.  
  755. Increase up-/downcall buffer to accommodate paths >= 1024 bytes
  756. (1053 bytes is known to work, assuming the NFSv4 server runs on a
  757. filesystem which supports paths with more than 1024 bytes).
  758.  
  759. This fixes "IOCTL_NFS41_READ failed 1450" messages when using long
  760. paths.
  761.  
  762. Tested with this script:
  763. ---- snip ----
  764. typeset -i i
  765. typeset longpath=''
  766. for ((i=0 ; ${#longpath} < 1024 ; i++)) ; do
  767.     longpath+="longpath__$i/"
  768. done
  769. mkdir -p "$longpath" && cd "$longpath"
  770. printf "path_len=%d\n" "${#PWD}"
  771.  
  772. git clone https://git.savannah.gnu.org/git/bash.git
  773. cd bash/
  774. ./configure --with-curses
  775. make -j2 all
  776. ---- snip ----
  777.  
  778. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  779. ---
  780. daemon/nfs41_const.h     |  2 +-
  781.  tests/manual_testing.txt | 16 +++++++++++-----
  782.  2 files changed, 12 insertions(+), 6 deletions(-)
  783.  
  784. diff --git a/daemon/nfs41_const.h b/daemon/nfs41_const.h
  785. index 43d4cbf..f40eda5 100644
  786. --- a/daemon/nfs41_const.h
  787. +++ b/daemon/nfs41_const.h
  788. @@ -39,7 +39,7 @@
  789.  #define NFS41_MAX_SERVER_CACHE  1024
  790.  #define NFS41_MAX_RPC_REQS      128
  791.  
  792. -#define UPCALL_BUF_SIZE         2048
  793. +#define UPCALL_BUF_SIZE         4096
  794.  
  795.  /*
  796.   * NFS41_MAX_COMPONENT_LEN - MaximumComponentNameLength
  797. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  798. index e6a8173..c23d337 100644
  799. --- a/tests/manual_testing.txt
  800. +++ b/tests/manual_testing.txt
  801. @@ -36,11 +36,17 @@ time ksh93 -c 'export SHELL=/bin/bash HOSTTYPE="cygwin.i386-64"; /bin/bash ./bin
  802.  #
  803.  # bash
  804.  #
  805. -mkdir longpath__________________________________________________________________________________________________________________________________________________________________________________________________________________________1
  806. -cd longpath__________________________________________________________________________________________________________________________________________________________________________________________________________________________1
  807. -mkdir longpath__________________________________________________________________________________________________________________________________________________________________________________________________________________________2
  808. -cd longpath__________________________________________________________________________________________________________________________________________________________________________________________________________________________2
  809. -echo ${#PWD} # (478 is know to work)
  810. +
  811. +# build bash with very long PWD (${#PWD} == 1053 is known to work
  812. +# if the nfs server supports path lengths > 1024)
  813. +typeset -i i
  814. +typeset longpath=''
  815. +for ((i=0 ; ${#longpath} < 1024 ; i++)) ; do
  816. +    longpath+="longpath__$i/"
  817. +done
  818. +mkdir -p "$longpath" && cd "$longpath"
  819. +printf "path_len=%d\n" "${#PWD}"
  820. +
  821.  git clone https://git.savannah.gnu.org/git/bash.git
  822.  cd bash/
  823.  ./configure --with-curses
  824. --
  825. 2.42.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