Dirk Mueller
1abcad9219
- Add 0006-don-t-use-svc_fdset.patch: don't use the svc_fdset interface for libtirpc, which is limited to 1024 connections. - Sync with current git: - Replace 0002-revert-auth.patch with 0002-handle_reply-Don-t-use-the-xp_auth-pointer-directly.patch - Add 0003-Delete-the-unix-socket-only-if-we-have-created-it.patch to fix problems with activation via sockets by systemd - Replace 0032-CVE-2015-7236.patch with 0004-Fix-memory-corruption-in-PMAP_CALLIT-code.patch - Add 0005-security.c-removed-warning.patch to fix compiler warnings - Temporary remove 099-poll.patch - Disable 0030-systemd-fix-rmtcall.patch, needs the other disabled patches. - Submit for SLE12SP2 [FATE#320393] - Add patch 0032-CVE-2015-7236.patch to fix a segfault on certain remote scans [CVE-2015-7236, bsc#940191, bsc#946204] - Document how to restrict addresses that rpcbind will listen on [bsc#935102] Added 0031-rpcbind-manpage.patch - Add patch 0030-systemd-fix-rmtcall.patch to fix rmtcall forwarding (bnc#932423) OBS-URL: https://build.opensuse.org/request/show/360882 OBS-URL: https://build.opensuse.org/package/show/network/rpcbind?expand=0&rev=58
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From 9194122389f2a56b1cd1f935e64307e2e963c2da Mon Sep 17 00:00:00 2001
|
|
From: Steve Dickson <steved@redhat.com>
|
|
Date: Mon, 2 Nov 2015 17:05:18 -0500
|
|
Subject: [PATCH 3/4] handle_reply: Don't use the xp_auth pointer directly
|
|
|
|
In the latest libtirpc version to access the xp_auth
|
|
one must use the SVC_XP_AUTH macro. To be backwards
|
|
compatible a couple ifdefs were added to use the
|
|
macro when it exists.
|
|
|
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
|
---
|
|
src/rpcb_svc_com.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/src/rpcb_svc_com.c b/src/rpcb_svc_com.c
|
|
index 4ae93f1..22d6c84 100644
|
|
--- a/src/rpcb_svc_com.c
|
|
+++ b/src/rpcb_svc_com.c
|
|
@@ -1295,10 +1295,17 @@ handle_reply(int fd, SVCXPRT *xprt)
|
|
a.rmt_localvers = fi->versnum;
|
|
|
|
xprt_set_caller(xprt, fi);
|
|
+#if defined(SVC_XP_AUTH)
|
|
+ SVC_XP_AUTH(xprt) = svc_auth_none;
|
|
+#else
|
|
xprt->xp_auth = &svc_auth_none;
|
|
+#endif
|
|
svc_sendreply(xprt, (xdrproc_t) xdr_rmtcall_result, (char *) &a);
|
|
+#if !defined(SVC_XP_AUTH)
|
|
SVCAUTH_DESTROY(xprt->xp_auth);
|
|
xprt->xp_auth = NULL;
|
|
+#endif
|
|
+
|
|
done:
|
|
if (buffer)
|
|
free(buffer);
|
|
--
|
|
1.8.5.6
|
|
|