summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMike Manning <mmanning@brocade.com>2017-09-04 15:52:55 +0100
committerDavid S. Miller <davem@davemloft.net>2017-09-19 16:42:09 -0700
commit6819a14ecbe2e089e5c5bb74edecafdde2028a00 (patch)
tree9d249de8b5e5a688c48ce999a75fda7b9a824e13 /net
parent7c30013133964aaa2f45c17d6e9782ac6cfd7f5f (diff)
downloadlinux-0-day-6819a14ecbe2e089e5c5bb74edecafdde2028a00.tar.gz
linux-0-day-6819a14ecbe2e089e5c5bb74edecafdde2028a00.tar.xz
net: ipv6: fix regression of no RTM_DELADDR sent after DAD failure
Commit f784ad3d79e5 ("ipv6: do not send RTM_DELADDR for tentative addresses") incorrectly assumes that no RTM_NEWADDR are sent for addresses in tentative state, as this does happen for the standard IPv6 use-case of DAD failure, see the call to ipv6_ifa_notify() in addconf_dad_stop(). So as a result of this change, no RTM_DELADDR is sent after DAD failure for a link-local when strict DAD (accept_dad=2) is configured, or on the next admin down in other cases. The absence of this notification breaks backwards compatibility and causes problems after DAD failure if this notification was being relied on. The solution is to allow RTM_DELADDR to still be sent after DAD failure. Fixes: f784ad3d79e5 ("ipv6: do not send RTM_DELADDR for tentative addresses") Signed-off-by: Mike Manning <mmanning@brocade.com> Cc: Mahesh Bandewar <maheshb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv6/addrconf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index c2e2a78787ec9..d7dbcc8eda100 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -4940,9 +4940,10 @@ static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
/* Don't send DELADDR notification for TENTATIVE address,
* since NEWADDR notification is sent only after removing
- * TENTATIVE flag.
+ * TENTATIVE flag, if DAD has not failed.
*/
- if (ifa->flags & IFA_F_TENTATIVE && event == RTM_DELADDR)
+ if (ifa->flags & IFA_F_TENTATIVE && !(ifa->flags & IFA_F_DADFAILED) &&
+ event == RTM_DELADDR)
return;
skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);