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/config.h>
18 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/types.h>
21 #include <linux/random.h>
22 #include <linux/string.h>
23 #include <linux/socket.h>
24 #include <linux/sockios.h>
25 #include <linux/sched.h>
26 #include <linux/net.h>
27 #include <linux/in6.h>
28 #include <linux/netdevice.h>
29 #include <linux/if_arp.h>
30 #include <linux/route.h>
31 #include <linux/init.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
39 #include <net/protocol.h>
40 #include <net/if_inet6.h>
41 #include <net/ndisc.h>
42 #include <net/addrconf.h>
43 #include <net/ip6_route.h>
45 #include <net/checksum.h>
47 static int ipv6_dev_ac_dec(struct net_device
*dev
, struct in6_addr
*addr
);
49 /* Big ac list lock for all the sockets */
50 static DEFINE_RWLOCK(ipv6_sk_ac_lock
);
53 ip6_onlink(struct in6_addr
*addr
, struct net_device
*dev
)
55 struct inet6_dev
*idev
;
56 struct inet6_ifaddr
*ifa
;
60 read_lock(&addrconf_lock
);
61 idev
= __in6_dev_get(dev
);
63 read_lock_bh(&idev
->lock
);
64 for (ifa
=idev
->addr_list
; ifa
; ifa
=ifa
->if_next
) {
65 onlink
= ipv6_prefix_equal(addr
, &ifa
->addr
,
70 read_unlock_bh(&idev
->lock
);
72 read_unlock(&addrconf_lock
);
77 * socket join an anycast group
80 int ipv6_sock_ac_join(struct sock
*sk
, int ifindex
, struct in6_addr
*addr
)
82 struct ipv6_pinfo
*np
= inet6_sk(sk
);
83 struct net_device
*dev
= NULL
;
84 struct inet6_dev
*idev
;
85 struct ipv6_ac_socklist
*pac
;
86 int ishost
= !ipv6_devconf
.forwarding
;
89 if (!capable(CAP_NET_ADMIN
))
91 if (ipv6_addr_is_multicast(addr
))
93 if (ipv6_chk_addr(addr
, NULL
, 0))
96 pac
= sock_kmalloc(sk
, sizeof(struct ipv6_ac_socklist
), GFP_KERNEL
);
100 ipv6_addr_copy(&pac
->acl_addr
, addr
);
105 rt
= rt6_lookup(addr
, NULL
, 0, 0);
109 dst_release(&rt
->u
.dst
);
111 err
= -EADDRNOTAVAIL
;
114 /* router, no matching interface: just pick one */
116 dev
= dev_get_by_flags(IFF_UP
, IFF_UP
|IFF_LOOPBACK
);
119 dev
= dev_get_by_index(ifindex
);
126 idev
= in6_dev_get(dev
);
131 err
= -EADDRNOTAVAIL
;
134 /* reset ishost, now that we have a specific device */
135 ishost
= !idev
->cnf
.forwarding
;
138 pac
->acl_ifindex
= dev
->ifindex
;
141 * For hosts, allow link-local or matching prefix anycasts.
142 * This obviates the need for propagating anycast routes while
143 * still allowing some non-router anycast participation.
145 if (!ip6_onlink(addr
, dev
)) {
147 err
= -EADDRNOTAVAIL
;
152 err
= ipv6_dev_ac_inc(dev
, addr
);
156 write_lock_bh(&ipv6_sk_ac_lock
);
157 pac
->acl_next
= np
->ipv6_ac_list
;
158 np
->ipv6_ac_list
= pac
;
159 write_unlock_bh(&ipv6_sk_ac_lock
);
168 sock_kfree_s(sk
, pac
, sizeof(*pac
));
173 * socket leave an anycast group
175 int ipv6_sock_ac_drop(struct sock
*sk
, int ifindex
, struct in6_addr
*addr
)
177 struct ipv6_pinfo
*np
= inet6_sk(sk
);
178 struct net_device
*dev
;
179 struct ipv6_ac_socklist
*pac
, *prev_pac
;
181 write_lock_bh(&ipv6_sk_ac_lock
);
183 for (pac
= np
->ipv6_ac_list
; pac
; pac
= pac
->acl_next
) {
184 if ((ifindex
== 0 || pac
->acl_ifindex
== ifindex
) &&
185 ipv6_addr_equal(&pac
->acl_addr
, addr
))
190 write_unlock_bh(&ipv6_sk_ac_lock
);
194 prev_pac
->acl_next
= pac
->acl_next
;
196 np
->ipv6_ac_list
= pac
->acl_next
;
198 write_unlock_bh(&ipv6_sk_ac_lock
);
200 dev
= dev_get_by_index(pac
->acl_ifindex
);
202 ipv6_dev_ac_dec(dev
, &pac
->acl_addr
);
205 sock_kfree_s(sk
, pac
, sizeof(*pac
));
209 void ipv6_sock_ac_close(struct sock
*sk
)
211 struct ipv6_pinfo
*np
= inet6_sk(sk
);
212 struct net_device
*dev
= NULL
;
213 struct ipv6_ac_socklist
*pac
;
216 write_lock_bh(&ipv6_sk_ac_lock
);
217 pac
= np
->ipv6_ac_list
;
218 np
->ipv6_ac_list
= NULL
;
219 write_unlock_bh(&ipv6_sk_ac_lock
);
223 struct ipv6_ac_socklist
*next
= pac
->acl_next
;
225 if (pac
->acl_ifindex
!= prev_index
) {
228 dev
= dev_get_by_index(pac
->acl_ifindex
);
229 prev_index
= pac
->acl_ifindex
;
232 ipv6_dev_ac_dec(dev
, &pac
->acl_addr
);
233 sock_kfree_s(sk
, pac
, sizeof(*pac
));
241 /* The function is not used, which is funny. Apparently, author
242 * supposed to use it to filter out datagrams inside udp/raw but forgot.
244 * It is OK, anycasts are not special comparing to delivery to unicasts.
247 int inet6_ac_check(struct sock
*sk
, struct in6_addr
*addr
, int ifindex
)
249 struct ipv6_ac_socklist
*pac
;
250 struct ipv6_pinfo
*np
= inet6_sk(sk
);
254 read_lock(&ipv6_sk_ac_lock
);
255 for (pac
=np
->ipv6_ac_list
; pac
; pac
=pac
->acl_next
) {
256 if (ifindex
&& pac
->acl_ifindex
!= ifindex
)
258 found
= ipv6_addr_equal(&pac
->acl_addr
, addr
);
262 read_unlock(&ipv6_sk_ac_lock
);
269 static void aca_put(struct ifacaddr6
*ac
)
271 if (atomic_dec_and_test(&ac
->aca_refcnt
)) {
272 in6_dev_put(ac
->aca_idev
);
273 dst_release(&ac
->aca_rt
->u
.dst
);
279 * device anycast group inc (add if not found)
281 int ipv6_dev_ac_inc(struct net_device
*dev
, struct in6_addr
*addr
)
283 struct ifacaddr6
*aca
;
284 struct inet6_dev
*idev
;
288 idev
= in6_dev_get(dev
);
293 write_lock_bh(&idev
->lock
);
299 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
) {
300 if (ipv6_addr_equal(&aca
->aca_addr
, addr
)) {
308 * not found: create a new one.
311 aca
= kzalloc(sizeof(struct ifacaddr6
), GFP_ATOMIC
);
318 rt
= addrconf_dst_alloc(idev
, addr
, 1);
325 ipv6_addr_copy(&aca
->aca_addr
, addr
);
326 aca
->aca_idev
= idev
;
329 /* aca_tstamp should be updated upon changes */
330 aca
->aca_cstamp
= aca
->aca_tstamp
= jiffies
;
331 atomic_set(&aca
->aca_refcnt
, 2);
332 spin_lock_init(&aca
->aca_lock
);
334 aca
->aca_next
= idev
->ac_list
;
336 write_unlock_bh(&idev
->lock
);
338 dst_hold(&rt
->u
.dst
);
339 if (ip6_ins_rt(rt
, NULL
, NULL
, NULL
))
340 dst_release(&rt
->u
.dst
);
342 addrconf_join_solict(dev
, &aca
->aca_addr
);
347 write_unlock_bh(&idev
->lock
);
353 * device anycast group decrement
355 int __ipv6_dev_ac_dec(struct inet6_dev
*idev
, struct in6_addr
*addr
)
357 struct ifacaddr6
*aca
, *prev_aca
;
359 write_lock_bh(&idev
->lock
);
361 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
) {
362 if (ipv6_addr_equal(&aca
->aca_addr
, addr
))
367 write_unlock_bh(&idev
->lock
);
370 if (--aca
->aca_users
> 0) {
371 write_unlock_bh(&idev
->lock
);
375 prev_aca
->aca_next
= aca
->aca_next
;
377 idev
->ac_list
= aca
->aca_next
;
378 write_unlock_bh(&idev
->lock
);
379 addrconf_leave_solict(idev
, &aca
->aca_addr
);
381 dst_hold(&aca
->aca_rt
->u
.dst
);
382 if (ip6_del_rt(aca
->aca_rt
, NULL
, NULL
, NULL
))
383 dst_free(&aca
->aca_rt
->u
.dst
);
385 dst_release(&aca
->aca_rt
->u
.dst
);
391 static int ipv6_dev_ac_dec(struct net_device
*dev
, struct in6_addr
*addr
)
394 struct inet6_dev
*idev
= in6_dev_get(dev
);
397 ret
= __ipv6_dev_ac_dec(idev
, addr
);
403 * check if the interface has this anycast address
405 static int ipv6_chk_acast_dev(struct net_device
*dev
, struct in6_addr
*addr
)
407 struct inet6_dev
*idev
;
408 struct ifacaddr6
*aca
;
410 idev
= in6_dev_get(dev
);
412 read_lock_bh(&idev
->lock
);
413 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
)
414 if (ipv6_addr_equal(&aca
->aca_addr
, addr
))
416 read_unlock_bh(&idev
->lock
);
424 * check if given interface (or any, if dev==0) has this anycast address
426 int ipv6_chk_acast_addr(struct net_device
*dev
, struct in6_addr
*addr
)
429 return ipv6_chk_acast_dev(dev
, addr
);
430 read_lock(&dev_base_lock
);
431 for (dev
=dev_base
; dev
; dev
=dev
->next
)
432 if (ipv6_chk_acast_dev(dev
, addr
))
434 read_unlock(&dev_base_lock
);
439 #ifdef CONFIG_PROC_FS
440 struct ac6_iter_state
{
441 struct net_device
*dev
;
442 struct inet6_dev
*idev
;
445 #define ac6_seq_private(seq) ((struct ac6_iter_state *)(seq)->private)
447 static inline struct ifacaddr6
*ac6_get_first(struct seq_file
*seq
)
449 struct ifacaddr6
*im
= NULL
;
450 struct ac6_iter_state
*state
= ac6_seq_private(seq
);
452 for (state
->dev
= dev_base
, state
->idev
= NULL
;
454 state
->dev
= state
->dev
->next
) {
455 struct inet6_dev
*idev
;
456 idev
= in6_dev_get(state
->dev
);
459 read_lock_bh(&idev
->lock
);
465 read_unlock_bh(&idev
->lock
);
470 static struct ifacaddr6
*ac6_get_next(struct seq_file
*seq
, struct ifacaddr6
*im
)
472 struct ac6_iter_state
*state
= ac6_seq_private(seq
);
476 if (likely(state
->idev
!= NULL
)) {
477 read_unlock_bh(&state
->idev
->lock
);
478 in6_dev_put(state
->idev
);
480 state
->dev
= state
->dev
->next
;
485 state
->idev
= in6_dev_get(state
->dev
);
488 read_lock_bh(&state
->idev
->lock
);
489 im
= state
->idev
->ac_list
;
494 static struct ifacaddr6
*ac6_get_idx(struct seq_file
*seq
, loff_t pos
)
496 struct ifacaddr6
*im
= ac6_get_first(seq
);
498 while (pos
&& (im
= ac6_get_next(seq
, im
)) != NULL
)
500 return pos
? NULL
: im
;
503 static void *ac6_seq_start(struct seq_file
*seq
, loff_t
*pos
)
505 read_lock(&dev_base_lock
);
506 return ac6_get_idx(seq
, *pos
);
509 static void *ac6_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
511 struct ifacaddr6
*im
;
512 im
= ac6_get_next(seq
, v
);
517 static void ac6_seq_stop(struct seq_file
*seq
, void *v
)
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 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 struct seq_file
*seq
;
551 struct ac6_iter_state
*s
= kzalloc(sizeof(*s
), GFP_KERNEL
);
556 rc
= seq_open(file
, &ac6_seq_ops
);
560 seq
= file
->private_data
;
569 static struct file_operations ac6_seq_fops
= {
570 .owner
= THIS_MODULE
,
571 .open
= ac6_seq_open
,
574 .release
= seq_release_private
,
577 int __init
ac6_proc_init(void)
579 if (!proc_net_fops_create("anycast6", S_IRUGO
, &ac6_seq_fops
))
585 void ac6_proc_exit(void)
587 proc_net_remove("anycast6");