2 * Multicast support for IPv6
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.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.
18 * yoshfuji : fix format of router-alert option
19 * YOSHIFUJI Hideaki @USAGI:
20 * Fixed source address for MLD message based on
21 * <draft-ietf-magma-mld-source-05.txt>.
22 * YOSHIFUJI Hideaki @USAGI:
23 * - Ignore Queries for invalid addresses.
24 * - MLD for link-local addresses.
25 * David L Stevens <dlstevens@us.ibm.com>:
29 #include <linux/module.h>
30 #include <linux/errno.h>
31 #include <linux/types.h>
32 #include <linux/string.h>
33 #include <linux/socket.h>
34 #include <linux/sockios.h>
35 #include <linux/jiffies.h>
36 #include <linux/times.h>
37 #include <linux/net.h>
39 #include <linux/in6.h>
40 #include <linux/netdevice.h>
41 #include <linux/if_arp.h>
42 #include <linux/route.h>
43 #include <linux/init.h>
44 #include <linux/proc_fs.h>
45 #include <linux/seq_file.h>
46 #include <linux/slab.h>
49 #include <linux/netfilter.h>
50 #include <linux/netfilter_ipv6.h>
52 #include <net/net_namespace.h>
57 #include <net/protocol.h>
58 #include <net/if_inet6.h>
59 #include <net/ndisc.h>
60 #include <net/addrconf.h>
61 #include <net/ip6_route.h>
62 #include <net/inet_common.h>
64 #include <net/ip6_checksum.h>
66 /* Set to 3 to get tracing... */
70 #define MDBG(x) printk x
75 /* Ensure that we have struct in6_addr aligned on 32bit word. */
76 static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
77 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
78 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
79 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
82 static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
84 /* Big mc list lock for all the sockets */
85 static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
87 static void igmp6_join_group(struct ifmcaddr6 *ma);
88 static void igmp6_leave_group(struct ifmcaddr6 *ma);
89 static void igmp6_timer_handler(unsigned long data);
91 static void mld_gq_timer_expire(unsigned long data);
92 static void mld_ifc_timer_expire(unsigned long data);
93 static void mld_ifc_event(struct inet6_dev *idev);
94 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
95 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *addr);
96 static void mld_clear_delrec(struct inet6_dev *idev);
97 static int sf_setstate(struct ifmcaddr6 *pmc);
98 static void sf_markstate(struct ifmcaddr6 *pmc);
99 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
100 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
101 int sfmode, int sfcount, struct in6_addr *psfsrc,
103 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
104 int sfmode, int sfcount, struct in6_addr *psfsrc,
106 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
107 struct inet6_dev *idev);
110 #define IGMP6_UNSOLICITED_IVAL (10*HZ)
111 #define MLD_QRV_DEFAULT 2
113 #define MLD_V1_SEEN(idev) (dev_net((idev)->dev)->ipv6.devconf_all->force_mld_version == 1 || \
114 (idev)->cnf.force_mld_version == 1 || \
115 ((idev)->mc_v1_seen && \
116 time_before(jiffies, (idev)->mc_v1_seen)))
118 #define IPV6_MLD_MAX_MSF 64
120 int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
123 * socket join on multicast group
126 #define for_each_pmc_rcu(np, pmc) \
127 for (pmc = rcu_dereference(np->ipv6_mc_list); \
129 pmc = rcu_dereference(pmc->next))
131 int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
133 struct net_device *dev = NULL;
134 struct ipv6_mc_socklist *mc_lst;
135 struct ipv6_pinfo *np = inet6_sk(sk);
136 struct net *net = sock_net(sk);
139 if (!ipv6_addr_is_multicast(addr))
143 for_each_pmc_rcu(np, mc_lst) {
144 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
145 ipv6_addr_equal(&mc_lst->addr, addr)) {
152 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
158 ipv6_addr_copy(&mc_lst->addr, addr);
163 rt = rt6_lookup(net, addr, NULL, 0, 0);
166 dst_release(&rt->dst);
169 dev = dev_get_by_index_rcu(net, ifindex);
173 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
177 mc_lst->ifindex = dev->ifindex;
178 mc_lst->sfmode = MCAST_EXCLUDE;
179 rwlock_init(&mc_lst->sflock);
180 mc_lst->sflist = NULL;
183 * now add/increase the group membership on the device
186 err = ipv6_dev_mc_inc(dev, addr);
190 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
194 spin_lock(&ipv6_sk_mc_lock);
195 mc_lst->next = np->ipv6_mc_list;
196 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
197 spin_unlock(&ipv6_sk_mc_lock);
204 static void ipv6_mc_socklist_reclaim(struct rcu_head *head)
206 kfree(container_of(head, struct ipv6_mc_socklist, rcu));
209 * socket leave on multicast group
211 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
213 struct ipv6_pinfo *np = inet6_sk(sk);
214 struct ipv6_mc_socklist *mc_lst;
215 struct ipv6_mc_socklist __rcu **lnk;
216 struct net *net = sock_net(sk);
218 spin_lock(&ipv6_sk_mc_lock);
219 for (lnk = &np->ipv6_mc_list;
220 (mc_lst = rcu_dereference_protected(*lnk,
221 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
222 lnk = &mc_lst->next) {
223 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
224 ipv6_addr_equal(&mc_lst->addr, addr)) {
225 struct net_device *dev;
228 spin_unlock(&ipv6_sk_mc_lock);
231 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
233 struct inet6_dev *idev = __in6_dev_get(dev);
235 (void) ip6_mc_leave_src(sk, mc_lst, idev);
237 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
239 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
241 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
242 call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);
246 spin_unlock(&ipv6_sk_mc_lock);
248 return -EADDRNOTAVAIL;
251 /* called with rcu_read_lock() */
252 static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
253 struct in6_addr *group,
256 struct net_device *dev = NULL;
257 struct inet6_dev *idev = NULL;
260 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
265 dst_release(&rt->dst);
268 dev = dev_get_by_index_rcu(net, ifindex);
272 idev = __in6_dev_get(dev);
275 read_lock_bh(&idev->lock);
277 read_unlock_bh(&idev->lock);
283 void ipv6_sock_mc_close(struct sock *sk)
285 struct ipv6_pinfo *np = inet6_sk(sk);
286 struct ipv6_mc_socklist *mc_lst;
287 struct net *net = sock_net(sk);
289 spin_lock(&ipv6_sk_mc_lock);
290 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
291 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
292 struct net_device *dev;
294 np->ipv6_mc_list = mc_lst->next;
295 spin_unlock(&ipv6_sk_mc_lock);
298 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
300 struct inet6_dev *idev = __in6_dev_get(dev);
302 (void) ip6_mc_leave_src(sk, mc_lst, idev);
304 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
306 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
309 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
310 call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);
312 spin_lock(&ipv6_sk_mc_lock);
314 spin_unlock(&ipv6_sk_mc_lock);
317 int ip6_mc_source(int add, int omode, struct sock *sk,
318 struct group_source_req *pgsr)
320 struct in6_addr *source, *group;
321 struct ipv6_mc_socklist *pmc;
322 struct net_device *dev;
323 struct inet6_dev *idev;
324 struct ipv6_pinfo *inet6 = inet6_sk(sk);
325 struct ip6_sf_socklist *psl;
326 struct net *net = sock_net(sk);
332 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
333 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
335 if (!ipv6_addr_is_multicast(group))
339 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
346 err = -EADDRNOTAVAIL;
348 for_each_pmc_rcu(inet6, pmc) {
349 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
351 if (ipv6_addr_equal(&pmc->addr, group))
354 if (!pmc) { /* must have a prior join */
358 /* if a source filter was set, must be the same mode as before */
360 if (pmc->sfmode != omode) {
364 } else if (pmc->sfmode != omode) {
365 /* allow mode switches for empty-set filters */
366 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
367 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
371 write_lock(&pmc->sflock);
377 goto done; /* err = -EADDRNOTAVAIL */
379 for (i=0; i<psl->sl_count; i++) {
380 rv = memcmp(&psl->sl_addr[i], source,
381 sizeof(struct in6_addr));
385 if (rv) /* source not found */
386 goto done; /* err = -EADDRNOTAVAIL */
388 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
389 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
394 /* update the interface filter */
395 ip6_mc_del_src(idev, group, omode, 1, source, 1);
397 for (j=i+1; j<psl->sl_count; j++)
398 psl->sl_addr[j-1] = psl->sl_addr[j];
403 /* else, add a new source to the filter */
405 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
409 if (!psl || psl->sl_count == psl->sl_max) {
410 struct ip6_sf_socklist *newpsl;
411 int count = IP6_SFBLOCK;
414 count += psl->sl_max;
415 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
420 newpsl->sl_max = count;
421 newpsl->sl_count = count - IP6_SFBLOCK;
423 for (i=0; i<psl->sl_count; i++)
424 newpsl->sl_addr[i] = psl->sl_addr[i];
425 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
427 pmc->sflist = psl = newpsl;
429 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
430 for (i=0; i<psl->sl_count; i++) {
431 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
435 if (rv == 0) /* address already there is an error */
437 for (j=psl->sl_count-1; j>=i; j--)
438 psl->sl_addr[j+1] = psl->sl_addr[j];
439 psl->sl_addr[i] = *source;
442 /* update the interface list */
443 ip6_mc_add_src(idev, group, omode, 1, source, 1);
446 write_unlock(&pmc->sflock);
447 read_unlock_bh(&idev->lock);
450 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
454 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
456 struct in6_addr *group;
457 struct ipv6_mc_socklist *pmc;
458 struct net_device *dev;
459 struct inet6_dev *idev;
460 struct ipv6_pinfo *inet6 = inet6_sk(sk);
461 struct ip6_sf_socklist *newpsl, *psl;
462 struct net *net = sock_net(sk);
466 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
468 if (!ipv6_addr_is_multicast(group))
470 if (gsf->gf_fmode != MCAST_INCLUDE &&
471 gsf->gf_fmode != MCAST_EXCLUDE)
475 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
485 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
490 for_each_pmc_rcu(inet6, pmc) {
491 if (pmc->ifindex != gsf->gf_interface)
493 if (ipv6_addr_equal(&pmc->addr, group))
496 if (!pmc) { /* must have a prior join */
500 if (gsf->gf_numsrc) {
501 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
507 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
508 for (i=0; i<newpsl->sl_count; ++i) {
509 struct sockaddr_in6 *psin6;
511 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
512 newpsl->sl_addr[i] = psin6->sin6_addr;
514 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
515 newpsl->sl_count, newpsl->sl_addr, 0);
517 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
522 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
525 write_lock(&pmc->sflock);
528 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
529 psl->sl_count, psl->sl_addr, 0);
530 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
532 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
533 pmc->sflist = newpsl;
534 pmc->sfmode = gsf->gf_fmode;
535 write_unlock(&pmc->sflock);
538 read_unlock_bh(&idev->lock);
541 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
545 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
546 struct group_filter __user *optval, int __user *optlen)
548 int err, i, count, copycount;
549 struct in6_addr *group;
550 struct ipv6_mc_socklist *pmc;
551 struct inet6_dev *idev;
552 struct net_device *dev;
553 struct ipv6_pinfo *inet6 = inet6_sk(sk);
554 struct ip6_sf_socklist *psl;
555 struct net *net = sock_net(sk);
557 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
559 if (!ipv6_addr_is_multicast(group))
563 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
571 err = -EADDRNOTAVAIL;
573 * changes to the ipv6_mc_list require the socket lock and
574 * a read lock on ip6_sk_mc_lock. We have the socket lock,
575 * so reading the list is safe.
578 for_each_pmc_rcu(inet6, pmc) {
579 if (pmc->ifindex != gsf->gf_interface)
581 if (ipv6_addr_equal(group, &pmc->addr))
584 if (!pmc) /* must have a prior join */
586 gsf->gf_fmode = pmc->sfmode;
588 count = psl ? psl->sl_count : 0;
589 read_unlock_bh(&idev->lock);
592 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
593 gsf->gf_numsrc = count;
594 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
595 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
598 /* changes to psl require the socket lock, a read lock on
599 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
600 * have the socket lock, so reading here is safe.
602 for (i=0; i<copycount; i++) {
603 struct sockaddr_in6 *psin6;
604 struct sockaddr_storage ss;
606 psin6 = (struct sockaddr_in6 *)&ss;
607 memset(&ss, 0, sizeof(ss));
608 psin6->sin6_family = AF_INET6;
609 psin6->sin6_addr = psl->sl_addr[i];
610 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
615 read_unlock_bh(&idev->lock);
620 int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
621 const struct in6_addr *src_addr)
623 struct ipv6_pinfo *np = inet6_sk(sk);
624 struct ipv6_mc_socklist *mc;
625 struct ip6_sf_socklist *psl;
629 for_each_pmc_rcu(np, mc) {
630 if (ipv6_addr_equal(&mc->addr, mc_addr))
637 read_lock(&mc->sflock);
640 rv = mc->sfmode == MCAST_EXCLUDE;
644 for (i=0; i<psl->sl_count; i++) {
645 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
648 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
650 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
653 read_unlock(&mc->sflock);
659 static void ma_put(struct ifmcaddr6 *mc)
661 if (atomic_dec_and_test(&mc->mca_refcnt)) {
662 in6_dev_put(mc->idev);
667 static void igmp6_group_added(struct ifmcaddr6 *mc)
669 struct net_device *dev = mc->idev->dev;
670 char buf[MAX_ADDR_LEN];
672 spin_lock_bh(&mc->mca_lock);
673 if (!(mc->mca_flags&MAF_LOADED)) {
674 mc->mca_flags |= MAF_LOADED;
675 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
676 dev_mc_add(dev, buf);
678 spin_unlock_bh(&mc->mca_lock);
680 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
683 if (MLD_V1_SEEN(mc->idev)) {
684 igmp6_join_group(mc);
689 mc->mca_crcount = mc->idev->mc_qrv;
690 mld_ifc_event(mc->idev);
693 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
695 struct net_device *dev = mc->idev->dev;
696 char buf[MAX_ADDR_LEN];
698 spin_lock_bh(&mc->mca_lock);
699 if (mc->mca_flags&MAF_LOADED) {
700 mc->mca_flags &= ~MAF_LOADED;
701 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
702 dev_mc_del(dev, buf);
705 if (mc->mca_flags & MAF_NOREPORT)
707 spin_unlock_bh(&mc->mca_lock);
710 igmp6_leave_group(mc);
712 spin_lock_bh(&mc->mca_lock);
713 if (del_timer(&mc->mca_timer))
714 atomic_dec(&mc->mca_refcnt);
716 ip6_mc_clear_src(mc);
717 spin_unlock_bh(&mc->mca_lock);
721 * deleted ifmcaddr6 manipulation
723 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
725 struct ifmcaddr6 *pmc;
727 /* this is an "ifmcaddr6" for convenience; only the fields below
728 * are actually used. In particular, the refcnt and users are not
729 * used for management of the delete list. Using the same structure
730 * for deleted items allows change reports to use common code with
731 * non-deleted or query-response MCA's.
733 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
737 spin_lock_bh(&im->mca_lock);
738 spin_lock_init(&pmc->mca_lock);
739 pmc->idev = im->idev;
741 pmc->mca_addr = im->mca_addr;
742 pmc->mca_crcount = idev->mc_qrv;
743 pmc->mca_sfmode = im->mca_sfmode;
744 if (pmc->mca_sfmode == MCAST_INCLUDE) {
745 struct ip6_sf_list *psf;
747 pmc->mca_tomb = im->mca_tomb;
748 pmc->mca_sources = im->mca_sources;
749 im->mca_tomb = im->mca_sources = NULL;
750 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
751 psf->sf_crcount = pmc->mca_crcount;
753 spin_unlock_bh(&im->mca_lock);
755 spin_lock_bh(&idev->mc_lock);
756 pmc->next = idev->mc_tomb;
758 spin_unlock_bh(&idev->mc_lock);
761 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *pmca)
763 struct ifmcaddr6 *pmc, *pmc_prev;
764 struct ip6_sf_list *psf, *psf_next;
766 spin_lock_bh(&idev->mc_lock);
768 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
769 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
775 pmc_prev->next = pmc->next;
777 idev->mc_tomb = pmc->next;
779 spin_unlock_bh(&idev->mc_lock);
782 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
783 psf_next = psf->sf_next;
786 in6_dev_put(pmc->idev);
791 static void mld_clear_delrec(struct inet6_dev *idev)
793 struct ifmcaddr6 *pmc, *nextpmc;
795 spin_lock_bh(&idev->mc_lock);
797 idev->mc_tomb = NULL;
798 spin_unlock_bh(&idev->mc_lock);
800 for (; pmc; pmc = nextpmc) {
802 ip6_mc_clear_src(pmc);
803 in6_dev_put(pmc->idev);
807 /* clear dead sources, too */
808 read_lock_bh(&idev->lock);
809 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
810 struct ip6_sf_list *psf, *psf_next;
812 spin_lock_bh(&pmc->mca_lock);
814 pmc->mca_tomb = NULL;
815 spin_unlock_bh(&pmc->mca_lock);
816 for (; psf; psf=psf_next) {
817 psf_next = psf->sf_next;
821 read_unlock_bh(&idev->lock);
826 * device multicast group inc (add if not found)
828 int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
830 struct ifmcaddr6 *mc;
831 struct inet6_dev *idev;
833 /* we need to take a reference on idev */
834 idev = in6_dev_get(dev);
839 write_lock_bh(&idev->lock);
841 write_unlock_bh(&idev->lock);
846 for (mc = idev->mc_list; mc; mc = mc->next) {
847 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
849 write_unlock_bh(&idev->lock);
850 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
858 * not found: create a new one.
861 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
864 write_unlock_bh(&idev->lock);
869 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
871 ipv6_addr_copy(&mc->mca_addr, addr);
872 mc->idev = idev; /* (reference taken) */
874 /* mca_stamp should be updated upon changes */
875 mc->mca_cstamp = mc->mca_tstamp = jiffies;
876 atomic_set(&mc->mca_refcnt, 2);
877 spin_lock_init(&mc->mca_lock);
879 /* initial mode is (EX, empty) */
880 mc->mca_sfmode = MCAST_EXCLUDE;
881 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
883 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
884 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
885 mc->mca_flags |= MAF_NOREPORT;
887 mc->next = idev->mc_list;
889 write_unlock_bh(&idev->lock);
891 mld_del_delrec(idev, &mc->mca_addr);
892 igmp6_group_added(mc);
898 * device multicast group del
900 int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
902 struct ifmcaddr6 *ma, **map;
904 write_lock_bh(&idev->lock);
905 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
906 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
907 if (--ma->mca_users == 0) {
909 write_unlock_bh(&idev->lock);
911 igmp6_group_dropped(ma);
916 write_unlock_bh(&idev->lock);
920 write_unlock_bh(&idev->lock);
925 int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
927 struct inet6_dev *idev;
932 idev = __in6_dev_get(dev);
936 err = __ipv6_dev_mc_dec(idev, addr);
943 * identify MLD packets for MLD filter exceptions
945 int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
947 struct icmp6hdr *pic;
949 if (nexthdr != IPPROTO_ICMPV6)
952 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
955 pic = icmp6_hdr(skb);
957 switch (pic->icmp6_type) {
958 case ICMPV6_MGM_QUERY:
959 case ICMPV6_MGM_REPORT:
960 case ICMPV6_MGM_REDUCTION:
961 case ICMPV6_MLD2_REPORT:
970 * check if the interface/address pair is valid
972 int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
973 const struct in6_addr *src_addr)
975 struct inet6_dev *idev;
976 struct ifmcaddr6 *mc;
980 idev = __in6_dev_get(dev);
982 read_lock_bh(&idev->lock);
983 for (mc = idev->mc_list; mc; mc=mc->next) {
984 if (ipv6_addr_equal(&mc->mca_addr, group))
988 if (src_addr && !ipv6_addr_any(src_addr)) {
989 struct ip6_sf_list *psf;
991 spin_lock_bh(&mc->mca_lock);
992 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
993 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
997 rv = psf->sf_count[MCAST_INCLUDE] ||
998 psf->sf_count[MCAST_EXCLUDE] !=
999 mc->mca_sfcount[MCAST_EXCLUDE];
1001 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
1002 spin_unlock_bh(&mc->mca_lock);
1004 rv = 1; /* don't filter unspecified source */
1006 read_unlock_bh(&idev->lock);
1012 static void mld_gq_start_timer(struct inet6_dev *idev)
1014 int tv = net_random() % idev->mc_maxdelay;
1016 idev->mc_gq_running = 1;
1017 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1021 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1023 int tv = net_random() % delay;
1025 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1030 * IGMP handling (alias multicast ICMPv6 messages)
1033 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1035 unsigned long delay = resptime;
1037 /* Do not start timer for these addresses */
1038 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1039 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1042 if (del_timer(&ma->mca_timer)) {
1043 atomic_dec(&ma->mca_refcnt);
1044 delay = ma->mca_timer.expires - jiffies;
1047 if (delay >= resptime) {
1049 delay = net_random() % resptime;
1053 ma->mca_timer.expires = jiffies + delay;
1054 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1055 atomic_inc(&ma->mca_refcnt);
1056 ma->mca_flags |= MAF_TIMER_RUNNING;
1059 /* mark EXCLUDE-mode sources */
1060 static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1061 struct in6_addr *srcs)
1063 struct ip6_sf_list *psf;
1067 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1068 if (scount == nsrcs)
1070 for (i=0; i<nsrcs; i++) {
1071 /* skip inactive filters */
1072 if (pmc->mca_sfcount[MCAST_INCLUDE] ||
1073 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1074 psf->sf_count[MCAST_EXCLUDE])
1076 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1082 pmc->mca_flags &= ~MAF_GSQUERY;
1083 if (scount == nsrcs) /* all sources excluded */
1088 static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1089 struct in6_addr *srcs)
1091 struct ip6_sf_list *psf;
1094 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1095 return mld_xmarksources(pmc, nsrcs, srcs);
1097 /* mark INCLUDE-mode sources */
1100 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1101 if (scount == nsrcs)
1103 for (i=0; i<nsrcs; i++) {
1104 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1112 pmc->mca_flags &= ~MAF_GSQUERY;
1115 pmc->mca_flags |= MAF_GSQUERY;
1119 /* called with rcu_read_lock() */
1120 int igmp6_event_query(struct sk_buff *skb)
1122 struct mld2_query *mlh2 = NULL;
1123 struct ifmcaddr6 *ma;
1124 struct in6_addr *group;
1125 unsigned long max_delay;
1126 struct inet6_dev *idev;
1127 struct mld_msg *mld;
1132 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1135 /* compute payload length excluding extension headers */
1136 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1137 len -= skb_network_header_len(skb);
1139 /* Drop queries with not link local source */
1140 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
1143 idev = __in6_dev_get(skb->dev);
1148 mld = (struct mld_msg *)icmp6_hdr(skb);
1149 group = &mld->mld_mca;
1150 group_type = ipv6_addr_type(group);
1152 if (group_type != IPV6_ADDR_ANY &&
1153 !(group_type&IPV6_ADDR_MULTICAST))
1158 /* MLDv1 router present */
1160 /* Translate milliseconds to jiffies */
1161 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
1163 switchback = (idev->mc_qrv + 1) * max_delay;
1164 idev->mc_v1_seen = jiffies + switchback;
1166 /* cancel the interface change timer */
1167 idev->mc_ifc_count = 0;
1168 if (del_timer(&idev->mc_ifc_timer))
1169 __in6_dev_put(idev);
1170 /* clear deleted report items */
1171 mld_clear_delrec(idev);
1172 } else if (len >= 28) {
1173 int srcs_offset = sizeof(struct mld2_query) -
1174 sizeof(struct icmp6hdr);
1175 if (!pskb_may_pull(skb, srcs_offset))
1178 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1179 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
1182 idev->mc_maxdelay = max_delay;
1183 if (mlh2->mld2q_qrv)
1184 idev->mc_qrv = mlh2->mld2q_qrv;
1185 if (group_type == IPV6_ADDR_ANY) { /* general query */
1186 if (mlh2->mld2q_nsrcs)
1187 return -EINVAL; /* no sources allowed */
1189 mld_gq_start_timer(idev);
1192 /* mark sources to include, if group & source-specific */
1193 if (mlh2->mld2q_nsrcs != 0) {
1194 if (!pskb_may_pull(skb, srcs_offset +
1195 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
1198 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1204 read_lock_bh(&idev->lock);
1205 if (group_type == IPV6_ADDR_ANY) {
1206 for (ma = idev->mc_list; ma; ma=ma->next) {
1207 spin_lock_bh(&ma->mca_lock);
1208 igmp6_group_queried(ma, max_delay);
1209 spin_unlock_bh(&ma->mca_lock);
1212 for (ma = idev->mc_list; ma; ma=ma->next) {
1213 if (!ipv6_addr_equal(group, &ma->mca_addr))
1215 spin_lock_bh(&ma->mca_lock);
1216 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1217 /* gsquery <- gsquery && mark */
1219 ma->mca_flags &= ~MAF_GSQUERY;
1221 /* gsquery <- mark */
1223 ma->mca_flags |= MAF_GSQUERY;
1225 ma->mca_flags &= ~MAF_GSQUERY;
1227 if (!(ma->mca_flags & MAF_GSQUERY) ||
1228 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
1229 igmp6_group_queried(ma, max_delay);
1230 spin_unlock_bh(&ma->mca_lock);
1234 read_unlock_bh(&idev->lock);
1239 /* called with rcu_read_lock() */
1240 int igmp6_event_report(struct sk_buff *skb)
1242 struct ifmcaddr6 *ma;
1243 struct inet6_dev *idev;
1244 struct mld_msg *mld;
1247 /* Our own report looped back. Ignore it. */
1248 if (skb->pkt_type == PACKET_LOOPBACK)
1251 /* send our report if the MC router may not have heard this report */
1252 if (skb->pkt_type != PACKET_MULTICAST &&
1253 skb->pkt_type != PACKET_BROADCAST)
1256 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
1259 mld = (struct mld_msg *)icmp6_hdr(skb);
1261 /* Drop reports with not link local source */
1262 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1263 if (addr_type != IPV6_ADDR_ANY &&
1264 !(addr_type&IPV6_ADDR_LINKLOCAL))
1267 idev = __in6_dev_get(skb->dev);
1272 * Cancel the timer for this group
1275 read_lock_bh(&idev->lock);
1276 for (ma = idev->mc_list; ma; ma=ma->next) {
1277 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
1278 spin_lock(&ma->mca_lock);
1279 if (del_timer(&ma->mca_timer))
1280 atomic_dec(&ma->mca_refcnt);
1281 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1282 spin_unlock(&ma->mca_lock);
1286 read_unlock_bh(&idev->lock);
1290 static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1291 int gdeleted, int sdeleted)
1294 case MLD2_MODE_IS_INCLUDE:
1295 case MLD2_MODE_IS_EXCLUDE:
1296 if (gdeleted || sdeleted)
1298 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1299 if (pmc->mca_sfmode == MCAST_INCLUDE)
1301 /* don't include if this source is excluded
1304 if (psf->sf_count[MCAST_INCLUDE])
1305 return type == MLD2_MODE_IS_INCLUDE;
1306 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1307 psf->sf_count[MCAST_EXCLUDE];
1310 case MLD2_CHANGE_TO_INCLUDE:
1311 if (gdeleted || sdeleted)
1313 return psf->sf_count[MCAST_INCLUDE] != 0;
1314 case MLD2_CHANGE_TO_EXCLUDE:
1315 if (gdeleted || sdeleted)
1317 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1318 psf->sf_count[MCAST_INCLUDE])
1320 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1321 psf->sf_count[MCAST_EXCLUDE];
1322 case MLD2_ALLOW_NEW_SOURCES:
1323 if (gdeleted || !psf->sf_crcount)
1325 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1326 case MLD2_BLOCK_OLD_SOURCES:
1327 if (pmc->mca_sfmode == MCAST_INCLUDE)
1328 return gdeleted || (psf->sf_crcount && sdeleted);
1329 return psf->sf_crcount && !gdeleted && !sdeleted;
1335 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1337 struct ip6_sf_list *psf;
1340 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1341 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1348 static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1350 struct net *net = dev_net(dev);
1351 struct sock *sk = net->ipv6.igmp_sk;
1352 struct sk_buff *skb;
1353 struct mld2_report *pmr;
1354 struct in6_addr addr_buf;
1355 const struct in6_addr *saddr;
1357 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1358 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1361 /* we assume size > sizeof(ra) here */
1362 size += LL_ALLOCATED_SPACE(dev);
1363 /* limit our allocations to order-0 page */
1364 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1365 skb = sock_alloc_send_skb(sk, size, 1, &err);
1370 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1372 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1373 /* <draft-ietf-magma-mld-source-05.txt>:
1374 * use unspecified address as the source address
1375 * when a valid link-local address is not available.
1377 saddr = &in6addr_any;
1381 ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
1383 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1385 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1386 skb_put(skb, sizeof(*pmr));
1387 pmr = (struct mld2_report *)skb_transport_header(skb);
1388 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1389 pmr->mld2r_resv1 = 0;
1390 pmr->mld2r_cksum = 0;
1391 pmr->mld2r_resv2 = 0;
1392 pmr->mld2r_ngrec = 0;
1396 static void mld_sendpack(struct sk_buff *skb)
1398 struct ipv6hdr *pip6 = ipv6_hdr(skb);
1399 struct mld2_report *pmr =
1400 (struct mld2_report *)skb_transport_header(skb);
1401 int payload_len, mldlen;
1402 struct inet6_dev *idev;
1403 struct net *net = dev_net(skb->dev);
1406 struct dst_entry *dst;
1409 idev = __in6_dev_get(skb->dev);
1410 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1412 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1413 mldlen = skb->tail - skb->transport_header;
1414 pip6->payload_len = htons(payload_len);
1416 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1418 csum_partial(skb_transport_header(skb),
1421 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1428 icmpv6_flow_init(net->ipv6.igmp_sk, &fl, ICMPV6_MLD2_REPORT,
1429 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1432 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
1433 skb_dst_set(skb, dst);
1437 payload_len = skb->len;
1439 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1443 ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
1444 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
1445 IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1447 IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
1457 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1459 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1462 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1463 int type, struct mld2_grec **ppgr)
1465 struct net_device *dev = pmc->idev->dev;
1466 struct mld2_report *pmr;
1467 struct mld2_grec *pgr;
1470 skb = mld_newpack(dev, dev->mtu);
1473 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1474 pgr->grec_type = type;
1475 pgr->grec_auxwords = 0;
1476 pgr->grec_nsrcs = 0;
1477 pgr->grec_mca = pmc->mca_addr; /* structure copy */
1478 pmr = (struct mld2_report *)skb_transport_header(skb);
1479 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
1484 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1485 skb_tailroom(skb)) : 0)
1487 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1488 int type, int gdeleted, int sdeleted)
1490 struct net_device *dev = pmc->idev->dev;
1491 struct mld2_report *pmr;
1492 struct mld2_grec *pgr = NULL;
1493 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1494 int scount, stotal, first, isquery, truncate;
1496 if (pmc->mca_flags & MAF_NOREPORT)
1499 isquery = type == MLD2_MODE_IS_INCLUDE ||
1500 type == MLD2_MODE_IS_EXCLUDE;
1501 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1502 type == MLD2_CHANGE_TO_EXCLUDE;
1504 stotal = scount = 0;
1506 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1511 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
1513 /* EX and TO_EX get a fresh packet, if needed */
1515 if (pmr && pmr->mld2r_ngrec &&
1516 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1519 skb = mld_newpack(dev, dev->mtu);
1524 for (psf=*psf_list; psf; psf=psf_next) {
1525 struct in6_addr *psrc;
1527 psf_next = psf->sf_next;
1529 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1534 /* clear marks on query responses */
1538 if (AVAILABLE(skb) < sizeof(*psrc) +
1539 first*sizeof(struct mld2_grec)) {
1540 if (truncate && !first)
1541 break; /* truncate these */
1543 pgr->grec_nsrcs = htons(scount);
1546 skb = mld_newpack(dev, dev->mtu);
1551 skb = add_grhead(skb, pmc, type, &pgr);
1556 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1557 *psrc = psf->sf_addr;
1559 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1560 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1562 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1564 psf_prev->sf_next = psf->sf_next;
1566 *psf_list = psf->sf_next;
1576 if (type == MLD2_ALLOW_NEW_SOURCES ||
1577 type == MLD2_BLOCK_OLD_SOURCES)
1579 if (pmc->mca_crcount || isquery) {
1580 /* make sure we have room for group header */
1581 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1583 skb = NULL; /* add_grhead will get a new one */
1585 skb = add_grhead(skb, pmc, type, &pgr);
1589 pgr->grec_nsrcs = htons(scount);
1592 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1596 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1598 struct sk_buff *skb = NULL;
1602 read_lock_bh(&idev->lock);
1603 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1604 if (pmc->mca_flags & MAF_NOREPORT)
1606 spin_lock_bh(&pmc->mca_lock);
1607 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1608 type = MLD2_MODE_IS_EXCLUDE;
1610 type = MLD2_MODE_IS_INCLUDE;
1611 skb = add_grec(skb, pmc, type, 0, 0);
1612 spin_unlock_bh(&pmc->mca_lock);
1614 read_unlock_bh(&idev->lock);
1616 spin_lock_bh(&pmc->mca_lock);
1617 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1618 type = MLD2_MODE_IS_EXCLUDE;
1620 type = MLD2_MODE_IS_INCLUDE;
1621 skb = add_grec(skb, pmc, type, 0, 0);
1622 spin_unlock_bh(&pmc->mca_lock);
1629 * remove zero-count source records from a source filter list
1631 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1633 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1636 for (psf=*ppsf; psf; psf = psf_next) {
1637 psf_next = psf->sf_next;
1638 if (psf->sf_crcount == 0) {
1640 psf_prev->sf_next = psf->sf_next;
1642 *ppsf = psf->sf_next;
1649 static void mld_send_cr(struct inet6_dev *idev)
1651 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1652 struct sk_buff *skb = NULL;
1655 read_lock_bh(&idev->lock);
1656 spin_lock(&idev->mc_lock);
1660 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1661 pmc_next = pmc->next;
1662 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1663 type = MLD2_BLOCK_OLD_SOURCES;
1664 dtype = MLD2_BLOCK_OLD_SOURCES;
1665 skb = add_grec(skb, pmc, type, 1, 0);
1666 skb = add_grec(skb, pmc, dtype, 1, 1);
1668 if (pmc->mca_crcount) {
1669 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1670 type = MLD2_CHANGE_TO_INCLUDE;
1671 skb = add_grec(skb, pmc, type, 1, 0);
1674 if (pmc->mca_crcount == 0) {
1675 mld_clear_zeros(&pmc->mca_tomb);
1676 mld_clear_zeros(&pmc->mca_sources);
1679 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1680 !pmc->mca_sources) {
1682 pmc_prev->next = pmc_next;
1684 idev->mc_tomb = pmc_next;
1685 in6_dev_put(pmc->idev);
1690 spin_unlock(&idev->mc_lock);
1693 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1694 spin_lock_bh(&pmc->mca_lock);
1695 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1696 type = MLD2_BLOCK_OLD_SOURCES;
1697 dtype = MLD2_ALLOW_NEW_SOURCES;
1699 type = MLD2_ALLOW_NEW_SOURCES;
1700 dtype = MLD2_BLOCK_OLD_SOURCES;
1702 skb = add_grec(skb, pmc, type, 0, 0);
1703 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1705 /* filter mode changes */
1706 if (pmc->mca_crcount) {
1707 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1708 type = MLD2_CHANGE_TO_EXCLUDE;
1710 type = MLD2_CHANGE_TO_INCLUDE;
1711 skb = add_grec(skb, pmc, type, 0, 0);
1714 spin_unlock_bh(&pmc->mca_lock);
1716 read_unlock_bh(&idev->lock);
1719 (void) mld_sendpack(skb);
1722 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1724 struct net *net = dev_net(dev);
1725 struct sock *sk = net->ipv6.igmp_sk;
1726 struct inet6_dev *idev;
1727 struct sk_buff *skb;
1728 struct mld_msg *hdr;
1729 const struct in6_addr *snd_addr, *saddr;
1730 struct in6_addr addr_buf;
1731 int err, len, payload_len, full_len;
1732 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1733 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1736 struct dst_entry *dst;
1738 if (type == ICMPV6_MGM_REDUCTION)
1739 snd_addr = &in6addr_linklocal_allrouters;
1743 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1744 payload_len = len + sizeof(ra);
1745 full_len = sizeof(struct ipv6hdr) + payload_len;
1748 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1749 IPSTATS_MIB_OUT, full_len);
1752 skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err);
1756 IP6_INC_STATS(net, __in6_dev_get(dev),
1757 IPSTATS_MIB_OUTDISCARDS);
1762 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1764 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1765 /* <draft-ietf-magma-mld-source-05.txt>:
1766 * use unspecified address as the source address
1767 * when a valid link-local address is not available.
1769 saddr = &in6addr_any;
1773 ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
1775 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1777 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1778 memset(hdr, 0, sizeof(struct mld_msg));
1779 hdr->mld_type = type;
1780 ipv6_addr_copy(&hdr->mld_mca, addr);
1782 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1784 csum_partial(hdr, len, 0));
1787 idev = __in6_dev_get(skb->dev);
1789 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1795 icmpv6_flow_init(sk, &fl, type,
1796 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1799 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
1803 skb_dst_set(skb, dst);
1804 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1808 ICMP6MSGOUT_INC_STATS(net, idev, type);
1809 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1810 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
1812 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1822 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1823 struct in6_addr *psfsrc)
1825 struct ip6_sf_list *psf, *psf_prev;
1829 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1830 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1834 if (!psf || psf->sf_count[sfmode] == 0) {
1835 /* source filter not found, or count wrong => bug */
1838 psf->sf_count[sfmode]--;
1839 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1840 struct inet6_dev *idev = pmc->idev;
1842 /* no more filters for this source */
1844 psf_prev->sf_next = psf->sf_next;
1846 pmc->mca_sources = psf->sf_next;
1847 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1848 !MLD_V1_SEEN(idev)) {
1849 psf->sf_crcount = idev->mc_qrv;
1850 psf->sf_next = pmc->mca_tomb;
1851 pmc->mca_tomb = psf;
1859 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
1860 int sfmode, int sfcount, struct in6_addr *psfsrc,
1863 struct ifmcaddr6 *pmc;
1869 read_lock_bh(&idev->lock);
1870 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1871 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1875 /* MCA not found?? bug */
1876 read_unlock_bh(&idev->lock);
1879 spin_lock_bh(&pmc->mca_lock);
1882 if (!pmc->mca_sfcount[sfmode]) {
1883 spin_unlock_bh(&pmc->mca_lock);
1884 read_unlock_bh(&idev->lock);
1887 pmc->mca_sfcount[sfmode]--;
1890 for (i=0; i<sfcount; i++) {
1891 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1893 changerec |= rv > 0;
1897 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1898 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1899 pmc->mca_sfcount[MCAST_INCLUDE]) {
1900 struct ip6_sf_list *psf;
1902 /* filter mode change */
1903 pmc->mca_sfmode = MCAST_INCLUDE;
1904 pmc->mca_crcount = idev->mc_qrv;
1905 idev->mc_ifc_count = pmc->mca_crcount;
1906 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1907 psf->sf_crcount = 0;
1908 mld_ifc_event(pmc->idev);
1909 } else if (sf_setstate(pmc) || changerec)
1910 mld_ifc_event(pmc->idev);
1911 spin_unlock_bh(&pmc->mca_lock);
1912 read_unlock_bh(&idev->lock);
1917 * Add multicast single-source filter to the interface list
1919 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1920 struct in6_addr *psfsrc, int delta)
1922 struct ip6_sf_list *psf, *psf_prev;
1925 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1926 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1931 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1935 psf->sf_addr = *psfsrc;
1937 psf_prev->sf_next = psf;
1939 pmc->mca_sources = psf;
1941 psf->sf_count[sfmode]++;
1945 static void sf_markstate(struct ifmcaddr6 *pmc)
1947 struct ip6_sf_list *psf;
1948 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1950 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1951 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1952 psf->sf_oldin = mca_xcount ==
1953 psf->sf_count[MCAST_EXCLUDE] &&
1954 !psf->sf_count[MCAST_INCLUDE];
1956 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1959 static int sf_setstate(struct ifmcaddr6 *pmc)
1961 struct ip6_sf_list *psf, *dpsf;
1962 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1963 int qrv = pmc->idev->mc_qrv;
1967 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1968 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1969 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1970 !psf->sf_count[MCAST_INCLUDE];
1972 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1974 if (!psf->sf_oldin) {
1975 struct ip6_sf_list *prev = NULL;
1977 for (dpsf=pmc->mca_tomb; dpsf;
1978 dpsf=dpsf->sf_next) {
1979 if (ipv6_addr_equal(&dpsf->sf_addr,
1986 prev->sf_next = dpsf->sf_next;
1988 pmc->mca_tomb = dpsf->sf_next;
1991 psf->sf_crcount = qrv;
1994 } else if (psf->sf_oldin) {
1995 psf->sf_crcount = 0;
1997 * add or update "delete" records if an active filter
2000 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2001 if (ipv6_addr_equal(&dpsf->sf_addr,
2005 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
2009 /* pmc->mca_lock held by callers */
2010 dpsf->sf_next = pmc->mca_tomb;
2011 pmc->mca_tomb = dpsf;
2013 dpsf->sf_crcount = qrv;
2021 * Add multicast source filter list to the interface list
2023 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
2024 int sfmode, int sfcount, struct in6_addr *psfsrc,
2027 struct ifmcaddr6 *pmc;
2033 read_lock_bh(&idev->lock);
2034 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2035 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2039 /* MCA not found?? bug */
2040 read_unlock_bh(&idev->lock);
2043 spin_lock_bh(&pmc->mca_lock);
2046 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2048 pmc->mca_sfcount[sfmode]++;
2050 for (i=0; i<sfcount; i++) {
2051 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2059 pmc->mca_sfcount[sfmode]--;
2061 (void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2062 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2063 struct ip6_sf_list *psf;
2065 /* filter mode change */
2066 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2067 pmc->mca_sfmode = MCAST_EXCLUDE;
2068 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2069 pmc->mca_sfmode = MCAST_INCLUDE;
2070 /* else no filters; keep old mode for reports */
2072 pmc->mca_crcount = idev->mc_qrv;
2073 idev->mc_ifc_count = pmc->mca_crcount;
2074 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2075 psf->sf_crcount = 0;
2076 mld_ifc_event(idev);
2077 } else if (sf_setstate(pmc))
2078 mld_ifc_event(idev);
2079 spin_unlock_bh(&pmc->mca_lock);
2080 read_unlock_bh(&idev->lock);
2084 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2086 struct ip6_sf_list *psf, *nextpsf;
2088 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2089 nextpsf = psf->sf_next;
2092 pmc->mca_tomb = NULL;
2093 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2094 nextpsf = psf->sf_next;
2097 pmc->mca_sources = NULL;
2098 pmc->mca_sfmode = MCAST_EXCLUDE;
2099 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2100 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2104 static void igmp6_join_group(struct ifmcaddr6 *ma)
2106 unsigned long delay;
2108 if (ma->mca_flags & MAF_NOREPORT)
2111 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2113 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2115 spin_lock_bh(&ma->mca_lock);
2116 if (del_timer(&ma->mca_timer)) {
2117 atomic_dec(&ma->mca_refcnt);
2118 delay = ma->mca_timer.expires - jiffies;
2121 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2122 atomic_inc(&ma->mca_refcnt);
2123 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2124 spin_unlock_bh(&ma->mca_lock);
2127 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2128 struct inet6_dev *idev)
2132 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2133 * so no other readers or writers of iml or its sflist
2136 /* any-source empty exclude case */
2137 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2139 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2140 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2141 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2146 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2148 if (MLD_V1_SEEN(ma->idev)) {
2149 if (ma->mca_flags & MAF_LAST_REPORTER)
2150 igmp6_send(&ma->mca_addr, ma->idev->dev,
2151 ICMPV6_MGM_REDUCTION);
2153 mld_add_delrec(ma->idev, ma);
2154 mld_ifc_event(ma->idev);
2158 static void mld_gq_timer_expire(unsigned long data)
2160 struct inet6_dev *idev = (struct inet6_dev *)data;
2162 idev->mc_gq_running = 0;
2163 mld_send_report(idev, NULL);
2164 __in6_dev_put(idev);
2167 static void mld_ifc_timer_expire(unsigned long data)
2169 struct inet6_dev *idev = (struct inet6_dev *)data;
2172 if (idev->mc_ifc_count) {
2173 idev->mc_ifc_count--;
2174 if (idev->mc_ifc_count)
2175 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2177 __in6_dev_put(idev);
2180 static void mld_ifc_event(struct inet6_dev *idev)
2182 if (MLD_V1_SEEN(idev))
2184 idev->mc_ifc_count = idev->mc_qrv;
2185 mld_ifc_start_timer(idev, 1);
2189 static void igmp6_timer_handler(unsigned long data)
2191 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2193 if (MLD_V1_SEEN(ma->idev))
2194 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2196 mld_send_report(ma->idev, ma);
2198 spin_lock(&ma->mca_lock);
2199 ma->mca_flags |= MAF_LAST_REPORTER;
2200 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2201 spin_unlock(&ma->mca_lock);
2205 /* Device changing type */
2207 void ipv6_mc_unmap(struct inet6_dev *idev)
2209 struct ifmcaddr6 *i;
2211 /* Install multicast list, except for all-nodes (already installed) */
2213 read_lock_bh(&idev->lock);
2214 for (i = idev->mc_list; i; i = i->next)
2215 igmp6_group_dropped(i);
2216 read_unlock_bh(&idev->lock);
2219 void ipv6_mc_remap(struct inet6_dev *idev)
2224 /* Device going down */
2226 void ipv6_mc_down(struct inet6_dev *idev)
2228 struct ifmcaddr6 *i;
2230 /* Withdraw multicast list */
2232 read_lock_bh(&idev->lock);
2233 idev->mc_ifc_count = 0;
2234 if (del_timer(&idev->mc_ifc_timer))
2235 __in6_dev_put(idev);
2236 idev->mc_gq_running = 0;
2237 if (del_timer(&idev->mc_gq_timer))
2238 __in6_dev_put(idev);
2240 for (i = idev->mc_list; i; i=i->next)
2241 igmp6_group_dropped(i);
2242 read_unlock_bh(&idev->lock);
2244 mld_clear_delrec(idev);
2248 /* Device going up */
2250 void ipv6_mc_up(struct inet6_dev *idev)
2252 struct ifmcaddr6 *i;
2254 /* Install multicast list, except for all-nodes (already installed) */
2256 read_lock_bh(&idev->lock);
2257 for (i = idev->mc_list; i; i=i->next)
2258 igmp6_group_added(i);
2259 read_unlock_bh(&idev->lock);
2262 /* IPv6 device initialization. */
2264 void ipv6_mc_init_dev(struct inet6_dev *idev)
2266 write_lock_bh(&idev->lock);
2267 spin_lock_init(&idev->mc_lock);
2268 idev->mc_gq_running = 0;
2269 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2270 (unsigned long)idev);
2271 idev->mc_tomb = NULL;
2272 idev->mc_ifc_count = 0;
2273 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2274 (unsigned long)idev);
2275 idev->mc_qrv = MLD_QRV_DEFAULT;
2276 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2277 idev->mc_v1_seen = 0;
2278 write_unlock_bh(&idev->lock);
2282 * Device is about to be destroyed: clean up.
2285 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2287 struct ifmcaddr6 *i;
2289 /* Deactivate timers */
2292 /* Delete all-nodes address. */
2293 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2294 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2297 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
2299 if (idev->cnf.forwarding)
2300 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
2302 write_lock_bh(&idev->lock);
2303 while ((i = idev->mc_list) != NULL) {
2304 idev->mc_list = i->next;
2305 write_unlock_bh(&idev->lock);
2307 igmp6_group_dropped(i);
2310 write_lock_bh(&idev->lock);
2312 write_unlock_bh(&idev->lock);
2315 #ifdef CONFIG_PROC_FS
2316 struct igmp6_mc_iter_state {
2317 struct seq_net_private p;
2318 struct net_device *dev;
2319 struct inet6_dev *idev;
2322 #define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2324 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2326 struct ifmcaddr6 *im = NULL;
2327 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2328 struct net *net = seq_file_net(seq);
2331 for_each_netdev_rcu(net, state->dev) {
2332 struct inet6_dev *idev;
2333 idev = __in6_dev_get(state->dev);
2336 read_lock_bh(&idev->lock);
2342 read_unlock_bh(&idev->lock);
2347 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2349 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2353 if (likely(state->idev != NULL))
2354 read_unlock_bh(&state->idev->lock);
2356 state->dev = next_net_device_rcu(state->dev);
2361 state->idev = __in6_dev_get(state->dev);
2364 read_lock_bh(&state->idev->lock);
2365 im = state->idev->mc_list;
2370 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2372 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2374 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2376 return pos ? NULL : im;
2379 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2383 return igmp6_mc_get_idx(seq, *pos);
2386 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2388 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2394 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2397 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2399 if (likely(state->idev != NULL)) {
2400 read_unlock_bh(&state->idev->lock);
2407 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2409 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2410 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2413 "%-4d %-15s %pi6 %5d %08X %ld\n",
2414 state->dev->ifindex, state->dev->name,
2416 im->mca_users, im->mca_flags,
2417 (im->mca_flags&MAF_TIMER_RUNNING) ?
2418 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2422 static const struct seq_operations igmp6_mc_seq_ops = {
2423 .start = igmp6_mc_seq_start,
2424 .next = igmp6_mc_seq_next,
2425 .stop = igmp6_mc_seq_stop,
2426 .show = igmp6_mc_seq_show,
2429 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2431 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2432 sizeof(struct igmp6_mc_iter_state));
2435 static const struct file_operations igmp6_mc_seq_fops = {
2436 .owner = THIS_MODULE,
2437 .open = igmp6_mc_seq_open,
2439 .llseek = seq_lseek,
2440 .release = seq_release_net,
2443 struct igmp6_mcf_iter_state {
2444 struct seq_net_private p;
2445 struct net_device *dev;
2446 struct inet6_dev *idev;
2447 struct ifmcaddr6 *im;
2450 #define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2452 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2454 struct ip6_sf_list *psf = NULL;
2455 struct ifmcaddr6 *im = NULL;
2456 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2457 struct net *net = seq_file_net(seq);
2461 for_each_netdev_rcu(net, state->dev) {
2462 struct inet6_dev *idev;
2463 idev = __in6_dev_get(state->dev);
2464 if (unlikely(idev == NULL))
2466 read_lock_bh(&idev->lock);
2468 if (likely(im != NULL)) {
2469 spin_lock_bh(&im->mca_lock);
2470 psf = im->mca_sources;
2471 if (likely(psf != NULL)) {
2476 spin_unlock_bh(&im->mca_lock);
2478 read_unlock_bh(&idev->lock);
2483 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2485 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2489 spin_unlock_bh(&state->im->mca_lock);
2490 state->im = state->im->next;
2491 while (!state->im) {
2492 if (likely(state->idev != NULL))
2493 read_unlock_bh(&state->idev->lock);
2495 state->dev = next_net_device_rcu(state->dev);
2500 state->idev = __in6_dev_get(state->dev);
2503 read_lock_bh(&state->idev->lock);
2504 state->im = state->idev->mc_list;
2508 spin_lock_bh(&state->im->mca_lock);
2509 psf = state->im->mca_sources;
2515 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2517 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2519 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2521 return pos ? NULL : psf;
2524 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2528 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2531 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2533 struct ip6_sf_list *psf;
2534 if (v == SEQ_START_TOKEN)
2535 psf = igmp6_mcf_get_first(seq);
2537 psf = igmp6_mcf_get_next(seq, v);
2542 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2545 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2546 if (likely(state->im != NULL)) {
2547 spin_unlock_bh(&state->im->mca_lock);
2550 if (likely(state->idev != NULL)) {
2551 read_unlock_bh(&state->idev->lock);
2558 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2560 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2561 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2563 if (v == SEQ_START_TOKEN) {
2566 "%32s %32s %6s %6s\n", "Idx",
2567 "Device", "Multicast Address",
2568 "Source Address", "INC", "EXC");
2571 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
2572 state->dev->ifindex, state->dev->name,
2573 &state->im->mca_addr,
2575 psf->sf_count[MCAST_INCLUDE],
2576 psf->sf_count[MCAST_EXCLUDE]);
2581 static const struct seq_operations igmp6_mcf_seq_ops = {
2582 .start = igmp6_mcf_seq_start,
2583 .next = igmp6_mcf_seq_next,
2584 .stop = igmp6_mcf_seq_stop,
2585 .show = igmp6_mcf_seq_show,
2588 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2590 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2591 sizeof(struct igmp6_mcf_iter_state));
2594 static const struct file_operations igmp6_mcf_seq_fops = {
2595 .owner = THIS_MODULE,
2596 .open = igmp6_mcf_seq_open,
2598 .llseek = seq_lseek,
2599 .release = seq_release_net,
2602 static int __net_init igmp6_proc_init(struct net *net)
2607 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2609 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2610 &igmp6_mcf_seq_fops))
2611 goto out_proc_net_igmp6;
2618 proc_net_remove(net, "igmp6");
2622 static void __net_exit igmp6_proc_exit(struct net *net)
2624 proc_net_remove(net, "mcfilter6");
2625 proc_net_remove(net, "igmp6");
2628 static inline int igmp6_proc_init(struct net *net)
2632 static inline void igmp6_proc_exit(struct net *net)
2637 static int __net_init igmp6_net_init(struct net *net)
2641 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2642 SOCK_RAW, IPPROTO_ICMPV6, net);
2645 "Failed to initialize the IGMP6 control socket (err %d).\n",
2650 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
2652 err = igmp6_proc_init(net);
2654 goto out_sock_create;
2659 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2663 static void __net_exit igmp6_net_exit(struct net *net)
2665 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2666 igmp6_proc_exit(net);
2669 static struct pernet_operations igmp6_net_ops = {
2670 .init = igmp6_net_init,
2671 .exit = igmp6_net_exit,
2674 int __init igmp6_init(void)
2676 return register_pernet_subsys(&igmp6_net_ops);
2679 void igmp6_cleanup(void)
2681 unregister_pernet_subsys(&igmp6_net_ops);