summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc/svc_generic.c
diff options
context:
space:
mode:
authorzml <zml@FreeBSD.org>2009-05-27 17:02:15 +0000
committerzml <zml@FreeBSD.org>2009-05-27 17:02:15 +0000
commitf56e53b0d75e50ab9afcdd3e9ea538a6424d5ce7 (patch)
treeee9529f9139414030dbbdf01c5c0b142baa43fc9 /lib/libc/rpc/svc_generic.c
parent8adb24b1afca95806f41c172c2ebe8af16123122 (diff)
downloadFreeBSD-src-f56e53b0d75e50ab9afcdd3e9ea538a6424d5ce7.zip
FreeBSD-src-f56e53b0d75e50ab9afcdd3e9ea538a6424d5ce7.tar.gz
Handle UDP RPC replies correctly on a multi-homed system, in userland RPC. Corrects an issue with mountd replies to OS X.
Approved by: dfr (mentor)
Diffstat (limited to 'lib/libc/rpc/svc_generic.c')
-rw-r--r--lib/libc/rpc/svc_generic.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libc/rpc/svc_generic.c b/lib/libc/rpc/svc_generic.c
index 7f6cfb8..574994d 100644
--- a/lib/libc/rpc/svc_generic.c
+++ b/lib/libc/rpc/svc_generic.c
@@ -199,6 +199,7 @@ svc_tli_create(fd, nconf, bindaddr, sendsz, recvsz)
struct __rpc_sockinfo si;
struct sockaddr_storage ss;
socklen_t slen;
+ static const uint32_t true_value = 1;
if (fd == RPC_ANYFD) {
if (nconf == NULL) {
@@ -225,6 +226,14 @@ svc_tli_create(fd, nconf, bindaddr, sendsz, recvsz)
}
}
+ if (si.si_af == AF_INET && si.si_socktype == SOCK_DGRAM) {
+ if (_setsockopt(fd, IPPROTO_IP, IP_RECVDSTADDR,
+ &true_value, sizeof(true_value))) {
+ warnx("svc_tli_create: cannot set IP_RECVDSTADDR");
+ return (NULL);
+ }
+ }
+
/*
* If the fd is unbound, try to bind it.
*/
OpenPOWER on IntegriCloud