]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ipv6: enable anycast addresses as source addresses for datagrams
authorFX Le Bail <fx.lebail@yahoo.com>
Wed, 22 Jan 2014 06:42:37 +0000 (07:42 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Jan 2014 05:57:05 +0000 (21:57 -0800)
This change allows to consider an anycast address valid as source address
when given via an IPV6_PKTINFO or IPV6_2292PKTINFO ancillary data item.
So, when sending a datagram with ancillary data, the unicast and anycast
addresses are handled in the same way.

- Adds ipv6_chk_acast_addr_src() to check if an anycast address is link-local
  on given interface or is global.
- Uses it in ip6_datagram_send_ctl().

Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/addrconf.h
net/ipv6/anycast.c
net/ipv6/datagram.c

index 66c4a44d8f5cb22a6a9aca1454d422775fc67034..50e39a8822b49ab5ce6b16b5e17c5e875e5d1abe 100644 (file)
@@ -205,8 +205,9 @@ void ipv6_sock_ac_close(struct sock *sk);
 int ipv6_dev_ac_inc(struct net_device *dev, const struct in6_addr *addr);
 int __ipv6_dev_ac_dec(struct inet6_dev *idev, const struct in6_addr *addr);
 bool ipv6_chk_acast_addr(struct net *net, struct net_device *dev,
-                               const struct in6_addr *addr);
-
+                        const struct in6_addr *addr);
+bool ipv6_chk_acast_addr_src(struct net *net, struct net_device *dev,
+                            const struct in6_addr *addr);
 
 /* Device notifier */
 int register_inet6addr_notifier(struct notifier_block *nb);
index 5a80f15a9de21e5b53be2087815c5c01abdbe582..2101832446896245e54b608bb24f27d83e42a005 100644 (file)
@@ -383,6 +383,17 @@ bool ipv6_chk_acast_addr(struct net *net, struct net_device *dev,
        return found;
 }
 
+/*     check if this anycast address is link-local on given interface or
+ *     is global
+ */
+bool ipv6_chk_acast_addr_src(struct net *net, struct net_device *dev,
+                            const struct in6_addr *addr)
+{
+       return ipv6_chk_acast_addr(net,
+                                  (ipv6_addr_type(addr) & IPV6_ADDR_LINKLOCAL ?
+                                   dev : NULL),
+                                  addr);
+}
 
 #ifdef CONFIG_PROC_FS
 struct ac6_iter_state {
index 2f5e2f154d2133a007baf154054522a2a66c17ad..c3bf2d2e519ea3ec86c07c43dffaff85fad80b5e 100644 (file)
@@ -699,7 +699,9 @@ int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
                                int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
                                if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
                                    !ipv6_chk_addr(net, &src_info->ipi6_addr,
-                                                  strict ? dev : NULL, 0))
+                                                  strict ? dev : NULL, 0) &&
+                                   !ipv6_chk_acast_addr_src(net, dev,
+                                                            &src_info->ipi6_addr))
                                        err = -EINVAL;
                                else
                                        fl6->saddr = src_info->ipi6_addr;