freebsd-dev/usr.sbin/rpc.statd
Ryan Stone 9745de4c2c When mountd is creating sockets, it iterates over all addresses specified
in the "hosts" array and eventually looks up the network address with
getaddrinfo(). At one point it checks for a numeric address and if it
sees one, it sets a hint parameter to force getaddrinfo to interpret the
host as a numeric address. However that hint is not cleared for subsequent
iterations of the loop and if any hosts seen after this point are host names,
getaddrinfo will fail on the name.  The result of this bug is that you cannot
pass a host name to the -h flag.

Unfortunately, the first iteration will either process ::1 or 127.0.0.1,
so the flag is set on the first iteration and all host names will fail
to be processed.

The same bug applies to rpc.lockd and rpc.statd, so fix them too.

Differential Revision:	https://reviews.freebsd.org/D1507
Reported by:	Dylan Martin
MFC after:	1 week
Sponsored by:	Sandvine Inc.
2015-01-19 00:33:32 +00:00
..
file.c
Makefile Convert usr.sbin to LIBADD 2014-11-25 16:57:27 +00:00
procs.c
rpc.statd.8 multiple: Remove 3rd clause from BSD license where approved by the 2014-03-14 03:07:51 +00:00
statd.c When mountd is creating sockets, it iterates over all addresses specified 2015-01-19 00:33:32 +00:00
statd.h
test.c