diff mbox series

[net] net: ipv6: Fixup device for anycast routes during copy

Message ID 20171121150857.9764-1-dsahern@gmail.com
State Accepted, archived
Delegated to: David Miller
Headers show
Series [net] net: ipv6: Fixup device for anycast routes during copy | expand

Commit Message

David Ahern Nov. 21, 2017, 3:08 p.m. UTC
Florian reported a breakage with anycast routes due to commit
4832c30d5458 ("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 4832c30d5458 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: 4832c30d5458 ("net: ipv6: put host and anycast routes on device with address")
Signed-off-by: David Ahern <dsahern@gmail.com>
---
 net/ipv6/route.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller Nov. 23, 2017, 4:35 p.m. UTC | #1
From: David Ahern <dsahern@gmail.com>
Date: Tue, 21 Nov 2017 07:08:57 -0800

> Florian reported a breakage with anycast routes due to commit
> 4832c30d5458 ("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 4832c30d5458 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: 4832c30d5458 ("net: ipv6: put host and anycast routes on device with address")
> Signed-off-by: David Ahern <dsahern@gmail.com>

Applied and queued up for -stable, thanks!
diff mbox series

Patch

diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 05eb7bc36156..1c29d9bcedc3 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1019,7 +1019,7 @@  static struct net_device *ip6_rt_get_dev_rcu(struct rt6_info *rt)
 {
 	struct net_device *dev = rt->dst.dev;
 
-	if (rt->rt6i_flags & RTF_LOCAL) {
+	if (rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) {
 		/* for copies of local routes, dst->dev needs to be the
 		 * device if it is a master device, the master device if
 		 * device is enslaved, and the loopback as the default