forked from rpms/rpcbind
186 lines
4.5 KiB
Diff
186 lines
4.5 KiB
Diff
diff --git a/src/pmap_svc.c b/src/pmap_svc.c
|
|
index 4c744fe..e926cdc 100644
|
|
--- a/src/pmap_svc.c
|
|
+++ b/src/pmap_svc.c
|
|
@@ -175,6 +175,7 @@ pmapproc_change(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt, unsigned long
|
|
long ans;
|
|
uid_t uid;
|
|
char uidbuf[32];
|
|
+ int rc = TRUE;
|
|
|
|
/*
|
|
* Can't use getpwnam here. We might end up calling ourselves
|
|
@@ -194,7 +195,8 @@ pmapproc_change(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt, unsigned long
|
|
|
|
if (!svc_getargs(xprt, (xdrproc_t) xdr_pmap, (char *)®)) {
|
|
svcerr_decode(xprt);
|
|
- return (FALSE);
|
|
+ rc = FALSE;
|
|
+ goto done;
|
|
}
|
|
#ifdef RPCBIND_DEBUG
|
|
if (debugging)
|
|
@@ -205,7 +207,8 @@ pmapproc_change(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt, unsigned long
|
|
|
|
if (!check_access(xprt, op, reg.pm_prog, PMAPVERS)) {
|
|
svcerr_weakauth(xprt);
|
|
- return (FALSE);
|
|
+ rc = (FALSE);
|
|
+ goto done;
|
|
}
|
|
|
|
rpcbreg.r_prog = reg.pm_prog;
|
|
@@ -258,7 +261,16 @@ done_change:
|
|
rpcbs_set(RPCBVERS_2_STAT, ans);
|
|
else
|
|
rpcbs_unset(RPCBVERS_2_STAT, ans);
|
|
- return (TRUE);
|
|
+done:
|
|
+ if (!svc_freeargs(xprt, (xdrproc_t) xdr_pmap, (char *)®)) {
|
|
+ if (debugging) {
|
|
+ (void) xlog(LOG_DEBUG, "unable to free arguments\n");
|
|
+ if (doabort) {
|
|
+ rpcbind_abort();
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return (rc);
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
@@ -272,15 +284,18 @@ pmapproc_getport(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt)
|
|
#ifdef RPCBIND_DEBUG
|
|
char *uaddr;
|
|
#endif
|
|
+ int rc = TRUE;
|
|
|
|
if (!svc_getargs(xprt, (xdrproc_t) xdr_pmap, (char *)®)) {
|
|
svcerr_decode(xprt);
|
|
- return (FALSE);
|
|
+ rc = FALSE;
|
|
+ goto done;
|
|
}
|
|
|
|
if (!check_access(xprt, PMAPPROC_GETPORT, reg.pm_prog, PMAPVERS)) {
|
|
svcerr_weakauth(xprt);
|
|
- return FALSE;
|
|
+ rc = FALSE;
|
|
+ goto done;
|
|
}
|
|
|
|
#ifdef RPCBIND_DEBUG
|
|
@@ -330,21 +345,34 @@ pmapproc_getport(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt)
|
|
pmap_ipprot2netid(reg.pm_prot) ?: "<unknown>",
|
|
port ? udptrans : "");
|
|
|
|
- return (TRUE);
|
|
+done:
|
|
+ if (!svc_freeargs(xprt, (xdrproc_t) xdr_pmap, (char *)®)) {
|
|
+ if (debugging) {
|
|
+ (void) xlog(LOG_DEBUG, "unable to free arguments\n");
|
|
+ if (doabort) {
|
|
+ rpcbind_abort();
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return (rc);
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
static bool_t
|
|
pmapproc_dump(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt)
|
|
{
|
|
+ int rc = TRUE;
|
|
+
|
|
if (!svc_getargs(xprt, (xdrproc_t)xdr_void, NULL)) {
|
|
svcerr_decode(xprt);
|
|
- return (FALSE);
|
|
+ rc = FALSE;
|
|
+ goto done;
|
|
}
|
|
|
|
if (!check_access(xprt, PMAPPROC_DUMP, 0, PMAPVERS)) {
|
|
svcerr_weakauth(xprt);
|
|
- return FALSE;
|
|
+ rc = FALSE;
|
|
+ goto done;
|
|
}
|
|
|
|
if ((!svc_sendreply(xprt, (xdrproc_t) xdr_pmaplist_ptr,
|
|
@@ -354,7 +382,17 @@ pmapproc_dump(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt)
|
|
rpcbind_abort();
|
|
}
|
|
}
|
|
- return (TRUE);
|
|
+
|
|
+done:
|
|
+ if (!svc_freeargs(xprt, (xdrproc_t) xdr_pmap, (char *)NULL)) {
|
|
+ if (debugging) {
|
|
+ (void) xlog(LOG_DEBUG, "unable to free arguments\n");
|
|
+ if (doabort) {
|
|
+ rpcbind_abort();
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return (rc);
|
|
}
|
|
|
|
int pmap_netid2ipprot(const char *netid)
|
|
diff --git a/src/rpcb_svc.c b/src/rpcb_svc.c
|
|
index 709e3fb..091f530 100644
|
|
--- a/src/rpcb_svc.c
|
|
+++ b/src/rpcb_svc.c
|
|
@@ -166,7 +166,7 @@ rpcb_service_3(struct svc_req *rqstp, SVCXPRT *transp)
|
|
svcerr_decode(transp);
|
|
if (debugging)
|
|
(void) xlog(LOG_DEBUG, "rpcbind: could not decode");
|
|
- return;
|
|
+ goto done;
|
|
}
|
|
|
|
if (rqstp->rq_proc == RPCBPROC_SET
|
|
diff --git a/src/rpcb_svc_4.c b/src/rpcb_svc_4.c
|
|
index 5094879..eebbbbe 100644
|
|
--- a/src/rpcb_svc_4.c
|
|
+++ b/src/rpcb_svc_4.c
|
|
@@ -218,7 +218,7 @@ rpcb_service_4(struct svc_req *rqstp, SVCXPRT *transp)
|
|
svcerr_decode(transp);
|
|
if (debugging)
|
|
(void) xlog(LOG_DEBUG, "rpcbind: could not decode\n");
|
|
- return;
|
|
+ goto done;
|
|
}
|
|
|
|
if (rqstp->rq_proc == RPCBPROC_SET
|
|
diff --git a/src/rpcb_svc_com.c b/src/rpcb_svc_com.c
|
|
index 5862c26..cb63afd 100644
|
|
--- a/src/rpcb_svc_com.c
|
|
+++ b/src/rpcb_svc_com.c
|
|
@@ -927,6 +927,14 @@ error:
|
|
if (call_msg.rm_xid != 0)
|
|
(void) free_slot_by_xid(call_msg.rm_xid);
|
|
out:
|
|
+ if (!svc_freeargs(transp, (xdrproc_t) xdr_rmtcall_args, (char *) &a)) {
|
|
+ if (debugging) {
|
|
+ (void) xlog(LOG_DEBUG, "unable to free arguments\n");
|
|
+ if (doabort) {
|
|
+ rpcbind_abort();
|
|
+ }
|
|
+ }
|
|
+ }
|
|
if (local_uaddr)
|
|
free(local_uaddr);
|
|
if (buf_alloc)
|
|
diff --git a/systemd/rpcbind.service.in b/systemd/rpcbind.service.in
|
|
index e7e86da..03a9e0b 100644
|
|
--- a/systemd/rpcbind.service.in
|
|
+++ b/systemd/rpcbind.service.in
|
|
@@ -2,6 +2,7 @@
|
|
Description=RPC Bind
|
|
Documentation=man:rpcbind(8)
|
|
DefaultDependencies=no
|
|
+RequiresMountsFor=@statedir@
|
|
|
|
# Make sure we use the IP addresses listed for
|
|
# rpcbind.socket, no matter how this unit is started.
|