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>
37 #include <net/protocol.h>
38 #include <net/if_inet6.h>
39 #include <net/ndisc.h>
40 #include <net/addrconf.h>
41 #include <net/ip6_route.h>
43 #include <net/checksum.h>
45 static int ipv6_dev_ac_dec(struct net_device
*dev
, struct in6_addr
*addr
);
47 /* Big ac list lock for all the sockets */
48 static DEFINE_RWLOCK(ipv6_sk_ac_lock
);
51 ip6_onlink(struct in6_addr
*addr
, struct net_device
*dev
)
53 struct inet6_dev
*idev
;
54 struct inet6_ifaddr
*ifa
;
59 idev
= __in6_dev_get(dev
);
61 read_lock_bh(&idev
->lock
);
62 for (ifa
=idev
->addr_list
; ifa
; ifa
=ifa
->if_next
) {
63 onlink
= ipv6_prefix_equal(addr
, &ifa
->addr
,
68 read_unlock_bh(&idev
->lock
);
75 * socket join an anycast group
78 int ipv6_sock_ac_join(struct sock
*sk
, int ifindex
, struct in6_addr
*addr
)
80 struct ipv6_pinfo
*np
= inet6_sk(sk
);
81 struct net_device
*dev
= NULL
;
82 struct inet6_dev
*idev
;
83 struct ipv6_ac_socklist
*pac
;
84 int ishost
= !ipv6_devconf
.forwarding
;
87 if (!capable(CAP_NET_ADMIN
))
89 if (ipv6_addr_is_multicast(addr
))
91 if (ipv6_chk_addr(addr
, NULL
, 0))
94 pac
= sock_kmalloc(sk
, sizeof(struct ipv6_ac_socklist
), GFP_KERNEL
);
98 ipv6_addr_copy(&pac
->acl_addr
, addr
);
103 rt
= rt6_lookup(addr
, NULL
, 0, 0);
107 dst_release(&rt
->u
.dst
);
109 err
= -EADDRNOTAVAIL
;
112 /* router, no matching interface: just pick one */
114 dev
= dev_get_by_flags(IFF_UP
, IFF_UP
|IFF_LOOPBACK
);
117 dev
= dev_get_by_index(ifindex
);
124 idev
= in6_dev_get(dev
);
129 err
= -EADDRNOTAVAIL
;
132 /* reset ishost, now that we have a specific device */
133 ishost
= !idev
->cnf
.forwarding
;
136 pac
->acl_ifindex
= dev
->ifindex
;
139 * For hosts, allow link-local or matching prefix anycasts.
140 * This obviates the need for propagating anycast routes while
141 * still allowing some non-router anycast participation.
143 if (!ip6_onlink(addr
, dev
)) {
145 err
= -EADDRNOTAVAIL
;
150 err
= ipv6_dev_ac_inc(dev
, addr
);
154 write_lock_bh(&ipv6_sk_ac_lock
);
155 pac
->acl_next
= np
->ipv6_ac_list
;
156 np
->ipv6_ac_list
= pac
;
157 write_unlock_bh(&ipv6_sk_ac_lock
);
166 sock_kfree_s(sk
, pac
, sizeof(*pac
));
171 * socket leave an anycast group
173 int ipv6_sock_ac_drop(struct sock
*sk
, int ifindex
, struct in6_addr
*addr
)
175 struct ipv6_pinfo
*np
= inet6_sk(sk
);
176 struct net_device
*dev
;
177 struct ipv6_ac_socklist
*pac
, *prev_pac
;
179 write_lock_bh(&ipv6_sk_ac_lock
);
181 for (pac
= np
->ipv6_ac_list
; pac
; pac
= pac
->acl_next
) {
182 if ((ifindex
== 0 || pac
->acl_ifindex
== ifindex
) &&
183 ipv6_addr_equal(&pac
->acl_addr
, addr
))
188 write_unlock_bh(&ipv6_sk_ac_lock
);
192 prev_pac
->acl_next
= pac
->acl_next
;
194 np
->ipv6_ac_list
= pac
->acl_next
;
196 write_unlock_bh(&ipv6_sk_ac_lock
);
198 dev
= dev_get_by_index(pac
->acl_ifindex
);
200 ipv6_dev_ac_dec(dev
, &pac
->acl_addr
);
203 sock_kfree_s(sk
, pac
, sizeof(*pac
));
207 void ipv6_sock_ac_close(struct sock
*sk
)
209 struct ipv6_pinfo
*np
= inet6_sk(sk
);
210 struct net_device
*dev
= NULL
;
211 struct ipv6_ac_socklist
*pac
;
214 write_lock_bh(&ipv6_sk_ac_lock
);
215 pac
= np
->ipv6_ac_list
;
216 np
->ipv6_ac_list
= NULL
;
217 write_unlock_bh(&ipv6_sk_ac_lock
);
221 struct ipv6_ac_socklist
*next
= pac
->acl_next
;
223 if (pac
->acl_ifindex
!= prev_index
) {
226 dev
= dev_get_by_index(pac
->acl_ifindex
);
227 prev_index
= pac
->acl_ifindex
;
230 ipv6_dev_ac_dec(dev
, &pac
->acl_addr
);
231 sock_kfree_s(sk
, pac
, sizeof(*pac
));
239 /* The function is not used, which is funny. Apparently, author
240 * supposed to use it to filter out datagrams inside udp/raw but forgot.
242 * It is OK, anycasts are not special comparing to delivery to unicasts.
245 int inet6_ac_check(struct sock
*sk
, struct in6_addr
*addr
, int ifindex
)
247 struct ipv6_ac_socklist
*pac
;
248 struct ipv6_pinfo
*np
= inet6_sk(sk
);
252 read_lock(&ipv6_sk_ac_lock
);
253 for (pac
=np
->ipv6_ac_list
; pac
; pac
=pac
->acl_next
) {
254 if (ifindex
&& pac
->acl_ifindex
!= ifindex
)
256 found
= ipv6_addr_equal(&pac
->acl_addr
, addr
);
260 read_unlock(&ipv6_sk_ac_lock
);
267 static void aca_put(struct ifacaddr6
*ac
)
269 if (atomic_dec_and_test(&ac
->aca_refcnt
)) {
270 in6_dev_put(ac
->aca_idev
);
271 dst_release(&ac
->aca_rt
->u
.dst
);
277 * device anycast group inc (add if not found)
279 int ipv6_dev_ac_inc(struct net_device
*dev
, struct in6_addr
*addr
)
281 struct ifacaddr6
*aca
;
282 struct inet6_dev
*idev
;
286 idev
= in6_dev_get(dev
);
291 write_lock_bh(&idev
->lock
);
297 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
) {
298 if (ipv6_addr_equal(&aca
->aca_addr
, addr
)) {
306 * not found: create a new one.
309 aca
= kzalloc(sizeof(struct ifacaddr6
), GFP_ATOMIC
);
316 rt
= addrconf_dst_alloc(idev
, addr
, 1);
323 ipv6_addr_copy(&aca
->aca_addr
, addr
);
324 aca
->aca_idev
= idev
;
327 /* aca_tstamp should be updated upon changes */
328 aca
->aca_cstamp
= aca
->aca_tstamp
= jiffies
;
329 atomic_set(&aca
->aca_refcnt
, 2);
330 spin_lock_init(&aca
->aca_lock
);
332 aca
->aca_next
= idev
->ac_list
;
334 write_unlock_bh(&idev
->lock
);
336 dst_hold(&rt
->u
.dst
);
338 dst_release(&rt
->u
.dst
);
340 addrconf_join_solict(dev
, &aca
->aca_addr
);
345 write_unlock_bh(&idev
->lock
);
351 * device anycast group decrement
353 int __ipv6_dev_ac_dec(struct inet6_dev
*idev
, struct in6_addr
*addr
)
355 struct ifacaddr6
*aca
, *prev_aca
;
357 write_lock_bh(&idev
->lock
);
359 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
) {
360 if (ipv6_addr_equal(&aca
->aca_addr
, addr
))
365 write_unlock_bh(&idev
->lock
);
368 if (--aca
->aca_users
> 0) {
369 write_unlock_bh(&idev
->lock
);
373 prev_aca
->aca_next
= aca
->aca_next
;
375 idev
->ac_list
= aca
->aca_next
;
376 write_unlock_bh(&idev
->lock
);
377 addrconf_leave_solict(idev
, &aca
->aca_addr
);
379 dst_hold(&aca
->aca_rt
->u
.dst
);
380 if (ip6_del_rt(aca
->aca_rt
))
381 dst_free(&aca
->aca_rt
->u
.dst
);
383 dst_release(&aca
->aca_rt
->u
.dst
);
389 static int ipv6_dev_ac_dec(struct net_device
*dev
, struct in6_addr
*addr
)
392 struct inet6_dev
*idev
= in6_dev_get(dev
);
395 ret
= __ipv6_dev_ac_dec(idev
, addr
);
401 * check if the interface has this anycast address
403 static int ipv6_chk_acast_dev(struct net_device
*dev
, struct in6_addr
*addr
)
405 struct inet6_dev
*idev
;
406 struct ifacaddr6
*aca
;
408 idev
= in6_dev_get(dev
);
410 read_lock_bh(&idev
->lock
);
411 for (aca
= idev
->ac_list
; aca
; aca
= aca
->aca_next
)
412 if (ipv6_addr_equal(&aca
->aca_addr
, addr
))
414 read_unlock_bh(&idev
->lock
);
422 * check if given interface (or any, if dev==0) has this anycast address
424 int ipv6_chk_acast_addr(struct net_device
*dev
, struct in6_addr
*addr
)
427 return ipv6_chk_acast_dev(dev
, addr
);
428 read_lock(&dev_base_lock
);
429 for (dev
=dev_base
; dev
; dev
=dev
->next
)
430 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
);
450 for (state
->dev
= dev_base
, state
->idev
= NULL
;
452 state
->dev
= state
->dev
->next
) {
453 struct inet6_dev
*idev
;
454 idev
= in6_dev_get(state
->dev
);
457 read_lock_bh(&idev
->lock
);
463 read_unlock_bh(&idev
->lock
);
469 static struct ifacaddr6
*ac6_get_next(struct seq_file
*seq
, struct ifacaddr6
*im
)
471 struct ac6_iter_state
*state
= ac6_seq_private(seq
);
475 if (likely(state
->idev
!= NULL
)) {
476 read_unlock_bh(&state
->idev
->lock
);
477 in6_dev_put(state
->idev
);
479 state
->dev
= state
->dev
->next
;
484 state
->idev
= in6_dev_get(state
->dev
);
487 read_lock_bh(&state
->idev
->lock
);
488 im
= state
->idev
->ac_list
;
493 static struct ifacaddr6
*ac6_get_idx(struct seq_file
*seq
, loff_t pos
)
495 struct ifacaddr6
*im
= ac6_get_first(seq
);
497 while (pos
&& (im
= ac6_get_next(seq
, im
)) != NULL
)
499 return pos
? NULL
: im
;
502 static void *ac6_seq_start(struct seq_file
*seq
, loff_t
*pos
)
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
)
518 struct ac6_iter_state
*state
= ac6_seq_private(seq
);
519 if (likely(state
->idev
!= NULL
)) {
520 read_unlock_bh(&state
->idev
->lock
);
521 in6_dev_put(state
->idev
);
523 read_unlock(&dev_base_lock
);
526 static int ac6_seq_show(struct seq_file
*seq
, void *v
)
528 struct ifacaddr6
*im
= (struct ifacaddr6
*)v
;
529 struct ac6_iter_state
*state
= ac6_seq_private(seq
);
532 "%-4d %-15s " NIP6_SEQFMT
" %5d\n",
533 state
->dev
->ifindex
, state
->dev
->name
,
539 static struct seq_operations ac6_seq_ops
= {
540 .start
= ac6_seq_start
,
541 .next
= ac6_seq_next
,
542 .stop
= ac6_seq_stop
,
543 .show
= ac6_seq_show
,
546 static int ac6_seq_open(struct inode
*inode
, struct file
*file
)
548 struct seq_file
*seq
;
550 struct ac6_iter_state
*s
= kzalloc(sizeof(*s
), GFP_KERNEL
);
555 rc
= seq_open(file
, &ac6_seq_ops
);
559 seq
= file
->private_data
;
568 static const struct file_operations ac6_seq_fops
= {
569 .owner
= THIS_MODULE
,
570 .open
= ac6_seq_open
,
573 .release
= seq_release_private
,
576 int __init
ac6_proc_init(void)
578 if (!proc_net_fops_create("anycast6", S_IRUGO
, &ac6_seq_fops
))
584 void ac6_proc_exit(void)
586 proc_net_remove("anycast6");