summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-12-30 14:46:33 +0000
committerpeter <peter@FreeBSD.org>1996-12-30 14:46:33 +0000
commit4957bf5444f103128119b9052f7b1ab5c5521c7f (patch)
tree7fd8a5a33056345ddbcbe0196b92bda6c8bd72ea /lib/libc
parent30d1c281b24cc9a36e9f595aac7cba6fe6f074f6 (diff)
downloadFreeBSD-src-4957bf5444f103128119b9052f7b1ab5c5521c7f.zip
FreeBSD-src-4957bf5444f103128119b9052f7b1ab5c5521c7f.tar.gz
- don't close unopen socket
- ensure we're not spoofed/confused while trying to talk to the portmapper - handle new get_myaddress failure cases - prototype now in include file Obtained from: a diff of FreeBSD vs. OpenBSD/NetBSD rpc code.
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/rpc/pmap_clnt.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/lib/libc/rpc/pmap_clnt.c b/lib/libc/rpc/pmap_clnt.c
index f109679..c3d69e9 100644
--- a/lib/libc/rpc/pmap_clnt.c
+++ b/lib/libc/rpc/pmap_clnt.c
@@ -30,7 +30,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)pmap_clnt.c 1.37 87/08/11 Copyr 1984 Sun Micro";*/
/*static char *sccsid = "from: @(#)pmap_clnt.c 2.2 88/08/01 4.0 RPCSRC";*/
-static char *rcsid = "$Id: pmap_clnt.c,v 1.3 1995/10/22 14:51:28 phk Exp $";
+static char *rcsid = "$Id: pmap_clnt.c,v 1.4 1996/06/08 22:54:54 jraynard Exp $";
#endif
/*
@@ -44,8 +44,7 @@ static char *rcsid = "$Id: pmap_clnt.c,v 1.3 1995/10/22 14:51:28 phk Exp $";
#include <rpc/rpc.h>
#include <rpc/pmap_prot.h>
#include <rpc/pmap_clnt.h>
-
-void get_myaddress(struct sockaddr_in *);
+#include <netinet/in.h>
static struct timeval timeout = { 5, 0 };
static struct timeval tottimeout = { 60, 0 };
@@ -70,7 +69,9 @@ pmap_set(program, version, protocol, port)
struct pmap parms;
bool_t rslt;
- get_myaddress(&myaddress);
+ if (get_myaddress(&myaddress) != 0)
+ return (FALSE);
+ myaddress.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
client = clntudp_bufcreate(&myaddress, PMAPPROG, PMAPVERS,
timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
if (client == (CLIENT *)NULL)
@@ -85,7 +86,8 @@ pmap_set(program, version, protocol, port)
return (FALSE);
}
CLNT_DESTROY(client);
- (void)close(socket);
+ if (socket != -1)
+ (void)close(socket);
return (rslt);
}
@@ -104,7 +106,9 @@ pmap_unset(program, version)
struct pmap parms;
bool_t rslt;
- get_myaddress(&myaddress);
+ if (get_myaddress(&myaddress) != 0)
+ return (FALSE);
+ myaddress.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
client = clntudp_bufcreate(&myaddress, PMAPPROG, PMAPVERS,
timeout, &socket, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
if (client == (CLIENT *)NULL)
@@ -115,6 +119,7 @@ pmap_unset(program, version)
CLNT_CALL(client, PMAPPROC_UNSET, xdr_pmap, &parms, xdr_bool, &rslt,
tottimeout);
CLNT_DESTROY(client);
- (void)close(socket);
+ if (socket != -1)
+ (void)close(socket);
return (rslt);
}
OpenPOWER on IntegriCloud