diff options
author | zml <zml@FreeBSD.org> | 2009-05-27 17:02:15 +0000 |
---|---|---|
committer | zml <zml@FreeBSD.org> | 2009-05-27 17:02:15 +0000 |
commit | f56e53b0d75e50ab9afcdd3e9ea538a6424d5ce7 (patch) | |
tree | ee9529f9139414030dbbdf01c5c0b142baa43fc9 /lib/libc/rpc/svc_generic.c | |
parent | 8adb24b1afca95806f41c172c2ebe8af16123122 (diff) | |
download | FreeBSD-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.c | 9 |
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. */ |