]> git.baikalelectronics.ru Git - kernel.git/commit
net: ipv6: Fixup device for anycast routes during copy
authorDavid Ahern <dsahern@gmail.com>
Tue, 21 Nov 2017 15:08:57 +0000 (07:08 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Nov 2017 16:34:52 +0000 (01:34 +0900)
commitfab265f0c838e3629808c5b67986439425fd21ec
treeffb4ddb83e8919f7ec2dfe4750d754dd09f4152d
parent05f7ed33510453aaced363582e29907a2f5a237c
net: ipv6: Fixup device for anycast routes during copy

Florian reported a breakage with anycast routes due to commit
1ad23e7d336a ("net: ipv6: put host and anycast routes on device with
address"). Prior to this commit anycast routes were added against the
loopback device causing repetitive route entries with no insight into
why they existed. e.g.:
  $ ip -6 ro ls  table local type anycast
  anycast 2001:db8:1:: dev lo proto kernel metric 0 pref medium
  anycast 2001:db8:2:: dev lo proto kernel metric 0 pref medium
  anycast fe80:: dev lo proto kernel metric 0 pref medium
  anycast fe80:: dev lo proto kernel metric 0 pref medium

The point of commit 1ad23e7d336a is to add the routes using the device
with the address which is causing the route to be added. e.g.,:
  $ ip -6 ro ls  table local type anycast
  anycast 2001:db8:1:: dev eth1 proto kernel metric 0 pref medium
  anycast 2001:db8:2:: dev eth2 proto kernel metric 0 pref medium
  anycast fe80:: dev eth2 proto kernel metric 0 pref medium
  anycast fe80:: dev eth1 proto kernel metric 0 pref medium

For traffic to work as it did before, the dst device needs to be switched
to the loopback when the copy is created similar to local routes.

Fixes: 1ad23e7d336a ("net: ipv6: put host and anycast routes on device with address")
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/route.c