2 * Multicast support for IPv6
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * $Id: mcast.c,v 1.40 2002/02/08 03:57:19 davem Exp $
10 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
20 * yoshfuji : fix format of router-alert option
21 * YOSHIFUJI Hideaki @USAGI:
22 * Fixed source address for MLD message based on
23 * <draft-ietf-magma-mld-source-05.txt>.
24 * YOSHIFUJI Hideaki @USAGI:
25 * - Ignore Queries for invalid addresses.
26 * - MLD for link-local addresses.
27 * David L Stevens <dlstevens@us.ibm.com>:
31 #include <linux/module.h>
32 #include <linux/errno.h>
33 #include <linux/types.h>
34 #include <linux/string.h>
35 #include <linux/socket.h>
36 #include <linux/sockios.h>
37 #include <linux/jiffies.h>
38 #include <linux/times.h>
39 #include <linux/net.h>
41 #include <linux/in6.h>
42 #include <linux/netdevice.h>
43 #include <linux/if_arp.h>
44 #include <linux/route.h>
45 #include <linux/init.h>
46 #include <linux/proc_fs.h>
47 #include <linux/seq_file.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
76 * These header formats should be in a separate include file, but icmpv6.h
77 * doesn't have in6_addr defined in all cases, there is no __u128, and no
78 * other files reference these.
83 /* Multicast Listener Discovery version 2 headers */
89 struct in6_addr grec_mca;
90 struct in6_addr grec_src[0];
99 struct mld2_grec grec[0];
109 #if defined(__LITTLE_ENDIAN_BITFIELD)
113 #elif defined(__BIG_ENDIAN_BITFIELD)
118 #error "Please fix <asm/byteorder.h>"
122 struct in6_addr srcs[0];
125 static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
127 /* Big mc list lock for all the sockets */
128 static DEFINE_RWLOCK(ipv6_sk_mc_lock);
130 static void igmp6_join_group(struct ifmcaddr6 *ma);
131 static void igmp6_leave_group(struct ifmcaddr6 *ma);
132 static void igmp6_timer_handler(unsigned long data);
134 static void mld_gq_timer_expire(unsigned long data);
135 static void mld_ifc_timer_expire(unsigned long data);
136 static void mld_ifc_event(struct inet6_dev *idev);
137 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
138 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *addr);
139 static void mld_clear_delrec(struct inet6_dev *idev);
140 static int sf_setstate(struct ifmcaddr6 *pmc);
141 static void sf_markstate(struct ifmcaddr6 *pmc);
142 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
143 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
144 int sfmode, int sfcount, struct in6_addr *psfsrc,
146 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
147 int sfmode, int sfcount, struct in6_addr *psfsrc,
149 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
150 struct inet6_dev *idev);
153 #define IGMP6_UNSOLICITED_IVAL (10*HZ)
154 #define MLD_QRV_DEFAULT 2
156 #define MLD_V1_SEEN(idev) (ipv6_devconf.force_mld_version == 1 || \
157 (idev)->cnf.force_mld_version == 1 || \
158 ((idev)->mc_v1_seen && \
159 time_before(jiffies, (idev)->mc_v1_seen)))
161 #define MLDV2_MASK(value, nb) ((nb)>=32 ? (value) : ((1<<(nb))-1) & (value))
162 #define MLDV2_EXP(thresh, nbmant, nbexp, value) \
163 ((value) < (thresh) ? (value) : \
164 ((MLDV2_MASK(value, nbmant) | (1<<(nbmant))) << \
165 (MLDV2_MASK((value) >> (nbmant), nbexp) + (nbexp))))
167 #define MLDV2_QQIC(value) MLDV2_EXP(0x80, 4, 3, value)
168 #define MLDV2_MRC(value) MLDV2_EXP(0x8000, 12, 3, value)
170 #define IPV6_MLD_MAX_MSF 64
172 int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
175 * socket join on multicast group
178 int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
180 struct net_device *dev = NULL;
181 struct ipv6_mc_socklist *mc_lst;
182 struct ipv6_pinfo *np = inet6_sk(sk);
183 struct net *net = sock_net(sk);
186 if (!ipv6_addr_is_multicast(addr))
189 read_lock_bh(&ipv6_sk_mc_lock);
190 for (mc_lst=np->ipv6_mc_list; mc_lst; mc_lst=mc_lst->next) {
191 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
192 ipv6_addr_equal(&mc_lst->addr, addr)) {
193 read_unlock_bh(&ipv6_sk_mc_lock);
197 read_unlock_bh(&ipv6_sk_mc_lock);
199 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
205 ipv6_addr_copy(&mc_lst->addr, addr);
209 rt = rt6_lookup(net, addr, NULL, 0, 0);
213 dst_release(&rt->u.dst);
216 dev = dev_get_by_index(net, ifindex);
219 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
223 mc_lst->ifindex = dev->ifindex;
224 mc_lst->sfmode = MCAST_EXCLUDE;
225 rwlock_init(&mc_lst->sflock);
226 mc_lst->sflist = NULL;
229 * now add/increase the group membership on the device
232 err = ipv6_dev_mc_inc(dev, addr);
235 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
240 write_lock_bh(&ipv6_sk_mc_lock);
241 mc_lst->next = np->ipv6_mc_list;
242 np->ipv6_mc_list = mc_lst;
243 write_unlock_bh(&ipv6_sk_mc_lock);
251 * socket leave on multicast group
253 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
255 struct ipv6_pinfo *np = inet6_sk(sk);
256 struct ipv6_mc_socklist *mc_lst, **lnk;
257 struct net *net = sock_net(sk);
259 write_lock_bh(&ipv6_sk_mc_lock);
260 for (lnk = &np->ipv6_mc_list; (mc_lst = *lnk) !=NULL ; lnk = &mc_lst->next) {
261 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
262 ipv6_addr_equal(&mc_lst->addr, addr)) {
263 struct net_device *dev;
266 write_unlock_bh(&ipv6_sk_mc_lock);
268 dev = dev_get_by_index(net, mc_lst->ifindex);
270 struct inet6_dev *idev = in6_dev_get(dev);
272 (void) ip6_mc_leave_src(sk, mc_lst, idev);
274 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
279 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
280 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
284 write_unlock_bh(&ipv6_sk_mc_lock);
286 return -EADDRNOTAVAIL;
289 static struct inet6_dev *ip6_mc_find_dev(struct net *net,
290 struct in6_addr *group,
293 struct net_device *dev = NULL;
294 struct inet6_dev *idev = NULL;
299 rt = rt6_lookup(net, group, NULL, 0, 0);
303 dst_release(&rt->u.dst);
306 dev = dev_get_by_index(net, ifindex);
310 idev = in6_dev_get(dev);
315 read_lock_bh(&idev->lock);
317 read_unlock_bh(&idev->lock);
325 void ipv6_sock_mc_close(struct sock *sk)
327 struct ipv6_pinfo *np = inet6_sk(sk);
328 struct ipv6_mc_socklist *mc_lst;
329 struct net *net = sock_net(sk);
331 write_lock_bh(&ipv6_sk_mc_lock);
332 while ((mc_lst = np->ipv6_mc_list) != NULL) {
333 struct net_device *dev;
335 np->ipv6_mc_list = mc_lst->next;
336 write_unlock_bh(&ipv6_sk_mc_lock);
338 dev = dev_get_by_index(net, mc_lst->ifindex);
340 struct inet6_dev *idev = in6_dev_get(dev);
342 (void) ip6_mc_leave_src(sk, mc_lst, idev);
344 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
349 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
351 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
353 write_lock_bh(&ipv6_sk_mc_lock);
355 write_unlock_bh(&ipv6_sk_mc_lock);
358 int ip6_mc_source(int add, int omode, struct sock *sk,
359 struct group_source_req *pgsr)
361 struct in6_addr *source, *group;
362 struct ipv6_mc_socklist *pmc;
363 struct net_device *dev;
364 struct inet6_dev *idev;
365 struct ipv6_pinfo *inet6 = inet6_sk(sk);
366 struct ip6_sf_socklist *psl;
367 struct net *net = sock_net(sk);
373 if (pgsr->gsr_group.ss_family != AF_INET6 ||
374 pgsr->gsr_source.ss_family != AF_INET6)
377 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
378 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
380 if (!ipv6_addr_is_multicast(group))
383 idev = ip6_mc_find_dev(net, group, pgsr->gsr_interface);
388 err = -EADDRNOTAVAIL;
390 read_lock_bh(&ipv6_sk_mc_lock);
391 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
392 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
394 if (ipv6_addr_equal(&pmc->addr, group))
397 if (!pmc) { /* must have a prior join */
401 /* if a source filter was set, must be the same mode as before */
403 if (pmc->sfmode != omode) {
407 } else if (pmc->sfmode != omode) {
408 /* allow mode switches for empty-set filters */
409 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
410 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
414 write_lock_bh(&pmc->sflock);
420 goto done; /* err = -EADDRNOTAVAIL */
422 for (i=0; i<psl->sl_count; i++) {
423 rv = memcmp(&psl->sl_addr[i], source,
424 sizeof(struct in6_addr));
428 if (rv) /* source not found */
429 goto done; /* err = -EADDRNOTAVAIL */
431 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
432 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
437 /* update the interface filter */
438 ip6_mc_del_src(idev, group, omode, 1, source, 1);
440 for (j=i+1; j<psl->sl_count; j++)
441 psl->sl_addr[j-1] = psl->sl_addr[j];
446 /* else, add a new source to the filter */
448 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
452 if (!psl || psl->sl_count == psl->sl_max) {
453 struct ip6_sf_socklist *newpsl;
454 int count = IP6_SFBLOCK;
457 count += psl->sl_max;
458 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
463 newpsl->sl_max = count;
464 newpsl->sl_count = count - IP6_SFBLOCK;
466 for (i=0; i<psl->sl_count; i++)
467 newpsl->sl_addr[i] = psl->sl_addr[i];
468 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
470 pmc->sflist = psl = newpsl;
472 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
473 for (i=0; i<psl->sl_count; i++) {
474 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
478 if (rv == 0) /* address already there is an error */
480 for (j=psl->sl_count-1; j>=i; j--)
481 psl->sl_addr[j+1] = psl->sl_addr[j];
482 psl->sl_addr[i] = *source;
485 /* update the interface list */
486 ip6_mc_add_src(idev, group, omode, 1, source, 1);
489 write_unlock_bh(&pmc->sflock);
490 read_unlock_bh(&ipv6_sk_mc_lock);
491 read_unlock_bh(&idev->lock);
495 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
499 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
501 struct in6_addr *group;
502 struct ipv6_mc_socklist *pmc;
503 struct net_device *dev;
504 struct inet6_dev *idev;
505 struct ipv6_pinfo *inet6 = inet6_sk(sk);
506 struct ip6_sf_socklist *newpsl, *psl;
507 struct net *net = sock_net(sk);
511 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
513 if (!ipv6_addr_is_multicast(group))
515 if (gsf->gf_fmode != MCAST_INCLUDE &&
516 gsf->gf_fmode != MCAST_EXCLUDE)
519 idev = ip6_mc_find_dev(net, group, gsf->gf_interface);
526 read_lock_bh(&ipv6_sk_mc_lock);
528 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
533 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
534 if (pmc->ifindex != gsf->gf_interface)
536 if (ipv6_addr_equal(&pmc->addr, group))
539 if (!pmc) { /* must have a prior join */
543 if (gsf->gf_numsrc) {
544 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
550 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
551 for (i=0; i<newpsl->sl_count; ++i) {
552 struct sockaddr_in6 *psin6;
554 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
555 newpsl->sl_addr[i] = psin6->sin6_addr;
557 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
558 newpsl->sl_count, newpsl->sl_addr, 0);
560 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
565 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
568 write_lock_bh(&pmc->sflock);
571 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
572 psl->sl_count, psl->sl_addr, 0);
573 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
575 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
576 pmc->sflist = newpsl;
577 pmc->sfmode = gsf->gf_fmode;
578 write_unlock_bh(&pmc->sflock);
581 read_unlock_bh(&ipv6_sk_mc_lock);
582 read_unlock_bh(&idev->lock);
586 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
590 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
591 struct group_filter __user *optval, int __user *optlen)
593 int err, i, count, copycount;
594 struct in6_addr *group;
595 struct ipv6_mc_socklist *pmc;
596 struct inet6_dev *idev;
597 struct net_device *dev;
598 struct ipv6_pinfo *inet6 = inet6_sk(sk);
599 struct ip6_sf_socklist *psl;
600 struct net *net = sock_net(sk);
602 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
604 if (!ipv6_addr_is_multicast(group))
607 idev = ip6_mc_find_dev(net, group, gsf->gf_interface);
614 err = -EADDRNOTAVAIL;
616 * changes to the ipv6_mc_list require the socket lock and
617 * a read lock on ip6_sk_mc_lock. We have the socket lock,
618 * so reading the list is safe.
621 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
622 if (pmc->ifindex != gsf->gf_interface)
624 if (ipv6_addr_equal(group, &pmc->addr))
627 if (!pmc) /* must have a prior join */
629 gsf->gf_fmode = pmc->sfmode;
631 count = psl ? psl->sl_count : 0;
632 read_unlock_bh(&idev->lock);
636 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
637 gsf->gf_numsrc = count;
638 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
639 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
642 /* changes to psl require the socket lock, a read lock on
643 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
644 * have the socket lock, so reading here is safe.
646 for (i=0; i<copycount; i++) {
647 struct sockaddr_in6 *psin6;
648 struct sockaddr_storage ss;
650 psin6 = (struct sockaddr_in6 *)&ss;
651 memset(&ss, 0, sizeof(ss));
652 psin6->sin6_family = AF_INET6;
653 psin6->sin6_addr = psl->sl_addr[i];
654 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
659 read_unlock_bh(&idev->lock);
665 int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
666 const struct in6_addr *src_addr)
668 struct ipv6_pinfo *np = inet6_sk(sk);
669 struct ipv6_mc_socklist *mc;
670 struct ip6_sf_socklist *psl;
673 read_lock(&ipv6_sk_mc_lock);
674 for (mc = np->ipv6_mc_list; mc; mc = mc->next) {
675 if (ipv6_addr_equal(&mc->addr, mc_addr))
679 read_unlock(&ipv6_sk_mc_lock);
682 read_lock(&mc->sflock);
685 rv = mc->sfmode == MCAST_EXCLUDE;
689 for (i=0; i<psl->sl_count; i++) {
690 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
693 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
695 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
698 read_unlock(&mc->sflock);
699 read_unlock(&ipv6_sk_mc_lock);
704 static void ma_put(struct ifmcaddr6 *mc)
706 if (atomic_dec_and_test(&mc->mca_refcnt)) {
707 in6_dev_put(mc->idev);
712 static void igmp6_group_added(struct ifmcaddr6 *mc)
714 struct net_device *dev = mc->idev->dev;
715 char buf[MAX_ADDR_LEN];
717 spin_lock_bh(&mc->mca_lock);
718 if (!(mc->mca_flags&MAF_LOADED)) {
719 mc->mca_flags |= MAF_LOADED;
720 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
721 dev_mc_add(dev, buf, dev->addr_len, 0);
723 spin_unlock_bh(&mc->mca_lock);
725 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
728 if (MLD_V1_SEEN(mc->idev)) {
729 igmp6_join_group(mc);
734 mc->mca_crcount = mc->idev->mc_qrv;
735 mld_ifc_event(mc->idev);
738 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
740 struct net_device *dev = mc->idev->dev;
741 char buf[MAX_ADDR_LEN];
743 spin_lock_bh(&mc->mca_lock);
744 if (mc->mca_flags&MAF_LOADED) {
745 mc->mca_flags &= ~MAF_LOADED;
746 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
747 dev_mc_delete(dev, buf, dev->addr_len, 0);
750 if (mc->mca_flags & MAF_NOREPORT)
752 spin_unlock_bh(&mc->mca_lock);
755 igmp6_leave_group(mc);
757 spin_lock_bh(&mc->mca_lock);
758 if (del_timer(&mc->mca_timer))
759 atomic_dec(&mc->mca_refcnt);
761 ip6_mc_clear_src(mc);
762 spin_unlock_bh(&mc->mca_lock);
766 * deleted ifmcaddr6 manipulation
768 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
770 struct ifmcaddr6 *pmc;
772 /* this is an "ifmcaddr6" for convenience; only the fields below
773 * are actually used. In particular, the refcnt and users are not
774 * used for management of the delete list. Using the same structure
775 * for deleted items allows change reports to use common code with
776 * non-deleted or query-response MCA's.
778 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
782 spin_lock_bh(&im->mca_lock);
783 spin_lock_init(&pmc->mca_lock);
784 pmc->idev = im->idev;
786 pmc->mca_addr = im->mca_addr;
787 pmc->mca_crcount = idev->mc_qrv;
788 pmc->mca_sfmode = im->mca_sfmode;
789 if (pmc->mca_sfmode == MCAST_INCLUDE) {
790 struct ip6_sf_list *psf;
792 pmc->mca_tomb = im->mca_tomb;
793 pmc->mca_sources = im->mca_sources;
794 im->mca_tomb = im->mca_sources = NULL;
795 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
796 psf->sf_crcount = pmc->mca_crcount;
798 spin_unlock_bh(&im->mca_lock);
800 write_lock_bh(&idev->mc_lock);
801 pmc->next = idev->mc_tomb;
803 write_unlock_bh(&idev->mc_lock);
806 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *pmca)
808 struct ifmcaddr6 *pmc, *pmc_prev;
809 struct ip6_sf_list *psf, *psf_next;
811 write_lock_bh(&idev->mc_lock);
813 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
814 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
820 pmc_prev->next = pmc->next;
822 idev->mc_tomb = pmc->next;
824 write_unlock_bh(&idev->mc_lock);
826 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
827 psf_next = psf->sf_next;
830 in6_dev_put(pmc->idev);
835 static void mld_clear_delrec(struct inet6_dev *idev)
837 struct ifmcaddr6 *pmc, *nextpmc;
839 write_lock_bh(&idev->mc_lock);
841 idev->mc_tomb = NULL;
842 write_unlock_bh(&idev->mc_lock);
844 for (; pmc; pmc = nextpmc) {
846 ip6_mc_clear_src(pmc);
847 in6_dev_put(pmc->idev);
851 /* clear dead sources, too */
852 read_lock_bh(&idev->lock);
853 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
854 struct ip6_sf_list *psf, *psf_next;
856 spin_lock_bh(&pmc->mca_lock);
858 pmc->mca_tomb = NULL;
859 spin_unlock_bh(&pmc->mca_lock);
860 for (; psf; psf=psf_next) {
861 psf_next = psf->sf_next;
865 read_unlock_bh(&idev->lock);
870 * device multicast group inc (add if not found)
872 int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
874 struct ifmcaddr6 *mc;
875 struct inet6_dev *idev;
877 idev = in6_dev_get(dev);
882 write_lock_bh(&idev->lock);
884 write_unlock_bh(&idev->lock);
889 for (mc = idev->mc_list; mc; mc = mc->next) {
890 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
892 write_unlock_bh(&idev->lock);
893 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
901 * not found: create a new one.
904 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
907 write_unlock_bh(&idev->lock);
912 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
914 ipv6_addr_copy(&mc->mca_addr, addr);
917 /* mca_stamp should be updated upon changes */
918 mc->mca_cstamp = mc->mca_tstamp = jiffies;
919 atomic_set(&mc->mca_refcnt, 2);
920 spin_lock_init(&mc->mca_lock);
922 /* initial mode is (EX, empty) */
923 mc->mca_sfmode = MCAST_EXCLUDE;
924 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
926 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
927 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
928 mc->mca_flags |= MAF_NOREPORT;
930 mc->next = idev->mc_list;
932 write_unlock_bh(&idev->lock);
934 mld_del_delrec(idev, &mc->mca_addr);
935 igmp6_group_added(mc);
941 * device multicast group del
943 int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
945 struct ifmcaddr6 *ma, **map;
947 write_lock_bh(&idev->lock);
948 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
949 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
950 if (--ma->mca_users == 0) {
952 write_unlock_bh(&idev->lock);
954 igmp6_group_dropped(ma);
959 write_unlock_bh(&idev->lock);
963 write_unlock_bh(&idev->lock);
968 int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
970 struct inet6_dev *idev = in6_dev_get(dev);
976 err = __ipv6_dev_mc_dec(idev, addr);
984 * identify MLD packets for MLD filter exceptions
986 int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
988 struct icmp6hdr *pic;
990 if (nexthdr != IPPROTO_ICMPV6)
993 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
996 pic = icmp6_hdr(skb);
998 switch (pic->icmp6_type) {
999 case ICMPV6_MGM_QUERY:
1000 case ICMPV6_MGM_REPORT:
1001 case ICMPV6_MGM_REDUCTION:
1002 case ICMPV6_MLD2_REPORT:
1011 * check if the interface/address pair is valid
1013 int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
1014 const struct in6_addr *src_addr)
1016 struct inet6_dev *idev;
1017 struct ifmcaddr6 *mc;
1020 idev = in6_dev_get(dev);
1022 read_lock_bh(&idev->lock);
1023 for (mc = idev->mc_list; mc; mc=mc->next) {
1024 if (ipv6_addr_equal(&mc->mca_addr, group))
1028 if (src_addr && !ipv6_addr_any(src_addr)) {
1029 struct ip6_sf_list *psf;
1031 spin_lock_bh(&mc->mca_lock);
1032 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
1033 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
1037 rv = psf->sf_count[MCAST_INCLUDE] ||
1038 psf->sf_count[MCAST_EXCLUDE] !=
1039 mc->mca_sfcount[MCAST_EXCLUDE];
1041 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
1042 spin_unlock_bh(&mc->mca_lock);
1044 rv = 1; /* don't filter unspecified source */
1046 read_unlock_bh(&idev->lock);
1052 static void mld_gq_start_timer(struct inet6_dev *idev)
1054 int tv = net_random() % idev->mc_maxdelay;
1056 idev->mc_gq_running = 1;
1057 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1061 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1063 int tv = net_random() % delay;
1065 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1070 * IGMP handling (alias multicast ICMPv6 messages)
1073 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1075 unsigned long delay = resptime;
1077 /* Do not start timer for these addresses */
1078 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1079 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1082 if (del_timer(&ma->mca_timer)) {
1083 atomic_dec(&ma->mca_refcnt);
1084 delay = ma->mca_timer.expires - jiffies;
1087 if (delay >= resptime) {
1089 delay = net_random() % resptime;
1093 ma->mca_timer.expires = jiffies + delay;
1094 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1095 atomic_inc(&ma->mca_refcnt);
1096 ma->mca_flags |= MAF_TIMER_RUNNING;
1099 /* mark EXCLUDE-mode sources */
1100 static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1101 struct in6_addr *srcs)
1103 struct ip6_sf_list *psf;
1107 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1108 if (scount == nsrcs)
1110 for (i=0; i<nsrcs; i++) {
1111 /* skip inactive filters */
1112 if (pmc->mca_sfcount[MCAST_INCLUDE] ||
1113 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1114 psf->sf_count[MCAST_EXCLUDE])
1116 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1122 pmc->mca_flags &= ~MAF_GSQUERY;
1123 if (scount == nsrcs) /* all sources excluded */
1128 static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1129 struct in6_addr *srcs)
1131 struct ip6_sf_list *psf;
1134 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1135 return mld_xmarksources(pmc, nsrcs, srcs);
1137 /* mark INCLUDE-mode sources */
1140 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1141 if (scount == nsrcs)
1143 for (i=0; i<nsrcs; i++) {
1144 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1152 pmc->mca_flags &= ~MAF_GSQUERY;
1155 pmc->mca_flags |= MAF_GSQUERY;
1159 int igmp6_event_query(struct sk_buff *skb)
1161 struct mld2_query *mlh2 = NULL;
1162 struct ifmcaddr6 *ma;
1163 struct in6_addr *group;
1164 unsigned long max_delay;
1165 struct inet6_dev *idev;
1166 struct icmp6hdr *hdr;
1171 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1174 /* compute payload length excluding extension headers */
1175 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1176 len -= skb_network_header_len(skb);
1178 /* Drop queries with not link local source */
1179 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
1182 idev = in6_dev_get(skb->dev);
1187 hdr = icmp6_hdr(skb);
1188 group = (struct in6_addr *) (hdr + 1);
1189 group_type = ipv6_addr_type(group);
1191 if (group_type != IPV6_ADDR_ANY &&
1192 !(group_type&IPV6_ADDR_MULTICAST)) {
1199 /* MLDv1 router present */
1201 /* Translate milliseconds to jiffies */
1202 max_delay = (ntohs(hdr->icmp6_maxdelay)*HZ)/1000;
1204 switchback = (idev->mc_qrv + 1) * max_delay;
1205 idev->mc_v1_seen = jiffies + switchback;
1207 /* cancel the interface change timer */
1208 idev->mc_ifc_count = 0;
1209 if (del_timer(&idev->mc_ifc_timer))
1210 __in6_dev_put(idev);
1211 /* clear deleted report items */
1212 mld_clear_delrec(idev);
1213 } else if (len >= 28) {
1214 int srcs_offset = sizeof(struct mld2_query) -
1215 sizeof(struct icmp6hdr);
1216 if (!pskb_may_pull(skb, srcs_offset)) {
1220 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1221 max_delay = (MLDV2_MRC(ntohs(mlh2->mrc))*HZ)/1000;
1224 idev->mc_maxdelay = max_delay;
1226 idev->mc_qrv = mlh2->qrv;
1227 if (group_type == IPV6_ADDR_ANY) { /* general query */
1230 return -EINVAL; /* no sources allowed */
1232 mld_gq_start_timer(idev);
1236 /* mark sources to include, if group & source-specific */
1237 if (mlh2->nsrcs != 0) {
1238 if (!pskb_may_pull(skb, srcs_offset +
1239 ntohs(mlh2->nsrcs) * sizeof(struct in6_addr))) {
1243 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1251 read_lock_bh(&idev->lock);
1252 if (group_type == IPV6_ADDR_ANY) {
1253 for (ma = idev->mc_list; ma; ma=ma->next) {
1254 spin_lock_bh(&ma->mca_lock);
1255 igmp6_group_queried(ma, max_delay);
1256 spin_unlock_bh(&ma->mca_lock);
1259 for (ma = idev->mc_list; ma; ma=ma->next) {
1260 if (!ipv6_addr_equal(group, &ma->mca_addr))
1262 spin_lock_bh(&ma->mca_lock);
1263 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1264 /* gsquery <- gsquery && mark */
1266 ma->mca_flags &= ~MAF_GSQUERY;
1268 /* gsquery <- mark */
1270 ma->mca_flags |= MAF_GSQUERY;
1272 ma->mca_flags &= ~MAF_GSQUERY;
1274 if (!(ma->mca_flags & MAF_GSQUERY) ||
1275 mld_marksources(ma, ntohs(mlh2->nsrcs), mlh2->srcs))
1276 igmp6_group_queried(ma, max_delay);
1277 spin_unlock_bh(&ma->mca_lock);
1281 read_unlock_bh(&idev->lock);
1288 int igmp6_event_report(struct sk_buff *skb)
1290 struct ifmcaddr6 *ma;
1291 struct in6_addr *addrp;
1292 struct inet6_dev *idev;
1293 struct icmp6hdr *hdr;
1296 /* Our own report looped back. Ignore it. */
1297 if (skb->pkt_type == PACKET_LOOPBACK)
1300 /* send our report if the MC router may not have heard this report */
1301 if (skb->pkt_type != PACKET_MULTICAST &&
1302 skb->pkt_type != PACKET_BROADCAST)
1305 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1308 hdr = icmp6_hdr(skb);
1310 /* Drop reports with not link local source */
1311 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1312 if (addr_type != IPV6_ADDR_ANY &&
1313 !(addr_type&IPV6_ADDR_LINKLOCAL))
1316 addrp = (struct in6_addr *) (hdr + 1);
1318 idev = in6_dev_get(skb->dev);
1323 * Cancel the timer for this group
1326 read_lock_bh(&idev->lock);
1327 for (ma = idev->mc_list; ma; ma=ma->next) {
1328 if (ipv6_addr_equal(&ma->mca_addr, addrp)) {
1329 spin_lock(&ma->mca_lock);
1330 if (del_timer(&ma->mca_timer))
1331 atomic_dec(&ma->mca_refcnt);
1332 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1333 spin_unlock(&ma->mca_lock);
1337 read_unlock_bh(&idev->lock);
1342 static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1343 int gdeleted, int sdeleted)
1346 case MLD2_MODE_IS_INCLUDE:
1347 case MLD2_MODE_IS_EXCLUDE:
1348 if (gdeleted || sdeleted)
1350 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1351 if (pmc->mca_sfmode == MCAST_INCLUDE)
1353 /* don't include if this source is excluded
1356 if (psf->sf_count[MCAST_INCLUDE])
1357 return type == MLD2_MODE_IS_INCLUDE;
1358 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1359 psf->sf_count[MCAST_EXCLUDE];
1362 case MLD2_CHANGE_TO_INCLUDE:
1363 if (gdeleted || sdeleted)
1365 return psf->sf_count[MCAST_INCLUDE] != 0;
1366 case MLD2_CHANGE_TO_EXCLUDE:
1367 if (gdeleted || sdeleted)
1369 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1370 psf->sf_count[MCAST_INCLUDE])
1372 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1373 psf->sf_count[MCAST_EXCLUDE];
1374 case MLD2_ALLOW_NEW_SOURCES:
1375 if (gdeleted || !psf->sf_crcount)
1377 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1378 case MLD2_BLOCK_OLD_SOURCES:
1379 if (pmc->mca_sfmode == MCAST_INCLUDE)
1380 return gdeleted || (psf->sf_crcount && sdeleted);
1381 return psf->sf_crcount && !gdeleted && !sdeleted;
1387 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1389 struct ip6_sf_list *psf;
1392 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1393 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1400 static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1402 struct net *net = dev_net(dev);
1403 struct sock *sk = net->ipv6.igmp_sk;
1404 struct sk_buff *skb;
1405 struct mld2_report *pmr;
1406 struct in6_addr addr_buf;
1407 const struct in6_addr *saddr;
1409 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1410 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1413 /* we assume size > sizeof(ra) here */
1414 skb = sock_alloc_send_skb(sk, size + LL_ALLOCATED_SPACE(dev), 1, &err);
1419 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1421 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1422 /* <draft-ietf-magma-mld-source-05.txt>:
1423 * use unspecified address as the source address
1424 * when a valid link-local address is not available.
1426 saddr = &in6addr_any;
1430 ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
1432 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1434 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1435 skb_put(skb, sizeof(*pmr));
1436 pmr = (struct mld2_report *)skb_transport_header(skb);
1437 pmr->type = ICMPV6_MLD2_REPORT;
1445 static void mld_sendpack(struct sk_buff *skb)
1447 struct ipv6hdr *pip6 = ipv6_hdr(skb);
1448 struct mld2_report *pmr =
1449 (struct mld2_report *)skb_transport_header(skb);
1450 int payload_len, mldlen;
1451 struct inet6_dev *idev = in6_dev_get(skb->dev);
1452 struct net *net = dev_net(skb->dev);
1456 IP6_INC_STATS(idev, IPSTATS_MIB_OUTREQUESTS);
1457 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1458 mldlen = skb->tail - skb->transport_header;
1459 pip6->payload_len = htons(payload_len);
1461 pmr->csum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1462 IPPROTO_ICMPV6, csum_partial(skb_transport_header(skb),
1465 skb->dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1472 icmpv6_flow_init(net->ipv6.igmp_sk, &fl, ICMPV6_MLD2_REPORT,
1473 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1476 err = xfrm_lookup(&skb->dst, &fl, NULL, 0);
1480 err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1484 ICMP6MSGOUT_INC_STATS_BH(idev, ICMPV6_MLD2_REPORT);
1485 ICMP6_INC_STATS_BH(idev, ICMP6_MIB_OUTMSGS);
1486 IP6_INC_STATS_BH(idev, IPSTATS_MIB_OUTMCASTPKTS);
1488 IP6_INC_STATS_BH(idev, IPSTATS_MIB_OUTDISCARDS);
1490 if (likely(idev != NULL))
1499 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1501 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1504 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1505 int type, struct mld2_grec **ppgr)
1507 struct net_device *dev = pmc->idev->dev;
1508 struct mld2_report *pmr;
1509 struct mld2_grec *pgr;
1512 skb = mld_newpack(dev, dev->mtu);
1515 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1516 pgr->grec_type = type;
1517 pgr->grec_auxwords = 0;
1518 pgr->grec_nsrcs = 0;
1519 pgr->grec_mca = pmc->mca_addr; /* structure copy */
1520 pmr = (struct mld2_report *)skb_transport_header(skb);
1521 pmr->ngrec = htons(ntohs(pmr->ngrec)+1);
1526 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1527 skb_tailroom(skb)) : 0)
1529 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1530 int type, int gdeleted, int sdeleted)
1532 struct net_device *dev = pmc->idev->dev;
1533 struct mld2_report *pmr;
1534 struct mld2_grec *pgr = NULL;
1535 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1536 int scount, stotal, first, isquery, truncate;
1538 if (pmc->mca_flags & MAF_NOREPORT)
1541 isquery = type == MLD2_MODE_IS_INCLUDE ||
1542 type == MLD2_MODE_IS_EXCLUDE;
1543 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1544 type == MLD2_CHANGE_TO_EXCLUDE;
1546 stotal = scount = 0;
1548 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1553 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
1555 /* EX and TO_EX get a fresh packet, if needed */
1557 if (pmr && pmr->ngrec &&
1558 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1561 skb = mld_newpack(dev, dev->mtu);
1566 for (psf=*psf_list; psf; psf=psf_next) {
1567 struct in6_addr *psrc;
1569 psf_next = psf->sf_next;
1571 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1576 /* clear marks on query responses */
1580 if (AVAILABLE(skb) < sizeof(*psrc) +
1581 first*sizeof(struct mld2_grec)) {
1582 if (truncate && !first)
1583 break; /* truncate these */
1585 pgr->grec_nsrcs = htons(scount);
1588 skb = mld_newpack(dev, dev->mtu);
1593 skb = add_grhead(skb, pmc, type, &pgr);
1598 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1599 *psrc = psf->sf_addr;
1601 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1602 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1604 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1606 psf_prev->sf_next = psf->sf_next;
1608 *psf_list = psf->sf_next;
1618 if (type == MLD2_ALLOW_NEW_SOURCES ||
1619 type == MLD2_BLOCK_OLD_SOURCES)
1621 if (pmc->mca_crcount || isquery) {
1622 /* make sure we have room for group header */
1623 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1625 skb = NULL; /* add_grhead will get a new one */
1627 skb = add_grhead(skb, pmc, type, &pgr);
1631 pgr->grec_nsrcs = htons(scount);
1634 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1638 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1640 struct sk_buff *skb = NULL;
1644 read_lock_bh(&idev->lock);
1645 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1646 if (pmc->mca_flags & MAF_NOREPORT)
1648 spin_lock_bh(&pmc->mca_lock);
1649 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1650 type = MLD2_MODE_IS_EXCLUDE;
1652 type = MLD2_MODE_IS_INCLUDE;
1653 skb = add_grec(skb, pmc, type, 0, 0);
1654 spin_unlock_bh(&pmc->mca_lock);
1656 read_unlock_bh(&idev->lock);
1658 spin_lock_bh(&pmc->mca_lock);
1659 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1660 type = MLD2_MODE_IS_EXCLUDE;
1662 type = MLD2_MODE_IS_INCLUDE;
1663 skb = add_grec(skb, pmc, type, 0, 0);
1664 spin_unlock_bh(&pmc->mca_lock);
1671 * remove zero-count source records from a source filter list
1673 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1675 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1678 for (psf=*ppsf; psf; psf = psf_next) {
1679 psf_next = psf->sf_next;
1680 if (psf->sf_crcount == 0) {
1682 psf_prev->sf_next = psf->sf_next;
1684 *ppsf = psf->sf_next;
1691 static void mld_send_cr(struct inet6_dev *idev)
1693 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1694 struct sk_buff *skb = NULL;
1697 read_lock_bh(&idev->lock);
1698 write_lock_bh(&idev->mc_lock);
1702 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1703 pmc_next = pmc->next;
1704 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1705 type = MLD2_BLOCK_OLD_SOURCES;
1706 dtype = MLD2_BLOCK_OLD_SOURCES;
1707 skb = add_grec(skb, pmc, type, 1, 0);
1708 skb = add_grec(skb, pmc, dtype, 1, 1);
1710 if (pmc->mca_crcount) {
1711 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1712 type = MLD2_CHANGE_TO_INCLUDE;
1713 skb = add_grec(skb, pmc, type, 1, 0);
1716 if (pmc->mca_crcount == 0) {
1717 mld_clear_zeros(&pmc->mca_tomb);
1718 mld_clear_zeros(&pmc->mca_sources);
1721 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1722 !pmc->mca_sources) {
1724 pmc_prev->next = pmc_next;
1726 idev->mc_tomb = pmc_next;
1727 in6_dev_put(pmc->idev);
1732 write_unlock_bh(&idev->mc_lock);
1735 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1736 spin_lock_bh(&pmc->mca_lock);
1737 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1738 type = MLD2_BLOCK_OLD_SOURCES;
1739 dtype = MLD2_ALLOW_NEW_SOURCES;
1741 type = MLD2_ALLOW_NEW_SOURCES;
1742 dtype = MLD2_BLOCK_OLD_SOURCES;
1744 skb = add_grec(skb, pmc, type, 0, 0);
1745 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1747 /* filter mode changes */
1748 if (pmc->mca_crcount) {
1749 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1750 type = MLD2_CHANGE_TO_EXCLUDE;
1752 type = MLD2_CHANGE_TO_INCLUDE;
1753 skb = add_grec(skb, pmc, type, 0, 0);
1756 spin_unlock_bh(&pmc->mca_lock);
1758 read_unlock_bh(&idev->lock);
1761 (void) mld_sendpack(skb);
1764 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1766 struct net *net = dev_net(dev);
1767 struct sock *sk = net->ipv6.igmp_sk;
1768 struct inet6_dev *idev;
1769 struct sk_buff *skb;
1770 struct icmp6hdr *hdr;
1771 const struct in6_addr *snd_addr, *saddr;
1772 struct in6_addr *addrp;
1773 struct in6_addr addr_buf;
1774 int err, len, payload_len, full_len;
1775 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1776 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1781 IP6_INC_STATS(__in6_dev_get(dev),
1782 IPSTATS_MIB_OUTREQUESTS);
1784 if (type == ICMPV6_MGM_REDUCTION)
1785 snd_addr = &in6addr_linklocal_allrouters;
1789 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1790 payload_len = len + sizeof(ra);
1791 full_len = sizeof(struct ipv6hdr) + payload_len;
1793 skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err);
1797 IP6_INC_STATS(__in6_dev_get(dev),
1798 IPSTATS_MIB_OUTDISCARDS);
1803 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1805 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1806 /* <draft-ietf-magma-mld-source-05.txt>:
1807 * use unspecified address as the source address
1808 * when a valid link-local address is not available.
1810 saddr = &in6addr_any;
1814 ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
1816 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1818 hdr = (struct icmp6hdr *) skb_put(skb, sizeof(struct icmp6hdr));
1819 memset(hdr, 0, sizeof(struct icmp6hdr));
1820 hdr->icmp6_type = type;
1822 addrp = (struct in6_addr *) skb_put(skb, sizeof(struct in6_addr));
1823 ipv6_addr_copy(addrp, addr);
1825 hdr->icmp6_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1827 csum_partial((__u8 *) hdr, len, 0));
1829 idev = in6_dev_get(skb->dev);
1831 skb->dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1837 icmpv6_flow_init(sk, &fl, type,
1838 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1841 err = xfrm_lookup(&skb->dst, &fl, NULL, 0);
1845 err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1849 ICMP6MSGOUT_INC_STATS(idev, type);
1850 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
1851 IP6_INC_STATS(idev, IPSTATS_MIB_OUTMCASTPKTS);
1853 IP6_INC_STATS(idev, IPSTATS_MIB_OUTDISCARDS);
1855 if (likely(idev != NULL))
1864 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1865 struct in6_addr *psfsrc)
1867 struct ip6_sf_list *psf, *psf_prev;
1871 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1872 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1876 if (!psf || psf->sf_count[sfmode] == 0) {
1877 /* source filter not found, or count wrong => bug */
1880 psf->sf_count[sfmode]--;
1881 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1882 struct inet6_dev *idev = pmc->idev;
1884 /* no more filters for this source */
1886 psf_prev->sf_next = psf->sf_next;
1888 pmc->mca_sources = psf->sf_next;
1889 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1890 !MLD_V1_SEEN(idev)) {
1891 psf->sf_crcount = idev->mc_qrv;
1892 psf->sf_next = pmc->mca_tomb;
1893 pmc->mca_tomb = psf;
1901 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
1902 int sfmode, int sfcount, struct in6_addr *psfsrc,
1905 struct ifmcaddr6 *pmc;
1911 read_lock_bh(&idev->lock);
1912 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1913 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1917 /* MCA not found?? bug */
1918 read_unlock_bh(&idev->lock);
1921 spin_lock_bh(&pmc->mca_lock);
1924 if (!pmc->mca_sfcount[sfmode]) {
1925 spin_unlock_bh(&pmc->mca_lock);
1926 read_unlock_bh(&idev->lock);
1929 pmc->mca_sfcount[sfmode]--;
1932 for (i=0; i<sfcount; i++) {
1933 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1935 changerec |= rv > 0;
1939 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1940 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1941 pmc->mca_sfcount[MCAST_INCLUDE]) {
1942 struct ip6_sf_list *psf;
1944 /* filter mode change */
1945 pmc->mca_sfmode = MCAST_INCLUDE;
1946 pmc->mca_crcount = idev->mc_qrv;
1947 idev->mc_ifc_count = pmc->mca_crcount;
1948 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1949 psf->sf_crcount = 0;
1950 mld_ifc_event(pmc->idev);
1951 } else if (sf_setstate(pmc) || changerec)
1952 mld_ifc_event(pmc->idev);
1953 spin_unlock_bh(&pmc->mca_lock);
1954 read_unlock_bh(&idev->lock);
1959 * Add multicast single-source filter to the interface list
1961 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1962 struct in6_addr *psfsrc, int delta)
1964 struct ip6_sf_list *psf, *psf_prev;
1967 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1968 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1973 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1977 psf->sf_addr = *psfsrc;
1979 psf_prev->sf_next = psf;
1981 pmc->mca_sources = psf;
1983 psf->sf_count[sfmode]++;
1987 static void sf_markstate(struct ifmcaddr6 *pmc)
1989 struct ip6_sf_list *psf;
1990 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1992 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1993 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1994 psf->sf_oldin = mca_xcount ==
1995 psf->sf_count[MCAST_EXCLUDE] &&
1996 !psf->sf_count[MCAST_INCLUDE];
1998 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2001 static int sf_setstate(struct ifmcaddr6 *pmc)
2003 struct ip6_sf_list *psf, *dpsf;
2004 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2005 int qrv = pmc->idev->mc_qrv;
2009 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2010 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2011 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2012 !psf->sf_count[MCAST_INCLUDE];
2014 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
2016 if (!psf->sf_oldin) {
2017 struct ip6_sf_list *prev = NULL;
2019 for (dpsf=pmc->mca_tomb; dpsf;
2020 dpsf=dpsf->sf_next) {
2021 if (ipv6_addr_equal(&dpsf->sf_addr,
2028 prev->sf_next = dpsf->sf_next;
2030 pmc->mca_tomb = dpsf->sf_next;
2033 psf->sf_crcount = qrv;
2036 } else if (psf->sf_oldin) {
2037 psf->sf_crcount = 0;
2039 * add or update "delete" records if an active filter
2042 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2043 if (ipv6_addr_equal(&dpsf->sf_addr,
2047 dpsf = (struct ip6_sf_list *)
2048 kmalloc(sizeof(*dpsf), GFP_ATOMIC);
2052 /* pmc->mca_lock held by callers */
2053 dpsf->sf_next = pmc->mca_tomb;
2054 pmc->mca_tomb = dpsf;
2056 dpsf->sf_crcount = qrv;
2064 * Add multicast source filter list to the interface list
2066 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
2067 int sfmode, int sfcount, struct in6_addr *psfsrc,
2070 struct ifmcaddr6 *pmc;
2076 read_lock_bh(&idev->lock);
2077 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2078 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2082 /* MCA not found?? bug */
2083 read_unlock_bh(&idev->lock);
2086 spin_lock_bh(&pmc->mca_lock);
2089 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2091 pmc->mca_sfcount[sfmode]++;
2093 for (i=0; i<sfcount; i++) {
2094 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2102 pmc->mca_sfcount[sfmode]--;
2104 (void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2105 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2106 struct inet6_dev *idev = pmc->idev;
2107 struct ip6_sf_list *psf;
2109 /* filter mode change */
2110 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2111 pmc->mca_sfmode = MCAST_EXCLUDE;
2112 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2113 pmc->mca_sfmode = MCAST_INCLUDE;
2114 /* else no filters; keep old mode for reports */
2116 pmc->mca_crcount = idev->mc_qrv;
2117 idev->mc_ifc_count = pmc->mca_crcount;
2118 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2119 psf->sf_crcount = 0;
2120 mld_ifc_event(idev);
2121 } else if (sf_setstate(pmc))
2122 mld_ifc_event(idev);
2123 spin_unlock_bh(&pmc->mca_lock);
2124 read_unlock_bh(&idev->lock);
2128 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2130 struct ip6_sf_list *psf, *nextpsf;
2132 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2133 nextpsf = psf->sf_next;
2136 pmc->mca_tomb = NULL;
2137 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2138 nextpsf = psf->sf_next;
2141 pmc->mca_sources = NULL;
2142 pmc->mca_sfmode = MCAST_EXCLUDE;
2143 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2144 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2148 static void igmp6_join_group(struct ifmcaddr6 *ma)
2150 unsigned long delay;
2152 if (ma->mca_flags & MAF_NOREPORT)
2155 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2157 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2159 spin_lock_bh(&ma->mca_lock);
2160 if (del_timer(&ma->mca_timer)) {
2161 atomic_dec(&ma->mca_refcnt);
2162 delay = ma->mca_timer.expires - jiffies;
2165 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2166 atomic_inc(&ma->mca_refcnt);
2167 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2168 spin_unlock_bh(&ma->mca_lock);
2171 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2172 struct inet6_dev *idev)
2176 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2177 * so no other readers or writers of iml or its sflist
2180 /* any-source empty exclude case */
2181 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2183 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2184 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2185 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2190 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2192 if (MLD_V1_SEEN(ma->idev)) {
2193 if (ma->mca_flags & MAF_LAST_REPORTER)
2194 igmp6_send(&ma->mca_addr, ma->idev->dev,
2195 ICMPV6_MGM_REDUCTION);
2197 mld_add_delrec(ma->idev, ma);
2198 mld_ifc_event(ma->idev);
2202 static void mld_gq_timer_expire(unsigned long data)
2204 struct inet6_dev *idev = (struct inet6_dev *)data;
2206 idev->mc_gq_running = 0;
2207 mld_send_report(idev, NULL);
2208 __in6_dev_put(idev);
2211 static void mld_ifc_timer_expire(unsigned long data)
2213 struct inet6_dev *idev = (struct inet6_dev *)data;
2216 if (idev->mc_ifc_count) {
2217 idev->mc_ifc_count--;
2218 if (idev->mc_ifc_count)
2219 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2221 __in6_dev_put(idev);
2224 static void mld_ifc_event(struct inet6_dev *idev)
2226 if (MLD_V1_SEEN(idev))
2228 idev->mc_ifc_count = idev->mc_qrv;
2229 mld_ifc_start_timer(idev, 1);
2233 static void igmp6_timer_handler(unsigned long data)
2235 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2237 if (MLD_V1_SEEN(ma->idev))
2238 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2240 mld_send_report(ma->idev, ma);
2242 spin_lock(&ma->mca_lock);
2243 ma->mca_flags |= MAF_LAST_REPORTER;
2244 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2245 spin_unlock(&ma->mca_lock);
2249 /* Device going down */
2251 void ipv6_mc_down(struct inet6_dev *idev)
2253 struct ifmcaddr6 *i;
2255 /* Withdraw multicast list */
2257 read_lock_bh(&idev->lock);
2258 idev->mc_ifc_count = 0;
2259 if (del_timer(&idev->mc_ifc_timer))
2260 __in6_dev_put(idev);
2261 idev->mc_gq_running = 0;
2262 if (del_timer(&idev->mc_gq_timer))
2263 __in6_dev_put(idev);
2265 for (i = idev->mc_list; i; i=i->next)
2266 igmp6_group_dropped(i);
2267 read_unlock_bh(&idev->lock);
2269 mld_clear_delrec(idev);
2273 /* Device going up */
2275 void ipv6_mc_up(struct inet6_dev *idev)
2277 struct ifmcaddr6 *i;
2279 /* Install multicast list, except for all-nodes (already installed) */
2281 read_lock_bh(&idev->lock);
2282 for (i = idev->mc_list; i; i=i->next)
2283 igmp6_group_added(i);
2284 read_unlock_bh(&idev->lock);
2287 /* IPv6 device initialization. */
2289 void ipv6_mc_init_dev(struct inet6_dev *idev)
2291 write_lock_bh(&idev->lock);
2292 rwlock_init(&idev->mc_lock);
2293 idev->mc_gq_running = 0;
2294 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2295 (unsigned long)idev);
2296 idev->mc_tomb = NULL;
2297 idev->mc_ifc_count = 0;
2298 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2299 (unsigned long)idev);
2300 idev->mc_qrv = MLD_QRV_DEFAULT;
2301 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2302 idev->mc_v1_seen = 0;
2303 write_unlock_bh(&idev->lock);
2307 * Device is about to be destroyed: clean up.
2310 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2312 struct ifmcaddr6 *i;
2314 /* Deactivate timers */
2317 /* Delete all-nodes address. */
2318 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2319 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2322 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
2324 if (idev->cnf.forwarding)
2325 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
2327 write_lock_bh(&idev->lock);
2328 while ((i = idev->mc_list) != NULL) {
2329 idev->mc_list = i->next;
2330 write_unlock_bh(&idev->lock);
2332 igmp6_group_dropped(i);
2335 write_lock_bh(&idev->lock);
2337 write_unlock_bh(&idev->lock);
2340 #ifdef CONFIG_PROC_FS
2341 struct igmp6_mc_iter_state {
2342 struct seq_net_private p;
2343 struct net_device *dev;
2344 struct inet6_dev *idev;
2347 #define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2349 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2351 struct ifmcaddr6 *im = NULL;
2352 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2353 struct net *net = seq_file_net(seq);
2356 for_each_netdev(net, state->dev) {
2357 struct inet6_dev *idev;
2358 idev = in6_dev_get(state->dev);
2361 read_lock_bh(&idev->lock);
2367 read_unlock_bh(&idev->lock);
2373 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2375 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2379 if (likely(state->idev != NULL)) {
2380 read_unlock_bh(&state->idev->lock);
2381 in6_dev_put(state->idev);
2383 state->dev = next_net_device(state->dev);
2388 state->idev = in6_dev_get(state->dev);
2391 read_lock_bh(&state->idev->lock);
2392 im = state->idev->mc_list;
2397 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2399 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2401 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2403 return pos ? NULL : im;
2406 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2407 __acquires(dev_base_lock)
2409 read_lock(&dev_base_lock);
2410 return igmp6_mc_get_idx(seq, *pos);
2413 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2415 struct ifmcaddr6 *im;
2416 im = igmp6_mc_get_next(seq, v);
2421 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2422 __releases(dev_base_lock)
2424 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2425 if (likely(state->idev != NULL)) {
2426 read_unlock_bh(&state->idev->lock);
2427 in6_dev_put(state->idev);
2431 read_unlock(&dev_base_lock);
2434 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2436 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2437 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2440 "%-4d %-15s " NIP6_SEQFMT " %5d %08X %ld\n",
2441 state->dev->ifindex, state->dev->name,
2443 im->mca_users, im->mca_flags,
2444 (im->mca_flags&MAF_TIMER_RUNNING) ?
2445 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2449 static const struct seq_operations igmp6_mc_seq_ops = {
2450 .start = igmp6_mc_seq_start,
2451 .next = igmp6_mc_seq_next,
2452 .stop = igmp6_mc_seq_stop,
2453 .show = igmp6_mc_seq_show,
2456 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2458 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2459 sizeof(struct igmp6_mc_iter_state));
2462 static const struct file_operations igmp6_mc_seq_fops = {
2463 .owner = THIS_MODULE,
2464 .open = igmp6_mc_seq_open,
2466 .llseek = seq_lseek,
2467 .release = seq_release_net,
2470 struct igmp6_mcf_iter_state {
2471 struct seq_net_private p;
2472 struct net_device *dev;
2473 struct inet6_dev *idev;
2474 struct ifmcaddr6 *im;
2477 #define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2479 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2481 struct ip6_sf_list *psf = NULL;
2482 struct ifmcaddr6 *im = NULL;
2483 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2484 struct net *net = seq_file_net(seq);
2488 for_each_netdev(net, state->dev) {
2489 struct inet6_dev *idev;
2490 idev = in6_dev_get(state->dev);
2491 if (unlikely(idev == NULL))
2493 read_lock_bh(&idev->lock);
2495 if (likely(im != NULL)) {
2496 spin_lock_bh(&im->mca_lock);
2497 psf = im->mca_sources;
2498 if (likely(psf != NULL)) {
2503 spin_unlock_bh(&im->mca_lock);
2505 read_unlock_bh(&idev->lock);
2511 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2513 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2517 spin_unlock_bh(&state->im->mca_lock);
2518 state->im = state->im->next;
2519 while (!state->im) {
2520 if (likely(state->idev != NULL)) {
2521 read_unlock_bh(&state->idev->lock);
2522 in6_dev_put(state->idev);
2524 state->dev = next_net_device(state->dev);
2529 state->idev = in6_dev_get(state->dev);
2532 read_lock_bh(&state->idev->lock);
2533 state->im = state->idev->mc_list;
2537 spin_lock_bh(&state->im->mca_lock);
2538 psf = state->im->mca_sources;
2544 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2546 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2548 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2550 return pos ? NULL : psf;
2553 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2554 __acquires(dev_base_lock)
2556 read_lock(&dev_base_lock);
2557 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2560 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2562 struct ip6_sf_list *psf;
2563 if (v == SEQ_START_TOKEN)
2564 psf = igmp6_mcf_get_first(seq);
2566 psf = igmp6_mcf_get_next(seq, v);
2571 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2572 __releases(dev_base_lock)
2574 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2575 if (likely(state->im != NULL)) {
2576 spin_unlock_bh(&state->im->mca_lock);
2579 if (likely(state->idev != NULL)) {
2580 read_unlock_bh(&state->idev->lock);
2581 in6_dev_put(state->idev);
2585 read_unlock(&dev_base_lock);
2588 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2590 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2591 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2593 if (v == SEQ_START_TOKEN) {
2596 "%32s %32s %6s %6s\n", "Idx",
2597 "Device", "Multicast Address",
2598 "Source Address", "INC", "EXC");
2601 "%3d %6.6s " NIP6_SEQFMT " " NIP6_SEQFMT " %6lu %6lu\n",
2602 state->dev->ifindex, state->dev->name,
2603 NIP6(state->im->mca_addr),
2605 psf->sf_count[MCAST_INCLUDE],
2606 psf->sf_count[MCAST_EXCLUDE]);
2611 static const struct seq_operations igmp6_mcf_seq_ops = {
2612 .start = igmp6_mcf_seq_start,
2613 .next = igmp6_mcf_seq_next,
2614 .stop = igmp6_mcf_seq_stop,
2615 .show = igmp6_mcf_seq_show,
2618 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2620 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2621 sizeof(struct igmp6_mcf_iter_state));
2624 static const struct file_operations igmp6_mcf_seq_fops = {
2625 .owner = THIS_MODULE,
2626 .open = igmp6_mcf_seq_open,
2628 .llseek = seq_lseek,
2629 .release = seq_release_net,
2632 static int igmp6_proc_init(struct net *net)
2637 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2639 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2640 &igmp6_mcf_seq_fops))
2641 goto out_proc_net_igmp6;
2648 proc_net_remove(net, "igmp6");
2652 static void igmp6_proc_exit(struct net *net)
2654 proc_net_remove(net, "mcfilter6");
2655 proc_net_remove(net, "igmp6");
2658 static int igmp6_proc_init(struct net *net)
2662 static void igmp6_proc_exit(struct net *net)
2668 static int igmp6_net_init(struct net *net)
2672 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2673 SOCK_RAW, IPPROTO_ICMPV6, net);
2676 "Failed to initialize the IGMP6 control socket (err %d).\n",
2681 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
2683 err = igmp6_proc_init(net);
2685 goto out_sock_create;
2690 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2694 static void igmp6_net_exit(struct net *net)
2696 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2697 igmp6_proc_exit(net);
2700 static struct pernet_operations igmp6_net_ops = {
2701 .init = igmp6_net_init,
2702 .exit = igmp6_net_exit,
2705 int __init igmp6_init(void)
2707 return register_pernet_subsys(&igmp6_net_ops);
2710 void igmp6_cleanup(void)
2712 unregister_pernet_subsys(&igmp6_net_ops);