- From 4456a196a5b4caf7073f6d0ae7758519d7293acf Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 10:59:50 +0200
- Subject: [PATCH 01/11] libtirpc: Add comment why we prefer |SRWLOCK| for
- |mutex_t|
- Add comment why we prefer |SRWLOCK| for |mutex_t|
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- libtirpc/tirpc/reentrant.h | 4 ++++
- 1 file changed, 4 insertions(+)
- diff --git a/libtirpc/tirpc/reentrant.h b/libtirpc/tirpc/reentrant.h
- index 51e2db1..0d48b82 100644
- --- a/libtirpc/tirpc/reentrant.h
- +++ b/libtirpc/tirpc/reentrant.h
- @@ -119,6 +119,10 @@
- /*
- * |USE_SRWLOCK_FOR_MUTEX| - Use SRWLOCK for |mutex_t| instead of a
- * |CRITICAL_SECTION|
- + * We prefer SRWLOCKs here because in our use case the performace is
- + * simiar to CRITICAL_SECTIONs, initalisation can be done with
- + * SRWLOCK_INIT and SRWLOCK does not require an explicit cleanup
- + * (i.e. it can be "forgotten" without being explicitly destroyed).
- */
- #define USE_SRWLOCK_FOR_MUTEX 1
- --
- 2.45.1
- From 8e7a491b87566b8f7be2f7a32024069522b430c1 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 11:16:05 +0200
- Subject: [PATCH 02/11] libtirpc: Split |rwlock_unlock()| into
- |rwlock_rdunlock()|+|rwlock_wrunlock()|
- Split |rwlock_unlock()| into |rwlock_rdunlock()|+|rwlock_wrunlock()|
- for system API (e.g. Win32 |SRWLOCK|) which have separate unlock
- functions for shared+exclusive locking.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- libtirpc/src/rpcb_clnt.c | 8 ++++----
- libtirpc/src/svc.c | 23 ++++++++++++-----------
- libtirpc/src/svc_run.c | 4 ++--
- libtirpc/src/svc_vc.c | 2 +-
- libtirpc/tirpc/reentrant.h | 7 ++++---
- 5 files changed, 23 insertions(+), 21 deletions(-)
- diff --git a/libtirpc/src/rpcb_clnt.c b/libtirpc/src/rpcb_clnt.c
- index 5e94d33..d9806f3 100644
- --- a/libtirpc/src/rpcb_clnt.c
- +++ b/libtirpc/src/rpcb_clnt.c
- @@ -264,7 +264,7 @@ add_cache(host, netid, taddr, uaddr)
- }
- free(cptr);
- }
- - rwlock_unlock(&rpcbaddr_cache_lock);
- + rwlock_wrunlock(&rpcbaddr_cache_lock);
- }
- /*
- @@ -304,7 +304,7 @@ getclnthandle(host, nconf, targaddr)
- if (client != NULL) {
- if (targaddr)
- *targaddr = strdup(ad_cache->ac_uaddr);
- - rwlock_unlock(&rpcbaddr_cache_lock);
- + rwlock_rdunlock(&rpcbaddr_cache_lock);
- return (client);
- }
- addr_to_delete.len = addr->len;
- @@ -315,7 +315,7 @@ getclnthandle(host, nconf, targaddr)
- memcpy(addr_to_delete.buf, addr->buf, addr->len);
- }
- }
- - rwlock_unlock(&rpcbaddr_cache_lock);
- + rwlock_rdunlock(&rpcbaddr_cache_lock);
- if (addr_to_delete.len != 0) {
- /*
- * Assume this may be due to cache data being
- @@ -323,7 +323,7 @@ getclnthandle(host, nconf, targaddr)
- */
- rwlock_wrlock(&rpcbaddr_cache_lock);
- delete_cache(&addr_to_delete);
- - rwlock_unlock(&rpcbaddr_cache_lock);
- + rwlock_rdunlock(&rpcbaddr_cache_lock);
- free(addr_to_delete.buf);
- }
- if (!__rpc_nconf2sockinfo(nconf, &si)) {
- diff --git a/libtirpc/src/svc.c b/libtirpc/src/svc.c
- index 6826831..7d8fd1d 100644
- --- a/libtirpc/src/svc.c
- +++ b/libtirpc/src/svc.c
- @@ -108,7 +108,7 @@ xprt_register (xprt)
- __svc_xports = (SVCXPRT **) mem_alloc (FD_SETSIZE * sizeof (SVCXPRT *));
- if (__svc_xports == NULL) {
- // XXX Give an error indication?
- - return;
- + goto out;
- }
- memset (__svc_xports, 0, FD_SETSIZE * sizeof (SVCXPRT *));
- }
- @@ -121,7 +121,8 @@ xprt_register (xprt)
- #else
- fprintf(stderr, "%s: Yikes! Figure out __svc_xports[] issue!!\n", __func__);
- #endif
- - rwlock_unlock (&svc_fd_lock);
- +out:
- + rwlock_wrunlock (&svc_fd_lock);
- }
- void
- @@ -163,7 +164,7 @@ bool_t dolock;
- }
- }
- if (dolock)
- - rwlock_unlock (&svc_fd_lock);
- + rwlock_wrunlock (&svc_fd_lock);
- #else
- fprintf(stderr, "%s: Yikes! Figure out __svc_xports[] issue!!\n", __func__);
- #endif
- @@ -218,7 +219,7 @@ svc_reg (xprt, prog, vers, dispatch, nconf)
- free (netid);
- if (s->sc_dispatch == dispatch)
- goto rpcb_it; /* he is registering another xptr */
- - rwlock_unlock (&svc_lock);
- + rwlock_wrunlock (&svc_lock);
- return (FALSE);
- }
- s = mem_alloc (sizeof (struct svc_callout));
- @@ -226,7 +227,7 @@ svc_reg (xprt, prog, vers, dispatch, nconf)
- {
- if (netid)
- free (netid);
- - rwlock_unlock (&svc_lock);
- + rwlock_wrunlock (&svc_lock);
- return (FALSE);
- }
- @@ -241,7 +242,7 @@ svc_reg (xprt, prog, vers, dispatch, nconf)
- ((SVCXPRT *) xprt)->xp_netid = strdup (netid);
- rpcb_it:
- - rwlock_unlock (&svc_lock);
- + rwlock_wrunlock (&svc_lock);
- /* now register the information with the local binder service */
- if (nconf)
- {
- @@ -282,7 +283,7 @@ svc_unreg (prog, vers)
- mem_free (s->sc_netid, sizeof (s->sc_netid) + 1);
- mem_free (s, sizeof (struct svc_callout));
- }
- - rwlock_unlock (&svc_lock);
- + rwlock_wrunlock (&svc_lock);
- }
- /* ********************** CALLOUT list related stuff ************* */
- @@ -655,7 +656,7 @@ svc_getreq_common (int fd)
- rwlock_rdlock (&svc_fd_lock);
- xprt = __svc_xports[fd];
- - rwlock_unlock (&svc_fd_lock);
- + rwlock_rdunlock (&svc_fd_lock);
- if (xprt == NULL)
- /* But do we control sock? */
- return;
- @@ -719,10 +720,10 @@ svc_getreq_common (int fd)
- if (xprt != __svc_xports[fd])
- {
- - rwlock_unlock (&svc_fd_lock);
- + rwlock_rdunlock (&svc_fd_lock);
- break;
- }
- - rwlock_unlock (&svc_fd_lock);
- + rwlock_rdunlock (&svc_fd_lock);
- call_done:
- if ((stat = SVC_STAT (xprt)) == XPRT_DIED)
- {
- @@ -772,7 +773,7 @@ svc_getreq_poll (pfdp, pollretval)
- {
- rwlock_wrlock (&svc_fd_lock);
- FD_CLR (p->fd, &svc_fdset);
- - rwlock_unlock (&svc_fd_lock);
- + rwlock_wrunlock (&svc_fd_lock);
- }
- else
- svc_getreq_common (wintirpc_handle2fd(p->fd));
- diff --git a/libtirpc/src/svc_run.c b/libtirpc/src/svc_run.c
- index 842b5bf..a525a35 100644
- --- a/libtirpc/src/svc_run.c
- +++ b/libtirpc/src/svc_run.c
- @@ -56,7 +56,7 @@ svc_run()
- rwlock_rdlock(&svc_fd_lock);
- readfds = svc_fdset;
- cleanfds = svc_fdset;
- - rwlock_unlock(&svc_fd_lock);
- + rwlock_rdunlock(&svc_fd_lock);
- timeout.tv_sec = 30;
- timeout.tv_usec = 0;
- switch (select(svc_maxfd+1, &readfds, NULL, NULL, &timeout)) {
- @@ -87,5 +87,5 @@ svc_exit()
- rwlock_wrlock(&svc_fd_lock);
- FD_ZERO(&svc_fdset);
- - rwlock_unlock(&svc_fd_lock);
- + rwlock_wrunlock(&svc_fd_lock);
- }
- diff --git a/libtirpc/src/svc_vc.c b/libtirpc/src/svc_vc.c
- index 229844f..5fa88f5 100644
- --- a/libtirpc/src/svc_vc.c
- +++ b/libtirpc/src/svc_vc.c
- @@ -847,6 +847,6 @@ __svc_clean_idle(fd_set *fds, int timeout, bool_t cleanblock)
- __svc_vc_dodestroy(least_active);
- ncleaned++;
- }
- - rwlock_unlock(&svc_fd_lock);
- + rwlock_wrunlock(&svc_fd_lock);
- return ncleaned > 0 ? TRUE : FALSE;
- }
- diff --git a/libtirpc/tirpc/reentrant.h b/libtirpc/tirpc/reentrant.h
- index 0d48b82..afc09b0 100644
- --- a/libtirpc/tirpc/reentrant.h
- +++ b/libtirpc/tirpc/reentrant.h
- @@ -169,8 +169,8 @@
- #define rwlock_init(l, a) InitializeSRWLock(l)
- #define rwlock_rdlock(l) AcquireSRWLockShared(l)
- #define rwlock_wrlock(l) AcquireSRWLockExclusive(l)
- -/* XXX Code will have to be changed to release the right kind!!! XXX */
- -#define rwlock_unlock(l) ReleaseSRWLockExclusive(l)
- +#define rwlock_rdunlock(l) ReleaseSRWLockShared(l)
- +#define rwlock_wrunlock(l) ReleaseSRWLockExclusive(l)
- #define thr_keycreate(k, d) ((*k) = TlsAlloc())
- #define thr_keydelete(k) TlsFree(k)
- @@ -202,7 +202,8 @@
- #define rwlock_init(l, a) pthread_rwlock_init(l, a)
- #define rwlock_rdlock(l) pthread_rwlock_rdlock(l)
- #define rwlock_wrlock(l) pthread_rwlock_wrlock(l)
- -#define rwlock_unlock(l) pthread_rwlock_unlock(l)
- +#define rwlock_rdunlock(l) pthread_rwlock_unlock(l)
- +#define rwlock_wrunlock(l) pthread_rwlock_unlock(l)
- #define thr_keycreate(k, d) pthread_key_create(k, d)
- #define thr_keydelete(k) pthread_key_delete(k)
- --
- 2.45.1
- From 472d31676e42f2d51c6293c5140c05a8c65a9598 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 12:08:10 +0200
- Subject: [PATCH 03/11] libtirpc: Fix |SOCKET|+fd init+casting/compare warnings
- Fix |SOCKET|+fd init+casting/compare warnings
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- libtirpc/src/auth_time.c | 2 +-
- libtirpc/src/bindresvport.c | 2 +-
- libtirpc/src/clnt_bcast.c | 4 ++--
- libtirpc/src/clnt_dg.c | 2 +-
- libtirpc/src/clnt_generic.c | 2 +-
- libtirpc/src/clnt_vc.c | 4 ++--
- libtirpc/src/pmap_getmaps.c | 2 +-
- libtirpc/src/rtime.c | 2 +-
- libtirpc/src/svc.c | 6 +++---
- libtirpc/src/svc_vc.c | 2 +-
- libtirpc/src/wintirpc.c | 17 +++++++++++------
- libtirpc/tirpc/rpc/svc.h | 2 +-
- libtirpc/tirpc/wintirpc.h | 3 ++-
- 13 files changed, 28 insertions(+), 22 deletions(-)
- diff --git a/libtirpc/src/auth_time.c b/libtirpc/src/auth_time.c
- index bce1df4..854442b 100644
- --- a/libtirpc/src/auth_time.c
- +++ b/libtirpc/src/auth_time.c
- @@ -403,7 +403,7 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid)
- }
- do {
- FD_ZERO(&readfds);
- - FD_SET(_get_osfhandle(s), &readfds);
- + FD_SET(wintirpc_fd2sockethandle(s), &readfds);
- res = select(_rpc_dtablesize(), &readfds,
- (fd_set *)NULL, (fd_set *)NULL, &timeout);
- } while (res == (int)SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
- diff --git a/libtirpc/src/bindresvport.c b/libtirpc/src/bindresvport.c
- index d344c25..50e1669 100644
- --- a/libtirpc/src/bindresvport.c
- +++ b/libtirpc/src/bindresvport.c
- @@ -185,7 +185,7 @@ bindresvport_sa(int sd, struct sockaddr *sa)
- "bindresvport_sa_last_n=%d\n",
- sd, sa, bindresvport_sa_last_n));
- - sd_sock = _get_osfhandle(sd);
- + sd_sock = wintirpc_fd2sockethandle(sd);
- for (n = 0 ; n < NPORTS ; n++) {
- currport = ((n+bindresvport_sa_last_n)%NPORTS)+STARTPORT;
- diff --git a/libtirpc/src/clnt_bcast.c b/libtirpc/src/clnt_bcast.c
- index 411a3b2..9d6c13d 100644
- --- a/libtirpc/src/clnt_bcast.c
- +++ b/libtirpc/src/clnt_bcast.c
- @@ -355,13 +355,13 @@ rpc_broadcast_exp(prog, vers, proc, xargs, argsp, xresults, resultsp,
- continue;
- fd = wintirpc_socket(si.si_af, si.si_socktype, si.si_proto);
- - if (fd == INVALID_SOCKET) {
- + if (fd < 0) {
- stat = RPC_CANTSEND;
- continue;
- }
- fdlist[fdlistno].af = si.si_af;
- fdlist[fdlistno].proto = si.si_proto;
- - fdlist[fdlistno].fd_sock = _get_osfhandle(fd);
- + fdlist[fdlistno].fd_sock = wintirpc_fd2sockethandle(fd);
- fdlist[fdlistno].fd = fd;
- fdlist[fdlistno].nconf = nconf;
- fdlist[fdlistno].asize = __rpc_get_a_size(si.si_af);
- diff --git a/libtirpc/src/clnt_dg.c b/libtirpc/src/clnt_dg.c
- index 7b0c981..2af300a 100644
- --- a/libtirpc/src/clnt_dg.c
- +++ b/libtirpc/src/clnt_dg.c
- @@ -284,7 +284,7 @@ clnt_dg_create(fd, svcaddr, program, version, sendsz, recvsz)
- wintirpc_setsockopt(fd, SOL_IP, IP_RECVERR, &on, sizeof(on));
- }
- #endif
- - ioctlsocket(_get_osfhandle(fd), FIONBIO, &one);
- + ioctlsocket(wintirpc_fd2sockethandle(fd), FIONBIO, &one);
- /*
- * By default, closeit is always FALSE. It is users responsibility
- * to do a close on it, else the user may use clnt_control
- diff --git a/libtirpc/src/clnt_generic.c b/libtirpc/src/clnt_generic.c
- index a39df89..de087a2 100644
- --- a/libtirpc/src/clnt_generic.c
- +++ b/libtirpc/src/clnt_generic.c
- @@ -368,7 +368,7 @@ clnt_tli_create(const int fd_in, const struct netconfig *nconf,
- fd = __rpc_nconf2fd(nconf);
- - if (fd == INVALID_SOCKET)
- + if (fd == -1)
- goto err;
- #if 0
- if (fd < __rpc_minfd)
- diff --git a/libtirpc/src/clnt_vc.c b/libtirpc/src/clnt_vc.c
- index ddfdde5..858f7f3 100644
- --- a/libtirpc/src/clnt_vc.c
- +++ b/libtirpc/src/clnt_vc.c
- @@ -459,7 +459,7 @@ clnt_vc_create(fd, raddr, prog, vers, sendsz, recvsz, cb_xdr, cb_fn, cb_args)
- * XXX - fvdl connecting while holding a mutex?
- */
- slen = sizeof ss;
- - if (getpeername(_get_osfhandle(fd), (struct sockaddr *)&ss, &slen) == SOCKET_ERROR) {
- + if (getpeername(wintirpc_fd2sockethandle(fd), (struct sockaddr *)&ss, &slen) == SOCKET_ERROR) {
- errno = WSAGetLastError();
- if (errno != WSAENOTCONN) {
- rpc_createerr.cf_stat = RPC_SYSTEMERROR;
- @@ -1036,7 +1036,7 @@ read_vc(ctp, buf, len)
- if (len == 0)
- return (0);
- - fd.fd = _get_osfhandle(ct->ct_fd);
- + fd.fd = wintirpc_fd2sockethandle(ct->ct_fd);
- fd.events = POLLIN;
- for (;;) {
- switch (poll(&fd, 1, milliseconds)) {
- diff --git a/libtirpc/src/pmap_getmaps.c b/libtirpc/src/pmap_getmaps.c
- index daf9e74..1f7d8e2 100644
- --- a/libtirpc/src/pmap_getmaps.c
- +++ b/libtirpc/src/pmap_getmaps.c
- @@ -66,7 +66,7 @@ pmap_getmaps(address)
- struct sockaddr_in *address;
- {
- struct pmaplist *head = NULL;
- - int sock = INVALID_SOCKET;
- + int sock = -1;
- struct timeval minutetimeout;
- CLIENT *client;
- diff --git a/libtirpc/src/rtime.c b/libtirpc/src/rtime.c
- index beaf828..44c5c7b 100644
- --- a/libtirpc/src/rtime.c
- +++ b/libtirpc/src/rtime.c
- @@ -104,7 +104,7 @@ rtime(addrp, timep, timeout)
- }
- do {
- FD_ZERO(&readfds);
- - FD_SET(_get_osfhandle(s), &readfds);
- + FD_SET(wintirpc_fd2sockethandle(s), &readfds);
- res = select(_rpc_dtablesize(), &readfds,
- (fd_set *)NULL, (fd_set *)NULL, timeout);
- } while (res == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
- diff --git a/libtirpc/src/svc.c b/libtirpc/src/svc.c
- index 7d8fd1d..22e3746 100644
- --- a/libtirpc/src/svc.c
- +++ b/libtirpc/src/svc.c
- @@ -115,7 +115,7 @@ xprt_register (xprt)
- #ifndef _WIN32
- if (sock < FD_SETSIZE) {
- __svc_xports[sock] = xprt;
- - FD_SET(_get_osfhandle(sock), &svc_fdset);
- + FD_SET(wintirpc_fd2sockethandle(sock), &svc_fdset);
- svc_maxfd = max (svc_maxfd, sock);
- }
- #else
- @@ -156,7 +156,7 @@ bool_t dolock;
- rwlock_wrlock (&svc_fd_lock);
- if ((sock < FD_SETSIZE) && (__svc_xports[sock] == xprt)) {
- __svc_xports[sock] = NULL;
- - FD_CLR (_get_osfhandle(sock), &svc_fdset);
- + FD_CLR (wintirpc_fd2sockethandle(sock), &svc_fdset);
- if (sock >= svc_maxfd) {
- for (svc_maxfd--; svc_maxfd >= 0; svc_maxfd--)
- if (__svc_xports[svc_maxfd])
- @@ -776,7 +776,7 @@ svc_getreq_poll (pfdp, pollretval)
- rwlock_wrunlock (&svc_fd_lock);
- }
- else
- - svc_getreq_common (wintirpc_handle2fd(p->fd));
- + svc_getreq_common (wintirpc_sockethandle2fd(p->fd));
- }
- }
- }
- diff --git a/libtirpc/src/svc_vc.c b/libtirpc/src/svc_vc.c
- index 5fa88f5..6ce2748 100644
- --- a/libtirpc/src/svc_vc.c
- +++ b/libtirpc/src/svc_vc.c
- @@ -529,7 +529,7 @@ read_vc(xprtp, buf, len)
- do {
- #ifdef _WIN32
- - pollfd.fd = _get_osfhandle(sock);
- + pollfd.fd = wintirpc_fd2sockethandle(sock);
- #else
- pollfd.fd = sock;
- #endif
- diff --git a/libtirpc/src/wintirpc.c b/libtirpc/src/wintirpc.c
- index c2cc47a..836c321 100644
- --- a/libtirpc/src/wintirpc.c
- +++ b/libtirpc/src/wintirpc.c
- @@ -141,7 +141,7 @@ struct map_osfhandle_fd handle_fd_map[WINTIRPC_MAX_OSFHANDLE_FD_NHANDLE_VALUE];
- void wintirpc_register_osfhandle_fd(SOCKET handle, int fd)
- {
- assert(handle != 0);
- - assert(handle != SOCKET_ERROR);
- + assert(handle != (SOCKET)SOCKET_ERROR);
- assert(fd < WINTIRPC_MAX_OSFHANDLE_FD_NHANDLE_VALUE);
- handle_fd_map[fd].m_fd = fd;
- @@ -153,9 +153,9 @@ void wintirpc_unregister_osfhandle(SOCKET handle)
- int i;
- assert(handle != 0);
- - assert(handle != SOCKET_ERROR);
- + assert(handle != (SOCKET)SOCKET_ERROR);
- - if ((handle == 0) || (handle != SOCKET_ERROR))
- + if ((handle == 0) || (handle != (SOCKET)SOCKET_ERROR))
- return;
- for (i=0 ; i < WINTIRPC_MAX_OSFHANDLE_FD_NHANDLE_VALUE ; i++) {
- @@ -186,12 +186,12 @@ void wintirpc_unregister_osf_fd(int fd)
- (void)fprintf(stderr, "wintirpc_unregister_osf_fd: failed\n");
- }
- -int wintirpc_handle2fd(SOCKET handle)
- +int wintirpc_sockethandle2fd(SOCKET handle)
- {
- int i;
- assert(handle != 0);
- - assert(handle != SOCKET_ERROR);
- + assert(handle != (SOCKET)SOCKET_ERROR);
- for (i=0 ; i < WINTIRPC_MAX_OSFHANDLE_FD_NHANDLE_VALUE ; i++) {
- if ((handle_fd_map[i].m_s == handle) &&
- @@ -200,10 +200,15 @@ int wintirpc_handle2fd(SOCKET handle)
- }
- }
- - (void)fprintf(stderr, "wintirpc_handle2fd: failed\n");
- + (void)fprintf(stderr, "wintirpc_sockethandle2fd: failed\n");
- return -1;
- }
- +SOCKET wintirpc_fd2sockethandle(int fd)
- +{
- + return _get_osfhandle(fd);
- +}
- +
- int wintirpc_socket(int af, int type, int protocol)
- {
- SOCKET s;
- diff --git a/libtirpc/tirpc/rpc/svc.h b/libtirpc/tirpc/rpc/svc.h
- index c39c1dc..6f83fd5 100644
- --- a/libtirpc/tirpc/rpc/svc.h
- +++ b/libtirpc/tirpc/rpc/svc.h
- @@ -324,7 +324,7 @@ __END_DECLS
- /*
- * Socket to use on svcxxx_create call to get default socket
- */
- -#define RPC_ANYSOCK INVALID_SOCKET /* -1 */
- +#define RPC_ANYSOCK -1
- #define RPC_ANYFD RPC_ANYSOCK
- /*
- diff --git a/libtirpc/tirpc/wintirpc.h b/libtirpc/tirpc/wintirpc.h
- index d611b10..878bed0 100644
- --- a/libtirpc/tirpc/wintirpc.h
- +++ b/libtirpc/tirpc/wintirpc.h
- @@ -166,7 +166,8 @@ void wintirpc_warnx(const char *format, ...);
- void wintirpc_register_osfhandle_fd(SOCKET handle, int fd);
- void wintirpc_unregister_osfhandle(SOCKET handle);
- void wintirpc_unregister_osf_fd(int fd);
- -int wintirpc_handle2fd(SOCKET handle);
- +int wintirpc_sockethandle2fd(SOCKET handle);
- +SOCKET wintirpc_fd2sockethandle(int fd);
- /* Debugging function */
- void wintirpc_debug(char *fmt, ...);
- --
- 2.45.1
- From 01d621b6e8241b15138fbeeb480039aeab07097f Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 12:24:41 +0200
- Subject: [PATCH 04/11] libtirpc: Fix "warning : missing field 'x_control'
- initializer" warnings
- Fix "warning : missing field 'x_control' initializer" warnings.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- libtirpc/src/xdr_mem.c | 6 ++++--
- libtirpc/src/xdr_rec.c | 3 ++-
- libtirpc/src/xdr_stdio.c | 3 ++-
- 3 files changed, 8 insertions(+), 4 deletions(-)
- diff --git a/libtirpc/src/xdr_mem.c b/libtirpc/src/xdr_mem.c
- index 9a6c063..f2c6f30 100644
- --- a/libtirpc/src/xdr_mem.c
- +++ b/libtirpc/src/xdr_mem.c
- @@ -72,7 +72,8 @@ static const struct xdr_ops xdrmem_ops_aligned = {
- xdrmem_getpos,
- xdrmem_setpos,
- xdrmem_inline_aligned,
- - xdrmem_destroy
- + xdrmem_destroy,
- + NULL
- };
- static const struct xdr_ops xdrmem_ops_unaligned = {
- @@ -83,7 +84,8 @@ static const struct xdr_ops xdrmem_ops_unaligned = {
- xdrmem_getpos,
- xdrmem_setpos,
- xdrmem_inline_unaligned,
- - xdrmem_destroy
- + xdrmem_destroy,
- + NULL
- };
- /*
- diff --git a/libtirpc/src/xdr_rec.c b/libtirpc/src/xdr_rec.c
- index 19ac5a2..8dd34f8 100644
- --- a/libtirpc/src/xdr_rec.c
- +++ b/libtirpc/src/xdr_rec.c
- @@ -105,7 +105,8 @@ static const struct xdr_ops xdrrec_ops = {
- xdrrec_getpos,
- xdrrec_setpos,
- xdrrec_inline,
- - xdrrec_destroy
- + xdrrec_destroy,
- + NULL
- };
- /*
- diff --git a/libtirpc/src/xdr_stdio.c b/libtirpc/src/xdr_stdio.c
- index c129b2f..40bddfa 100644
- --- a/libtirpc/src/xdr_stdio.c
- +++ b/libtirpc/src/xdr_stdio.c
- @@ -67,7 +67,8 @@ static const struct xdr_ops xdrstdio_ops = {
- xdrstdio_getpos, /* get offset in the stream */
- xdrstdio_setpos, /* set offset in the stream */
- xdrstdio_inline, /* prime stream for inline macros */
- - xdrstdio_destroy /* destroy stream */
- + xdrstdio_destroy, /* destroy stream */
- + NULL /* control */
- };
- /*
- --
- 2.45.1
- From 98cec921dc8875568e5c7cffd858ef656124aa2b Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 12:33:38 +0200
- Subject: [PATCH 05/11] build.vc19: VC should load Debug/x64 by default on
- startup
- VC should load Debug/x64 by default on startup
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- build.vc19/nfs41-client.sln | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/build.vc19/nfs41-client.sln b/build.vc19/nfs41-client.sln
- index 5f4e109..b822b28 100644
- --- a/build.vc19/nfs41-client.sln
- +++ b/build.vc19/nfs41-client.sln
- @@ -20,10 +20,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtirpc", "libtirpc\libtir
- EndProject
- Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- - Debug|ARM = Debug|ARM
- - Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- + Debug|ARM = Debug|ARM
- + Debug|ARM64 = Debug|ARM64
- Release|ARM = Release|ARM
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- --
- 2.45.1
- From 60aad049d45b73f750eae32bbaf95ed01d39b1be Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 12:59:29 +0200
- Subject: [PATCH 06/11] daemon: Fix "warning : missing field 'value'
- initializer"
- Fix "warning : missing field 'value' initializer"
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/idmap.c | 52 ++++++++++++++++++++++++++++++++++++++++----------
- 1 file changed, 42 insertions(+), 10 deletions(-)
- diff --git a/daemon/idmap.c b/daemon/idmap.c
- index 4c8eda7..dd805e7 100644
- --- a/daemon/idmap.c
- +++ b/daemon/idmap.c
- @@ -1036,8 +1036,13 @@ int nfs41_idmap_name_to_uid(
- const char *username,
- uid_t *uid_out)
- {
- - struct idmap_lookup lookup = { ATTR_USER_NAME,
- - CLASS_USER, TYPE_STR, username_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_USER_NAME,
- + .klass = CLASS_USER,
- + .type = TYPE_STR,
- + .compare = username_cmp,
- + .value = NULL
- + };
- struct idmap_user user;
- int status;
- @@ -1066,8 +1071,13 @@ int nfs41_idmap_name_to_ids(
- uid_t *uid_out,
- gid_t *gid_out)
- {
- - struct idmap_lookup lookup = { ATTR_USER_NAME,
- - CLASS_USER, TYPE_STR, username_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_USER_NAME,
- + .klass = CLASS_USER,
- + .type = TYPE_STR,
- + .compare = username_cmp,
- + .value = NULL
- + };
- struct idmap_user user;
- int status;
- @@ -1109,7 +1119,13 @@ int nfs41_idmap_uid_to_name(
- char *name,
- size_t len)
- {
- - struct idmap_lookup lookup = { ATTR_UID, CLASS_USER, TYPE_INT, uid_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_UID,
- + .klass = CLASS_USER,
- + .type = TYPE_INT,
- + .compare = uid_cmp,
- + .value = NULL
- + };
- struct idmap_user user;
- int status;
- @@ -1153,8 +1169,13 @@ int nfs41_idmap_principal_to_ids(
- uid_t *uid_out,
- gid_t *gid_out)
- {
- - struct idmap_lookup lookup = { ATTR_PRINCIPAL,
- - CLASS_USER, TYPE_STR, principal_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_PRINCIPAL,
- + .klass = CLASS_USER,
- + .type = TYPE_STR,
- + .compare = principal_cmp,
- + .value = NULL
- + };
- struct idmap_user user;
- int status;
- @@ -1192,8 +1213,13 @@ int nfs41_idmap_group_to_gid(
- const char *name,
- gid_t *gid_out)
- {
- - struct idmap_lookup lookup = { ATTR_GROUP_NAME,
- - CLASS_GROUP, TYPE_STR, group_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_GROUP_NAME,
- + .klass = CLASS_GROUP,
- + .type = TYPE_STR,
- + .compare = group_cmp,
- + .value = NULL
- + };
- struct idmap_group group;
- int status;
- @@ -1231,7 +1257,13 @@ int nfs41_idmap_gid_to_group(
- char *name,
- size_t len)
- {
- - struct idmap_lookup lookup = { ATTR_GID, CLASS_GROUP, TYPE_INT, gid_cmp };
- + struct idmap_lookup lookup = {
- + .attr = ATTR_GID,
- + .klass = CLASS_GROUP,
- + .type = TYPE_INT,
- + .compare = gid_cmp,
- + .value = NULL
- + };
- struct idmap_group group;
- int status;
- --
- 2.45.1
- From 38acab747bdccb940e4bc848504d306311e74239 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 13:20:31 +0200
- Subject: [PATCH 07/11] daemon: Fix "warning : missing field 'x_ops'
- initializer"
- Fix "warning : missing field 'x_ops' initializer"
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/nfs41_xdr.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/daemon/nfs41_xdr.c b/daemon/nfs41_xdr.c
- index cadecad..78f7657 100644
- --- a/daemon/nfs41_xdr.c
- +++ b/daemon/nfs41_xdr.c
- @@ -335,7 +335,7 @@ static bool_t xdr_nfsacl41(
- void nfsacl41_free(nfsacl41 *acl)
- {
- - XDR xdr = { XDR_FREE };
- + XDR xdr = { .x_op = XDR_FREE };
- xdr_nfsacl41(&xdr, acl);
- }
- --
- 2.45.1
- From 6899c631e12083e5f25eb92b158fd7831160c4a1 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 13:39:48 +0200
- Subject: [PATCH 08/11] daemon: Add error messages to |switch()| cases which
- should never happen
- Add error messages to |switch()| cases which should never happen.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/callback_xdr.c | 4 ++++
- daemon/daemon_debug.c | 1 +
- daemon/nfs41_xdr.c | 8 ++++++++
- 3 files changed, 13 insertions(+)
- diff --git a/daemon/callback_xdr.c b/daemon/callback_xdr.c
- index 6703fc0..0aa47f4 100644
- --- a/daemon/callback_xdr.c
- +++ b/daemon/callback_xdr.c
- @@ -501,6 +501,10 @@ static bool_t op_cb_notify_deviceid_args(XDR *xdr, struct cb_notify_deviceid_arg
- free(args->change_list);
- case XDR_ENCODE:
- return TRUE;
- + default:
- + eprintf("op_cb_notify_deviceid_args: Unexpected xdr->x_op=%d\n",
- + (int)xdr->x_op);
- + break;
- }
- /* count the number of device changes */
- diff --git a/daemon/daemon_debug.c b/daemon/daemon_debug.c
- index f7e935c..fb155ed 100644
- --- a/daemon/daemon_debug.c
- +++ b/daemon/daemon_debug.c
- @@ -438,6 +438,7 @@ const char* opcode2string(nfs41_opcodes opcode)
- NFSOPCODE_TO_STRLITERAL(NFS41_VOLUME_QUERY)
- NFSOPCODE_TO_STRLITERAL(NFS41_ACL_QUERY)
- NFSOPCODE_TO_STRLITERAL(NFS41_ACL_SET)
- + default: break;
- }
- return "<unknown NFS41 opcode>";
- }
- diff --git a/daemon/nfs41_xdr.c b/daemon/nfs41_xdr.c
- index 78f7657..ad9305c 100644
- --- a/daemon/nfs41_xdr.c
- +++ b/daemon/nfs41_xdr.c
- @@ -3214,6 +3214,10 @@ static bool_t decode_op_getdeviceinfo(
- return xdr_u_int32_t(xdr, &ignored);
- }
- break;
- + default:
- + eprintf("decode_op_getdeviceinfo: Unexpected res->status=%d\n",
- + (int)res->status);
- + break;
- }
- return TRUE;
- }
- @@ -3474,6 +3478,10 @@ static bool_t decode_op_layoutget(
- return decode_layout_res_ok(xdr, res->u.res_ok);
- case NFS4ERR_LAYOUTTRYLATER:
- return xdr_bool(xdr, &res->u.will_signal_layout_avail);
- + default:
- + eprintf("decode_op_layoutget: Unexpected res->status=%d\n",
- + (int)res->status);
- + break;
- }
- return TRUE;
- }
- --
- 2.45.1
- From 03aa9d3252edde7b191ff06b202f601b9d0fc138 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 13:51:57 +0200
- Subject: [PATCH 09/11] daemon: Fix "warning : implicit conversion from
- enumeration type 'enum secinfo_no_name_type' to different enumeration type
- 'enum secinfo_noname_type"
- Fix "warning : implicit conversion from enumeration type
- 'enum secinfo_no_name_type' to different enumeration type
- 'enum secinfo_noname_type", which is actually just a spelling
- mistake s/noname/no_name/
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/nfs41_ops.c | 6 +++---
- daemon/nfs41_ops.h | 10 +++++-----
- daemon/nfs41_xdr.c | 6 +++---
- 3 files changed, 11 insertions(+), 11 deletions(-)
- diff --git a/daemon/nfs41_ops.c b/daemon/nfs41_ops.c
- index 5ef7e93..9aae94a 100644
- --- a/daemon/nfs41_ops.c
- +++ b/daemon/nfs41_ops.c
- @@ -1881,7 +1881,7 @@ int nfs41_secinfo(
- nfs41_putfh_args putfh_args;
- nfs41_putfh_res putfh_res;
- nfs41_secinfo_args secinfo_args;
- - nfs41_secinfo_noname_res secinfo_res;
- + nfs41_secinfo_no_name_res secinfo_res;
- compound_init(&compound, argops, resops, "secinfo");
- @@ -1928,8 +1928,8 @@ int nfs41_secinfo_noname(
- nfs41_sequence_res sequence_res;
- nfs41_putfh_args putfh_args;
- nfs41_putfh_res putfh_res;
- - nfs41_secinfo_noname_args noname_args;
- - nfs41_secinfo_noname_res noname_res;
- + nfs41_secinfo_no_name_args noname_args;
- + nfs41_secinfo_no_name_res noname_res;
- compound_init(&compound, argops, resops, "secinfo_no_name");
- diff --git a/daemon/nfs41_ops.h b/daemon/nfs41_ops.h
- index eec02f8..594eb34 100644
- --- a/daemon/nfs41_ops.h
- +++ b/daemon/nfs41_ops.h
- @@ -892,16 +892,16 @@ enum secinfo_no_name_type {
- SECINFO_STYLE4_PARENT = 1
- };
- -typedef struct __nfs41_secinfo_noname_args {
- - enum secinfo_noname_type type;
- -} nfs41_secinfo_noname_args;
- +typedef struct __nfs41_secinfo_no_name_args {
- + enum secinfo_no_name_type type;
- +} nfs41_secinfo_no_name_args;
- -typedef struct __nfs41_secinfo_noname_res {
- +typedef struct __nfs41_secinfo_no_name_res {
- uint32_t status;
- /* case NFS4_OK: */
- nfs41_secinfo_info *secinfo;
- uint32_t count;
- -} nfs41_secinfo_noname_res;
- +} nfs41_secinfo_no_name_res;
- /* LAYOUTGET */
- typedef struct __pnfs_layoutget_args {
- diff --git a/daemon/nfs41_xdr.c b/daemon/nfs41_xdr.c
- index ad9305c..d626615 100644
- --- a/daemon/nfs41_xdr.c
- +++ b/daemon/nfs41_xdr.c
- @@ -2956,7 +2956,7 @@ static bool_t encode_op_secinfo_noname(
- XDR *xdr,
- nfs_argop4 *argop)
- {
- - nfs41_secinfo_noname_args *args = (nfs41_secinfo_noname_args *)argop->arg;
- + nfs41_secinfo_no_name_args *args = (nfs41_secinfo_no_name_args *)argop->arg;
- if (unexpected_op(argop->op, OP_SECINFO_NO_NAME))
- return FALSE;
- @@ -2971,7 +2971,7 @@ static bool_t decode_op_secinfo_noname(
- XDR *xdr,
- nfs_resop4 *resop)
- {
- - nfs41_secinfo_noname_res *res = (nfs41_secinfo_noname_res *)resop->res;
- + nfs41_secinfo_no_name_res *res = (nfs41_secinfo_no_name_res *)resop->res;
- nfs41_secinfo_info *secinfo = res->secinfo;
- if (unexpected_op(resop->op, OP_SECINFO_NO_NAME))
- return FALSE;
- @@ -3008,7 +3008,7 @@ static bool_t decode_op_secinfo(
- XDR *xdr,
- nfs_resop4 *resop)
- {
- - nfs41_secinfo_noname_res *res = (nfs41_secinfo_noname_res *)resop->res;
- + nfs41_secinfo_no_name_res *res = (nfs41_secinfo_no_name_res *)resop->res;
- nfs41_secinfo_info *secinfo = res->secinfo;
- if (unexpected_op(resop->op, OP_SECINFO))
- --
- 2.45.1
- From 5d066011bd36659981d5570dfc8b3a0764540287 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 14:16:10 +0200
- Subject: [PATCH 10/11] cygwin: README.bintarball.txt: Admin should create
- subdir for install file download
- README.bintarball.txt: Admin should create subdir for install file
- download and installation.
- Reported-by: Martin Wege <martin.l.wege@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/README.bintarball.txt | 14 ++++++++++----
- 1 file changed, 10 insertions(+), 4 deletions(-)
- diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
- index 52b99a6..92f32f3 100644
- --- a/cygwin/README.bintarball.txt
- +++ b/cygwin/README.bintarball.txt
- @@ -146,9 +146,12 @@ echo %PROCESSOR_ARCHITECTURE%
- # ---- snip ----
- # Install Cygwin 64bit on Windows 64bit with packages required by "ms-nfs41-client"
- # (Windows NFSv4.1 client):
- -# 1. Get installer from https://cygwin.com/setup-x86_64.exe
- +# 1. Create subdir
- +mkdir download
- +cd download
- +# 2. Get installer from https://cygwin.com/setup-x86_64.exe
- curl --remote-name "https://www.cygwin.com/setup-x86_64.exe"
- -# 2. Run installer with these arguments:
- +# 3. Run installer with these arguments:
- setup-x86_64.exe -q --site "https://mirrors.kernel.org/sourceware/cygwin" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,bmake,git,dos2unix,unzip
- # ---- snip ----
- @@ -157,9 +160,12 @@ setup-x86_64.exe -q --site "https://mirrors.kernel.org/sourceware/cygwin" -P cyg
- # ---- snip ----
- # Install Cygwin 32bit on Windows 32bit with packages required by "ms-nfs41-client"
- # (Windows NFSv4.1 client):
- -# 1. Get installer from https://www.cygwin.com/setup-x86.exe
- +# 1. Create subdir
- +mkdir download
- +cd download
- +# 2. Get installer from https://www.cygwin.com/setup-x86.exe
- curl --remote-name "https://www.cygwin.com/setup-x86.exe"
- -# 2. Run installer with these arguments:
- +# 3. Run installer with these arguments:
- setup-x86.exe --allow-unsupported-windows -q --no-verify --site "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/2022/11/23/063457" -P cygwin,cygwin-devel,cygrunsrv,cygutils,cygutils-extra,bash,bzip2,coreutils,getent,gdb,grep,hostname,less,libiconv,libiconv2,pax,pbzip2,procps-ng,sed,tar,time,util-linux,wget,libnfs-utils,make,bmake,git,dos2unix,unzip
- # ---- snip ----
- --
- 2.45.1
- From 7d2934aa11a2aa2ead66ef4d3c0340544d86ceb5 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 28 Sep 2024 14:44:44 +0200
- Subject: [PATCH 11/11] daemon: Run workers with
- |THREAD_PRIORITY_TIME_CRITICAL| to avoid prio-inversion
- The nfsd daemon worker threads should run with
- |THREAD_PRIORITY_TIME_CRITICAL| priority to avoid priority inversion
- issues if a high-priority process using the NFSv4 filesystem steals
- CPU time from the NFSv4 filesystem daemon on very busy systems.
- This is considered not a big problem as worker threads
- spend most of their time waiting for the network or kernel
- threads anyway.
- Fixes build time issues with Cygwin/gcc parallel builds.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/nfs41_daemon.c | 13 +++++++++++++
- 1 file changed, 13 insertions(+)
- diff --git a/daemon/nfs41_daemon.c b/daemon/nfs41_daemon.c
- index a902852..ede4c58 100644
- --- a/daemon/nfs41_daemon.c
- +++ b/daemon/nfs41_daemon.c
- @@ -136,6 +136,19 @@ static unsigned int nfsd_worker_thread_main(void *args)
- DWORD inbuf_len = UPCALL_BUF_SIZE, outbuf_len;
- nfs41_upcall upcall;
- + /*
- + * Set |THREAD_PRIORITY_TIME_CRITICAL| to avoid that the daemon
- + * gets stomped by other processes, which might lead to some
- + * kind of priority inversion.
- + */
- + if (SetThreadPriority(GetCurrentThread(),
- + THREAD_PRIORITY_TIME_CRITICAL)) {
- + DPRINTF(1, ("Running as THREAD_PRIORITY_TIME_CRITICAL\n"));
- + }
- + else {
- + eprintf("Failed set THREAD_PRIORITY_TIME_CRITICAL\n");
- + }
- +
- pipe = CreateFileA(NFS41_USER_DEVICE_NAME_A, GENERIC_READ | GENERIC_WRITE,
- FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
- 0, NULL);
- --
- 2.45.1
msnfs41client: Patches for libtirpc&co compiler warnings, cleanup, prio-inversion+misc, 2024-09-28
Posted by Anonymous on Sat 28th Sep 2024 15:05
raw | new post
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.