2 * Anycast support for IPv6
3 * Linux INET6 implementation
6 * David L Stevens (dlstevens@us.ibm.com)
8 * based heavily on net/ipv6/mcast.c
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/capability.h>
17 #include <linux/module.h>
18 #include <linux/errno.h>
19 #include <linux/types.h>
20 #include <linux/random.h>
21 #include <linux/string.h>
22 #include <linux/socket.h>
23 #include <linux/sockios.h>
24 #include <linux/net.h>
25 #include <linux/in6.h>
26 #include <linux/netdevice.h>
27 #include <linux/if_arp.h>
28 #include <linux/route.h>
29 #include <linux/init.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
33 #include <net/net_namespace.h>
38 #include <net/protocol.h>
39 #include <net/if_inet6.h>
40 #include <net/ndisc.h>
41 #include <net/addrconf.h>
42 #include <net/ip6_route.h>
44 #include <net/checksum.h>
46 static int ipv6_dev_ac_dec(struct net_device *dev, struct in6_addr *addr);
48 /* Big ac list lock for all the sockets */
49 static DEFINE_RWLOCK(ipv6_sk_ac_lock);
52 ip6_onlink(struct in6_addr *addr, struct net_device *dev)
54 struct inet6_dev *idev;
55 struct inet6_ifaddr *ifa;
60 idev = __in6_dev_get(dev);
62 read_lock_bh(&idev->lock);
63 for (ifa=idev->addr_list; ifa; ifa=ifa->if_next) {
64 onlink = ipv6_prefix_equal(addr, &ifa->addr,
69 read_unlock_bh(&idev->lock);
76 * socket join an anycast group
79 int ipv6_sock_ac_join(struct sock *sk, int ifindex, struct in6_addr *addr)
81 struct ipv6_pinfo *np = inet6_sk(sk);
82 struct net_device *dev = NULL;
83 struct inet6_dev *idev;
84 struct ipv6_ac_socklist *pac;
85 int ishost = !ipv6_devconf.forwarding;
88 if (!capable(CAP_NET_ADMIN))
90 if (ipv6_addr_is_multicast(addr))
92 if (ipv6_chk_addr(&init_net, addr, NULL, 0))
95 pac = sock_kmalloc(sk, sizeof(struct ipv6_ac_socklist), GFP_KERNEL);
99 ipv6_addr_copy(&pac->acl_addr, addr);
104 rt = rt6_lookup(addr, NULL, 0, 0);
108 dst_release(&rt->u.dst);
110 err = -EADDRNOTAVAIL;
113 /* router, no matching interface: just pick one */
115 dev = dev_get_by_flags(&init_net, IFF_UP, IFF_UP|IFF_LOOPBACK);
118 dev = dev_get_by_index(&init_net, ifindex);
125 idev = in6_dev_get(dev);
130 err = -EADDRNOTAVAIL;
133 /* reset ishost, now that we have a specific device */
134 ishost = !idev->cnf.forwarding;
137 pac->acl_ifindex = dev->ifindex;
140 * For hosts, allow link-local or matching prefix anycasts.
141 * This obviates the need for propagating anycast routes while
142 * still allowing some non-router anycast participation.
144 if (!ip6_onlink(addr, dev)) {
146 err = -EADDRNOTAVAIL;
151 err = ipv6_dev_ac_inc(dev, addr);
155 write_lock_bh(&ipv6_sk_ac_lock);
156 pac->acl_next = np->ipv6_ac_list;
157 np->ipv6_ac_list = pac;
158 write_unlock_bh(&ipv6_sk_ac_lock);
167 sock_kfree_s(sk, pac, sizeof(*pac));
172 * socket leave an anycast group
174 int ipv6_sock_ac_drop(struct sock *sk, int ifindex, struct in6_addr *addr)
176 struct ipv6_pinfo *np = inet6_sk(sk);
177 struct net_device *dev;
178 struct ipv6_ac_socklist *pac, *prev_pac;
180 write_lock_bh(&ipv6_sk_ac_lock);
182 for (pac = np->ipv6_ac_list; pac; pac = pac->acl_next) {
183 if ((ifindex == 0 || pac->acl_ifindex == ifindex) &&
184 ipv6_addr_equal(&pac->acl_addr, addr))
189 write_unlock_bh(&ipv6_sk_ac_lock);
193 prev_pac->acl_next = pac->acl_next;
195 np->ipv6_ac_list = pac->acl_next;
197 write_unlock_bh(&ipv6_sk_ac_lock);
199 dev = dev_get_by_index(&init_net, pac->acl_ifindex);
201 ipv6_dev_ac_dec(dev, &pac->acl_addr);
204 sock_kfree_s(sk, pac, sizeof(*pac));
208 void ipv6_sock_ac_close(struct sock *sk)
210 struct ipv6_pinfo *np = inet6_sk(sk);
211 struct net_device *dev = NULL;
212 struct ipv6_ac_socklist *pac;
215 write_lock_bh(&ipv6_sk_ac_lock);
216 pac = np->ipv6_ac_list;
217 np->ipv6_ac_list = NULL;
218 write_unlock_bh(&ipv6_sk_ac_lock);
222 struct ipv6_ac_socklist *next = pac->acl_next;
224 if (pac->acl_ifindex != prev_index) {
227 dev = dev_get_by_index(&init_net, pac->acl_ifindex);
228 prev_index = pac->acl_ifindex;
231 ipv6_dev_ac_dec(dev, &pac->acl_addr);
232 sock_kfree_s(sk, pac, sizeof(*pac));
240 /* The function is not used, which is funny. Apparently, author
241 * supposed to use it to filter out datagrams inside udp/raw but forgot.
243 * It is OK, anycasts are not special comparing to delivery to unicasts.
246 int inet6_ac_check(struct sock *sk, struct in6_addr *addr, int ifindex)
248 struct ipv6_ac_socklist *pac;
249 struct ipv6_pinfo *np = inet6_sk(sk);
253 read_lock(&ipv6_sk_ac_lock);
254 for (pac=np->ipv6_ac_list; pac; pac=pac->acl_next) {
255 if (ifindex && pac->acl_ifindex != ifindex)
257 found = ipv6_addr_equal(&pac->acl_addr, addr);
261 read_unlock(&ipv6_sk_ac_lock);
268 static void aca_put(struct ifacaddr6 *ac)
270 if (atomic_dec_and_test(&ac->aca_refcnt)) {
271 in6_dev_put(ac->aca_idev);
272 dst_release(&ac->aca_rt->u.dst);
278 * device anycast group inc (add if not found)
280 int ipv6_dev_ac_inc(struct net_device *dev, struct in6_addr *addr)
282 struct ifacaddr6 *aca;
283 struct inet6_dev *idev;
287 idev = in6_dev_get(dev);
292 write_lock_bh(&idev->lock);
298 for (aca = idev->ac_list; aca; aca = aca->aca_next) {
299 if (ipv6_addr_equal(&aca->aca_addr, addr)) {
307 * not found: create a new one.
310 aca = kzalloc(sizeof(struct ifacaddr6), GFP_ATOMIC);
317 rt = addrconf_dst_alloc(idev, addr, 1);
324 ipv6_addr_copy(&aca->aca_addr, addr);
325 aca->aca_idev = idev;
328 /* aca_tstamp should be updated upon changes */
329 aca->aca_cstamp = aca->aca_tstamp = jiffies;
330 atomic_set(&aca->aca_refcnt, 2);
331 spin_lock_init(&aca->aca_lock);
333 aca->aca_next = idev->ac_list;
335 write_unlock_bh(&idev->lock);
339 addrconf_join_solict(dev, &aca->aca_addr);
344 write_unlock_bh(&idev->lock);
350 * device anycast group decrement
352 int __ipv6_dev_ac_dec(struct inet6_dev *idev, struct in6_addr *addr)
354 struct ifacaddr6 *aca, *prev_aca;
356 write_lock_bh(&idev->lock);
358 for (aca = idev->ac_list; aca; aca = aca->aca_next) {
359 if (ipv6_addr_equal(&aca->aca_addr, addr))
364 write_unlock_bh(&idev->lock);
367 if (--aca->aca_users > 0) {
368 write_unlock_bh(&idev->lock);
372 prev_aca->aca_next = aca->aca_next;
374 idev->ac_list = aca->aca_next;
375 write_unlock_bh(&idev->lock);
376 addrconf_leave_solict(idev, &aca->aca_addr);
378 dst_hold(&aca->aca_rt->u.dst);
379 ip6_del_rt(aca->aca_rt);
385 static int ipv6_dev_ac_dec(struct net_device *dev, struct in6_addr *addr)
388 struct inet6_dev *idev = in6_dev_get(dev);
391 ret = __ipv6_dev_ac_dec(idev, addr);
397 * check if the interface has this anycast address
399 static int ipv6_chk_acast_dev(struct net_device *dev, struct in6_addr *addr)
401 struct inet6_dev *idev;
402 struct ifacaddr6 *aca;
404 idev = in6_dev_get(dev);
406 read_lock_bh(&idev->lock);
407 for (aca = idev->ac_list; aca; aca = aca->aca_next)
408 if (ipv6_addr_equal(&aca->aca_addr, addr))
410 read_unlock_bh(&idev->lock);
418 * check if given interface (or any, if dev==0) has this anycast address
420 int ipv6_chk_acast_addr(struct net_device *dev, struct in6_addr *addr)
425 return ipv6_chk_acast_dev(dev, addr);
426 read_lock(&dev_base_lock);
427 for_each_netdev(&init_net, dev)
428 if (ipv6_chk_acast_dev(dev, addr)) {
432 read_unlock(&dev_base_lock);
437 #ifdef CONFIG_PROC_FS
438 struct ac6_iter_state {
439 struct net_device *dev;
440 struct inet6_dev *idev;
443 #define ac6_seq_private(seq) ((struct ac6_iter_state *)(seq)->private)
445 static inline struct ifacaddr6 *ac6_get_first(struct seq_file *seq)
447 struct ifacaddr6 *im = NULL;
448 struct ac6_iter_state *state = ac6_seq_private(seq);
451 for_each_netdev(&init_net, state->dev) {
452 struct inet6_dev *idev;
453 idev = in6_dev_get(state->dev);
456 read_lock_bh(&idev->lock);
462 read_unlock_bh(&idev->lock);
468 static struct ifacaddr6 *ac6_get_next(struct seq_file *seq, struct ifacaddr6 *im)
470 struct ac6_iter_state *state = ac6_seq_private(seq);
474 if (likely(state->idev != NULL)) {
475 read_unlock_bh(&state->idev->lock);
476 in6_dev_put(state->idev);
478 state->dev = next_net_device(state->dev);
483 state->idev = in6_dev_get(state->dev);
486 read_lock_bh(&state->idev->lock);
487 im = state->idev->ac_list;
492 static struct ifacaddr6 *ac6_get_idx(struct seq_file *seq, loff_t pos)
494 struct ifacaddr6 *im = ac6_get_first(seq);
496 while (pos && (im = ac6_get_next(seq, im)) != NULL)
498 return pos ? NULL : im;
501 static void *ac6_seq_start(struct seq_file *seq, loff_t *pos)
502 __acquires(dev_base_lock)
504 read_lock(&dev_base_lock);
505 return ac6_get_idx(seq, *pos);
508 static void *ac6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
510 struct ifacaddr6 *im;
511 im = ac6_get_next(seq, v);
516 static void ac6_seq_stop(struct seq_file *seq, void *v)
517 __releases(dev_base_lock)
519 struct ac6_iter_state *state = ac6_seq_private(seq);
520 if (likely(state->idev != NULL)) {
521 read_unlock_bh(&state->idev->lock);
522 in6_dev_put(state->idev);
524 read_unlock(&dev_base_lock);
527 static int ac6_seq_show(struct seq_file *seq, void *v)
529 struct ifacaddr6 *im = (struct ifacaddr6 *)v;
530 struct ac6_iter_state *state = ac6_seq_private(seq);
533 "%-4d %-15s " NIP6_SEQFMT " %5d\n",
534 state->dev->ifindex, state->dev->name,
540 static const struct seq_operations ac6_seq_ops = {
541 .start = ac6_seq_start,
542 .next = ac6_seq_next,
543 .stop = ac6_seq_stop,
544 .show = ac6_seq_show,
547 static int ac6_seq_open(struct inode *inode, struct file *file)
549 return seq_open_private(file, &ac6_seq_ops,
550 sizeof(struct ac6_iter_state));
553 static const struct file_operations ac6_seq_fops = {
554 .owner = THIS_MODULE,
555 .open = ac6_seq_open,
558 .release = seq_release_private,
561 int __init ac6_proc_init(void)
563 if (!proc_net_fops_create(&init_net, "anycast6", S_IRUGO, &ac6_seq_fops))
569 void ac6_proc_exit(void)
571 proc_net_remove(&init_net, "anycast6");