]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
net: Allow binding of unspecified address without address existance
authorRoy Marples <roy@marples.name>
Wed, 20 Oct 2021 15:47:29 +0000 (11:47 -0400)
committerEd Maste <emaste@FreeBSD.org>
Wed, 20 Oct 2021 23:25:51 +0000 (19:25 -0400)
commit5c5340108e9c2e384ca646720e17d037c69acc4c
treecd25d4c81143e5a36dc47f67f2f948b36be7aaf9
parentf83288645cd9726c24ca67292fbc3abb4eb65a36
net: Allow binding of unspecified address without address existance

Previously in_pcbbind_setup returned EADDRNOTAVAIL for empty
V_in_ifaddrhead (i.e., no IPv4 addresses configured) and in6_pcbbind
did the same for empty V_in6_ifaddrhead (no IPv6 addresses).

An equivalent test has existed since 4.4-Lite.  It was presumably done
to avoid extra work (assuming the address isn't going to be found
later).

In normal system operation *_ifaddrhead will not be empty: they will
at least have the loopback address(es).  In practice no work will be
avoided.

Further, this case caused net/dhcpd to fail when run early in boot
before assignment of any addresses.  It should be possible to bind the
unspecified address even if no addresses have been configured yet, so
just remove the tests.

The now-removed "XXX broken" comments were added in 59562606b9d3,
which converted the ifaddr lists to TAILQs.  As far as I (emaste) can
tell the brokenness is the issue described above, not some aspect of
the TAILQ conversion.

PR: 253166
Reviewed by: ae, bz, donner, emaste, glebius
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D32563
sys/netinet/in_pcb.c
sys/netinet6/in6_pcb.c