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, const 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, const struct in6_addr *pmca,
101 int sfmode, int sfcount, const struct in6_addr *psfsrc,
103 static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
104 int sfmode, int sfcount, const 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 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);
205 * socket leave on multicast group
207 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
209 struct ipv6_pinfo *np = inet6_sk(sk);
210 struct ipv6_mc_socklist *mc_lst;
211 struct ipv6_mc_socklist __rcu **lnk;
212 struct net *net = sock_net(sk);
214 if (!ipv6_addr_is_multicast(addr))
217 spin_lock(&ipv6_sk_mc_lock);
218 for (lnk = &np->ipv6_mc_list;
219 (mc_lst = rcu_dereference_protected(*lnk,
220 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
221 lnk = &mc_lst->next) {
222 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
223 ipv6_addr_equal(&mc_lst->addr, addr)) {
224 struct net_device *dev;
227 spin_unlock(&ipv6_sk_mc_lock);
230 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
232 struct inet6_dev *idev = __in6_dev_get(dev);
234 (void) ip6_mc_leave_src(sk, mc_lst, idev);
236 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
238 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
240 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
241 kfree_rcu(mc_lst, rcu);
245 spin_unlock(&ipv6_sk_mc_lock);
247 return -EADDRNOTAVAIL;
250 /* called with rcu_read_lock() */
251 static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
252 const struct in6_addr *group,
255 struct net_device *dev = NULL;
256 struct inet6_dev *idev = NULL;
259 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
263 dst_release(&rt->dst);
266 dev = dev_get_by_index_rcu(net, ifindex);
270 idev = __in6_dev_get(dev);
273 read_lock_bh(&idev->lock);
275 read_unlock_bh(&idev->lock);
281 void ipv6_sock_mc_close(struct sock *sk)
283 struct ipv6_pinfo *np = inet6_sk(sk);
284 struct ipv6_mc_socklist *mc_lst;
285 struct net *net = sock_net(sk);
287 spin_lock(&ipv6_sk_mc_lock);
288 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
289 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
290 struct net_device *dev;
292 np->ipv6_mc_list = mc_lst->next;
293 spin_unlock(&ipv6_sk_mc_lock);
296 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
298 struct inet6_dev *idev = __in6_dev_get(dev);
300 (void) ip6_mc_leave_src(sk, mc_lst, idev);
302 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
304 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
307 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
308 kfree_rcu(mc_lst, rcu);
310 spin_lock(&ipv6_sk_mc_lock);
312 spin_unlock(&ipv6_sk_mc_lock);
315 int ip6_mc_source(int add, int omode, struct sock *sk,
316 struct group_source_req *pgsr)
318 struct in6_addr *source, *group;
319 struct ipv6_mc_socklist *pmc;
320 struct inet6_dev *idev;
321 struct ipv6_pinfo *inet6 = inet6_sk(sk);
322 struct ip6_sf_socklist *psl;
323 struct net *net = sock_net(sk);
329 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
330 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
332 if (!ipv6_addr_is_multicast(group))
336 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
342 err = -EADDRNOTAVAIL;
344 for_each_pmc_rcu(inet6, pmc) {
345 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
347 if (ipv6_addr_equal(&pmc->addr, group))
350 if (!pmc) { /* must have a prior join */
354 /* if a source filter was set, must be the same mode as before */
356 if (pmc->sfmode != omode) {
360 } else if (pmc->sfmode != omode) {
361 /* allow mode switches for empty-set filters */
362 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
363 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
367 write_lock(&pmc->sflock);
373 goto done; /* err = -EADDRNOTAVAIL */
375 for (i=0; i<psl->sl_count; i++) {
376 rv = memcmp(&psl->sl_addr[i], source,
377 sizeof(struct in6_addr));
381 if (rv) /* source not found */
382 goto done; /* err = -EADDRNOTAVAIL */
384 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
385 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
390 /* update the interface filter */
391 ip6_mc_del_src(idev, group, omode, 1, source, 1);
393 for (j=i+1; j<psl->sl_count; j++)
394 psl->sl_addr[j-1] = psl->sl_addr[j];
399 /* else, add a new source to the filter */
401 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
405 if (!psl || psl->sl_count == psl->sl_max) {
406 struct ip6_sf_socklist *newpsl;
407 int count = IP6_SFBLOCK;
410 count += psl->sl_max;
411 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
416 newpsl->sl_max = count;
417 newpsl->sl_count = count - IP6_SFBLOCK;
419 for (i=0; i<psl->sl_count; i++)
420 newpsl->sl_addr[i] = psl->sl_addr[i];
421 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
423 pmc->sflist = psl = newpsl;
425 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
426 for (i=0; i<psl->sl_count; i++) {
427 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
431 if (rv == 0) /* address already there is an error */
433 for (j=psl->sl_count-1; j>=i; j--)
434 psl->sl_addr[j+1] = psl->sl_addr[j];
435 psl->sl_addr[i] = *source;
438 /* update the interface list */
439 ip6_mc_add_src(idev, group, omode, 1, source, 1);
442 write_unlock(&pmc->sflock);
443 read_unlock_bh(&idev->lock);
446 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
450 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
452 const struct in6_addr *group;
453 struct ipv6_mc_socklist *pmc;
454 struct inet6_dev *idev;
455 struct ipv6_pinfo *inet6 = inet6_sk(sk);
456 struct ip6_sf_socklist *newpsl, *psl;
457 struct net *net = sock_net(sk);
461 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
463 if (!ipv6_addr_is_multicast(group))
465 if (gsf->gf_fmode != MCAST_INCLUDE &&
466 gsf->gf_fmode != MCAST_EXCLUDE)
470 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
479 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
484 for_each_pmc_rcu(inet6, pmc) {
485 if (pmc->ifindex != gsf->gf_interface)
487 if (ipv6_addr_equal(&pmc->addr, group))
490 if (!pmc) { /* must have a prior join */
494 if (gsf->gf_numsrc) {
495 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
501 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
502 for (i=0; i<newpsl->sl_count; ++i) {
503 struct sockaddr_in6 *psin6;
505 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
506 newpsl->sl_addr[i] = psin6->sin6_addr;
508 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
509 newpsl->sl_count, newpsl->sl_addr, 0);
511 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
516 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
519 write_lock(&pmc->sflock);
522 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
523 psl->sl_count, psl->sl_addr, 0);
524 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
526 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
527 pmc->sflist = newpsl;
528 pmc->sfmode = gsf->gf_fmode;
529 write_unlock(&pmc->sflock);
532 read_unlock_bh(&idev->lock);
535 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
539 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
540 struct group_filter __user *optval, int __user *optlen)
542 int err, i, count, copycount;
543 const struct in6_addr *group;
544 struct ipv6_mc_socklist *pmc;
545 struct inet6_dev *idev;
546 struct ipv6_pinfo *inet6 = inet6_sk(sk);
547 struct ip6_sf_socklist *psl;
548 struct net *net = sock_net(sk);
550 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
552 if (!ipv6_addr_is_multicast(group))
556 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
563 err = -EADDRNOTAVAIL;
565 * changes to the ipv6_mc_list require the socket lock and
566 * a read lock on ip6_sk_mc_lock. We have the socket lock,
567 * so reading the list is safe.
570 for_each_pmc_rcu(inet6, pmc) {
571 if (pmc->ifindex != gsf->gf_interface)
573 if (ipv6_addr_equal(group, &pmc->addr))
576 if (!pmc) /* must have a prior join */
578 gsf->gf_fmode = pmc->sfmode;
580 count = psl ? psl->sl_count : 0;
581 read_unlock_bh(&idev->lock);
584 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
585 gsf->gf_numsrc = count;
586 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
587 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
590 /* changes to psl require the socket lock, a read lock on
591 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
592 * have the socket lock, so reading here is safe.
594 for (i=0; i<copycount; i++) {
595 struct sockaddr_in6 *psin6;
596 struct sockaddr_storage ss;
598 psin6 = (struct sockaddr_in6 *)&ss;
599 memset(&ss, 0, sizeof(ss));
600 psin6->sin6_family = AF_INET6;
601 psin6->sin6_addr = psl->sl_addr[i];
602 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
607 read_unlock_bh(&idev->lock);
612 bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
613 const struct in6_addr *src_addr)
615 struct ipv6_pinfo *np = inet6_sk(sk);
616 struct ipv6_mc_socklist *mc;
617 struct ip6_sf_socklist *psl;
621 for_each_pmc_rcu(np, mc) {
622 if (ipv6_addr_equal(&mc->addr, mc_addr))
629 read_lock(&mc->sflock);
632 rv = mc->sfmode == MCAST_EXCLUDE;
636 for (i=0; i<psl->sl_count; i++) {
637 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
640 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
642 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
645 read_unlock(&mc->sflock);
651 static void ma_put(struct ifmcaddr6 *mc)
653 if (atomic_dec_and_test(&mc->mca_refcnt)) {
654 in6_dev_put(mc->idev);
659 static void igmp6_group_added(struct ifmcaddr6 *mc)
661 struct net_device *dev = mc->idev->dev;
662 char buf[MAX_ADDR_LEN];
664 spin_lock_bh(&mc->mca_lock);
665 if (!(mc->mca_flags&MAF_LOADED)) {
666 mc->mca_flags |= MAF_LOADED;
667 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
668 dev_mc_add(dev, buf);
670 spin_unlock_bh(&mc->mca_lock);
672 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
675 if (MLD_V1_SEEN(mc->idev)) {
676 igmp6_join_group(mc);
681 mc->mca_crcount = mc->idev->mc_qrv;
682 mld_ifc_event(mc->idev);
685 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
687 struct net_device *dev = mc->idev->dev;
688 char buf[MAX_ADDR_LEN];
690 spin_lock_bh(&mc->mca_lock);
691 if (mc->mca_flags&MAF_LOADED) {
692 mc->mca_flags &= ~MAF_LOADED;
693 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
694 dev_mc_del(dev, buf);
697 if (mc->mca_flags & MAF_NOREPORT)
699 spin_unlock_bh(&mc->mca_lock);
702 igmp6_leave_group(mc);
704 spin_lock_bh(&mc->mca_lock);
705 if (del_timer(&mc->mca_timer))
706 atomic_dec(&mc->mca_refcnt);
708 ip6_mc_clear_src(mc);
709 spin_unlock_bh(&mc->mca_lock);
713 * deleted ifmcaddr6 manipulation
715 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
717 struct ifmcaddr6 *pmc;
719 /* this is an "ifmcaddr6" for convenience; only the fields below
720 * are actually used. In particular, the refcnt and users are not
721 * used for management of the delete list. Using the same structure
722 * for deleted items allows change reports to use common code with
723 * non-deleted or query-response MCA's.
725 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
729 spin_lock_bh(&im->mca_lock);
730 spin_lock_init(&pmc->mca_lock);
731 pmc->idev = im->idev;
733 pmc->mca_addr = im->mca_addr;
734 pmc->mca_crcount = idev->mc_qrv;
735 pmc->mca_sfmode = im->mca_sfmode;
736 if (pmc->mca_sfmode == MCAST_INCLUDE) {
737 struct ip6_sf_list *psf;
739 pmc->mca_tomb = im->mca_tomb;
740 pmc->mca_sources = im->mca_sources;
741 im->mca_tomb = im->mca_sources = NULL;
742 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
743 psf->sf_crcount = pmc->mca_crcount;
745 spin_unlock_bh(&im->mca_lock);
747 spin_lock_bh(&idev->mc_lock);
748 pmc->next = idev->mc_tomb;
750 spin_unlock_bh(&idev->mc_lock);
753 static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
755 struct ifmcaddr6 *pmc, *pmc_prev;
756 struct ip6_sf_list *psf, *psf_next;
758 spin_lock_bh(&idev->mc_lock);
760 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
761 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
767 pmc_prev->next = pmc->next;
769 idev->mc_tomb = pmc->next;
771 spin_unlock_bh(&idev->mc_lock);
774 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
775 psf_next = psf->sf_next;
778 in6_dev_put(pmc->idev);
783 static void mld_clear_delrec(struct inet6_dev *idev)
785 struct ifmcaddr6 *pmc, *nextpmc;
787 spin_lock_bh(&idev->mc_lock);
789 idev->mc_tomb = NULL;
790 spin_unlock_bh(&idev->mc_lock);
792 for (; pmc; pmc = nextpmc) {
794 ip6_mc_clear_src(pmc);
795 in6_dev_put(pmc->idev);
799 /* clear dead sources, too */
800 read_lock_bh(&idev->lock);
801 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
802 struct ip6_sf_list *psf, *psf_next;
804 spin_lock_bh(&pmc->mca_lock);
806 pmc->mca_tomb = NULL;
807 spin_unlock_bh(&pmc->mca_lock);
808 for (; psf; psf=psf_next) {
809 psf_next = psf->sf_next;
813 read_unlock_bh(&idev->lock);
818 * device multicast group inc (add if not found)
820 int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
822 struct ifmcaddr6 *mc;
823 struct inet6_dev *idev;
825 /* we need to take a reference on idev */
826 idev = in6_dev_get(dev);
831 write_lock_bh(&idev->lock);
833 write_unlock_bh(&idev->lock);
838 for (mc = idev->mc_list; mc; mc = mc->next) {
839 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
841 write_unlock_bh(&idev->lock);
842 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
850 * not found: create a new one.
853 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
856 write_unlock_bh(&idev->lock);
861 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
863 mc->mca_addr = *addr;
864 mc->idev = idev; /* (reference taken) */
866 /* mca_stamp should be updated upon changes */
867 mc->mca_cstamp = mc->mca_tstamp = jiffies;
868 atomic_set(&mc->mca_refcnt, 2);
869 spin_lock_init(&mc->mca_lock);
871 /* initial mode is (EX, empty) */
872 mc->mca_sfmode = MCAST_EXCLUDE;
873 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
875 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
876 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
877 mc->mca_flags |= MAF_NOREPORT;
879 mc->next = idev->mc_list;
881 write_unlock_bh(&idev->lock);
883 mld_del_delrec(idev, &mc->mca_addr);
884 igmp6_group_added(mc);
890 * device multicast group del
892 int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
894 struct ifmcaddr6 *ma, **map;
896 write_lock_bh(&idev->lock);
897 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
898 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
899 if (--ma->mca_users == 0) {
901 write_unlock_bh(&idev->lock);
903 igmp6_group_dropped(ma);
908 write_unlock_bh(&idev->lock);
912 write_unlock_bh(&idev->lock);
917 int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
919 struct inet6_dev *idev;
924 idev = __in6_dev_get(dev);
928 err = __ipv6_dev_mc_dec(idev, addr);
935 * identify MLD packets for MLD filter exceptions
937 bool ipv6_is_mld(struct sk_buff *skb, int nexthdr)
939 struct icmp6hdr *pic;
941 if (nexthdr != IPPROTO_ICMPV6)
944 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
947 pic = icmp6_hdr(skb);
949 switch (pic->icmp6_type) {
950 case ICMPV6_MGM_QUERY:
951 case ICMPV6_MGM_REPORT:
952 case ICMPV6_MGM_REDUCTION:
953 case ICMPV6_MLD2_REPORT:
962 * check if the interface/address pair is valid
964 bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
965 const struct in6_addr *src_addr)
967 struct inet6_dev *idev;
968 struct ifmcaddr6 *mc;
972 idev = __in6_dev_get(dev);
974 read_lock_bh(&idev->lock);
975 for (mc = idev->mc_list; mc; mc=mc->next) {
976 if (ipv6_addr_equal(&mc->mca_addr, group))
980 if (src_addr && !ipv6_addr_any(src_addr)) {
981 struct ip6_sf_list *psf;
983 spin_lock_bh(&mc->mca_lock);
984 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
985 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
989 rv = psf->sf_count[MCAST_INCLUDE] ||
990 psf->sf_count[MCAST_EXCLUDE] !=
991 mc->mca_sfcount[MCAST_EXCLUDE];
993 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
994 spin_unlock_bh(&mc->mca_lock);
996 rv = true; /* don't filter unspecified source */
998 read_unlock_bh(&idev->lock);
1004 static void mld_gq_start_timer(struct inet6_dev *idev)
1006 int tv = net_random() % idev->mc_maxdelay;
1008 idev->mc_gq_running = 1;
1009 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1013 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1015 int tv = net_random() % delay;
1017 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1022 * IGMP handling (alias multicast ICMPv6 messages)
1025 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1027 unsigned long delay = resptime;
1029 /* Do not start timer for these addresses */
1030 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1031 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1034 if (del_timer(&ma->mca_timer)) {
1035 atomic_dec(&ma->mca_refcnt);
1036 delay = ma->mca_timer.expires - jiffies;
1039 if (delay >= resptime) {
1041 delay = net_random() % resptime;
1045 ma->mca_timer.expires = jiffies + delay;
1046 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1047 atomic_inc(&ma->mca_refcnt);
1048 ma->mca_flags |= MAF_TIMER_RUNNING;
1051 /* mark EXCLUDE-mode sources */
1052 static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1053 const struct in6_addr *srcs)
1055 struct ip6_sf_list *psf;
1059 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1060 if (scount == nsrcs)
1062 for (i=0; i<nsrcs; i++) {
1063 /* skip inactive filters */
1064 if (psf->sf_count[MCAST_INCLUDE] ||
1065 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1066 psf->sf_count[MCAST_EXCLUDE])
1068 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1074 pmc->mca_flags &= ~MAF_GSQUERY;
1075 if (scount == nsrcs) /* all sources excluded */
1080 static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1081 const struct in6_addr *srcs)
1083 struct ip6_sf_list *psf;
1086 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1087 return mld_xmarksources(pmc, nsrcs, srcs);
1089 /* mark INCLUDE-mode sources */
1092 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1093 if (scount == nsrcs)
1095 for (i=0; i<nsrcs; i++) {
1096 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1104 pmc->mca_flags &= ~MAF_GSQUERY;
1107 pmc->mca_flags |= MAF_GSQUERY;
1111 /* called with rcu_read_lock() */
1112 int igmp6_event_query(struct sk_buff *skb)
1114 struct mld2_query *mlh2 = NULL;
1115 struct ifmcaddr6 *ma;
1116 const struct in6_addr *group;
1117 unsigned long max_delay;
1118 struct inet6_dev *idev;
1119 struct mld_msg *mld;
1124 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1127 /* compute payload length excluding extension headers */
1128 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1129 len -= skb_network_header_len(skb);
1131 /* Drop queries with not link local source */
1132 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
1135 idev = __in6_dev_get(skb->dev);
1140 mld = (struct mld_msg *)icmp6_hdr(skb);
1141 group = &mld->mld_mca;
1142 group_type = ipv6_addr_type(group);
1144 if (group_type != IPV6_ADDR_ANY &&
1145 !(group_type&IPV6_ADDR_MULTICAST))
1150 /* MLDv1 router present */
1152 /* Translate milliseconds to jiffies */
1153 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
1155 switchback = (idev->mc_qrv + 1) * max_delay;
1156 idev->mc_v1_seen = jiffies + switchback;
1158 /* cancel the interface change timer */
1159 idev->mc_ifc_count = 0;
1160 if (del_timer(&idev->mc_ifc_timer))
1161 __in6_dev_put(idev);
1162 /* clear deleted report items */
1163 mld_clear_delrec(idev);
1164 } else if (len >= 28) {
1165 int srcs_offset = sizeof(struct mld2_query) -
1166 sizeof(struct icmp6hdr);
1167 if (!pskb_may_pull(skb, srcs_offset))
1170 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1171 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
1174 idev->mc_maxdelay = max_delay;
1175 if (mlh2->mld2q_qrv)
1176 idev->mc_qrv = mlh2->mld2q_qrv;
1177 if (group_type == IPV6_ADDR_ANY) { /* general query */
1178 if (mlh2->mld2q_nsrcs)
1179 return -EINVAL; /* no sources allowed */
1181 mld_gq_start_timer(idev);
1184 /* mark sources to include, if group & source-specific */
1185 if (mlh2->mld2q_nsrcs != 0) {
1186 if (!pskb_may_pull(skb, srcs_offset +
1187 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
1190 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1196 read_lock_bh(&idev->lock);
1197 if (group_type == IPV6_ADDR_ANY) {
1198 for (ma = idev->mc_list; ma; ma=ma->next) {
1199 spin_lock_bh(&ma->mca_lock);
1200 igmp6_group_queried(ma, max_delay);
1201 spin_unlock_bh(&ma->mca_lock);
1204 for (ma = idev->mc_list; ma; ma=ma->next) {
1205 if (!ipv6_addr_equal(group, &ma->mca_addr))
1207 spin_lock_bh(&ma->mca_lock);
1208 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1209 /* gsquery <- gsquery && mark */
1211 ma->mca_flags &= ~MAF_GSQUERY;
1213 /* gsquery <- mark */
1215 ma->mca_flags |= MAF_GSQUERY;
1217 ma->mca_flags &= ~MAF_GSQUERY;
1219 if (!(ma->mca_flags & MAF_GSQUERY) ||
1220 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
1221 igmp6_group_queried(ma, max_delay);
1222 spin_unlock_bh(&ma->mca_lock);
1226 read_unlock_bh(&idev->lock);
1231 /* called with rcu_read_lock() */
1232 int igmp6_event_report(struct sk_buff *skb)
1234 struct ifmcaddr6 *ma;
1235 struct inet6_dev *idev;
1236 struct mld_msg *mld;
1239 /* Our own report looped back. Ignore it. */
1240 if (skb->pkt_type == PACKET_LOOPBACK)
1243 /* send our report if the MC router may not have heard this report */
1244 if (skb->pkt_type != PACKET_MULTICAST &&
1245 skb->pkt_type != PACKET_BROADCAST)
1248 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
1251 mld = (struct mld_msg *)icmp6_hdr(skb);
1253 /* Drop reports with not link local source */
1254 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1255 if (addr_type != IPV6_ADDR_ANY &&
1256 !(addr_type&IPV6_ADDR_LINKLOCAL))
1259 idev = __in6_dev_get(skb->dev);
1264 * Cancel the timer for this group
1267 read_lock_bh(&idev->lock);
1268 for (ma = idev->mc_list; ma; ma=ma->next) {
1269 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
1270 spin_lock(&ma->mca_lock);
1271 if (del_timer(&ma->mca_timer))
1272 atomic_dec(&ma->mca_refcnt);
1273 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1274 spin_unlock(&ma->mca_lock);
1278 read_unlock_bh(&idev->lock);
1282 static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1283 int gdeleted, int sdeleted)
1286 case MLD2_MODE_IS_INCLUDE:
1287 case MLD2_MODE_IS_EXCLUDE:
1288 if (gdeleted || sdeleted)
1290 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1291 if (pmc->mca_sfmode == MCAST_INCLUDE)
1293 /* don't include if this source is excluded
1296 if (psf->sf_count[MCAST_INCLUDE])
1297 return type == MLD2_MODE_IS_INCLUDE;
1298 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1299 psf->sf_count[MCAST_EXCLUDE];
1302 case MLD2_CHANGE_TO_INCLUDE:
1303 if (gdeleted || sdeleted)
1305 return psf->sf_count[MCAST_INCLUDE] != 0;
1306 case MLD2_CHANGE_TO_EXCLUDE:
1307 if (gdeleted || sdeleted)
1309 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1310 psf->sf_count[MCAST_INCLUDE])
1312 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1313 psf->sf_count[MCAST_EXCLUDE];
1314 case MLD2_ALLOW_NEW_SOURCES:
1315 if (gdeleted || !psf->sf_crcount)
1317 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1318 case MLD2_BLOCK_OLD_SOURCES:
1319 if (pmc->mca_sfmode == MCAST_INCLUDE)
1320 return gdeleted || (psf->sf_crcount && sdeleted);
1321 return psf->sf_crcount && !gdeleted && !sdeleted;
1327 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1329 struct ip6_sf_list *psf;
1332 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1333 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1340 static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1342 struct net *net = dev_net(dev);
1343 struct sock *sk = net->ipv6.igmp_sk;
1344 struct sk_buff *skb;
1345 struct mld2_report *pmr;
1346 struct in6_addr addr_buf;
1347 const struct in6_addr *saddr;
1348 int hlen = LL_RESERVED_SPACE(dev);
1349 int tlen = dev->needed_tailroom;
1351 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1352 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1355 /* we assume size > sizeof(ra) here */
1356 size += hlen + tlen;
1357 /* limit our allocations to order-0 page */
1358 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1359 skb = sock_alloc_send_skb(sk, size, 1, &err);
1364 skb_reserve(skb, hlen);
1366 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1367 /* <draft-ietf-magma-mld-source-05.txt>:
1368 * use unspecified address as the source address
1369 * when a valid link-local address is not available.
1371 saddr = &in6addr_any;
1375 ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
1377 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1379 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1380 skb_put(skb, sizeof(*pmr));
1381 pmr = (struct mld2_report *)skb_transport_header(skb);
1382 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1383 pmr->mld2r_resv1 = 0;
1384 pmr->mld2r_cksum = 0;
1385 pmr->mld2r_resv2 = 0;
1386 pmr->mld2r_ngrec = 0;
1390 static void mld_sendpack(struct sk_buff *skb)
1392 struct ipv6hdr *pip6 = ipv6_hdr(skb);
1393 struct mld2_report *pmr =
1394 (struct mld2_report *)skb_transport_header(skb);
1395 int payload_len, mldlen;
1396 struct inet6_dev *idev;
1397 struct net *net = dev_net(skb->dev);
1400 struct dst_entry *dst;
1403 idev = __in6_dev_get(skb->dev);
1404 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1406 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1407 mldlen = skb->tail - skb->transport_header;
1408 pip6->payload_len = htons(payload_len);
1410 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1412 csum_partial(skb_transport_header(skb),
1415 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
1416 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1418 dst = icmp6_dst_alloc(skb->dev, NULL, &fl6);
1425 skb_dst_set(skb, dst);
1429 payload_len = skb->len;
1431 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1435 ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
1436 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
1437 IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1439 IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
1449 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1451 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1454 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1455 int type, struct mld2_grec **ppgr)
1457 struct net_device *dev = pmc->idev->dev;
1458 struct mld2_report *pmr;
1459 struct mld2_grec *pgr;
1462 skb = mld_newpack(dev, dev->mtu);
1465 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1466 pgr->grec_type = type;
1467 pgr->grec_auxwords = 0;
1468 pgr->grec_nsrcs = 0;
1469 pgr->grec_mca = pmc->mca_addr; /* structure copy */
1470 pmr = (struct mld2_report *)skb_transport_header(skb);
1471 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
1476 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1477 skb_tailroom(skb)) : 0)
1479 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1480 int type, int gdeleted, int sdeleted)
1482 struct net_device *dev = pmc->idev->dev;
1483 struct mld2_report *pmr;
1484 struct mld2_grec *pgr = NULL;
1485 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1486 int scount, stotal, first, isquery, truncate;
1488 if (pmc->mca_flags & MAF_NOREPORT)
1491 isquery = type == MLD2_MODE_IS_INCLUDE ||
1492 type == MLD2_MODE_IS_EXCLUDE;
1493 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1494 type == MLD2_CHANGE_TO_EXCLUDE;
1496 stotal = scount = 0;
1498 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1503 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
1505 /* EX and TO_EX get a fresh packet, if needed */
1507 if (pmr && pmr->mld2r_ngrec &&
1508 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1511 skb = mld_newpack(dev, dev->mtu);
1516 for (psf=*psf_list; psf; psf=psf_next) {
1517 struct in6_addr *psrc;
1519 psf_next = psf->sf_next;
1521 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1526 /* clear marks on query responses */
1530 if (AVAILABLE(skb) < sizeof(*psrc) +
1531 first*sizeof(struct mld2_grec)) {
1532 if (truncate && !first)
1533 break; /* truncate these */
1535 pgr->grec_nsrcs = htons(scount);
1538 skb = mld_newpack(dev, dev->mtu);
1543 skb = add_grhead(skb, pmc, type, &pgr);
1548 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1549 *psrc = psf->sf_addr;
1551 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1552 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1554 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1556 psf_prev->sf_next = psf->sf_next;
1558 *psf_list = psf->sf_next;
1568 if (type == MLD2_ALLOW_NEW_SOURCES ||
1569 type == MLD2_BLOCK_OLD_SOURCES)
1571 if (pmc->mca_crcount || isquery) {
1572 /* make sure we have room for group header */
1573 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1575 skb = NULL; /* add_grhead will get a new one */
1577 skb = add_grhead(skb, pmc, type, &pgr);
1581 pgr->grec_nsrcs = htons(scount);
1584 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1588 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1590 struct sk_buff *skb = NULL;
1594 read_lock_bh(&idev->lock);
1595 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1596 if (pmc->mca_flags & MAF_NOREPORT)
1598 spin_lock_bh(&pmc->mca_lock);
1599 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1600 type = MLD2_MODE_IS_EXCLUDE;
1602 type = MLD2_MODE_IS_INCLUDE;
1603 skb = add_grec(skb, pmc, type, 0, 0);
1604 spin_unlock_bh(&pmc->mca_lock);
1606 read_unlock_bh(&idev->lock);
1608 spin_lock_bh(&pmc->mca_lock);
1609 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1610 type = MLD2_MODE_IS_EXCLUDE;
1612 type = MLD2_MODE_IS_INCLUDE;
1613 skb = add_grec(skb, pmc, type, 0, 0);
1614 spin_unlock_bh(&pmc->mca_lock);
1621 * remove zero-count source records from a source filter list
1623 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1625 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1628 for (psf=*ppsf; psf; psf = psf_next) {
1629 psf_next = psf->sf_next;
1630 if (psf->sf_crcount == 0) {
1632 psf_prev->sf_next = psf->sf_next;
1634 *ppsf = psf->sf_next;
1641 static void mld_send_cr(struct inet6_dev *idev)
1643 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1644 struct sk_buff *skb = NULL;
1647 read_lock_bh(&idev->lock);
1648 spin_lock(&idev->mc_lock);
1652 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1653 pmc_next = pmc->next;
1654 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1655 type = MLD2_BLOCK_OLD_SOURCES;
1656 dtype = MLD2_BLOCK_OLD_SOURCES;
1657 skb = add_grec(skb, pmc, type, 1, 0);
1658 skb = add_grec(skb, pmc, dtype, 1, 1);
1660 if (pmc->mca_crcount) {
1661 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1662 type = MLD2_CHANGE_TO_INCLUDE;
1663 skb = add_grec(skb, pmc, type, 1, 0);
1666 if (pmc->mca_crcount == 0) {
1667 mld_clear_zeros(&pmc->mca_tomb);
1668 mld_clear_zeros(&pmc->mca_sources);
1671 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1672 !pmc->mca_sources) {
1674 pmc_prev->next = pmc_next;
1676 idev->mc_tomb = pmc_next;
1677 in6_dev_put(pmc->idev);
1682 spin_unlock(&idev->mc_lock);
1685 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1686 spin_lock_bh(&pmc->mca_lock);
1687 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1688 type = MLD2_BLOCK_OLD_SOURCES;
1689 dtype = MLD2_ALLOW_NEW_SOURCES;
1691 type = MLD2_ALLOW_NEW_SOURCES;
1692 dtype = MLD2_BLOCK_OLD_SOURCES;
1694 skb = add_grec(skb, pmc, type, 0, 0);
1695 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1697 /* filter mode changes */
1698 if (pmc->mca_crcount) {
1699 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1700 type = MLD2_CHANGE_TO_EXCLUDE;
1702 type = MLD2_CHANGE_TO_INCLUDE;
1703 skb = add_grec(skb, pmc, type, 0, 0);
1706 spin_unlock_bh(&pmc->mca_lock);
1708 read_unlock_bh(&idev->lock);
1711 (void) mld_sendpack(skb);
1714 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1716 struct net *net = dev_net(dev);
1717 struct sock *sk = net->ipv6.igmp_sk;
1718 struct inet6_dev *idev;
1719 struct sk_buff *skb;
1720 struct mld_msg *hdr;
1721 const struct in6_addr *snd_addr, *saddr;
1722 struct in6_addr addr_buf;
1723 int hlen = LL_RESERVED_SPACE(dev);
1724 int tlen = dev->needed_tailroom;
1725 int err, len, payload_len, full_len;
1726 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1727 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1730 struct dst_entry *dst;
1732 if (type == ICMPV6_MGM_REDUCTION)
1733 snd_addr = &in6addr_linklocal_allrouters;
1737 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1738 payload_len = len + sizeof(ra);
1739 full_len = sizeof(struct ipv6hdr) + payload_len;
1742 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1743 IPSTATS_MIB_OUT, full_len);
1746 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
1750 IP6_INC_STATS(net, __in6_dev_get(dev),
1751 IPSTATS_MIB_OUTDISCARDS);
1756 skb_reserve(skb, hlen);
1758 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1759 /* <draft-ietf-magma-mld-source-05.txt>:
1760 * use unspecified address as the source address
1761 * when a valid link-local address is not available.
1763 saddr = &in6addr_any;
1767 ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
1769 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1771 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1772 memset(hdr, 0, sizeof(struct mld_msg));
1773 hdr->mld_type = type;
1774 hdr->mld_mca = *addr;
1776 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1778 csum_partial(hdr, len, 0));
1781 idev = __in6_dev_get(skb->dev);
1783 icmpv6_flow_init(sk, &fl6, type,
1784 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1786 dst = icmp6_dst_alloc(skb->dev, NULL, &fl6);
1792 skb_dst_set(skb, dst);
1793 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1797 ICMP6MSGOUT_INC_STATS(net, idev, type);
1798 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1799 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
1801 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1811 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1812 const struct in6_addr *psfsrc)
1814 struct ip6_sf_list *psf, *psf_prev;
1818 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1819 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1823 if (!psf || psf->sf_count[sfmode] == 0) {
1824 /* source filter not found, or count wrong => bug */
1827 psf->sf_count[sfmode]--;
1828 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1829 struct inet6_dev *idev = pmc->idev;
1831 /* no more filters for this source */
1833 psf_prev->sf_next = psf->sf_next;
1835 pmc->mca_sources = psf->sf_next;
1836 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1837 !MLD_V1_SEEN(idev)) {
1838 psf->sf_crcount = idev->mc_qrv;
1839 psf->sf_next = pmc->mca_tomb;
1840 pmc->mca_tomb = psf;
1848 static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
1849 int sfmode, int sfcount, const struct in6_addr *psfsrc,
1852 struct ifmcaddr6 *pmc;
1858 read_lock_bh(&idev->lock);
1859 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1860 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1864 /* MCA not found?? bug */
1865 read_unlock_bh(&idev->lock);
1868 spin_lock_bh(&pmc->mca_lock);
1871 if (!pmc->mca_sfcount[sfmode]) {
1872 spin_unlock_bh(&pmc->mca_lock);
1873 read_unlock_bh(&idev->lock);
1876 pmc->mca_sfcount[sfmode]--;
1879 for (i=0; i<sfcount; i++) {
1880 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1882 changerec |= rv > 0;
1886 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1887 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1888 pmc->mca_sfcount[MCAST_INCLUDE]) {
1889 struct ip6_sf_list *psf;
1891 /* filter mode change */
1892 pmc->mca_sfmode = MCAST_INCLUDE;
1893 pmc->mca_crcount = idev->mc_qrv;
1894 idev->mc_ifc_count = pmc->mca_crcount;
1895 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1896 psf->sf_crcount = 0;
1897 mld_ifc_event(pmc->idev);
1898 } else if (sf_setstate(pmc) || changerec)
1899 mld_ifc_event(pmc->idev);
1900 spin_unlock_bh(&pmc->mca_lock);
1901 read_unlock_bh(&idev->lock);
1906 * Add multicast single-source filter to the interface list
1908 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1909 const struct in6_addr *psfsrc)
1911 struct ip6_sf_list *psf, *psf_prev;
1914 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1915 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1920 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1924 psf->sf_addr = *psfsrc;
1926 psf_prev->sf_next = psf;
1928 pmc->mca_sources = psf;
1930 psf->sf_count[sfmode]++;
1934 static void sf_markstate(struct ifmcaddr6 *pmc)
1936 struct ip6_sf_list *psf;
1937 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1939 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1940 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1941 psf->sf_oldin = mca_xcount ==
1942 psf->sf_count[MCAST_EXCLUDE] &&
1943 !psf->sf_count[MCAST_INCLUDE];
1945 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1948 static int sf_setstate(struct ifmcaddr6 *pmc)
1950 struct ip6_sf_list *psf, *dpsf;
1951 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1952 int qrv = pmc->idev->mc_qrv;
1956 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1957 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1958 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1959 !psf->sf_count[MCAST_INCLUDE];
1961 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1963 if (!psf->sf_oldin) {
1964 struct ip6_sf_list *prev = NULL;
1966 for (dpsf=pmc->mca_tomb; dpsf;
1967 dpsf=dpsf->sf_next) {
1968 if (ipv6_addr_equal(&dpsf->sf_addr,
1975 prev->sf_next = dpsf->sf_next;
1977 pmc->mca_tomb = dpsf->sf_next;
1980 psf->sf_crcount = qrv;
1983 } else if (psf->sf_oldin) {
1984 psf->sf_crcount = 0;
1986 * add or update "delete" records if an active filter
1989 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
1990 if (ipv6_addr_equal(&dpsf->sf_addr,
1994 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
1998 /* pmc->mca_lock held by callers */
1999 dpsf->sf_next = pmc->mca_tomb;
2000 pmc->mca_tomb = dpsf;
2002 dpsf->sf_crcount = qrv;
2010 * Add multicast source filter list to the interface list
2012 static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2013 int sfmode, int sfcount, const struct in6_addr *psfsrc,
2016 struct ifmcaddr6 *pmc;
2022 read_lock_bh(&idev->lock);
2023 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2024 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2028 /* MCA not found?? bug */
2029 read_unlock_bh(&idev->lock);
2032 spin_lock_bh(&pmc->mca_lock);
2035 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2037 pmc->mca_sfcount[sfmode]++;
2039 for (i=0; i<sfcount; i++) {
2040 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
2048 pmc->mca_sfcount[sfmode]--;
2050 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
2051 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2052 struct ip6_sf_list *psf;
2054 /* filter mode change */
2055 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2056 pmc->mca_sfmode = MCAST_EXCLUDE;
2057 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2058 pmc->mca_sfmode = MCAST_INCLUDE;
2059 /* else no filters; keep old mode for reports */
2061 pmc->mca_crcount = idev->mc_qrv;
2062 idev->mc_ifc_count = pmc->mca_crcount;
2063 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2064 psf->sf_crcount = 0;
2065 mld_ifc_event(idev);
2066 } else if (sf_setstate(pmc))
2067 mld_ifc_event(idev);
2068 spin_unlock_bh(&pmc->mca_lock);
2069 read_unlock_bh(&idev->lock);
2073 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2075 struct ip6_sf_list *psf, *nextpsf;
2077 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2078 nextpsf = psf->sf_next;
2081 pmc->mca_tomb = NULL;
2082 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2083 nextpsf = psf->sf_next;
2086 pmc->mca_sources = NULL;
2087 pmc->mca_sfmode = MCAST_EXCLUDE;
2088 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2089 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2093 static void igmp6_join_group(struct ifmcaddr6 *ma)
2095 unsigned long delay;
2097 if (ma->mca_flags & MAF_NOREPORT)
2100 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2102 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2104 spin_lock_bh(&ma->mca_lock);
2105 if (del_timer(&ma->mca_timer)) {
2106 atomic_dec(&ma->mca_refcnt);
2107 delay = ma->mca_timer.expires - jiffies;
2110 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2111 atomic_inc(&ma->mca_refcnt);
2112 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2113 spin_unlock_bh(&ma->mca_lock);
2116 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2117 struct inet6_dev *idev)
2121 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2122 * so no other readers or writers of iml or its sflist
2125 /* any-source empty exclude case */
2126 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2128 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2129 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2130 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2135 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2137 if (MLD_V1_SEEN(ma->idev)) {
2138 if (ma->mca_flags & MAF_LAST_REPORTER)
2139 igmp6_send(&ma->mca_addr, ma->idev->dev,
2140 ICMPV6_MGM_REDUCTION);
2142 mld_add_delrec(ma->idev, ma);
2143 mld_ifc_event(ma->idev);
2147 static void mld_gq_timer_expire(unsigned long data)
2149 struct inet6_dev *idev = (struct inet6_dev *)data;
2151 idev->mc_gq_running = 0;
2152 mld_send_report(idev, NULL);
2153 __in6_dev_put(idev);
2156 static void mld_ifc_timer_expire(unsigned long data)
2158 struct inet6_dev *idev = (struct inet6_dev *)data;
2161 if (idev->mc_ifc_count) {
2162 idev->mc_ifc_count--;
2163 if (idev->mc_ifc_count)
2164 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2166 __in6_dev_put(idev);
2169 static void mld_ifc_event(struct inet6_dev *idev)
2171 if (MLD_V1_SEEN(idev))
2173 idev->mc_ifc_count = idev->mc_qrv;
2174 mld_ifc_start_timer(idev, 1);
2178 static void igmp6_timer_handler(unsigned long data)
2180 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2182 if (MLD_V1_SEEN(ma->idev))
2183 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2185 mld_send_report(ma->idev, ma);
2187 spin_lock(&ma->mca_lock);
2188 ma->mca_flags |= MAF_LAST_REPORTER;
2189 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2190 spin_unlock(&ma->mca_lock);
2194 /* Device changing type */
2196 void ipv6_mc_unmap(struct inet6_dev *idev)
2198 struct ifmcaddr6 *i;
2200 /* Install multicast list, except for all-nodes (already installed) */
2202 read_lock_bh(&idev->lock);
2203 for (i = idev->mc_list; i; i = i->next)
2204 igmp6_group_dropped(i);
2205 read_unlock_bh(&idev->lock);
2208 void ipv6_mc_remap(struct inet6_dev *idev)
2213 /* Device going down */
2215 void ipv6_mc_down(struct inet6_dev *idev)
2217 struct ifmcaddr6 *i;
2219 /* Withdraw multicast list */
2221 read_lock_bh(&idev->lock);
2222 idev->mc_ifc_count = 0;
2223 if (del_timer(&idev->mc_ifc_timer))
2224 __in6_dev_put(idev);
2225 idev->mc_gq_running = 0;
2226 if (del_timer(&idev->mc_gq_timer))
2227 __in6_dev_put(idev);
2229 for (i = idev->mc_list; i; i=i->next)
2230 igmp6_group_dropped(i);
2231 read_unlock_bh(&idev->lock);
2233 mld_clear_delrec(idev);
2237 /* Device going up */
2239 void ipv6_mc_up(struct inet6_dev *idev)
2241 struct ifmcaddr6 *i;
2243 /* Install multicast list, except for all-nodes (already installed) */
2245 read_lock_bh(&idev->lock);
2246 for (i = idev->mc_list; i; i=i->next)
2247 igmp6_group_added(i);
2248 read_unlock_bh(&idev->lock);
2251 /* IPv6 device initialization. */
2253 void ipv6_mc_init_dev(struct inet6_dev *idev)
2255 write_lock_bh(&idev->lock);
2256 spin_lock_init(&idev->mc_lock);
2257 idev->mc_gq_running = 0;
2258 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2259 (unsigned long)idev);
2260 idev->mc_tomb = NULL;
2261 idev->mc_ifc_count = 0;
2262 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2263 (unsigned long)idev);
2264 idev->mc_qrv = MLD_QRV_DEFAULT;
2265 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2266 idev->mc_v1_seen = 0;
2267 write_unlock_bh(&idev->lock);
2271 * Device is about to be destroyed: clean up.
2274 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2276 struct ifmcaddr6 *i;
2278 /* Deactivate timers */
2281 /* Delete all-nodes address. */
2282 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2283 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2286 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
2288 if (idev->cnf.forwarding)
2289 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
2291 write_lock_bh(&idev->lock);
2292 while ((i = idev->mc_list) != NULL) {
2293 idev->mc_list = i->next;
2294 write_unlock_bh(&idev->lock);
2296 igmp6_group_dropped(i);
2299 write_lock_bh(&idev->lock);
2301 write_unlock_bh(&idev->lock);
2304 #ifdef CONFIG_PROC_FS
2305 struct igmp6_mc_iter_state {
2306 struct seq_net_private p;
2307 struct net_device *dev;
2308 struct inet6_dev *idev;
2311 #define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2313 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2315 struct ifmcaddr6 *im = NULL;
2316 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2317 struct net *net = seq_file_net(seq);
2320 for_each_netdev_rcu(net, state->dev) {
2321 struct inet6_dev *idev;
2322 idev = __in6_dev_get(state->dev);
2325 read_lock_bh(&idev->lock);
2331 read_unlock_bh(&idev->lock);
2336 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2338 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2342 if (likely(state->idev != NULL))
2343 read_unlock_bh(&state->idev->lock);
2345 state->dev = next_net_device_rcu(state->dev);
2350 state->idev = __in6_dev_get(state->dev);
2353 read_lock_bh(&state->idev->lock);
2354 im = state->idev->mc_list;
2359 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2361 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2363 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2365 return pos ? NULL : im;
2368 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2372 return igmp6_mc_get_idx(seq, *pos);
2375 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2377 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2383 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2386 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2388 if (likely(state->idev != NULL)) {
2389 read_unlock_bh(&state->idev->lock);
2396 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2398 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2399 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2402 "%-4d %-15s %pi6 %5d %08X %ld\n",
2403 state->dev->ifindex, state->dev->name,
2405 im->mca_users, im->mca_flags,
2406 (im->mca_flags&MAF_TIMER_RUNNING) ?
2407 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2411 static const struct seq_operations igmp6_mc_seq_ops = {
2412 .start = igmp6_mc_seq_start,
2413 .next = igmp6_mc_seq_next,
2414 .stop = igmp6_mc_seq_stop,
2415 .show = igmp6_mc_seq_show,
2418 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2420 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2421 sizeof(struct igmp6_mc_iter_state));
2424 static const struct file_operations igmp6_mc_seq_fops = {
2425 .owner = THIS_MODULE,
2426 .open = igmp6_mc_seq_open,
2428 .llseek = seq_lseek,
2429 .release = seq_release_net,
2432 struct igmp6_mcf_iter_state {
2433 struct seq_net_private p;
2434 struct net_device *dev;
2435 struct inet6_dev *idev;
2436 struct ifmcaddr6 *im;
2439 #define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2441 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2443 struct ip6_sf_list *psf = NULL;
2444 struct ifmcaddr6 *im = NULL;
2445 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2446 struct net *net = seq_file_net(seq);
2450 for_each_netdev_rcu(net, state->dev) {
2451 struct inet6_dev *idev;
2452 idev = __in6_dev_get(state->dev);
2453 if (unlikely(idev == NULL))
2455 read_lock_bh(&idev->lock);
2457 if (likely(im != NULL)) {
2458 spin_lock_bh(&im->mca_lock);
2459 psf = im->mca_sources;
2460 if (likely(psf != NULL)) {
2465 spin_unlock_bh(&im->mca_lock);
2467 read_unlock_bh(&idev->lock);
2472 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2474 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2478 spin_unlock_bh(&state->im->mca_lock);
2479 state->im = state->im->next;
2480 while (!state->im) {
2481 if (likely(state->idev != NULL))
2482 read_unlock_bh(&state->idev->lock);
2484 state->dev = next_net_device_rcu(state->dev);
2489 state->idev = __in6_dev_get(state->dev);
2492 read_lock_bh(&state->idev->lock);
2493 state->im = state->idev->mc_list;
2497 spin_lock_bh(&state->im->mca_lock);
2498 psf = state->im->mca_sources;
2504 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2506 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2508 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2510 return pos ? NULL : psf;
2513 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2517 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2520 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2522 struct ip6_sf_list *psf;
2523 if (v == SEQ_START_TOKEN)
2524 psf = igmp6_mcf_get_first(seq);
2526 psf = igmp6_mcf_get_next(seq, v);
2531 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2534 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2535 if (likely(state->im != NULL)) {
2536 spin_unlock_bh(&state->im->mca_lock);
2539 if (likely(state->idev != NULL)) {
2540 read_unlock_bh(&state->idev->lock);
2547 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2549 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2550 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2552 if (v == SEQ_START_TOKEN) {
2555 "%32s %32s %6s %6s\n", "Idx",
2556 "Device", "Multicast Address",
2557 "Source Address", "INC", "EXC");
2560 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
2561 state->dev->ifindex, state->dev->name,
2562 &state->im->mca_addr,
2564 psf->sf_count[MCAST_INCLUDE],
2565 psf->sf_count[MCAST_EXCLUDE]);
2570 static const struct seq_operations igmp6_mcf_seq_ops = {
2571 .start = igmp6_mcf_seq_start,
2572 .next = igmp6_mcf_seq_next,
2573 .stop = igmp6_mcf_seq_stop,
2574 .show = igmp6_mcf_seq_show,
2577 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2579 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2580 sizeof(struct igmp6_mcf_iter_state));
2583 static const struct file_operations igmp6_mcf_seq_fops = {
2584 .owner = THIS_MODULE,
2585 .open = igmp6_mcf_seq_open,
2587 .llseek = seq_lseek,
2588 .release = seq_release_net,
2591 static int __net_init igmp6_proc_init(struct net *net)
2596 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2598 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2599 &igmp6_mcf_seq_fops))
2600 goto out_proc_net_igmp6;
2607 proc_net_remove(net, "igmp6");
2611 static void __net_exit igmp6_proc_exit(struct net *net)
2613 proc_net_remove(net, "mcfilter6");
2614 proc_net_remove(net, "igmp6");
2617 static inline int igmp6_proc_init(struct net *net)
2621 static inline void igmp6_proc_exit(struct net *net)
2626 static int __net_init igmp6_net_init(struct net *net)
2630 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2631 SOCK_RAW, IPPROTO_ICMPV6, net);
2633 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
2638 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
2640 err = igmp6_proc_init(net);
2642 goto out_sock_create;
2647 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2651 static void __net_exit igmp6_net_exit(struct net *net)
2653 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2654 igmp6_proc_exit(net);
2657 static struct pernet_operations igmp6_net_ops = {
2658 .init = igmp6_net_init,
2659 .exit = igmp6_net_exit,
2662 int __init igmp6_init(void)
2664 return register_pernet_subsys(&igmp6_net_ops);
2667 void igmp6_cleanup(void)
2669 unregister_pernet_subsys(&igmp6_net_ops);