aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorLorenzo Colitti <lorenzo@google.com>2013-03-03 20:46:46 +0000
committerJP Abgrall <jpa@google.com>2013-03-05 18:04:31 -0800
commita276def548828763cf5ac228adf8c1ca73f8d4d3 (patch)
tree2ddf6da8046d90d1694664db212203c5f87bd6d9 /net/ipv6
parent20f3d0b9f976b3fb24b93457737f4090f23720b1 (diff)
downloadkernel_samsung_tuna-a276def548828763cf5ac228adf8c1ca73f8d4d3.zip
kernel_samsung_tuna-a276def548828763cf5ac228adf8c1ca73f8d4d3.tar.gz
kernel_samsung_tuna-a276def548828763cf5ac228adf8c1ca73f8d4d3.tar.bz2
net: ipv6: Don't purge default router if accept_ra=2
Setting net.ipv6.conf.<interface>.accept_ra=2 causes the kernel to accept RAs even when forwarding is enabled. However, enabling forwarding purges all default routes on the system, breaking connectivity until the next RA is received. Fix this by not purging default routes on interfaces that have accept_ra=2. Signed-off-by: Lorenzo Colitti <lorenzo@google.com> Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/route.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index bbca50a..57ac863 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1886,7 +1886,8 @@ void rt6_purge_dflt_routers(struct net *net)
restart:
read_lock_bh(&table->tb6_lock);
for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
- if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
+ if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
+ (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
dst_hold(&rt->dst);
read_unlock_bh(&table->tb6_lock);
ip6_del_rt(rt);