diff options
author | asomers <asomers@FreeBSD.org> | 2014-06-06 17:42:55 +0000 |
---|---|---|
committer | asomers <asomers@FreeBSD.org> | 2014-06-06 17:42:55 +0000 |
commit | a03c4d3869334f3d51152ee2d90066a1912afa22 (patch) | |
tree | bca9e734b3894cb019136e52fb43262294aee20a /sys/netinet/in.c | |
parent | 83925746a3e67ab79613b86ee4d2703eaa191e19 (diff) | |
download | FreeBSD-src-a03c4d3869334f3d51152ee2d90066a1912afa22.zip FreeBSD-src-a03c4d3869334f3d51152ee2d90066a1912afa22.tar.gz |
MFC r263779
Correct ARP update handling when the routes for network interfaces are
restricted to a single FIB in a multifib system.
Restricting an interface's routes to the FIB to which it is assigned (by
setting net.add_addr_allfibs=0) causes ARP updates to fail with "arpresolve:
can't allocate llinfo for x.x.x.x". This is due to the ARP update code hard
coding it's lookup for existing routing entries to FIB 0.
sys/netinet/in.c:
When dealing with RTM_ADD (add route) requests for an interface, use
the interface's assigned FIB instead of the default (FIB 0).
sys/netinet/if_ether.c:
In arpresolve(), enhance error message generated when an
lla_lookup() fails so that the interface causing the error is
visible in logs.
tests/sys/netinet/fibs_test.sh
Clear ATF expected error.
Diffstat (limited to 'sys/netinet/in.c')
-rw-r--r-- | sys/netinet/in.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/in.c b/sys/netinet/in.c index ead30f7..68751c3 100644 --- a/sys/netinet/in.c +++ b/sys/netinet/in.c @@ -1303,8 +1303,9 @@ in_lltable_rtcheck(struct ifnet *ifp, u_int flags, const struct sockaddr *l3addr KASSERT(l3addr->sa_family == AF_INET, ("sin_family %d", l3addr->sa_family)); - /* XXX rtalloc1 should take a const param */ - rt = rtalloc1(__DECONST(struct sockaddr *, l3addr), 0, 0); + /* XXX rtalloc1_fib should take a const param */ + rt = rtalloc1_fib(__DECONST(struct sockaddr *, l3addr), 0, 0, + ifp->if_fib); if (rt == NULL) return (EINVAL); |