pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for libtirpc deadlocks and misc other things, 2023-10-28-001
Posted by Anonymous on Sat 28th Oct 2023 13:25
raw | new post

  1. From f5b931a4d923431115a0be7c579f36c708c78530 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Fri, 27 Oct 2023 15:04:13 +0200
  4. Subject: [PATCH 1/6] libtirpc: Use fd number instead of SOCKET handle for
  5.  locking
  6.  
  7. libtirpc: Use fd number (from |_get_osfhandle()| instead of
  8. |SOCKET| handle for locking.
  9.  
  10. The original Windows libtirpc implementation used a SOCKET handle and
  11. |WINSOCK_HANDLE_HASH(x) (((x) >> 2) % WINSOCK_HANDLE_HASH_SIZE)| to
  12. get an index to an array of |CONDITION_VARIABLE| to implement locking,
  13. while the POSIX implementation just used the |fd| value as index.
  14. But |SOCKET| can be a 64bit pointer, and the |%| causes wrapound and
  15. re-use of one |CONDITION_VARIABLE| variable for multiple threads -
  16. the symptoms are hangs under hightly parallel loads on multiple
  17. mounts.
  18.  
  19. The patch now switches the code back to use a |fd| (obtained via
  20. |_open_osfhandle(sock, _O_BINARY)|, |_get_osfhandle(fd)| and our
  21. own |wintirpc_handle2fd(sock)|) as index.
  22.  
  23. This is also preparation (mostly abstraction) so that we can
  24. update libtirpc to a newer version in the future.
  25.  
  26. The patch also bumps |FD_SETSIZE| from |128| to |1024|.
  27.  
  28. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  29. ---
  30. build.vc19/libtirpc/libtirpc.vcxproj |   8 +-
  31.  libtirpc/src/auth_time.c             |  26 ++---
  32.  libtirpc/src/bindresvport.c          |  34 +++----
  33.  libtirpc/src/clnt_bcast.c            |  33 ++++---
  34.  libtirpc/src/clnt_dg.c               |  64 ++++++------
  35.  libtirpc/src/clnt_generic.c          |  12 +--
  36.  libtirpc/src/clnt_vc.c               |  66 ++++++-------
  37.  libtirpc/src/getpeereid.c            |   4 +-
  38.  libtirpc/src/pmap_getmaps.c          |   2 +-
  39.  libtirpc/src/rpc_com.h               |   4 +-
  40.  libtirpc/src/rpc_generic.c           |  25 ++---
  41.  libtirpc/src/rpc_soc.c               |  42 ++++----
  42.  libtirpc/src/rpcb_clnt.c             |  26 ++---
  43.  libtirpc/src/rtime.c                 |  21 ++--
  44.  libtirpc/src/svc.c                   |  14 +--
  45.  libtirpc/src/svc_dg.c                |  10 +-
  46.  libtirpc/src/svc_generic.c           |  12 +--
  47.  libtirpc/src/svc_vc.c                |  30 +++---
  48.  libtirpc/src/wintirpc.c              | 140 ++++++++++++++++++++++++++-
  49.  libtirpc/tirpc/getpeereid.h          |   2 +-
  50.  libtirpc/tirpc/rpc/clnt.h            |   6 +-
  51.  libtirpc/tirpc/rpc/clnt_soc.h        |   2 +-
  52.  libtirpc/tirpc/rpc/rpc.h             |   8 +-
  53.  libtirpc/tirpc/rpc/rpc_com.h         |   2 +-
  54.  libtirpc/tirpc/rpc/svc.h             |  20 ++--
  55.  libtirpc/tirpc/wintirpc.h            |  43 +++++---
  56.  26 files changed, 406 insertions(+), 250 deletions(-)
  57.  
  58. diff --git a/build.vc19/libtirpc/libtirpc.vcxproj b/build.vc19/libtirpc/libtirpc.vcxproj
  59. index 36b6c4f..0694ed6 100644
  60. --- a/build.vc19/libtirpc/libtirpc.vcxproj
  61. +++ b/build.vc19/libtirpc/libtirpc.vcxproj
  62. @@ -87,7 +87,7 @@
  63.        </PrecompiledHeader>
  64.        <WarningLevel>Level3</WarningLevel>
  65.        <Optimization>Disabled</Optimization>
  66. -      <PreprocessorDefinitions>FD_SETSIZE=128;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  67. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  68.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  69.      </ClCompile>
  70.      <Link>
  71. @@ -103,7 +103,7 @@
  72.        </PrecompiledHeader>
  73.        <WarningLevel>Level3</WarningLevel>
  74.        <Optimization>Disabled</Optimization>
  75. -      <PreprocessorDefinitions>FD_SETSIZE=128;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  76. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  77.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  78.      </ClCompile>
  79.      <Link>
  80. @@ -121,7 +121,7 @@
  81.        <Optimization>MaxSpeed</Optimization>
  82.        <FunctionLevelLinking>true</FunctionLevelLinking>
  83.        <IntrinsicFunctions>true</IntrinsicFunctions>
  84. -      <PreprocessorDefinitions>FD_SETSIZE=128;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  85. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  86.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  87.      </ClCompile>
  88.      <Link>
  89. @@ -141,7 +141,7 @@
  90.        <Optimization>MaxSpeed</Optimization>
  91.        <FunctionLevelLinking>true</FunctionLevelLinking>
  92.        <IntrinsicFunctions>true</IntrinsicFunctions>
  93. -      <PreprocessorDefinitions>FD_SETSIZE=128;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  94. +      <PreprocessorDefinitions>FD_SETSIZE=1024;INET6;NO_CB_4_KRB5P;PORTMAP;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;_WINDOWS;_USRDLL;LIBTIRPC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  95.        <AdditionalIncludeDirectories>..\..\libtirpc\tirpc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  96.      </ClCompile>
  97.      <Link>
  98. diff --git a/libtirpc/src/auth_time.c b/libtirpc/src/auth_time.c
  99. index ad8e521..acf5e0e 100644
  100. --- a/libtirpc/src/auth_time.c
  101. +++ b/libtirpc/src/auth_time.c
  102. @@ -250,7 +250,7 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  103.         nis_server              tsrv;
  104.         void                    (*oldsig)() = NULL; /* old alarm handler */
  105.         struct sockaddr_in      sin;
  106. -       SOCKET                  s = RPC_ANYSOCK;
  107. +       int                     s = RPC_ANYSOCK;
  108.         socklen_t len;
  109.         int                     type = 0;
  110.  
  111. @@ -377,8 +377,8 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  112.                         goto error;
  113.                 }
  114.  
  115. -               s = socket(AF_INET, type, 0);
  116. -               if (s == INVALID_SOCKET) {
  117. +               s = wintirpc_socket(AF_INET, type, 0);
  118. +               if (s == -1) {
  119.                         msg("unable to open fd to network.");
  120.                         goto error;
  121.                 }
  122. @@ -393,22 +393,22 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  123.                         fd_set readfds;
  124.                         int res;
  125.  
  126. -                       if (sendto(s, (const char *)&thetime, sizeof(thetime), 0,
  127. +                       if (wintirpc_sendto(s, (const char *)&thetime, sizeof(thetime), 0,
  128.                                 (struct sockaddr *)&sin, sizeof(sin)) == -1) {
  129.                                 msg("udp : sendto failed.");
  130.                                 goto error;
  131.                         }
  132.                         do {
  133.                                 FD_ZERO(&readfds);
  134. -                               FD_SET(s, &readfds);
  135. +                               FD_SET(_get_osfhandle(s), &readfds);
  136.                                 res = select(_rpc_dtablesize(), &readfds,
  137. -                                    (fd_set *)NULL, (fd_set *)NULL, &timeout);
  138. +                                       (fd_set *)NULL, (fd_set *)NULL, &timeout);
  139.                         } while (res == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
  140.                         if (res == SOCKET_ERROR)
  141.                                 goto error;
  142.                         len = sizeof(from);
  143. -                       res = recvfrom(s, (char *)&thetime, sizeof(thetime), 0,
  144. -                                      (struct sockaddr *)&from, &len);
  145. +                       res = recvfrom(_get_osfhandle(s), (char *)&thetime, sizeof(thetime), 0,
  146. +                                       (struct sockaddr *)&from, &len);
  147.                         if (res == SOCKET_ERROR) {
  148.                                 msg("recvfrom failed on udp transport.");
  149.                                 goto error;
  150. @@ -424,7 +424,7 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  151.                         saw_alarm = 0;
  152.                         /* XXX Need Windows signal/alarm stuff here XXX */
  153.  #endif
  154. -                       res = connect(s, (struct sockaddr *)&sin, sizeof(sin));
  155. +                       res = connect(_get_osfhandle(s), (struct sockaddr *)&sin, sizeof(sin));
  156.                         if (res == SOCKET_ERROR) {
  157.                                 msg("failed to connect to tcp endpoint.");
  158.                                 goto error;
  159. @@ -433,8 +433,8 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  160.                                 msg("alarm caught it, must be unreachable.");
  161.                                 goto error;
  162.                         }
  163. -//                     res = read(s, (char *)&thetime, sizeof(thetime));
  164. -                       res = recv(s, (char *)&thetime, sizeof(thetime), 0);
  165. +//                     res = read(_get_osfhandle(s), (char *)&thetime, sizeof(thetime));
  166. +                       res = recv(_get_osfhandle(s), (char *)&thetime, sizeof(thetime), 0);
  167.                         if (res != sizeof(thetime)) {
  168.                                 if (saw_alarm)
  169.                                         msg("timed out TCP call.");
  170. @@ -446,7 +446,7 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
  171.                         time_valid = 1;
  172.                 }
  173.                 save = WSAGetLastError();
  174. -               (void)closesocket(s);
  175. +               (void)wintirpc_closesocket(s);
  176.                 errno = save;
  177.                 s = RPC_ANYSOCK;
  178.  
  179. @@ -465,7 +465,7 @@ error:
  180.          */
  181.  
  182.         if (s != RPC_ANYSOCK)
  183. -               (void)closesocket(s);
  184. +               (void)wintirpc_closesocket(s);
  185.  
  186.         if (clnt != NULL)
  187.                 clnt_destroy(clnt);
  188. diff --git a/libtirpc/src/bindresvport.c b/libtirpc/src/bindresvport.c
  189. index c1f0d9b..fc325fc 100644
  190. --- a/libtirpc/src/bindresvport.c
  191. +++ b/libtirpc/src/bindresvport.c
  192. @@ -51,10 +51,10 @@
  193.   */
  194.  int
  195.  bindresvport(sd, sin)
  196. -        SOCKET sd;
  197. -        struct sockaddr_in *sin;
  198. +       int sd;
  199. +       struct sockaddr_in *sin;
  200.  {
  201. -        return bindresvport_sa(sd, (struct sockaddr *)sin);
  202. +       return bindresvport_sa(sd, (struct sockaddr *)sin);
  203.  }
  204.  
  205.  #ifdef __linux__
  206. @@ -87,7 +87,7 @@ bindresvport_sa(sd, sa)
  207.                  salen = sizeof(myaddr);
  208.                  sa = (struct sockaddr *)&myaddr;
  209.  
  210. -                if (getsockname(sd, (struct sockaddr *)&myaddr, &salen) == -1)
  211. +                if (getsockname(_get_osfhandle(sd), (struct sockaddr *)&myaddr, &salen) == -1)
  212.                          return -1;      /* errno is correctly set */
  213.  
  214.                  af = myaddr.ss_family;
  215. @@ -125,7 +125,7 @@ bindresvport_sa(sd, sa)
  216.                  *portp = htons(port++);
  217.                   if (port > endport)
  218.                          port = startport;
  219. -                res = bind(sd, sa, salen);
  220. +                res = bind(_get_osfhandle(sd), sa, salen);
  221.                 if (res >= 0 || errno != EADDRINUSE)
  222.                         break;
  223.          }
  224. @@ -144,7 +144,7 @@ bindresvport_sa(sd, sa)
  225.  #if defined(_WIN32)
  226.  
  227.  int
  228. -bindresvport_sa(SOCKET sd, struct sockaddr *sa)
  229. +bindresvport_sa(int sd, struct sockaddr *sa)
  230.  {
  231.         fprintf(stderr, "Do-nothing bindresvport_sa!\n");
  232.         return 0;
  233. @@ -159,7 +159,7 @@ bindresvport_sa(SOCKET sd, struct sockaddr *sa)
  234.   */
  235.  int
  236.  bindresvport_sa(sd, sa)
  237. -       SOCKET sd;
  238. +       int sd;
  239.         struct sockaddr *sa;
  240.  {
  241.  #ifdef IPV6_PORTRANGE
  242. @@ -185,13 +185,13 @@ bindresvport_sa(sd, sa)
  243.  
  244.  #ifdef _WIN32
  245.                 memset(sa, 0, salen);
  246. -               if (error = getsockopt(sd, SOL_SOCKET, SO_PROTOCOL_INFO, (char *)&proto_info, &proto_info_size) == SOCKET_ERROR) {
  247. +               if (error = getsockopt(_get_osfhandle(sd), SOL_SOCKET, SO_PROTOCOL_INFO, (char *)&proto_info, &proto_info_size) == SOCKET_ERROR) {
  248.                         int sockerr = WSAGetLastError();
  249.                         return -1;
  250.                 }
  251.                 af = proto_info.iAddressFamily;
  252.  #else
  253. -               if (getsockname(sd, sa, &salen) == -1)
  254. +               if (getsockname(_get_osfhandle(sd), sa, &salen) == -1)
  255.                         return -1;      /* errno is correctly set */
  256.  
  257.                 af = sa->sa_family;
  258. @@ -231,18 +231,18 @@ bindresvport_sa(sd, sa)
  259.         if (*portp == 0) {
  260.                 socklen_t oldlen = sizeof(old);
  261.  
  262. -               error = getsockopt(sd, proto, portrange, &old, &oldlen);
  263. +               error = getsockopt(_get_osfhandle(sd), proto, portrange, &old, &oldlen);
  264.                 if (error < 0)
  265.                         return (error);
  266.  
  267. -               error = setsockopt(sd, proto, portrange, &portlow,
  268. -                   sizeof(portlow));
  269. +               error = setsockopt(_get_osfhandle(sd), proto, portrange, &portlow,
  270. +                               sizeof(portlow));
  271.                 if (error < 0)
  272.                         return (error);
  273.         }
  274.  #endif
  275.  
  276. -       error = bind(sd, sa, salen);
  277. +       error = bind(_get_osfhandle(sd), sa, salen);
  278.         if (error) {
  279.                 int err = WSAGetLastError();
  280.         }
  281. @@ -252,15 +252,15 @@ bindresvport_sa(sd, sa)
  282.                 int saved_errno = errno;
  283.  
  284.                 if (error < 0) {
  285. -                       if (setsockopt(sd, proto, portrange, &old,
  286. -                           sizeof(old)) < 0)
  287. -                               errno = saved_errno;
  288. +                       if (setsockopt(_get_osfhandle(sd), proto, portrange, &old,
  289. +                               sizeof(old)) < 0)
  290. +                       errno = saved_errno;
  291.                         return (error);
  292.                 }
  293.  
  294.                 if (sa != (struct sockaddr *)&myaddr) {
  295.                         /* Hmm, what did the kernel assign? */
  296. -                       if (getsockname(sd, sa, &salen) < 0)
  297. +                       if (getsockname(_get_osfhandle(sd), sa, &salen) < 0)
  298.                                 errno = saved_errno;
  299.                         return (error);
  300.                 }
  301. diff --git a/libtirpc/src/clnt_bcast.c b/libtirpc/src/clnt_bcast.c
  302. index 8d32c5d..89b7c7c 100644
  303. --- a/libtirpc/src/clnt_bcast.c
  304. +++ b/libtirpc/src/clnt_bcast.c
  305. @@ -60,6 +60,7 @@
  306.  #endif                         /* PORTMAP */
  307.  #include <rpc/nettype.h>
  308.  //#include <arpa/inet.h>
  309. +//#define RPC_DEBUG 1
  310.  #ifdef RPC_DEBUG
  311.  #include <stdio.h>
  312.  #endif
  313. @@ -248,12 +249,12 @@ __rpc_broadenable(int af, int s, struct broadif *bip)
  314.  #if 0
  315.         if (af == AF_INET6) {
  316.                 fprintf(stderr, "set v6 multicast if to %d\n", bip->index);
  317. -               if (setsockopt(s, IPPROTO_IPV6, IPV6_MULTICAST_IF, &bip->index,
  318. -                   sizeof bip->index) < 0)
  319. +               if (setsockopt(_get_osfhandle(s), IPPROTO_IPV6, IPV6_MULTICAST_IF, &bip->index,
  320. +                       sizeof bip->index) < 0)
  321.                         return -1;
  322.         } else
  323.  #endif
  324. -               if (setsockopt(s, SOL_SOCKET, SO_BROADCAST, &o, sizeof o) == SOCKET_ERROR)
  325. +               if (setsockopt(_get_osfhandle(s), SOL_SOCKET, SO_BROADCAST, &o, sizeof o) == SOCKET_ERROR)
  326.                         return -1;
  327.  
  328.         return 0;
  329. @@ -292,7 +293,8 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  330.         int             pmap_reply_flag; /* reply recvd from PORTMAP */
  331.         /* An array of all the suitable broadcast transports */
  332.         struct {
  333. -               int fd;         /* File descriptor */
  334. +               SOCK fd_sock;           /* File descriptor */
  335. +               int fd;
  336.                 int af;
  337.                 int proto;
  338.                 struct netconfig *nconf; /* Netconfig structure */
  339. @@ -349,22 +351,23 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  340.  
  341.                 TAILQ_INIT(&fdlist[fdlistno].nal);
  342.                 if (__rpc_getbroadifs(si.si_af, si.si_proto, si.si_socktype,
  343. -                   &fdlist[fdlistno].nal) == 0)
  344. +                       &fdlist[fdlistno].nal) == 0)
  345.                         continue;
  346.  
  347. -               fd = socket(si.si_af, si.si_socktype, si.si_proto);
  348. +               fd = wintirpc_socket(si.si_af, si.si_socktype, si.si_proto);
  349.                 if (fd == INVALID_SOCKET) {
  350.                         stat = RPC_CANTSEND;
  351.                         continue;
  352.                 }
  353.                 fdlist[fdlistno].af = si.si_af;
  354.                 fdlist[fdlistno].proto = si.si_proto;
  355. +               fdlist[fdlistno].fd_sock = _get_osfhandle(fd);
  356.                 fdlist[fdlistno].fd = fd;
  357.                 fdlist[fdlistno].nconf = nconf;
  358.                 fdlist[fdlistno].asize = __rpc_get_a_size(si.si_af);
  359.                 pfd[fdlistno].events = POLLIN | POLLPRI |
  360.                         POLLRDNORM | POLLRDBAND;
  361. -               pfd[fdlistno].fd = fdlist[fdlistno].fd = fd;
  362. +               pfd[fdlistno].fd = fdlist[fdlistno].fd_sock = _get_osfhandle(fd);
  363.                 fdlist[fdlistno].dsize = __rpc_get_t_size(si.si_af, si.si_proto,
  364.                                                           0);
  365.  
  366. @@ -375,7 +378,7 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  367.                 if (si.si_af == AF_INET && si.si_proto == IPPROTO_UDP) {
  368.                         udpbufsz = fdlist[fdlistno].dsize;
  369.                         if ((outbuf_pmap = malloc(udpbufsz)) == NULL) {
  370. -                               closesocket(fd);
  371. +                               wintirpc_closesocket(fd);
  372.                                 stat = RPC_SYSTEMERROR;
  373.                                 goto done_broad;
  374.                         }
  375. @@ -486,10 +489,10 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  376.                                  */
  377.  
  378.                                 if (!__rpc_lowvers)
  379. -                                       if (sendto(fdlist[i].fd, outbuf,
  380. -                                           outlen, 0, (struct sockaddr*)addr,
  381. -                                           (size_t)fdlist[i].asize) !=
  382. -                                           outlen) {
  383. +                                       if (wintirpc_sendto(fdlist[i].fd, outbuf,
  384. +                                               outlen, 0, (struct sockaddr*)addr,
  385. +                                               (size_t)fdlist[i].asize) !=
  386. +                                               outlen) {
  387.  #ifdef RPC_DEBUG
  388.                                                 perror("sendto");
  389.  #endif
  390. @@ -511,7 +514,7 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  391.                                  */
  392.                                 if (pmap_flag &&
  393.                                     fdlist[i].proto == IPPROTO_UDP) {
  394. -                                       if (sendto(fdlist[i].fd, outbuf_pmap,
  395. +                                       if (wintirpc_sendto(fdlist[i].fd, outbuf_pmap,
  396.                                             outlen_pmap, 0, addr,
  397.                                             (size_t)fdlist[i].asize) !=
  398.                                                 outlen_pmap) {
  399. @@ -573,7 +576,7 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
  400.                                 fdlist[i].nconf->nc_netid);
  401.  #endif
  402.                 try_again:
  403. -                       inlen = recvfrom(fdlist[i].fd, inbuf, fdlist[i].dsize,
  404. +                       inlen = recvfrom(fdlist[i].fd_sock, inbuf, fdlist[i].dsize,
  405.                             0, (struct sockaddr *)(void *)&fdlist[i].raddr,
  406.                             &fdlist[i].asize);
  407.                         if (inlen < 0) {
  408. @@ -673,7 +676,7 @@ done_broad:
  409.                 (void) free(outbuf_pmap);
  410.  #endif                         /* PORTMAP */
  411.         for (i = 0; i < fdlistno; i++) {
  412. -               (void)closesocket(fdlist[i].fd);
  413. +               (void)wintirpc_closesocket(fdlist[i].fd);
  414.                 __rpc_freebroadifs(&fdlist[i].nal);
  415.         }
  416.         AUTH_DESTROY(sys_auth);
  417. diff --git a/libtirpc/src/clnt_dg.c b/libtirpc/src/clnt_dg.c
  418. index 1ece8ad..529a401 100644
  419. --- a/libtirpc/src/clnt_dg.c
  420. +++ b/libtirpc/src/clnt_dg.c
  421. @@ -98,19 +98,19 @@ static cond_t       *dg_cv;
  422.  #ifndef _WIN32
  423.  #define        release_fd_lock(fd, mask) {             \
  424.         mutex_lock(&clnt_fd_lock);      \
  425. -       dg_fd_locks[fd] = 0;            \
  426. +       dg_fd_locks[(fd)] = 0;          \
  427.         mutex_unlock(&clnt_fd_lock);    \
  428.         thr_sigsetmask(SIG_SETMASK, &(mask), NULL); \
  429. -       cond_signal(&dg_cv[fd]);        \
  430. +       cond_signal(&dg_cv[(fd)]);      \
  431.  }
  432.  #else
  433.  /* XXX Needs Windows signal/event stuff XXX */
  434.  #define        release_fd_lock(fd, mask) {             \
  435.         mutex_lock(&clnt_fd_lock);      \
  436. -       dg_fd_locks[WINSOCK_HANDLE_HASH(fd)] = 0;               \
  437. +       dg_fd_locks[(fd)] = 0;          \
  438.         mutex_unlock(&clnt_fd_lock);    \
  439.         \
  440. -       cond_signal(&dg_cv[WINSOCK_HANDLE_HASH(fd)]);   \
  441. +       cond_signal(&dg_cv[(fd)]);      \
  442.  }
  443.  #endif
  444.  
  445. @@ -122,7 +122,7 @@ static const char mem_err_clnt_dg[] = "clnt_dg_create: out of memory";
  446.   * Private data kept per client handle
  447.   */
  448.  struct cu_data {
  449. -       SOCKET                          cu_fd;          /* connections fd */
  450. +       int                             cu_fd;          /* connections fd */
  451.         bool_t                          cu_closeit;     /* opened by library */
  452.         struct sockaddr_storage cu_raddr;       /* remote address */
  453.         int                                     cu_rlen;
  454. @@ -156,7 +156,7 @@ struct cu_data {
  455.   */
  456.  CLIENT *
  457.  clnt_dg_create(fd, svcaddr, program, version, sendsz, recvsz)
  458. -       SOCKET fd;                              /* open file descriptor */
  459. +       int fd;                         /* open file descriptor */
  460.         const struct netbuf *svcaddr;   /* servers address */
  461.         rpcprog_t program;              /* program number */
  462.         rpcvers_t version;              /* version number */
  463. @@ -281,10 +281,10 @@ clnt_dg_create(fd, svcaddr, program, version, sendsz, recvsz)
  464.  #ifdef IP_RECVERR
  465.         {
  466.         int on = 1;
  467. -       setsockopt(fd, SOL_IP, IP_RECVERR, &on, sizeof(on));
  468. +       setsockopt(_get_osfhandle(fd), SOL_IP, IP_RECVERR, &on, sizeof(on));
  469.         }
  470.  #endif
  471. -       ioctlsocket(fd, FIONBIO, &one);
  472. +       ioctlsocket(_get_osfhandle(fd), FIONBIO, &one);
  473.         /*
  474.          * By default, closeit is always FALSE. It is users responsibility
  475.          * to do a close on it, else the user may use clnt_control
  476. @@ -330,7 +330,7 @@ clnt_dg_call(cl, proc, xargs, argsp, xresults, resultsp, utimeout)
  477.         bool_t ok;
  478.         int nrefreshes = 2;             /* number of times to refresh cred */
  479.         struct timeval timeout;
  480. -        struct pollfd fd;
  481. +       struct pollfd fd;
  482.         int total_time, nextsend_time, tv=0;
  483.         struct sockaddr *sa;
  484.  #ifndef _WIN32
  485. @@ -352,10 +352,10 @@ clnt_dg_call(cl, proc, xargs, argsp, xresults, resultsp, utimeout)
  486.                 /* XXX Need Windows signal/event stuff here XXX */
  487.  #endif
  488.         mutex_lock(&clnt_fd_lock);
  489. -       while (dg_fd_locks[WINSOCK_HANDLE_HASH(cu->cu_fd)])
  490. -               cond_wait(&dg_cv[WINSOCK_HANDLE_HASH(cu->cu_fd)], &clnt_fd_lock);
  491. +       while (dg_fd_locks[cu->cu_fd])
  492. +               cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock);
  493.         rpc_lock_value = 1;
  494. -       dg_fd_locks[WINSOCK_HANDLE_HASH(cu->cu_fd)] = rpc_lock_value;
  495. +       dg_fd_locks[cu->cu_fd] = rpc_lock_value;
  496.         mutex_unlock(&clnt_fd_lock);
  497.         if (cu->cu_total.tv_usec == -1) {
  498.                 timeout = utimeout;     /* use supplied timeout */
  499. @@ -366,7 +366,7 @@ clnt_dg_call(cl, proc, xargs, argsp, xresults, resultsp, utimeout)
  500.         nextsend_time = cu->cu_wait.tv_sec * 1000 + cu->cu_wait.tv_usec / 1000;
  501.  
  502.         if (cu->cu_connect && !cu->cu_connected) {
  503. -               if (connect(cu->cu_fd, (struct sockaddr *)&cu->cu_raddr,
  504. +               if (connect(_get_osfhandle(cu->cu_fd), (struct sockaddr *)&cu->cu_raddr,
  505.                     cu->cu_rlen) < 0) {
  506.                         cu->cu_error.re_errno = errno;
  507.                         cu->cu_error.re_status = RPC_CANTSEND;
  508. @@ -420,7 +420,7 @@ send_again:
  509.                 goto out;
  510.         }
  511.         nextsend_time = cu->cu_wait.tv_sec * 1000 + cu->cu_wait.tv_usec / 1000;
  512. -       if (sendto(cu->cu_fd, cu->cu_outbuf, (int)outlen, 0, sa, salen) != outlen) {
  513. +       if (wintirpc_sendto(cu->cu_fd, cu->cu_outbuf, (int)outlen, 0, sa, salen) != outlen) {
  514.                 cu->cu_error.re_errno = errno;
  515.                 cu->cu_error.re_status = RPC_CANTSEND;
  516.                 goto out;
  517. @@ -437,9 +437,9 @@ get_reply:
  518.         reply_msg.acpted_rply.ar_results.where = resultsp;
  519.         reply_msg.acpted_rply.ar_results.proc = xresults;
  520.  
  521. -        fd.fd = cu->cu_fd;
  522. -        fd.events = POLLIN;
  523. -        fd.revents = 0;
  524. +       fd.fd = _get_osfhandle(cu->cu_fd);
  525. +       fd.events = POLLIN;
  526. +       fd.revents = 0;
  527.         while (total_time > 0) {
  528.                 tv = total_time < nextsend_time ? total_time : nextsend_time;
  529.                  switch (poll(&fd, 1, tv)) {
  530. @@ -477,7 +477,7 @@ get_reply:
  531.           msg.msg_flags = 0;
  532.           msg.msg_control = cbuf;
  533.           msg.msg_controllen = 256;
  534. -         ret = recvmsg (cu->cu_fd, &msg, MSG_ERRQUEUE);
  535. +         ret = recvmsg (_get_osfhandle(cu->cu_fd), &msg, MSG_ERRQUEUE);
  536.           if (ret >= 0
  537.               && memcmp (cbuf + 256, cu->cu_outbuf, ret) == 0
  538.               && (msg.msg_flags & MSG_ERRQUEUE)
  539. @@ -502,7 +502,7 @@ get_reply:
  540.  
  541.         /* We have some data now */
  542.         do {
  543. -               recvlen = recvfrom(cu->cu_fd, cu->cu_inbuf,
  544. +               recvlen = recvfrom(_get_osfhandle(cu->cu_fd), cu->cu_inbuf,
  545.                     cu->cu_recvsz, 0, NULL, NULL);
  546.                 errno = WSAGetLastError();
  547.         } while (recvlen == SOCKET_ERROR && errno == WSAEINTR);
  548. @@ -606,13 +606,13 @@ clnt_dg_freeres(cl, xdr_res, res_ptr)
  549.         /* XXX Need Windows signal/event stuff here XXX */
  550.  #endif
  551.         mutex_lock(&clnt_fd_lock);
  552. -       while (dg_fd_locks[WINSOCK_HANDLE_HASH(cu->cu_fd)])
  553. -               cond_wait(&dg_cv[WINSOCK_HANDLE_HASH(cu->cu_fd)], &clnt_fd_lock);
  554. +       while (dg_fd_locks[cu->cu_fd])
  555. +               cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock);
  556.         xdrs->x_op = XDR_FREE;
  557.         dummy = (*xdr_res)(xdrs, res_ptr);
  558.         mutex_unlock(&clnt_fd_lock);
  559.  //     thr_sigsetmask(SIG_SETMASK, &mask, NULL);
  560. -       cond_signal(&dg_cv[WINSOCK_HANDLE_HASH(cu->cu_fd)]);
  561. +       cond_signal(&dg_cv[cu->cu_fd]);
  562.         return (dummy);
  563.  }
  564.  
  565. @@ -646,10 +646,10 @@ clnt_dg_control(cl, request, info)
  566.         /* XXX Need Windows signal/event stuff here XXX */
  567.  #endif
  568.         mutex_lock(&clnt_fd_lock);
  569. -       while (dg_fd_locks[WINSOCK_HANDLE_HASH(cu->cu_fd)])
  570. -               cond_wait(&dg_cv[WINSOCK_HANDLE_HASH(cu->cu_fd)], &clnt_fd_lock);
  571. -    rpc_lock_value = 1;
  572. -       dg_fd_locks[WINSOCK_HANDLE_HASH(cu->cu_fd)] = rpc_lock_value;
  573. +       while (dg_fd_locks[cu->cu_fd])
  574. +               cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock);
  575. +       rpc_lock_value = 1;
  576. +       dg_fd_locks[cu->cu_fd] = rpc_lock_value;
  577.         mutex_unlock(&clnt_fd_lock);
  578.         switch (request) {
  579.         case CLSET_FD_CLOSE:
  580. @@ -693,7 +693,7 @@ clnt_dg_control(cl, request, info)
  581.                 *(struct timeval *)info = cu->cu_wait;
  582.                 break;
  583.         case CLGET_FD:
  584. -               *(SOCKET *)info = cu->cu_fd;
  585. +               *(int *)info = cu->cu_fd;
  586.                 break;
  587.         case CLGET_SVC_ADDR:
  588.                 addr = (struct netbuf *)info;
  589. @@ -779,7 +779,7 @@ clnt_dg_destroy(cl)
  590.         CLIENT *cl;
  591.  {
  592.         struct cu_data *cu = (struct cu_data *)cl->cl_private;
  593. -       SOCKET cu_fd = cu->cu_fd;
  594. +       int cu_fd = cu->cu_fd;
  595.  #ifndef _WIN32
  596.         sigset_t mask;
  597.         sigset_t newmask;
  598. @@ -790,10 +790,10 @@ clnt_dg_destroy(cl)
  599.         /* XXX Need Windows signal/event stuff here XXX */
  600.  #endif
  601.         mutex_lock(&clnt_fd_lock);
  602. -       while (dg_fd_locks[WINSOCK_HANDLE_HASH(cu_fd)])
  603. -               cond_wait(&dg_cv[WINSOCK_HANDLE_HASH(cu_fd)], &clnt_fd_lock);
  604. +       while (dg_fd_locks[cu_fd])
  605. +               cond_wait(&dg_cv[cu_fd], &clnt_fd_lock);
  606.         if (cu->cu_closeit)
  607. -               (void)closesocket(cu_fd);
  608. +               (void)wintirpc_closesocket(cu_fd);
  609.         XDR_DESTROY(&(cu->cu_outxdrs));
  610.         mem_free(cu, (sizeof (*cu) + cu->cu_sendsz + cu->cu_recvsz));
  611.         if (cl->cl_netid && cl->cl_netid[0])
  612. @@ -803,7 +803,7 @@ clnt_dg_destroy(cl)
  613.         mem_free(cl, sizeof (CLIENT));
  614.         mutex_unlock(&clnt_fd_lock);
  615.  //     thr_sigsetmask(SIG_SETMASK, &mask, NULL);
  616. -       cond_signal(&dg_cv[WINSOCK_HANDLE_HASH(cu_fd)]);
  617. +       cond_signal(&dg_cv[cu_fd]);
  618.  }
  619.  
  620.  static struct clnt_ops *
  621. diff --git a/libtirpc/src/clnt_generic.c b/libtirpc/src/clnt_generic.c
  622. index 58a6cc1..f90c4b8 100644
  623. --- a/libtirpc/src/clnt_generic.c
  624. +++ b/libtirpc/src/clnt_generic.c
  625. @@ -344,7 +344,7 @@ clnt_tp_create_timed(const char *hostname, const rpcprog_t prog, const rpcvers_t
  626.   * If sizes are 0; appropriate defaults will be chosen.
  627.   */
  628.  CLIENT *
  629. -clnt_tli_create(const SOCKET fd_in, const struct netconfig *nconf,
  630. +clnt_tli_create(const int fd_in, const struct netconfig *nconf,
  631.         struct netbuf *svcaddr, const rpcprog_t prog, const rpcvers_t vers,
  632.         const uint sendsz, const uint recvsz,
  633.      int (*callback_xdr)(void *, void *),
  634. @@ -357,7 +357,7 @@ clnt_tli_create(const SOCKET fd_in, const struct netconfig *nconf,
  635.         BOOL one = TRUE;
  636.         struct __rpc_sockinfo si;
  637.         extern int __rpc_minfd;
  638. -       SOCKET fd = fd_in;
  639. +       int fd = fd_in;
  640.  
  641.         if (fd == RPC_ANYFD) {
  642.                 if (nconf == NULL) {
  643. @@ -402,7 +402,7 @@ clnt_tli_create(const SOCKET fd_in, const struct netconfig *nconf,
  644.                 if (nconf &&
  645.                     ((strcmp(nconf->nc_protofmly, "inet") == 0) ||
  646.                      (strcmp(nconf->nc_protofmly, "inet6") == 0))) {
  647. -                       setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (const char *)&one,
  648. +                       setsockopt(_get_osfhandle(fd), IPPROTO_TCP, TCP_NODELAY, (const char *)&one,
  649.                             sizeof (one));
  650.                 }
  651.                 cl = clnt_vc_create(fd, svcaddr, prog, vers, sendsz, recvsz,
  652. @@ -435,7 +435,7 @@ err:
  653.         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
  654.         rpc_createerr.cf_error.re_errno = errno;
  655.  err1:  if (madefd)
  656. -               (void)closesocket(fd);
  657. +               (void)wintirpc_closesocket(fd);
  658.         return (NULL);
  659.  }
  660.  
  661. @@ -460,11 +460,11 @@ __rpc_raise_fd(int fd)
  662.                 return (fd);
  663.  
  664.         if (fsync(nfd) == -1) {
  665. -               closesocket(nfd);
  666. +               wintirpc_closesocket(nfd);
  667.                 return (fd);
  668.         }
  669.  
  670. -       if (closesocket(fd) == -1) {
  671. +       if (wintirpc_closesocket(fd) == -1) {
  672.                 /* this is okay, we will syslog an error, then use the new fd */
  673.                 (void) syslog(LOG_ERR,
  674.                         "could not close() fd %d; mem & fd leak", fd);
  675. diff --git a/libtirpc/src/clnt_vc.c b/libtirpc/src/clnt_vc.c
  676. index ff67d5c..e0a9d30 100644
  677. --- a/libtirpc/src/clnt_vc.c
  678. +++ b/libtirpc/src/clnt_vc.c
  679. @@ -164,28 +164,27 @@ static cond_t   *vc_cv;
  680.  #ifndef _WIN32
  681.  #define release_fd_lock(fd, mask) {    \
  682.         mutex_lock(&clnt_fd_lock);      \
  683. -       vc_fd_locks[fd] = 0;            \
  684. +       vc_fd_locks[(fd)] = 0;          \
  685.         mutex_unlock(&clnt_fd_lock);    \
  686.         thr_sigsetmask(SIG_SETMASK, &(mask), (sigset_t *) NULL);        \
  687. -       cond_signal(&vc_cv[fd]);        \
  688. +       cond_signal(&vc_cv[(fd)]);      \
  689.  }
  690.  #else
  691.  /* XXX Need Windows signal/event stuff XXX */
  692.  #define release_fd_lock(fd, mask) {    \
  693.         mutex_lock(&clnt_fd_lock);      \
  694. -       vc_fd_locks[WINSOCK_HANDLE_HASH(fd)] = 0;               \
  695. +       vc_fd_locks[(fd)] = 0;          \
  696.         mutex_unlock(&clnt_fd_lock);    \
  697.         \
  698. -       cond_broadcast(&vc_cv[WINSOCK_HANDLE_HASH(fd)]);        \
  699. +       cond_broadcast(&vc_cv[(fd)]);   \
  700.  }
  701.  #endif
  702.  
  703.  #define acquire_fd_lock(fd) { \
  704.         mutex_lock(&clnt_fd_lock); \
  705. -       while (vc_fd_locks[WINSOCK_HANDLE_HASH(fd)] && \
  706. -            vc_fd_locks[WINSOCK_HANDLE_HASH(fd)] != GetCurrentThreadId()) \
  707. -               cond_wait(&vc_cv[WINSOCK_HANDLE_HASH(fd)], &clnt_fd_lock); \
  708. -       vc_fd_locks[WINSOCK_HANDLE_HASH(fd)] = GetCurrentThreadId(); \
  709. +       while (vc_fd_locks[(fd)]) \
  710. +               cond_wait(&vc_cv[(fd)], &clnt_fd_lock); \
  711. +       vc_fd_locks[(fd)] = GetCurrentThreadId(); \
  712.         mutex_unlock(&clnt_fd_lock); \
  713.  }
  714.  
  715. @@ -213,18 +212,18 @@ static unsigned int WINAPI clnt_cb_thread(void *args)
  716.          cb_req header;
  717.          void *res = NULL;
  718.          mutex_lock(&clnt_fd_lock);
  719. -           while (vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)] ||
  720. +           while (vc_fd_locks[ct->ct_fd] ||
  721.                  !ct->use_stored_reply_msg ||
  722.                  (ct->use_stored_reply_msg && ct->reply_msg.rm_direction != CALL)) {
  723.              if (cl->shutdown)
  724.                  break;
  725. -                   if (!cond_wait_timed(&vc_cv[WINSOCK_HANDLE_HASH(ct->ct_fd)], &clnt_fd_lock,
  726. +                   if (!cond_wait_timed(&vc_cv[ct->ct_fd], &clnt_fd_lock,
  727.                  CALLBACK_TIMEOUT))
  728. -                if (!vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)])
  729. +                if (!vc_fd_locks[ct->ct_fd])
  730.                      break;
  731. -        }
  732. -           vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)] = GetCurrentThreadId();
  733. -           mutex_unlock(&clnt_fd_lock);
  734. +       }
  735. +       vc_fd_locks[ct->ct_fd] = GetCurrentThreadId();
  736. +       mutex_unlock(&clnt_fd_lock);
  737.  
  738.          if (cl->shutdown) {
  739.              fprintf(stdout, "%04x: callback received shutdown signal\n", GetCurrentThreadId());
  740. @@ -402,7 +401,7 @@ clnt_vc_create(fd, raddr, prog, vers, sendsz, recvsz, cb_xdr, cb_fn, cb_args)
  741.          * XXX - fvdl connecting while holding a mutex?
  742.          */
  743.         slen = sizeof ss;
  744. -       if (getpeername(fd, (struct sockaddr *)&ss, &slen) == SOCKET_ERROR) {
  745. +       if (getpeername(_get_osfhandle(fd), (struct sockaddr *)&ss, &slen) == SOCKET_ERROR) {
  746.                 errno = WSAGetLastError();
  747.                 if (errno != WSAENOTCONN) {
  748.                         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
  749. @@ -411,7 +410,7 @@ clnt_vc_create(fd, raddr, prog, vers, sendsz, recvsz, cb_xdr, cb_fn, cb_args)
  750.  //                     thr_sigsetmask(SIG_SETMASK, &(mask), NULL);
  751.                         goto err;
  752.                 }
  753. -               if (connect(fd, (struct sockaddr *)raddr->buf, raddr->len) == SOCKET_ERROR){
  754. +               if (connect(_get_osfhandle(fd), (struct sockaddr *)raddr->buf, raddr->len) == SOCKET_ERROR){
  755.                         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
  756.                         rpc_createerr.cf_error.re_errno = WSAGetLastError();
  757.                         mutex_unlock(&clnt_fd_lock);
  758. @@ -457,7 +456,7 @@ clnt_vc_create(fd, raddr, prog, vers, sendsz, recvsz, cb_xdr, cb_fn, cb_args)
  759.             XDR_ENCODE);
  760.         if (! xdr_callhdr(&(ct->ct_xdrs), &call_msg)) {
  761.                 if (ct->ct_closeit) {
  762. -                       (void)closesocket(fd);
  763. +                       (void)wintirpc_closesocket(fd);
  764.                 }
  765.                 goto err;
  766.         }
  767. @@ -589,11 +588,10 @@ call_again:
  768.  #ifdef NO_CB_4_KRB5P
  769.          if (cl->cb_thread != INVALID_HANDLE_VALUE) {
  770.              mutex_lock(&clnt_fd_lock);
  771. -               while ((vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)] &&
  772. -                    vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)] != GetCurrentThreadId()) ||
  773. +               while ((vc_fd_locks[ct->ct_fd]) ||
  774.                      (ct->reply_msg.rm_xid && ct->reply_msg.rm_xid != x_id))
  775. -                       cond_wait(&vc_cv[WINSOCK_HANDLE_HASH(ct->ct_fd)], &clnt_fd_lock);
  776. -               vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)] = GetCurrentThreadId();
  777. +                       cond_wait(&vc_cv[ct->ct_fd], &clnt_fd_lock);
  778. +               vc_fd_locks[ct->ct_fd] = GetCurrentThreadId();
  779.                 mutex_unlock(&clnt_fd_lock);
  780.          }
  781.  #endif
  782. @@ -744,13 +742,13 @@ clnt_vc_freeres(cl, xdr_res, res_ptr)
  783.         /* XXX Need Windows signal/event stuff XXX */
  784.  #endif
  785.         mutex_lock(&clnt_fd_lock);
  786. -       while (vc_fd_locks[WINSOCK_HANDLE_HASH(ct->ct_fd)])
  787. -               cond_wait(&vc_cv[WINSOCK_HANDLE_HASH(ct->ct_fd)], &clnt_fd_lock);
  788. +       while (vc_fd_locks[ct->ct_fd])
  789. +               cond_wait(&vc_cv[ct->ct_fd], &clnt_fd_lock);
  790.         xdrs->x_op = XDR_FREE;
  791.         dummy = (*xdr_res)(xdrs, res_ptr);
  792.         mutex_unlock(&clnt_fd_lock);
  793.  //     thr_sigsetmask(SIG_SETMASK, &(mask), NULL);
  794. -       cond_signal(&vc_cv[WINSOCK_HANDLE_HASH(ct->ct_fd)]);
  795. +       cond_signal(&vc_cv[ct->ct_fd]);
  796.  
  797.         return dummy;
  798.  }
  799. @@ -916,8 +914,8 @@ clnt_vc_destroy(cl)
  800.         /* XXX Need Windows signal/event stuff XXX */
  801.  #endif
  802.         mutex_lock(&clnt_fd_lock);
  803. -       while (vc_fd_locks[WINSOCK_HANDLE_HASH(ct_fd)])
  804. -               cond_wait(&vc_cv[WINSOCK_HANDLE_HASH(ct_fd)], &clnt_fd_lock);
  805. +       while (vc_fd_locks[ct_fd])
  806. +               cond_wait(&vc_cv[ct_fd], &clnt_fd_lock);
  807.  
  808.      if (cl->cb_thread != INVALID_HANDLE_VALUE) {
  809.          int status;
  810. @@ -925,16 +923,16 @@ clnt_vc_destroy(cl)
  811.              GetCurrentThreadId(), cl->cb_thread);
  812.          cl->shutdown = 1;
  813.          mutex_unlock(&clnt_fd_lock);
  814. -        cond_signal(&vc_cv[WINSOCK_HANDLE_HASH(ct_fd)]);
  815. +        cond_signal(&vc_cv[ct_fd]);
  816.          status = WaitForSingleObject(cl->cb_thread, INFINITE);
  817.          fprintf(stdout, "%04x: terminated callback thread\n", GetCurrentThreadId());
  818.          mutex_lock(&clnt_fd_lock);
  819. -        while (vc_fd_locks[WINSOCK_HANDLE_HASH(ct_fd)])
  820. -            cond_wait(&vc_cv[WINSOCK_HANDLE_HASH(ct_fd)], &clnt_fd_lock);
  821. +        while (vc_fd_locks[ct_fd])
  822. +            cond_wait(&vc_cv[ct_fd], &clnt_fd_lock);
  823.      }
  824.  
  825.         if (ct->ct_closeit && ct->ct_fd != -1) {
  826. -               (void)closesocket(ct->ct_fd);
  827. +               (void)wintirpc_closesocket(ct->ct_fd);
  828.         }
  829.         XDR_DESTROY(&(ct->ct_xdrs));
  830.         if (ct->ct_addr.buf)
  831. @@ -947,7 +945,7 @@ clnt_vc_destroy(cl)
  832.         mem_free(cl, sizeof(CLIENT));
  833.         mutex_unlock(&clnt_fd_lock);
  834.  //     thr_sigsetmask(SIG_SETMASK, &(mask), NULL);
  835. -       cond_signal(&vc_cv[WINSOCK_HANDLE_HASH(ct_fd)]);
  836. +       cond_signal(&vc_cv[ct_fd]);
  837.  }
  838.  
  839.  /*
  840. @@ -971,7 +969,7 @@ read_vc(ctp, buf, len)
  841.  
  842.         if (len == 0)
  843.                 return (0);
  844. -       fd.fd = ct->ct_fd;
  845. +       fd.fd = _get_osfhandle(ct->ct_fd);
  846.         fd.events = POLLIN;
  847.         for (;;) {
  848.                 switch (poll(&fd, 1, milliseconds)) {
  849. @@ -990,7 +988,7 @@ read_vc(ctp, buf, len)
  850.                 break;
  851.         }
  852.  
  853. -       len = recv(ct->ct_fd, buf, (size_t)len, 0);
  854. +       len = recv(_get_osfhandle(ct->ct_fd), buf, (size_t)len, 0);
  855.         errno = WSAGetLastError();
  856.  
  857.         switch (len) {
  858. @@ -1019,7 +1017,7 @@ write_vc(ctp, buf, len)
  859.         int i = 0, cnt;
  860.  
  861.         for (cnt = len; cnt > 0; cnt -= i, buf += i) {
  862. -           if ((i = send(ct->ct_fd, buf, (size_t)cnt, 0)) == SOCKET_ERROR) {
  863. +           if ((i = wintirpc_send(ct->ct_fd, buf, (size_t)cnt, 0)) == SOCKET_ERROR) {
  864.                 ct->ct_error.re_errno = WSAGetLastError();
  865.                 ct->ct_error.re_status = RPC_CANTSEND;
  866.                 return (-1);
  867. diff --git a/libtirpc/src/getpeereid.c b/libtirpc/src/getpeereid.c
  868. index df8365f..17b1a5c 100644
  869. --- a/libtirpc/src/getpeereid.c
  870. +++ b/libtirpc/src/getpeereid.c
  871. @@ -36,7 +36,7 @@
  872.  
  873.  #ifdef _WIN32
  874.  int
  875. -getpeereid(SOCKET s, uid_t *euid, gid_t *egid)
  876. +getpeereid(int s, uid_t *euid, gid_t *egid)
  877.  {
  878.         // XXX Need to figure out what to do here for Windows!
  879.         return -1;
  880. @@ -50,7 +50,7 @@ getpeereid(int s, uid_t *euid, gid_t *egid)
  881.         int error;
  882.  
  883.         uclen = sizeof(uc);
  884. -       error = getsockopt(s, SOL_SOCKET, SO_PEERCRED, &uc, &uclen); /*  SCM_CREDENTIALS */
  885. +       error = getsockopt(_get_osfhandle(s), SOL_SOCKET, SO_PEERCRED, &uc, &uclen); /*  SCM_CREDENTIALS */
  886.         if (error != 0)
  887.                 return (error);
  888.         //      if (uc.cr_version != XUCRED_VERSION)
  889. diff --git a/libtirpc/src/pmap_getmaps.c b/libtirpc/src/pmap_getmaps.c
  890. index c6ad2bb..daf9e74 100644
  891. --- a/libtirpc/src/pmap_getmaps.c
  892. +++ b/libtirpc/src/pmap_getmaps.c
  893. @@ -66,7 +66,7 @@ pmap_getmaps(address)
  894.          struct sockaddr_in *address;
  895.  {
  896.         struct pmaplist *head = NULL;
  897. -       SOCKET sock = INVALID_SOCKET;
  898. +       int sock = INVALID_SOCKET;
  899.         struct timeval minutetimeout;
  900.         CLIENT *client;
  901.  
  902. diff --git a/libtirpc/src/rpc_com.h b/libtirpc/src/rpc_com.h
  903. index a69d7f0..ff9db44 100644
  904. --- a/libtirpc/src/rpc_com.h
  905. +++ b/libtirpc/src/rpc_com.h
  906. @@ -62,7 +62,7 @@
  907.  __BEGIN_DECLS
  908.  extern u_int __rpc_get_a_size(int);
  909.  extern int __rpc_dtbsize(void);
  910. -extern struct netconfig * __rpcgettp(SOCKET);
  911. +extern struct netconfig * __rpcgettp(int);
  912.  extern  int  __rpc_get_default_domain(char **);
  913.  struct netbuf *__rpc_set_netbuf(struct netbuf *, const void *, size_t);
  914.  
  915. @@ -73,7 +73,7 @@ int __rpc_sockinfo2netid(struct __rpc_sockinfo *, const char **);
  916.  int __rpc_seman2socktype(int);
  917.  int __rpc_socktype2seman(int);
  918.  void *rpc_nullproc(CLIENT *);
  919. -int __rpc_sockisbound(SOCKET);
  920. +int __rpc_sockisbound(int);
  921.  
  922.  struct netbuf *__rpcb_findaddr(rpcprog_t, rpcvers_t, const struct netconfig *,
  923.      const char *, CLIENT **);
  924. diff --git a/libtirpc/src/rpc_generic.c b/libtirpc/src/rpc_generic.c
  925. index 42dca45..8ac2063 100644
  926. --- a/libtirpc/src/rpc_generic.c
  927. +++ b/libtirpc/src/rpc_generic.c
  928. @@ -110,7 +110,8 @@ int
  929.  __rpc_dtbsize()
  930.  {
  931.  #ifdef _WIN32
  932. -       return (WINSOCK_HANDLE_HASH_SIZE);
  933. +        /* gisburn: Is |FD_SETSIZE| really correct here ? */
  934. +       return (FD_SETSIZE);
  935.  #else
  936.  
  937.         static int tbsize;
  938. @@ -462,7 +463,7 @@ rpc_nullproc(clnt)
  939.   */
  940.  struct netconfig *
  941.  __rpcgettp(fd)
  942. -       SOCKET fd;
  943. +       int fd;
  944.  {
  945.         const char *netid;
  946.         struct __rpc_sockinfo si;
  947. @@ -478,7 +479,7 @@ __rpcgettp(fd)
  948.  }
  949.  
  950.  int
  951. -__rpc_fd2sockinfo(SOCKET fd, struct __rpc_sockinfo *sip)
  952. +__rpc_fd2sockinfo(int fd, struct __rpc_sockinfo *sip)
  953.  {
  954.         socklen_t len;
  955.         int type, proto;
  956. @@ -487,7 +488,7 @@ __rpc_fd2sockinfo(SOCKET fd, struct __rpc_sockinfo *sip)
  957.  #ifdef _WIN32
  958.         WSAPROTOCOL_INFO proto_info;
  959.         int proto_info_size = sizeof(proto_info);
  960. -       if (getsockopt(fd, SOL_SOCKET, SO_PROTOCOL_INFO, (char *)&proto_info, &proto_info_size) == SOCKET_ERROR) {
  961. +       if (getsockopt(_get_osfhandle(fd), SOL_SOCKET, SO_PROTOCOL_INFO, (char *)&proto_info, &proto_info_size) == SOCKET_ERROR) {
  962.                 int err = WSAGetLastError();
  963.                 return 0;
  964.         }
  965. @@ -495,14 +496,14 @@ __rpc_fd2sockinfo(SOCKET fd, struct __rpc_sockinfo *sip)
  966.         ss.ss_family = (ADDRESS_FAMILY)proto_info.iAddressFamily;
  967.  #else
  968.         len = sizeof ss;
  969. -       if (getsockname(fd, (struct sockaddr *)&ss, &len) == SOCKET_ERROR) {
  970. +       if (getsockname(_get_osfhandle(fd), (struct sockaddr *)&ss, &len) == SOCKET_ERROR) {
  971.                 return 0;
  972.         }
  973.  #endif
  974.         sip->si_alen = len;
  975.  
  976.         len = sizeof type;
  977. -       if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&type, &len) == SOCKET_ERROR) {
  978. +       if (getsockopt(_get_osfhandle(fd), SOL_SOCKET, SO_TYPE, (char *)&type, &len) == SOCKET_ERROR) {
  979.                 int err = WSAGetLastError();
  980.                 return 0;
  981.         }
  982. @@ -554,20 +555,20 @@ __rpc_nconf2sockinfo(const struct netconfig *nconf, struct __rpc_sockinfo *sip)
  983.         return 0;
  984.  }
  985.  
  986. -SOCKET
  987. +int
  988.  __rpc_nconf2fd(const struct netconfig *nconf)
  989.  {
  990.         struct __rpc_sockinfo si;
  991. -       SOCKET fd;
  992. +       int fd;
  993.  
  994.         if (!__rpc_nconf2sockinfo(nconf, &si))
  995.                 return 0;
  996.  
  997. -       if ((fd = socket(si.si_af, si.si_socktype, si.si_proto)) != INVALID_SOCKET &&
  998. +       if ((fd = wintirpc_socket(si.si_af, si.si_socktype, si.si_proto)) != -1 &&
  999.             si.si_af == AF_INET6) {
  1000.                 int val = 1;
  1001.  
  1002. -               setsockopt(fd, SOL_IPV6, IPV6_V6ONLY, (const char *)&val, sizeof(val));
  1003. +               setsockopt(_get_osfhandle(fd), SOL_IPV6, IPV6_V6ONLY, (const char *)&val, sizeof(val));
  1004.         }
  1005.         return fd;
  1006.  }
  1007. @@ -876,7 +877,7 @@ __rpc_fixup_addr(struct netbuf *new, const struct netbuf *svc)
  1008.  }
  1009.  
  1010.  int
  1011. -__rpc_sockisbound(SOCKET fd)
  1012. +__rpc_sockisbound(int fd)
  1013.  {
  1014.         struct sockaddr_storage ss;
  1015.         union {
  1016. @@ -889,7 +890,7 @@ __rpc_sockisbound(SOCKET fd)
  1017.         socklen_t slen;
  1018.  
  1019.         slen = sizeof (struct sockaddr_storage);
  1020. -       if (getsockname(fd, (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR)
  1021. +       if (getsockname(_get_osfhandle(fd), (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR)
  1022.                 return 0;
  1023.  
  1024.         switch (ss.ss_family) {
  1025. diff --git a/libtirpc/src/rpc_soc.c b/libtirpc/src/rpc_soc.c
  1026. index 4b69810..0cbb749 100644
  1027. --- a/libtirpc/src/rpc_soc.c
  1028. +++ b/libtirpc/src/rpc_soc.c
  1029. @@ -68,7 +68,7 @@ extern mutex_t        rpcsoc_lock;
  1030.  
  1031.  static CLIENT *clnt_com_create(struct sockaddr_in *, rpcprog_t, rpcvers_t,
  1032.      int *, u_int, u_int, char *);
  1033. -static SVCXPRT *svc_com_create(SOCKET, u_int, u_int, char *);
  1034. +static SVCXPRT *svc_com_create(int, u_int, u_int, char *);
  1035.  static bool_t rpc_wrap_bcast(char *, struct netbuf *, struct netconfig *);
  1036.  
  1037.  /* XXX */
  1038. @@ -83,14 +83,14 @@ clnt_com_create(raddr, prog, vers, sockp, sendsz, recvsz, tp)
  1039.         struct sockaddr_in *raddr;
  1040.         rpcprog_t prog;
  1041.         rpcvers_t vers;
  1042. -       SOCKET *sockp;
  1043. +       int *sockp;
  1044.         u_int sendsz;
  1045.         u_int recvsz;
  1046.         char *tp;
  1047.  {
  1048.         CLIENT *cl;
  1049.         int madefd = FALSE;
  1050. -       SOCKET fd = *sockp;
  1051. +       int fd = *sockp;
  1052.         struct netconfig *nconf;
  1053.         struct netbuf bindaddr;
  1054.  
  1055. @@ -148,7 +148,7 @@ syserror:
  1056.         rpc_createerr.cf_error.re_errno = errno;
  1057.  
  1058.  err:   if (madefd == TRUE)
  1059. -               (void)closesocket(fd);
  1060. +               (void)wintirpc_closesocket(fd);
  1061.         (void) freenetconfigent(nconf);
  1062.         mutex_unlock(&rpcsoc_lock);
  1063.         return (NULL);
  1064. @@ -263,7 +263,7 @@ clntraw_create(prog, vers)
  1065.   */
  1066.  static SVCXPRT *
  1067.  svc_com_create(fd, sendsize, recvsize, netid)
  1068. -       SOCKET fd;
  1069. +       int fd;
  1070.         u_int sendsize;
  1071.         u_int recvsize;
  1072.         char *netid;
  1073. @@ -292,12 +292,12 @@ svc_com_create(fd, sendsize, recvsize, netid)
  1074.         memset(&sin, 0, sizeof sin);
  1075.         sin.sin_family = AF_INET;
  1076.         bindresvport(fd, &sin);
  1077. -       listen(fd, SOMAXCONN);
  1078. +       wintirpc_listen(fd, SOMAXCONN);
  1079.         svc = svc_tli_create(fd, nconf, NULL, sendsize, recvsize);
  1080.         (void) freenetconfigent(nconf);
  1081.         if (svc == NULL) {
  1082.                 if (madefd)
  1083. -                       (void)closesocket(fd);
  1084. +                       (void)wintirpc_closesocket(fd);
  1085.                 return (NULL);
  1086.         }
  1087.         port = (((struct sockaddr_in *)svc->xp_ltaddr.buf)->sin_port);
  1088. @@ -307,7 +307,7 @@ svc_com_create(fd, sendsize, recvsize, netid)
  1089.  
  1090.  SVCXPRT *
  1091.  svctcp_create(fd, sendsize, recvsize)
  1092. -       SOCKET fd;
  1093. +       int fd;
  1094.         u_int sendsize;
  1095.         u_int recvsize;
  1096.  {
  1097. @@ -319,7 +319,7 @@ svctcp_create(fd, sendsize, recvsize)
  1098.  
  1099.  SVCXPRT *
  1100.  svcudp_bufcreate(fd, sendsz, recvsz)
  1101. -       SOCKET fd;
  1102. +       int fd;
  1103.         u_int sendsz, recvsz;
  1104.  {
  1105.  
  1106. @@ -330,7 +330,7 @@ svcudp_bufcreate(fd, sendsz, recvsz)
  1107.  
  1108.  SVCXPRT *
  1109.  svcfd_create(fd, sendsize, recvsize)
  1110. -       SOCKET fd;
  1111. +       int fd;
  1112.         u_int sendsize;
  1113.         u_int recvsize;
  1114.  {
  1115. @@ -341,7 +341,7 @@ svcfd_create(fd, sendsize, recvsize)
  1116.  
  1117.  SVCXPRT *
  1118.  svcudp_create(fd)
  1119. -       SOCKET fd;
  1120. +       int fd;
  1121.  {
  1122.  
  1123.         return svc_com_create(fd, UDPMSGSIZE, UDPMSGSIZE, "udp");
  1124. @@ -522,7 +522,7 @@ clntunix_create(raddr, prog, vers, sockp, sendsz, recvsz)
  1125.         struct sockaddr_un *raddr;
  1126.         u_long prog;
  1127.         u_long vers;
  1128. -       SOCKET *sockp;
  1129. +       int *sockp;
  1130.         u_int sendsz;
  1131.         u_int recvsz;
  1132.  {
  1133. @@ -543,17 +543,17 @@ clntunix_create(raddr, prog, vers, sockp, sendsz, recvsz)
  1134.                 return(cl);
  1135.         }
  1136.         if (*sockp == SOCKET_ERROR) {
  1137. -               *sockp = socket(AF_UNIX, SOCK_STREAM, 0);
  1138. +               *sockp = wintirpc_socket(AF_UNIX, SOCK_STREAM, 0);
  1139.                 len = SUN_LEN(raddr);
  1140. -               if ((*sockp == INVALID_SOCKET) || (connect(*sockp,
  1141. +               if ((*sockp == -1) || (connect(_get_osfhandle(*sockp),
  1142.                     (struct sockaddr *)raddr, len) == SOCKET_ERROR)) {
  1143.                         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
  1144.                         rpc_createerr.cf_error.re_errno = errno;
  1145. -                       if (*sockp != INVALID_SOCKET)
  1146. -                               (void)closesocket(*sockp);
  1147. +                       if (*sockp != -1)
  1148. +                               (void)wintirpc_closesocket(*sockp);
  1149.                         goto done;
  1150.                 }
  1151. -       }
  1152. +        }
  1153.         svcaddr->buf = raddr;
  1154.         svcaddr->len = sizeof(raddr);
  1155.         svcaddr->maxlen = sizeof (struct sockaddr_un);
  1156. @@ -571,7 +571,7 @@ done:
  1157.   */
  1158.  SVCXPRT *
  1159.  svcunix_create(sock, sendsize, recvsize, path)
  1160. -       SOCKET sock;
  1161. +       int sock;
  1162.         u_int sendsize;
  1163.         u_int recvsize;
  1164.         char *path;
  1165. @@ -603,7 +603,7 @@ svcunix_create(sock, sendsize, recvsize, path)
  1166.         addrlen = sizeof(struct sockaddr_un);
  1167.         sa = (struct sockaddr *)&sun;
  1168.  
  1169. -       if (bind(sock, sa, addrlen) == SOCKET_ERROR)
  1170. +       if (bind(_get_osfhandle(sock), sa, addrlen) == SOCKET_ERROR)
  1171.                 goto done;
  1172.  
  1173.         taddr.addr.len = taddr.addr.maxlen = addrlen;
  1174. @@ -613,7 +613,7 @@ svcunix_create(sock, sendsize, recvsize, path)
  1175.         memcpy(taddr.addr.buf, sa, addrlen);
  1176.  
  1177.         if (nconf->nc_semantics != NC_TPI_CLTS) {
  1178. -               if (listen(sock, SOMAXCONN) == SOCKET_ERROR) {
  1179. +               if (wintirpc_listen(sock, SOMAXCONN) == SOCKET_ERROR) {
  1180.                         free(taddr.addr.buf);
  1181.                         goto done;
  1182.                 }
  1183. @@ -632,7 +632,7 @@ done:
  1184.   */
  1185.  SVCXPRT *
  1186.  svcunixfd_create(fd, sendsize, recvsize)
  1187. -       SOCKET fd;
  1188. +       int fd;
  1189.         u_int sendsize;
  1190.         u_int recvsize;
  1191.  {
  1192. diff --git a/libtirpc/src/rpcb_clnt.c b/libtirpc/src/rpcb_clnt.c
  1193. index b8c30c1..aafab64 100644
  1194. --- a/libtirpc/src/rpcb_clnt.c
  1195. +++ b/libtirpc/src/rpcb_clnt.c
  1196. @@ -423,7 +423,7 @@ local_rpcb()
  1197.         static struct netconfig *loopnconf;
  1198.         static char *hostname;
  1199.         extern mutex_t loopnconf_lock;
  1200. -       SOCKET sock;
  1201. +       int sock;
  1202.         size_t tsize;
  1203.         struct netbuf nbuf;
  1204.         struct sockaddr_un sun;
  1205. @@ -434,9 +434,10 @@ local_rpcb()
  1206.          * the netconfig file.
  1207.          */
  1208.         memset(&sun, 0, sizeof sun);
  1209. -       sock = socket(AF_UNIX, SOCK_STREAM, 0);
  1210. -       if (sock == INVALID_SOCKET)
  1211. +       sock = wintirpc_socket(AF_UNIX, SOCK_STREAM, 0);
  1212. +       if (sock == -1)
  1213.                 goto try_nconf;
  1214. +
  1215.         sun.sun_family = AF_UNIX;
  1216.         strcpy(sun.sun_path, _PATH_RPCBINDSOCK);
  1217.         nbuf.len = SUN_LEN(&sun);
  1218. @@ -455,7 +456,7 @@ local_rpcb()
  1219.         }
  1220.  
  1221.         /* Nobody needs this socket anymore; free the descriptor. */
  1222. -       closesocket(sock);
  1223. +       wintirpc_closesocket(sock);
  1224.  
  1225.  try_nconf:
  1226.  
  1227. @@ -464,7 +465,7 @@ try_nconf:
  1228.         if (loopnconf == NULL) {
  1229.                 struct netconfig *nconf, *tmpnconf = NULL;
  1230.                 void *nc_handle;
  1231. -               SOCKET fd;
  1232. +               int fd;
  1233.  
  1234.                 nc_handle = setnetconfig();
  1235.                 if (nc_handle == NULL) {
  1236. @@ -490,7 +491,7 @@ try_nconf:
  1237.                                  */
  1238.                                 if (fd == SOCKET_ERROR)
  1239.                                         continue;
  1240. -                               closesocket(fd);
  1241. +                               wintirpc_closesocket(fd);
  1242.                                 tmpnconf = nconf;
  1243.                                 if (!strcmp(nconf->nc_protofmly, NC_INET))
  1244.                                         hostname = IN4_LOCALHOST_STRING;
  1245. @@ -657,7 +658,7 @@ __rpcbind_is_up()
  1246.         struct netconfig *nconf;
  1247.         struct sockaddr_un sun;
  1248.         void *localhandle;
  1249. -       SOCKET sock;
  1250. +       int sock;
  1251.  
  1252.         nconf = NULL;
  1253.         localhandle = setnetconfig();
  1254. @@ -672,18 +673,19 @@ __rpcbind_is_up()
  1255.         endnetconfig(localhandle);
  1256.  
  1257.         memset(&sun, 0, sizeof sun);
  1258. -       sock = socket(AF_UNIX, SOCK_STREAM, 0);
  1259. -       if (sock == INVALID_SOCKET)
  1260. +       sock = wintirpc_socket(AF_UNIX, SOCK_STREAM, 0);
  1261. +       if (sock == -1)
  1262.                 return (FALSE);
  1263. +
  1264.         sun.sun_family = AF_UNIX;
  1265.         strncpy(sun.sun_path, _PATH_RPCBINDSOCK, sizeof(sun.sun_path));
  1266.  
  1267. -       if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == SOCKET_ERROR) {
  1268. -               closesocket(sock);
  1269. +       if (connect(_get_osfhandle(sock), (struct sockaddr *)&sun, sizeof(sun)) == SOCKET_ERROR) {
  1270. +               wintirpc_closesocket(sock);
  1271.                 return (FALSE);
  1272.         }
  1273.  
  1274. -       closesocket(sock);
  1275. +       wintirpc_closesocket(sock);
  1276.         return (TRUE);
  1277.  }
  1278.  
  1279. diff --git a/libtirpc/src/rtime.c b/libtirpc/src/rtime.c
  1280. index f933ff6..ea49fef 100644
  1281. --- a/libtirpc/src/rtime.c
  1282. +++ b/libtirpc/src/rtime.c
  1283. @@ -59,7 +59,7 @@ extern int _rpc_dtablesize( void );
  1284.  #define NYEARS (unsigned long)(1970 - 1900)
  1285.  #define TOFFSET (unsigned long)(60*60*24*(365*NYEARS + (NYEARS/4)))
  1286.  
  1287. -static void do_close( SOCKET );
  1288. +static void do_close( int );
  1289.  
  1290.  int
  1291.  rtime(addrp, timep, timeout)
  1292. @@ -67,7 +67,7 @@ rtime(addrp, timep, timeout)
  1293.         struct timeval *timep;
  1294.         struct timeval *timeout;
  1295.  {
  1296. -       SOCKET s;
  1297. +       int s;
  1298.         fd_set readfds;
  1299.         int res;
  1300.         unsigned long thetime;
  1301. @@ -81,10 +81,11 @@ rtime(addrp, timep, timeout)
  1302.         } else {
  1303.                 type = SOCK_DGRAM;
  1304.         }
  1305. -       s = socket(AF_INET, type, 0);
  1306. -       if (s == INVALID_SOCKET) {
  1307. +       s = wintirpc_socket(AF_INET, type, 0);
  1308. +       if (s == -1) {
  1309.                 return(-1);
  1310.         }
  1311. +
  1312.         addrp->sin_family = AF_INET;
  1313.  
  1314.         /* TCP and UDP port are the same in this case */
  1315. @@ -95,7 +96,7 @@ rtime(addrp, timep, timeout)
  1316.         addrp->sin_port = serv->s_port;
  1317.  
  1318.         if (type == SOCK_DGRAM) {
  1319. -               res = sendto(s, (char *)&thetime, sizeof(thetime), 0,
  1320. +               res = wintirpc_sendto(s, (char *)&thetime, sizeof(thetime), 0,
  1321.                              (struct sockaddr *)addrp, sizeof(*addrp));
  1322.                 if (res == SOCKET_ERROR) {
  1323.                         do_close(s);
  1324. @@ -103,7 +104,7 @@ rtime(addrp, timep, timeout)
  1325.                 }
  1326.                 do {
  1327.                         FD_ZERO(&readfds);
  1328. -                       FD_SET(s, &readfds);
  1329. +                       FD_SET(_get_osfhandle(s), &readfds);
  1330.                         res = select(_rpc_dtablesize(), &readfds,
  1331.                                      (fd_set *)NULL, (fd_set *)NULL, timeout);
  1332.                 } while (res == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
  1333. @@ -115,18 +116,18 @@ rtime(addrp, timep, timeout)
  1334.                         return(-1);    
  1335.                 }
  1336.                 fromlen = sizeof(from);
  1337. -               res = recvfrom(s, (char *)&thetime, sizeof(thetime), 0,
  1338. +               res = recvfrom(_get_osfhandle(s), (char *)&thetime, sizeof(thetime), 0,
  1339.                                (struct sockaddr *)&from, &fromlen);
  1340.                 do_close(s);
  1341.                 if (res == SOCKET_ERROR) {
  1342.                         return(-1);    
  1343.                 }
  1344.         } else {
  1345. -               if (connect(s, (struct sockaddr *)addrp, sizeof(*addrp)) == SOCKET_ERROR) {
  1346. +               if (connect(_get_osfhandle(s), (struct sockaddr *)addrp, sizeof(*addrp)) == SOCKET_ERROR) {
  1347.                         do_close(s);
  1348.                         return(-1);
  1349.                 }
  1350. -               res = recv(s, (char *)&thetime, sizeof(thetime), 0);
  1351. +               res = recv(_get_osfhandle(s), (char *)&thetime, sizeof(thetime), 0);
  1352.                 do_close(s);
  1353.                 if (res == SOCKET_ERROR) {
  1354.                         return(-1);
  1355. @@ -149,6 +150,6 @@ do_close(s)
  1356.         int save;
  1357.  
  1358.         save = errno;
  1359. -       (void)closesocket(s);
  1360. +       (void)wintirpc_closesocket(s);
  1361.         errno = save;
  1362.  }
  1363. diff --git a/libtirpc/src/svc.c b/libtirpc/src/svc.c
  1364. index 1666364..2932db7 100644
  1365. --- a/libtirpc/src/svc.c
  1366. +++ b/libtirpc/src/svc.c
  1367. @@ -97,7 +97,7 @@ void
  1368.  xprt_register (xprt)
  1369.       SVCXPRT *xprt;
  1370.  {
  1371. -  SOCKET sock;
  1372. +  int sock;
  1373.  
  1374.    assert (xprt != NULL);
  1375.  
  1376. @@ -115,7 +115,7 @@ xprt_register (xprt)
  1377.  #ifndef _WIN32
  1378.    if (sock < FD_SETSIZE) {
  1379.      __svc_xports[sock] = xprt;
  1380. -    FD_SET (sock, &svc_fdset);
  1381. +    FD_SET(_get_osfhandle(sock), &svc_fdset);
  1382.      svc_maxfd = max (svc_maxfd, sock);
  1383.    }
  1384.  #else
  1385. @@ -144,7 +144,7 @@ __xprt_do_unregister (xprt, dolock)
  1386.  SVCXPRT *xprt;
  1387.  bool_t dolock;
  1388.  {
  1389. -  SOCKET sock;
  1390. +  int sock;
  1391.  
  1392.    assert (xprt != NULL);
  1393.  
  1394. @@ -155,7 +155,7 @@ bool_t dolock;
  1395.      rwlock_wrlock (&svc_fd_lock);
  1396.    if ((sock < FD_SETSIZE) && (__svc_xports[sock] == xprt)) {
  1397.      __svc_xports[sock] = NULL;
  1398. -    FD_CLR (sock, &svc_fdset);
  1399. +    FD_CLR (_get_osfhandle(sock), &svc_fdset);
  1400.      if (sock >= svc_maxfd) {
  1401.        for (svc_maxfd--; svc_maxfd >= 0; svc_maxfd--)
  1402.          if (__svc_xports[svc_maxfd])
  1403. @@ -638,7 +638,7 @@ svc_getreqset (readfds)
  1404.  }
  1405.  
  1406.  void
  1407. -svc_getreq_common (SOCKET fd)
  1408. +svc_getreq_common (int fd)
  1409.  {
  1410.    SVCXPRT *xprt;
  1411.    struct svc_req r;
  1412. @@ -771,11 +771,11 @@ svc_getreq_poll (pfdp, pollretval)
  1413.           if (p->revents & POLLNVAL)
  1414.             {
  1415.               rwlock_wrlock (&svc_fd_lock);
  1416. -             FD_CLR (p->fd, &svc_fdset);
  1417. +             FD_CLR (_get_osfhandle(p->fd), &svc_fdset);
  1418.               rwlock_unlock (&svc_fd_lock);
  1419.             }
  1420.           else
  1421. -           svc_getreq_common (p->fd);
  1422. +           svc_getreq_common (wintirpc_handle2fd(p->fd));
  1423.         }
  1424.      }
  1425.  }
  1426. diff --git a/libtirpc/src/svc_dg.c b/libtirpc/src/svc_dg.c
  1427. index d8dcada..8610c7a 100644
  1428. --- a/libtirpc/src/svc_dg.c
  1429. +++ b/libtirpc/src/svc_dg.c
  1430. @@ -138,7 +138,7 @@ svc_dg_create(fd, sendsize, recvsize)
  1431.         xprt->xp_rtaddr.maxlen = sizeof (struct sockaddr_storage);
  1432.  
  1433.         slen = sizeof ss;
  1434. -       if (getsockname(fd, (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR)
  1435. +       if (getsockname(_get_osfhandle(fd), (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR)
  1436.                 goto freedata;
  1437.         __rpc_set_netbuf(&xprt->xp_ltaddr, &ss, slen);
  1438.  
  1439. @@ -177,7 +177,7 @@ svc_dg_recv(xprt, msg)
  1440.  
  1441.  again:
  1442.         alen = sizeof (struct sockaddr_storage);
  1443. -       rlen = recvfrom(xprt->xp_fd, rpc_buffer(xprt), su->su_iosz, 0,
  1444. +       rlen = recvfrom(_get_osfhandle(xprt->xp_fd), rpc_buffer(xprt), su->su_iosz, 0,
  1445.             (struct sockaddr *)(void *)&ss, &alen);
  1446.         if (rlen == -1 && errno == EINTR)
  1447.                 goto again;
  1448. @@ -194,7 +194,7 @@ again:
  1449.         su->su_xid = msg->rm_xid;
  1450.         if (su->su_cache != NULL) {
  1451.                 if (cache_get(xprt, msg, &reply, &replylen)) {
  1452. -                       (void)sendto(xprt->xp_fd, reply, replylen, 0,
  1453. +                       (void)wintirpc_sendto(xprt->xp_fd, reply, replylen, 0,
  1454.                             (struct sockaddr *)(void *)&ss, alen);
  1455.                         return (FALSE);
  1456.                 }
  1457. @@ -217,7 +217,7 @@ svc_dg_reply(xprt, msg)
  1458.         msg->rm_xid = su->su_xid;
  1459.         if (xdr_replymsg(xdrs, msg)) {
  1460.                 slen = XDR_GETPOS(xdrs);
  1461. -               if (sendto(xprt->xp_fd, rpc_buffer(xprt), slen, 0,
  1462. +               if (wintirpc_sendto(xprt->xp_fd, rpc_buffer(xprt), slen, 0,
  1463.                     (struct sockaddr *)xprt->xp_rtaddr.buf,
  1464.                     (socklen_t)xprt->xp_rtaddr.len) == (ssize_t) slen) {
  1465.                         stat = TRUE;
  1466. @@ -257,7 +257,7 @@ svc_dg_destroy(xprt)
  1467.  
  1468.         xprt_unregister(xprt);
  1469.         if (xprt->xp_fd != -1)
  1470. -               (void)closesocket(xprt->xp_fd);
  1471. +               (void)wintirpc_closesocket(xprt->xp_fd);
  1472.         XDR_DESTROY(&(su->su_xdrs));
  1473.         (void) mem_free(rpc_buffer(xprt), su->su_iosz);
  1474.         (void) mem_free(su, sizeof (*su));
  1475. diff --git a/libtirpc/src/svc_generic.c b/libtirpc/src/svc_generic.c
  1476. index d84f237..80f5e87 100644
  1477. --- a/libtirpc/src/svc_generic.c
  1478. +++ b/libtirpc/src/svc_generic.c
  1479. @@ -180,7 +180,7 @@ svc_tp_create(dispatch, prognum, versnum, nconf)
  1480.   */
  1481.  SVCXPRT *
  1482.  svc_tli_create(fd, nconf, bindaddr, sendsz, recvsz)
  1483. -       SOCKET fd;                              /* Connection end point */
  1484. +       int fd;                         /* Connection end point */
  1485.         const struct netconfig *nconf;  /* Netconfig struct for nettoken */
  1486.         const struct t_bind *bindaddr;  /* Local bind address */
  1487.         u_int sendsz;                   /* Max sendsize */
  1488. @@ -225,23 +225,23 @@ svc_tli_create(fd, nconf, bindaddr, sendsz, recvsz)
  1489.                         if (bindresvport(fd, NULL) < 0) {
  1490.                                 memset(&ss, 0, sizeof ss);
  1491.                                 ss.ss_family = si.si_af;
  1492. -                               if (bind(fd, (struct sockaddr *)(void *)&ss,
  1493. +                               if (bind(_get_osfhandle(fd), (struct sockaddr *)(void *)&ss,
  1494.                                     (socklen_t)si.si_alen) == SOCKET_ERROR) {
  1495.                                         // XXX warnx(
  1496.  //                     "svc_tli_create: could not bind to anonymous port");
  1497.                                         goto freedata;
  1498.                                 }
  1499.                         }
  1500. -                       listen(fd, SOMAXCONN);
  1501. +                       wintirpc_listen(fd, SOMAXCONN);
  1502.                 } else {
  1503. -                       if (bind(fd,
  1504. +                       if (bind(_get_osfhandle(fd),
  1505.                             (struct sockaddr *)bindaddr->addr.buf,
  1506.                             (socklen_t)si.si_alen) == SOCKET_ERROR) {
  1507.                                 // XXX warnx(
  1508.  //             "svc_tli_create: could not bind to requested address");
  1509.                                 goto freedata;
  1510.                         }
  1511. -                       listen(fd, (int)bindaddr->qlen);
  1512. +                       wintirpc_listen(fd, (int)bindaddr->qlen);
  1513.                 }
  1514.                        
  1515.         }
  1516. @@ -292,7 +292,7 @@ svc_tli_create(fd, nconf, bindaddr, sendsz, recvsz)
  1517.  
  1518.  freedata:
  1519.         if (madefd)
  1520. -               (void)closesocket(fd);
  1521. +               (void)wintirpc_closesocket(fd);
  1522.         if (xprt) {
  1523.                 if (!madefd) /* so that svc_destroy doesnt close fd */
  1524.                         xprt->xp_fd = RPC_ANYFD;
  1525. diff --git a/libtirpc/src/svc_vc.c b/libtirpc/src/svc_vc.c
  1526. index 53f0df3..fcb6ff3 100644
  1527. --- a/libtirpc/src/svc_vc.c
  1528. +++ b/libtirpc/src/svc_vc.c
  1529. @@ -67,7 +67,7 @@
  1530.  
  1531.  extern rwlock_t svc_fd_lock;
  1532.  
  1533. -static SVCXPRT *makefd_xprt(SOCKET, u_int, u_int);
  1534. +static SVCXPRT *makefd_xprt(int, u_int, u_int);
  1535.  static bool_t rendezvous_request(SVCXPRT *, struct rpc_msg *);
  1536.  static enum xprt_stat rendezvous_stat(SVCXPRT *);
  1537.  static void svc_vc_destroy(SVCXPRT *);
  1538. @@ -179,7 +179,7 @@ svc_vc_create(fd, sendsize, recvsize)
  1539.         xprt->xp_fd = fd;
  1540.  
  1541.         slen = sizeof (struct sockaddr_storage);
  1542. -       if (getsockname(fd, (struct sockaddr *)(void *)&sslocal, &slen) == SOCKET_ERROR) {
  1543. +       if (getsockname(_get_osfhandle(fd), (struct sockaddr *)(void *)&sslocal, &slen) == SOCKET_ERROR) {
  1544.                 // XXX warnx("svc_vc_create: could not retrieve local addr");
  1545.                 goto cleanup_svc_vc_create;
  1546.         }
  1547. @@ -202,7 +202,7 @@ cleanup_svc_vc_create:
  1548.   */
  1549.  SVCXPRT *
  1550.  svc_fd_create(fd, sendsize, recvsize)
  1551. -       SOCKET fd;
  1552. +       int fd;
  1553.         u_int sendsize;
  1554.         u_int recvsize;
  1555.  {
  1556. @@ -217,7 +217,7 @@ svc_fd_create(fd, sendsize, recvsize)
  1557.                 return NULL;
  1558.  
  1559.         slen = sizeof (struct sockaddr_storage);
  1560. -       if (getsockname(fd, (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR) {
  1561. +       if (getsockname(_get_osfhandle(fd), (struct sockaddr *)(void *)&ss, &slen) == SOCKET_ERROR) {
  1562.                 // XXX warnx("svc_fd_create: could not retrieve local addr");
  1563.                 goto freedata;
  1564.         }
  1565. @@ -250,7 +250,7 @@ freedata:
  1566.  
  1567.  static SVCXPRT *
  1568.  makefd_xprt(fd, sendsize, recvsize)
  1569. -       SOCKET fd;
  1570. +       int fd;
  1571.         u_int sendsize;
  1572.         u_int recvsize;
  1573.  {
  1574. @@ -302,7 +302,7 @@ rendezvous_request(xprt, msg)
  1575.         SVCXPRT *xprt;
  1576.         struct rpc_msg *msg;
  1577.  {
  1578. -       SOCKET sock;
  1579. +       int sock;
  1580.  #ifndef _WIN32
  1581.         int flags;
  1582.  #endif
  1583. @@ -320,7 +320,7 @@ rendezvous_request(xprt, msg)
  1584.         r = (struct cf_rendezvous *)xprt->xp_p1;
  1585.  again:
  1586.         len = sizeof addr;
  1587. -       if ((sock = accept(xprt->xp_fd, (struct sockaddr *)(void *)&addr,
  1588. +       if ((sock = wintirpc_accept(xprt->xp_fd, (struct sockaddr *)(void *)&addr,
  1589.             &len)) == SOCKET_ERROR) {
  1590.                 if (errno == EINTR)
  1591.                         goto again;
  1592. @@ -355,7 +355,7 @@ again:
  1593.         if (__rpc_fd2sockinfo(sock, &si) && si.si_proto == IPPROTO_TCP) {
  1594.                 len = 1;
  1595.                 /* XXX fvdl - is this useful? */
  1596. -               setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (const char *)&len, sizeof (len));
  1597. +               setsockopt(_get_osfhandle(sock), IPPROTO_TCP, TCP_NODELAY, (const char *)&len, sizeof (len));
  1598.         }
  1599.  
  1600.         cd = (struct cf_conn *)newxprt->xp_p1;
  1601. @@ -413,7 +413,7 @@ __svc_vc_dodestroy(xprt)
  1602.         cd = (struct cf_conn *)xprt->xp_p1;
  1603.  
  1604.         if (xprt->xp_fd != RPC_ANYFD)
  1605. -               (void)closesocket(xprt->xp_fd);
  1606. +               (void)wintirpc_closesocket(xprt->xp_fd);
  1607.         if (xprt->xp_port != 0) {
  1608.                 /* a rendezvouser socket */
  1609.                 r = (struct cf_rendezvous *)xprt->xp_p1;
  1610. @@ -483,7 +483,7 @@ read_vc(xprtp, buf, len)
  1611.         int len;
  1612.  {
  1613.         SVCXPRT *xprt;
  1614. -       SOCKET sock;
  1615. +       int sock;
  1616.         int milliseconds = 35 * 1000;
  1617.         struct pollfd pollfd;
  1618.         struct cf_conn *cfp;
  1619. @@ -497,7 +497,7 @@ read_vc(xprtp, buf, len)
  1620.  
  1621.         if (cfp->nonblock) {
  1622.  #ifdef _WIN32
  1623. -               len = recv(sock, buf, (size_t)len, 0);
  1624. +               len = recv(_get_osfhandle(sock), buf, (size_t)len, 0);
  1625.  #else
  1626.                 len = read(sock, buf, (size_t)len);
  1627.  #endif
  1628. @@ -513,7 +513,7 @@ read_vc(xprtp, buf, len)
  1629.         }
  1630.  
  1631.         do {
  1632. -               pollfd.fd = sock;
  1633. +               pollfd.fd = _get_osfhandle(sock);
  1634.                 pollfd.events = POLLIN;
  1635.                 pollfd.revents = 0;
  1636.                 switch (poll(&pollfd, 1, milliseconds)) {
  1637. @@ -530,7 +530,7 @@ read_vc(xprtp, buf, len)
  1638.         } while ((pollfd.revents & POLLIN) == 0);
  1639.  
  1640.  #ifdef _WIN32
  1641. -       if ((len = recv(sock, buf, (size_t)len, 0)) > 0) {
  1642. +       if ((len = recv(_get_osfhandle(sock), buf, (size_t)len, 0)) > 0) {
  1643.  #else
  1644.         if ((len = read(sock, buf, (size_t)len)) > 0) {
  1645.  #endif
  1646. @@ -568,7 +568,7 @@ write_vc(xprtp, buf, len)
  1647.        
  1648.         for (cnt = len; cnt > 0; cnt -= i, buf += i) {
  1649.  #ifdef _WIN32
  1650. -               i = send(xprt->xp_fd, buf, (size_t)cnt, 0);
  1651. +               i = wintirpc_send(xprt->xp_fd, buf, (size_t)cnt, 0);
  1652.  #else
  1653.                 i = write(xprt->xp_fd, buf, (size_t)cnt);
  1654.  #endif
  1655. @@ -752,7 +752,7 @@ svc_vc_rendezvous_ops(xprt)
  1656.   */
  1657.  int
  1658.  __rpc_get_local_uid(SVCXPRT *transp, uid_t *uid) {
  1659. -       SOCKET sock;
  1660. +       int sock;
  1661.         int ret;
  1662.         gid_t egid;
  1663.         uid_t euid;
  1664. diff --git a/libtirpc/src/wintirpc.c b/libtirpc/src/wintirpc.c
  1665. index eb98489..4937543 100644
  1666. --- a/libtirpc/src/wintirpc.c
  1667. +++ b/libtirpc/src/wintirpc.c
  1668. @@ -3,6 +3,7 @@
  1669.   *
  1670.   * Olga Kornievskaia <aglo@umich.edu>
  1671.   * Casey Bodley <cbodley@umich.edu>
  1672. + * Roland Mainz <roland.mainz@nrubsig.org>
  1673.   *
  1674.   * This library is free software; you can redistribute it and/or modify it
  1675.   * under the terms of the GNU Lesser General Public License as published by
  1676. @@ -23,6 +24,7 @@
  1677.  #include <rpc/rpc.h>
  1678.  #include <stdio.h>
  1679.  #include <winsock.h>
  1680. +#include <assert.h>
  1681.  
  1682.  WSADATA WSAData;
  1683.  
  1684. @@ -159,6 +161,143 @@ BOOL WINAPI DllMain/*tirpc_main*/(HINSTANCE hinstDLL,     // DLL module handle
  1685.         return TRUE;
  1686.  }
  1687.  
  1688. +struct map_osfhandle_fd
  1689. +{
  1690. +       SOCKET  m_s;
  1691. +       int     m_fd;
  1692. +};
  1693. +
  1694. +#define MAP_OSFHANDLE_SIZE (1024)
  1695. +
  1696. +static
  1697. +struct map_osfhandle_fd handle_fd_map[MAP_OSFHANDLE_SIZE];
  1698. +
  1699. +void wintirpc_register_osfhandle_fd(SOCKET handle, int fd)
  1700. +{
  1701. +       assert(handle != 0);
  1702. +       assert(handle != SOCKET_ERROR);
  1703. +       assert(fd < MAP_OSFHANDLE_SIZE);
  1704. +
  1705. +       handle_fd_map[fd].m_fd = fd;
  1706. +       handle_fd_map[fd].m_s = handle;
  1707. +}
  1708. +
  1709. +void wintirpc_unregister_osfhandle(SOCKET handle)
  1710. +{
  1711. +       int i;
  1712. +
  1713. +       assert(handle != 0);
  1714. +       assert(handle != SOCKET_ERROR);
  1715. +
  1716. +       for (i=0 ; i < MAP_OSFHANDLE_SIZE ; i++) {
  1717. +               if (handle_fd_map[i].m_s == handle) {
  1718. +                       handle_fd_map[i].m_s = SOCKET_ERROR;
  1719. +                       handle_fd_map[i].m_fd = -1;
  1720. +                       return;
  1721. +               }
  1722. +       }
  1723. +       (void)fprintf(stderr, "wintirpc_unregister_osfhandle: failed\n");
  1724. +}
  1725. +
  1726. +int wintirpc_handle2fd(SOCKET handle)
  1727. +{
  1728. +       int i;
  1729. +
  1730. +       assert(handle != 0);
  1731. +       assert(handle != SOCKET_ERROR);
  1732. +
  1733. +       for (i=0 ; i < MAP_OSFHANDLE_SIZE ; i++) {
  1734. +               if ((handle_fd_map[i].m_s == handle) &&
  1735. +                       (handle_fd_map[i].m_fd != -1)) {
  1736. +                       return handle_fd_map[i].m_fd;
  1737. +               }
  1738. +       }
  1739. +
  1740. +       (void)fprintf(stderr, "wintirpc_handle2fd: failed\n");
  1741. +       return -1;
  1742. +}
  1743. +
  1744. +int wintirpc_socket(int af, int type, int protocol)
  1745. +{
  1746. +       SOCKET s;
  1747. +
  1748. +       s = socket(af, type, protocol);
  1749. +       if (s == INVALID_SOCKET) {
  1750. +               (void)fprintf(stderr, "wintirpc_socket: INVALID_SOCKET\n");
  1751. +               return -1;
  1752. +       }
  1753. +
  1754. +       int fd = _open_osfhandle(s, _O_BINARY);
  1755. +       if (fd < 0) {
  1756. +               (void)closesocket(s);
  1757. +               /*
  1758. +                * |_open_osfhandle()| may not set |errno|, and
  1759. +                * |closesocket()| may override it
  1760. +                */
  1761. +               (void)fprintf(stderr, "wintirpc_socket: failed\n");
  1762. +               errno = ENOMEM;
  1763. +               return -1;
  1764. +       }
  1765. +
  1766. +       wintirpc_register_osfhandle_fd(s, fd);
  1767. +
  1768. +       (void)fprintf(stderr, "wintirpc_socket: %s/%d: sock fd=%d\n", __FILE__, (int)__LINE__, fd);
  1769. +
  1770. +       return fd;
  1771. +}
  1772. +
  1773. +int wintirpc_closesocket(int in_fd)
  1774. +{
  1775. +       SOCKET s = _get_osfhandle(in_fd);
  1776. +
  1777. +       wintirpc_unregister_osfhandle(s);
  1778. +
  1779. +       return closesocket(s);
  1780. +}
  1781. +
  1782. +int wintirpc_listen(int in_s, int backlog)
  1783. +{
  1784. +       return listen(_get_osfhandle(in_s), backlog);
  1785. +}
  1786. +
  1787. +int wintirpc_accept(int in_s_fd, struct sockaddr *addr, int *addrlen)
  1788. +{
  1789. +       SOCKET in_s;
  1790. +       SOCKET out_s;
  1791. +       int out_s_fd;
  1792. +
  1793. +       in_s = _get_osfhandle(in_s_fd);
  1794. +
  1795. +       out_s = accept(in_s, addr, addrlen);
  1796. +
  1797. +       out_s_fd = _open_osfhandle(out_s, _O_BINARY);
  1798. +       if (out_s_fd < 0) {
  1799. +               (void)closesocket(out_s);
  1800. +               /*
  1801. +                * |_open_osfhandle()| may not set |errno|, and
  1802. +                * |closesocket()| may override it
  1803. +                */
  1804. +               (void)fprintf(stderr, "wintirpc_accept: failed\n");
  1805. +               errno = ENOMEM;
  1806. +               return -1;
  1807. +       }
  1808. +
  1809. +       wintirpc_register_osfhandle_fd(out_s, out_s_fd);
  1810. +
  1811. +       return out_s_fd;
  1812. +}
  1813. +
  1814. +int wintirpc_send(int s, const char *buf, int len, int flags)
  1815. +{
  1816. +       return send(_get_osfhandle(s), buf, len, flags);
  1817. +}
  1818. +
  1819. +int wintirpc_sendto(int s, const char *buf, int len, int flags,
  1820. +       const struct sockaddr *to, int tolen)
  1821. +{
  1822. +       return(sendto(_get_osfhandle(s), buf, len, flags, to, tolen));
  1823. +}
  1824. +
  1825.  int tirpc_exit(void)
  1826.  {
  1827.         if (init == 0 || --init > 0)
  1828. @@ -167,7 +306,6 @@ int tirpc_exit(void)
  1829.         return WSACleanup();
  1830.  }
  1831.  
  1832. -
  1833.  void wintirpc_debug(char *fmt, ...)
  1834.  {
  1835.  #ifdef _DEBUG
  1836. diff --git a/libtirpc/tirpc/getpeereid.h b/libtirpc/tirpc/getpeereid.h
  1837. index cdecd0e..025143f 100644
  1838. --- a/libtirpc/tirpc/getpeereid.h
  1839. +++ b/libtirpc/tirpc/getpeereid.h
  1840. @@ -1,2 +1,2 @@
  1841.  
  1842. -int getpeereid(SOCKET s, uid_t *euid, gid_t *egid);
  1843. +int getpeereid(int s, uid_t *euid, gid_t *egid);
  1844. diff --git a/libtirpc/tirpc/rpc/clnt.h b/libtirpc/tirpc/rpc/clnt.h
  1845. index 0ee9724..3639f82 100644
  1846. --- a/libtirpc/tirpc/rpc/clnt.h
  1847. +++ b/libtirpc/tirpc/rpc/clnt.h
  1848. @@ -393,7 +393,7 @@ extern CLIENT * clnt_tp_create_timed(const char *, const rpcprog_t,
  1849.   * Generic TLI create routine. Only provided for compatibility.
  1850.   */
  1851.  
  1852. -extern CLIENT *clnt_tli_create(const SOCKET, const struct netconfig *,
  1853. +extern CLIENT *clnt_tli_create(const int, const struct netconfig *,
  1854.                                struct netbuf *, const rpcprog_t,
  1855.                                const rpcvers_t, const u_int, const u_int,
  1856.                     int (*cb_xdr)(void *, void *),
  1857. @@ -411,7 +411,7 @@ extern CLIENT *clnt_tli_create(const SOCKET, const struct netconfig *,
  1858.  /*
  1859.   * Low level clnt create routine for connectionful transports, e.g. tcp.
  1860.   */
  1861. -extern CLIENT *clnt_vc_create(const SOCKET, const struct netbuf *,
  1862. +extern CLIENT *clnt_vc_create(const int, const struct netbuf *,
  1863.                               const rpcprog_t, const rpcvers_t,
  1864.                               u_int, u_int, int (*cb_xdr)(void *, void *),
  1865.                    int (*cb)(void *, void *, void **), void *args);
  1866. @@ -432,7 +432,7 @@ extern CLIENT *clntunix_create(struct sockaddr_un *,
  1867.  /*
  1868.   * Low level clnt create routine for connectionless transports, e.g. udp.
  1869.   */
  1870. -extern CLIENT *clnt_dg_create(const SOCKET, const struct netbuf *,
  1871. +extern CLIENT *clnt_dg_create(const int, const struct netbuf *,
  1872.                               const rpcprog_t, const rpcvers_t,
  1873.                               const u_int, const u_int);
  1874.  /*
  1875. diff --git a/libtirpc/tirpc/rpc/clnt_soc.h b/libtirpc/tirpc/rpc/clnt_soc.h
  1876. index 582f555..4cf4d78 100644
  1877. --- a/libtirpc/tirpc/rpc/clnt_soc.h
  1878. +++ b/libtirpc/tirpc/rpc/clnt_soc.h
  1879. @@ -62,7 +62,7 @@
  1880.   *     u_int recvsz;
  1881.   */
  1882.  __BEGIN_DECLS
  1883. -extern CLIENT *clnttcp_create(struct sockaddr_in *, u_long, u_long, SOCKET *,
  1884. +extern CLIENT *clnttcp_create(struct sockaddr_in *, u_long, u_long, int *,
  1885.                               u_int, u_int);
  1886.  __END_DECLS
  1887.  
  1888. diff --git a/libtirpc/tirpc/rpc/rpc.h b/libtirpc/tirpc/rpc/rpc.h
  1889. index 685fe42..e136149 100644
  1890. --- a/libtirpc/tirpc/rpc/rpc.h
  1891. +++ b/libtirpc/tirpc/rpc/rpc.h
  1892. @@ -82,7 +82,7 @@
  1893.  
  1894.  __BEGIN_DECLS
  1895.  extern int get_myaddress(struct sockaddr_in *);
  1896. -extern int bindresvport(SOCKET, struct sockaddr_in *) __THROW;
  1897. +extern int bindresvport(int, struct sockaddr_in *) __THROW;
  1898.  extern int registerrpc(int, int, int, char *(*)(char [UDPMSGSIZE]),
  1899.      xdrproc_t, xdrproc_t);
  1900.  extern int callrpc(const char *, int, int, int, xdrproc_t, void *,
  1901. @@ -96,7 +96,7 @@ void freeuaddr(char *); /* free memory allocated by taddr2uaddr */
  1902.  void freenetbuf(struct netbuf *); /* free memory allocated by uaddr2taddr */
  1903.  
  1904.  struct sockaddr;
  1905. -extern int bindresvport_sa(SOCKET, struct sockaddr *);
  1906. +extern int bindresvport_sa(int, struct sockaddr *);
  1907.  __END_DECLS
  1908.  
  1909.  /*
  1910. @@ -104,9 +104,9 @@ __END_DECLS
  1911.   * and rpcbind use only. Do not use, they may change without notice.
  1912.   */
  1913.  __BEGIN_DECLS
  1914. -SOCKET __rpc_nconf2fd(const struct netconfig *);
  1915. +int __rpc_nconf2fd(const struct netconfig *);
  1916.  int __rpc_nconf2sockinfo(const struct netconfig *, struct __rpc_sockinfo *);
  1917. -int __rpc_fd2sockinfo(SOCKET, struct __rpc_sockinfo *);
  1918. +int __rpc_fd2sockinfo(int, struct __rpc_sockinfo *);
  1919.  u_int __rpc_get_t_size(int, int, int);
  1920.  __END_DECLS
  1921.  
  1922. diff --git a/libtirpc/tirpc/rpc/rpc_com.h b/libtirpc/tirpc/rpc/rpc_com.h
  1923. index adde181..096cf23 100644
  1924. --- a/libtirpc/tirpc/rpc/rpc_com.h
  1925. +++ b/libtirpc/tirpc/rpc/rpc_com.h
  1926. @@ -74,7 +74,7 @@ int __rpc_sockinfo2netid(struct __rpc_sockinfo *, const char **);
  1927.  int __rpc_seman2socktype(int);
  1928.  int __rpc_socktype2seman(int);
  1929.  void *rpc_nullproc(CLIENT *);
  1930. -int __rpc_sockisbound(SOCKET);
  1931. +int __rpc_sockisbound(int);
  1932.  
  1933.  struct netbuf *__rpcb_findaddr(rpcprog_t, rpcvers_t, const struct netconfig *,
  1934.                                const char *, CLIENT **);
  1935. diff --git a/libtirpc/tirpc/rpc/svc.h b/libtirpc/tirpc/rpc/svc.h
  1936. index a919c50..c39c1dc 100644
  1937. --- a/libtirpc/tirpc/rpc/svc.h
  1938. +++ b/libtirpc/tirpc/rpc/svc.h
  1939. @@ -88,7 +88,7 @@ enum xprt_stat {
  1940.   * Server side transport handle
  1941.   */
  1942.  typedef struct __rpc_svcxprt {
  1943. -       SOCKET          xp_fd;
  1944. +       int             xp_fd;
  1945.         u_short         xp_port;         /* associated port number */
  1946.         const struct xp_ops {
  1947.             /* receive incoming requests */
  1948. @@ -313,7 +313,7 @@ __END_DECLS
  1949.  __BEGIN_DECLS
  1950.  extern void    svc_getreq(int);
  1951.  extern void    svc_getreqset(fd_set *);
  1952. -extern void    svc_getreq_common(SOCKET);
  1953. +extern void    svc_getreq_common(int);
  1954.  struct pollfd;
  1955.  extern void    svc_getreq_poll(struct pollfd *, int);
  1956.  
  1957. @@ -364,11 +364,11 @@ extern SVCXPRT *svc_tp_create(void (*)(struct svc_req *, SVCXPRT *),
  1958.  /*
  1959.   * Generic TLI create routine
  1960.   */
  1961. -extern SVCXPRT *svc_tli_create(const SOCKET, const struct netconfig *,
  1962. +extern SVCXPRT *svc_tli_create(const int, const struct netconfig *,
  1963.                                const struct t_bind *, const u_int,
  1964.                                const u_int);
  1965.  /*
  1966. - *      const SOCKET fd;                -- connection end point
  1967. + *      const int fd;                -- connection end point
  1968.   *      const struct netconfig *nconf;  -- netconfig structure for network
  1969.   *      const struct t_bind *bindaddr;  -- local bind address
  1970.   *      const u_int sendsz;             -- max sendsize
  1971. @@ -379,9 +379,9 @@ extern SVCXPRT *svc_tli_create(const SOCKET, const struct netconfig *,
  1972.   * Connectionless and connectionful create routines
  1973.   */
  1974.  
  1975. -extern SVCXPRT *svc_vc_create(const SOCKET, const u_int, const u_int);
  1976. +extern SVCXPRT *svc_vc_create(const int, const u_int, const u_int);
  1977.  /*
  1978. - *      const SOCKET fd;                        -- open connection end point
  1979. + *      const int fd;                        -- open connection end point
  1980.   *      const u_int sendsize;                   -- max send size
  1981.   *      const u_int recvsize;                   -- max recv size
  1982.   */
  1983. @@ -391,9 +391,9 @@ extern SVCXPRT *svc_vc_create(const SOCKET, const u_int, const u_int);
  1984.   */
  1985.  extern SVCXPRT *svcunix_create(int, u_int, u_int, char *);
  1986.  
  1987. -extern SVCXPRT *svc_dg_create(const SOCKET, const u_int, const u_int);
  1988. +extern SVCXPRT *svc_dg_create(const int, const u_int, const u_int);
  1989.          /*
  1990. -         * const SOCKET fd;                             -- open connection
  1991. +         * const int fd;                             -- open connection
  1992.           * const u_int sendsize;                        -- max send size
  1993.           * const u_int recvsize;                        -- max recv size
  1994.           */
  1995. @@ -403,9 +403,9 @@ extern SVCXPRT *svc_dg_create(const SOCKET, const u_int, const u_int);
  1996.   * the routine takes any *open* connection
  1997.   * descriptor as its first input and is used for open connections.
  1998.   */
  1999. -extern SVCXPRT *svc_fd_create(const SOCKET, const u_int, const u_int);
  2000. +extern SVCXPRT *svc_fd_create(const int, const u_int, const u_int);
  2001.  /*
  2002. - *      const SOCKET fd;                        -- open connection end point
  2003. + *      const int fd;                        -- open connection end point
  2004.   *      const u_int sendsize;                   -- max send size
  2005.   *      const u_int recvsize;                   -- max recv size
  2006.   */
  2007. diff --git a/libtirpc/tirpc/wintirpc.h b/libtirpc/tirpc/wintirpc.h
  2008. index a299835..608ee97 100644
  2009. --- a/libtirpc/tirpc/wintirpc.h
  2010. +++ b/libtirpc/tirpc/wintirpc.h
  2011. @@ -3,6 +3,7 @@
  2012.   *
  2013.   * Olga Kornievskaia <aglo@umich.edu>
  2014.   * Casey Bodley <cbodley@umich.edu>
  2015. + * Roland Mainz <roland.mainz@nrubsig.org>
  2016.   *
  2017.   * This library is free software; you can redistribute it and/or modify it
  2018.   * under the terms of the GNU Lesser General Public License as published by
  2019. @@ -44,6 +45,13 @@
  2020.  #include <windows.h>
  2021.  #include <process.h>
  2022.  #include <basetsd.h>
  2023. +#include <fcntl.h>
  2024. +#include <io.h>
  2025. +
  2026. +/* warn about int to pointer */
  2027. +#pragma warning (error : 4312)
  2028. +/* conversion from 'int' to '_HFILE' of greater size */
  2029. +#pragma warning (error : 4306)
  2030.  
  2031.  //#define snprintf _snprintf
  2032.  //#define vsnprintf _vsnprintf
  2033. @@ -63,12 +71,6 @@
  2034.  #define __END_DECLS
  2035.  #define __THROW
  2036.  
  2037. -/*
  2038. - * Hash of Windows Socket Handle values
  2039. - */
  2040. -#define WINSOCK_HANDLE_HASH_SIZE       1024
  2041. -#define WINSOCK_HANDLE_HASH(x) (((x) >> 2) % WINSOCK_HANDLE_HASH_SIZE)
  2042. -
  2043.  /*
  2044.   * Functions imported from BSD
  2045.   */
  2046. @@ -78,15 +80,15 @@ struct timezone
  2047.    int  tz_dsttime;     /* type of dst correction */
  2048.  };
  2049.  
  2050. -extern int gettimeofday(struct timeval *tv, struct timezone *tz);
  2051. -extern int asprintf(char **str, const char *fmt, ...);
  2052. -
  2053. -#if(_WIN32_WINNT < 0x0501)
  2054. -#define SOL_IPV6 IPPROTO_IPV6
  2055. -#endif
  2056. -
  2057. -#define MAXHOSTNAMELEN 256
  2058. -
  2059. +extern int gettimeofday(struct timeval *tv, struct timezone *tz);
  2060. +extern int asprintf(char **str, const char *fmt, ...);
  2061. +
  2062. +#if(_WIN32_WINNT < 0x0501)
  2063. +#define SOL_IPV6 IPPROTO_IPV6
  2064. +#endif
  2065. +
  2066. +#define MAXHOSTNAMELEN 256
  2067. +
  2068.  struct sockaddr_un {
  2069.         int sun_family;
  2070.         char sun_path[MAX_PATH];
  2071. @@ -95,6 +97,17 @@ struct sockaddr_un {
  2072.  /* XXX Should this return size_t or unsigned int ?? */
  2073.  #define SUN_LEN(ptr) ((unsigned int)(sizeof(int) + strlen ((ptr)->sun_path)))
  2074.  
  2075. +/* Prototypes */
  2076. +int wintirpc_socket(int af,int type, int protocol);
  2077. +int wintirpc_closesocket(int in_fd);
  2078. +int wintirpc_listen(int in_s, int backlog);
  2079. +int wintirpc_accept(int s_fd, struct sockaddr *addr, int *addrlen);
  2080. +int winntirpc_send(int s, const char *buf, int len, int flags);
  2081. +int wintirpc_sendto(int s, const char *buf, int len, int flags, const struct sockaddr *to, int tolen);
  2082. +void wintirpc_register_osfhandle_fd(SOCKET handle, int fd);
  2083. +void wintirpc_unregister_osfhandle(SOCKET handle);
  2084. +int wintirpc_handle2fd(SOCKET handle);
  2085. +
  2086.  /* Debugging function */
  2087.  void wintirpc_debug(char *fmt, ...);
  2088.  
  2089. --
  2090. 2.39.0
  2091.  
  2092. From 973f282ae5cea050f910803391e28bfc723f294c Mon Sep 17 00:00:00 2001
  2093. From: Roland Mainz <roland.mainz@nrubsig.org>
  2094. Date: Fri, 27 Oct 2023 18:44:48 +0200
  2095. Subject: [PATCH 2/6] libtirpc: wintirpc.h: Fix VC19 warnings about |strdup()|
  2096.  
  2097. libtirpc: Fix VC19 warnings about |strdup()| in <wintirpc.h>.
  2098.  
  2099. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  2100. ---
  2101. libtirpc/tirpc/wintirpc.h | 5 ++++-
  2102.  1 file changed, 4 insertions(+), 1 deletion(-)
  2103.  
  2104. diff --git a/libtirpc/tirpc/wintirpc.h b/libtirpc/tirpc/wintirpc.h
  2105. index 608ee97..051e125 100644
  2106. --- a/libtirpc/tirpc/wintirpc.h
  2107. +++ b/libtirpc/tirpc/wintirpc.h
  2108. @@ -56,7 +56,10 @@
  2109.  //#define snprintf _snprintf
  2110.  //#define vsnprintf _vsnprintf
  2111.  #define strcasecmp _stricmp
  2112. -//#define strdup _strdup
  2113. +/* ucrt/crtdbg.h might define |strdup()| to |_strdup_dbg()| */
  2114. +#ifndef strdup
  2115. +#define strdup _strdup
  2116. +#endif
  2117.  #define getpid _getpid
  2118.  
  2119.  #define bcmp memcmp
  2120. --
  2121. 2.39.0
  2122.  
  2123. From b9ce08ed1f28c1dfd1805d264e031f5ccd11a270 Mon Sep 17 00:00:00 2001
  2124. From: Roland Mainz <roland.mainz@nrubsig.org>
  2125. Date: Sat, 28 Oct 2023 11:36:35 +0200
  2126. Subject: [PATCH 3/6] libtirpc: [refix] Use fd number instead of SOCKET handle
  2127.  for locking
  2128.  
  2129. libtirpc: Use fd number (from |_get_osfhandle()| instead of
  2130. |SOCKET| handle for locking.
  2131.  
  2132. Remove usage of |_get_osfhandle()| where |FD_CLR()| wants a socket
  2133. handle.
  2134.  
  2135. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  2136. ---
  2137. libtirpc/src/svc.c | 2 +-
  2138.  1 file changed, 1 insertion(+), 1 deletion(-)
  2139.  
  2140. diff --git a/libtirpc/src/svc.c b/libtirpc/src/svc.c
  2141. index 2932db7..c975286 100644
  2142. --- a/libtirpc/src/svc.c
  2143. +++ b/libtirpc/src/svc.c
  2144. @@ -771,7 +771,7 @@ svc_getreq_poll (pfdp, pollretval)
  2145.           if (p->revents & POLLNVAL)
  2146.             {
  2147.               rwlock_wrlock (&svc_fd_lock);
  2148. -             FD_CLR (_get_osfhandle(p->fd), &svc_fdset);
  2149. +             FD_CLR (p->fd, &svc_fdset);
  2150.               rwlock_unlock (&svc_fd_lock);
  2151.             }
  2152.           else
  2153. --
  2154. 2.39.0
  2155.  
  2156. From f6f43cdfa5789359cbd543b1fdd30c59a5484b50 Mon Sep 17 00:00:00 2001
  2157. From: Roland Mainz <roland.mainz@nrubsig.org>
  2158. Date: Sat, 28 Oct 2023 11:39:00 +0200
  2159. Subject: [PATCH 4/6] wintirpc.h: Fix |wintirpc_send()| prototype
  2160.  
  2161. libtirpc/tirpc/wintirpc.h: Fix |wintirpc_send()| typo in prototype
  2162.  
  2163. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  2164. ---
  2165. libtirpc/tirpc/wintirpc.h | 2 +-
  2166.  1 file changed, 1 insertion(+), 1 deletion(-)
  2167.  
  2168. diff --git a/libtirpc/tirpc/wintirpc.h b/libtirpc/tirpc/wintirpc.h
  2169. index 051e125..a41c2d7 100644
  2170. --- a/libtirpc/tirpc/wintirpc.h
  2171. +++ b/libtirpc/tirpc/wintirpc.h
  2172. @@ -105,7 +105,7 @@ int wintirpc_socket(int af,int type, int protocol);
  2173.  int wintirpc_closesocket(int in_fd);
  2174.  int wintirpc_listen(int in_s, int backlog);
  2175.  int wintirpc_accept(int s_fd, struct sockaddr *addr, int *addrlen);
  2176. -int winntirpc_send(int s, const char *buf, int len, int flags);
  2177. +int wintirpc_send(int s, const char *buf, int len, int flags);
  2178.  int wintirpc_sendto(int s, const char *buf, int len, int flags, const struct sockaddr *to, int tolen);
  2179.  void wintirpc_register_osfhandle_fd(SOCKET handle, int fd);
  2180.  void wintirpc_unregister_osfhandle(SOCKET handle);
  2181. --
  2182. 2.39.0
  2183.  
  2184. From 2cd4d53fc497f7bd46da0216cf9c91f500a832dd Mon Sep 17 00:00:00 2001
  2185. From: Roland Mainz <roland.mainz@nrubsig.org>
  2186. Date: Sat, 28 Oct 2023 12:06:23 +0200
  2187. Subject: [PATCH 5/6] daemon/daemon_debug.c: Fix |fprintf()| compiler warnings
  2188.  
  2189. Fix compiler warnings daemon/daemon_debug.c related to
  2190. data type and size mismatches and used format strings, e.g.
  2191. %d for |size_t| where %zd would be correct per POSIX.
  2192.  
  2193. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  2194. ---
  2195. daemon/daemon_debug.c | 64 ++++++++++++++++++++++++-------------------
  2196.  1 file changed, 36 insertions(+), 28 deletions(-)
  2197.  
  2198. diff --git a/daemon/daemon_debug.c b/daemon/daemon_debug.c
  2199. index 40b3d6f..a4ad99d 100644
  2200. --- a/daemon/daemon_debug.c
  2201. +++ b/daemon/daemon_debug.c
  2202. @@ -227,48 +227,56 @@ void print_share_mode(int level, DWORD mode)
  2203.  
  2204.  void print_file_id_both_dir_info(int level, FILE_ID_BOTH_DIR_INFO *pboth_dir_info)
  2205.  {
  2206. -    if (level > g_debug_level) return;
  2207. -    fprintf(dlog_file, "FILE_ID_BOTH_DIR_INFO %p %d\n",
  2208. +    /* printf %zd is for |size_t| */
  2209. +
  2210. +    if (level > g_debug_level)
  2211. +        return;
  2212. +    (void)fprintf(dlog_file, "FILE_ID_BOTH_DIR_INFO %p %zd\n",
  2213.         pboth_dir_info, sizeof(unsigned char *));
  2214. -    fprintf(dlog_file, "\tNextEntryOffset=%ld %d %d\n",
  2215. -        pboth_dir_info->NextEntryOffset,
  2216. +    (void)fprintf(dlog_file, "\tNextEntryOffset=%ld %zd %zd\n",
  2217. +        pboth_dir_info->NextEntryOffset,
  2218.          sizeof(pboth_dir_info->NextEntryOffset), sizeof(DWORD));
  2219. -    fprintf(dlog_file, "\tFileIndex=%ld  %d\n", pboth_dir_info->FileIndex,
  2220. +    (void)fprintf(dlog_file, "\tFileIndex=%ld %zd\n",
  2221. +        pboth_dir_info->FileIndex,
  2222.          sizeof(pboth_dir_info->FileIndex));
  2223. -    fprintf(dlog_file, "\tCreationTime=0x%x %d\n",
  2224. -        pboth_dir_info->CreationTime.QuadPart,
  2225. +    (void)fprintf(dlog_file, "\tCreationTime=0x%llx %zd\n",
  2226. +        (long long)pboth_dir_info->CreationTime.QuadPart,
  2227.          sizeof(pboth_dir_info->CreationTime));
  2228. -    fprintf(dlog_file, "\tLastAccessTime=0x%x %d\n",
  2229. -        pboth_dir_info->LastAccessTime.QuadPart,
  2230. +    (void)fprintf(dlog_file, "\tLastAccessTime=0x%llx %zd\n",
  2231. +        (long long)pboth_dir_info->LastAccessTime.QuadPart,
  2232.          sizeof(pboth_dir_info->LastAccessTime));
  2233. -    fprintf(dlog_file, "\tLastWriteTime=0x%x %d\n",
  2234. -        pboth_dir_info->LastWriteTime.QuadPart,
  2235. +    (void)fprintf(dlog_file, "\tLastWriteTime=0x%llx %zd\n",
  2236. +        (long long)pboth_dir_info->LastWriteTime.QuadPart,
  2237.          sizeof(pboth_dir_info->LastWriteTime));
  2238. -    fprintf(dlog_file, "\tChangeTime=0x%x %d\n",
  2239. -        pboth_dir_info->ChangeTime.QuadPart,
  2240. +    (void)fprintf(dlog_file, "\tChangeTime=0x%llx %zd\n",
  2241. +        (long long)pboth_dir_info->ChangeTime.QuadPart,
  2242.          sizeof(pboth_dir_info->ChangeTime));
  2243. -    fprintf(dlog_file, "\tEndOfFile=0x%x %d\n",
  2244. -        pboth_dir_info->EndOfFile.QuadPart,
  2245. +    (void)fprintf(dlog_file, "\tEndOfFile=0x%llx %zd\n",
  2246. +        (long long)pboth_dir_info->EndOfFile.QuadPart,
  2247.          sizeof(pboth_dir_info->EndOfFile));
  2248. -    fprintf(dlog_file, "\tAllocationSize=0x%x %d\n",
  2249. -        pboth_dir_info->AllocationSize.QuadPart,
  2250. +    (void)fprintf(dlog_file, "\tAllocationSize=0x%llx %zd\n",
  2251. +        (long long)pboth_dir_info->AllocationSize.QuadPart,
  2252.          sizeof(pboth_dir_info->AllocationSize));
  2253. -    fprintf(dlog_file, "\tFileAttributes=%ld %d\n",
  2254. -        pboth_dir_info->FileAttributes,
  2255. +    (void)fprintf(dlog_file, "\tFileAttributes=%ld %zd\n",
  2256. +        pboth_dir_info->FileAttributes,
  2257.          sizeof(pboth_dir_info->FileAttributes));
  2258. -    fprintf(dlog_file, "\tFileNameLength=%ld %d\n",
  2259. -        pboth_dir_info->FileNameLength,
  2260. +    (void)fprintf(dlog_file, "\tFileNameLength=%ld %zd\n",
  2261. +        pboth_dir_info->FileNameLength,
  2262.          sizeof(pboth_dir_info->FileNameLength));
  2263. -    fprintf(dlog_file, "\tEaSize=%ld %d\n",
  2264. -        pboth_dir_info->EaSize, sizeof(pboth_dir_info->EaSize));
  2265. -    fprintf(dlog_file, "\tShortNameLength=%d %d\n",
  2266. -        pboth_dir_info->ShortNameLength,
  2267. +    (void)fprintf(dlog_file, "\tEaSize=%ld %zd\n",
  2268. +        pboth_dir_info->EaSize,
  2269. +        sizeof(pboth_dir_info->EaSize));
  2270. +    (void)fprintf(dlog_file, "\tShortNameLength=%d %zd\n",
  2271. +        pboth_dir_info->ShortNameLength,
  2272.          sizeof(pboth_dir_info->ShortNameLength));
  2273. -    fprintf(dlog_file, "\tShortName='%S' %d\n", pboth_dir_info->ShortName,
  2274. +    (void)fprintf(dlog_file, "\tShortName='%S' %zd\n",
  2275. +        pboth_dir_info->ShortName,
  2276.          sizeof(pboth_dir_info->ShortName));
  2277. -    fprintf(dlog_file, "\tFileId=0x%x %d\n", pboth_dir_info->FileId.QuadPart,
  2278. +    (void)fprintf(dlog_file, "\tFileId=0x%llx %zd\n",
  2279. +        (long long)pboth_dir_info->FileId.QuadPart,
  2280.          sizeof(pboth_dir_info->FileId));
  2281. -    fprintf(dlog_file, "\tFileName='%S' %p\n", pboth_dir_info->FileName,
  2282. +    (void)fprintf(dlog_file, "\tFileName='%S' %p\n",
  2283. +        pboth_dir_info->FileName,
  2284.          pboth_dir_info->FileName);
  2285.  }
  2286.  
  2287. --
  2288. 2.39.0
  2289.  
  2290. From 0d5c69660d0a1c63280e6ea0f3082f66e1a6bb04 Mon Sep 17 00:00:00 2001
  2291. From: Roland Mainz <roland.mainz@nrubsig.org>
  2292. Date: Sat, 28 Oct 2023 13:30:40 +0200
  2293. Subject: [PATCH 6/6] daemon: Add option nfsd_debug to set number of fs threads
  2294.  (default=32)
  2295.  
  2296. Add option nfsd_debug option --numworkerthreads to set the number
  2297. of filesystem worker threads (minimum 16, maximum 1023, default 32).
  2298.  
  2299. For now we set the default number of worker threads to 32 (from 128)
  2300. to make debugging a bit easier.
  2301.  
  2302. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  2303. ---
  2304. daemon/nfs41_daemon.c | 41 ++++++++++++++++++++++++++++++++++++-----
  2305.  daemon/nfs41_daemon.h |  1 +
  2306.  2 files changed, 37 insertions(+), 5 deletions(-)
  2307.  
  2308. diff --git a/daemon/nfs41_daemon.c b/daemon/nfs41_daemon.c
  2309. index 00eb971..640e23e 100644
  2310. --- a/daemon/nfs41_daemon.c
  2311. +++ b/daemon/nfs41_daemon.c
  2312. @@ -35,7 +35,9 @@
  2313.  #include "upcall.h"
  2314.  #include "util.h"
  2315.  
  2316. -#define MAX_NUM_THREADS 128
  2317. +/* nfs41_dg.num_worker_threads sets the actual number of worker threads */
  2318. +#define MAX_NUM_THREADS 1024
  2319. +#define DEFAULT_NUM_THREADS 32
  2320.  DWORD NFS41D_VERSION = 0;
  2321.  
  2322.  static const char FILE_NETCONFIG[] = "C:\\etc\\netconfig";
  2323. @@ -44,6 +46,7 @@ static const char FILE_NETCONFIG[] = "C:\\etc\\netconfig";
  2324.  nfs41_daemon_globals nfs41_dg = {
  2325.      .default_uid = NFS_USER_NOBODY_UID,
  2326.      .default_gid = NFS_GROUP_NOGROUP_GID,
  2327. +    .num_worker_threads = DEFAULT_NUM_THREADS,
  2328.  };
  2329.  
  2330.  
  2331. @@ -181,8 +184,12 @@ static bool_t check_for_files()
  2332.  
  2333.  static void PrintUsage()
  2334.  {
  2335. -    fprintf(stderr, "Usage: nfsd.exe -d <debug_level> --noldap "
  2336. -        "--uid <non-zero value> --gid\n");
  2337. +    (void)fprintf(stderr, "Usage: nfsd.exe -d <debug_level> "
  2338. +        "--noldap "
  2339. +        "--uid <non-zero value> "
  2340. +        "--gid <non-zero value> "
  2341. +        "--numworkerthreads <value-between 16 and %d> "
  2342. +        "\n", MAX_NUM_THREADS);
  2343.  }
  2344.  static bool_t parse_cmdlineargs(int argc, TCHAR *argv[], nfsd_args *out)
  2345.  {
  2346. @@ -234,6 +241,28 @@ static bool_t parse_cmdlineargs(int argc, TCHAR *argv[], nfsd_args *out)
  2347.                  }
  2348.                  nfs41_dg.default_gid = _ttoi(argv[i]);
  2349.              }
  2350. +            else if (_tcscmp(argv[i], TEXT("--numworkerthreads")) == 0) {
  2351. +                ++i;
  2352. +                if (i >= argc) {
  2353. +                    fprintf(stderr, "Missing value for num_worker_threads\n");
  2354. +                    PrintUsage();
  2355. +                    return FALSE;
  2356. +                }
  2357. +                nfs41_dg.num_worker_threads = _ttoi(argv[i]);
  2358. +                if (nfs41_dg.num_worker_threads < 16) {
  2359. +                    fprintf(stderr, "--numworkerthreads requires at least 16 worker threads\n");
  2360. +                    PrintUsage();
  2361. +                    return FALSE;
  2362. +                }
  2363. +                if (nfs41_dg.num_worker_threads >= MAX_NUM_THREADS) {
  2364. +                    fprintf(stderr,
  2365. +                        "--numworkerthreads supports a maximum of "
  2366. +                        "%d worker threads\n",
  2367. +                        MAX_NUM_THREADS);
  2368. +                    PrintUsage();
  2369. +                    return FALSE;
  2370. +                }
  2371. +            }
  2372.              else
  2373.                  fprintf(stderr, "Unrecognized option '%s', disregarding.\n", argv[i]);
  2374.          }
  2375. @@ -442,7 +471,9 @@ VOID ServiceStart(DWORD argc, LPTSTR *argv)
  2376.        goto out_pipe;
  2377.  #endif
  2378.  
  2379. -    for (i = 0; i < MAX_NUM_THREADS; i++) {
  2380. +    dprintf(1, "Starting %d worker threads...\n",
  2381. +        (int)nfs41_dg.num_worker_threads);
  2382. +    for (i = 0; i < nfs41_dg.num_worker_threads; i++) {
  2383.          tids[i].handle = (HANDLE)_beginthreadex(NULL, 0, thread_main,
  2384.                  &nfs41_dg, 0, &tids[i].tid);
  2385.          if (tids[i].handle == INVALID_HANDLE_VALUE) {
  2386. @@ -459,7 +490,7 @@ VOID ServiceStart(DWORD argc, LPTSTR *argv)
  2387.  #else
  2388.      //This can be changed to waiting on an array of handles and using waitformultipleobjects
  2389.      dprintf(1, "Parent waiting for children threads\n");
  2390. -    for (i = 0; i < MAX_NUM_THREADS; i++)
  2391. +    for (i = 0; i < nfs41_dg.num_worker_threads; i++)
  2392.          WaitForSingleObject(tids[i].handle, INFINITE );
  2393.  #endif
  2394.      dprintf(1, "Parent woke up!!!!\n");
  2395. diff --git a/daemon/nfs41_daemon.h b/daemon/nfs41_daemon.h
  2396. index f58ce79..2023fdc 100644
  2397. --- a/daemon/nfs41_daemon.h
  2398. +++ b/daemon/nfs41_daemon.h
  2399. @@ -34,6 +34,7 @@ typedef struct __nfs41_daemon_globals {
  2400.      char localdomain_name[NFS41_HOSTNAME_LEN];
  2401.      int default_uid;
  2402.      int default_gid;
  2403. +    ssize_t num_worker_threads;
  2404.  } nfs41_daemon_globals;
  2405.  
  2406.  #endif /* !__NFS41_DAEMON_H_ */
  2407. --
  2408. 2.39.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