net: ipv6: allow choosing optimistic addresses with use_optimistic
authorErik Kline <ek@google.com>
Fri, 5 Dec 2014 10:45:10 +0000 (19:45 +0900)
committerLorenzo Colitti <lorenzo@google.com>
Fri, 5 Dec 2014 12:41:18 +0000 (04:41 -0800)
The use_optimistic sysctl makes optimistic IPv6 addresses
equivalent to preferred addresses for source address selection
(e.g., when calling connect()), but it does not allow an
application to bind to optimistic addresses. This behaviour is
inconsistent - for example, it doesn't make sense for bind() to
an optimistic address fail with EADDRNOTAVAIL, but connect() to
choose that address outgoing address on the same socket.

Bug: 17769720
Bug: 18609055
Change-Id: I9de0d6c92ac45e29d28e318ac626c71806666f13
Signed-off-by: Erik Kline <ek@google.com>
Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
net/ipv6/addrconf.c

index e1381119a6d8412b955498dff3ddb593e8342d5a..165cee964e75073c73dfe3180f13cd74b388ff07 100644 (file)
@@ -1525,7 +1525,9 @@ int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
                if (!net_eq(dev_net(ifp->idev->dev), net))
                        continue;
                if (ipv6_addr_equal(&ifp->addr, addr) &&
-                   !(ifp->flags&IFA_F_TENTATIVE) &&
+                   (!(ifp->flags&IFA_F_TENTATIVE) ||
+                    (ipv6_use_optimistic_addr(ifp->idev) &&
+                     ifp->flags&IFA_F_OPTIMISTIC)) &&
                    (dev == NULL || ifp->idev->dev == dev ||
                     !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
                        rcu_read_unlock_bh();