]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ipv6: fix the check when handle RA
authorLi RongQing <roy.qing.li@gmail.com>
Thu, 10 Jul 2014 10:02:46 +0000 (18:02 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Jul 2014 23:56:33 +0000 (16:56 -0700)
d9333196572(ipv6:  Allow accepting RA from local IP addresses.) made the wrong
check, whether or not to accept RA with source-addr found on local machine, when
accept_ra_from_local is 0.

Fixes: d9333196572(ipv6: Allow accepting RA from local IP addresses.)
Cc: Ben Greear <greearb@candelatech.com>
Cc: Hannes Frederic Sowa <hannes@redhat.com>
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ndisc.c

index a845e3d2057ef2470e73792148b99d29135418fc..b7ece278dd492453a2c4f3b42559fc4deef1e429 100644 (file)
@@ -1151,9 +1151,9 @@ static void ndisc_router_discovery(struct sk_buff *skb)
        /* Do not accept RA with source-addr found on local machine unless
         * accept_ra_from_local is set to true.
         */
-       if (!(in6_dev->cnf.accept_ra_from_local ||
-             ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
-                           NULL, 0))) {
+       if (!in6_dev->cnf.accept_ra_from_local &&
+           ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
+                         NULL, 0)) {
                ND_PRINTK(2, info,
                          "RA from local address detected on dev: %s: default router ignored\n",
                          skb->dev->name);
@@ -1294,9 +1294,9 @@ skip_linkparms:
        }
 
 #ifdef CONFIG_IPV6_ROUTE_INFO
-       if (!(in6_dev->cnf.accept_ra_from_local ||
-             ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
-                           NULL, 0))) {
+       if (!in6_dev->cnf.accept_ra_from_local &&
+           ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
+                         NULL, 0)) {
                ND_PRINTK(2, info,
                          "RA from local address detected on dev: %s: router info ignored.\n",
                          skb->dev->name);