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/config.h>
32 #include <linux/module.h>
33 #include <linux/errno.h>
34 #include <linux/types.h>
35 #include <linux/string.h>
36 #include <linux/socket.h>
37 #include <linux/sockios.h>
38 #include <linux/jiffies.h>
39 #include <linux/times.h>
40 #include <linux/net.h>
42 #include <linux/in6.h>
43 #include <linux/netdevice.h>
44 #include <linux/if_arp.h>
45 #include <linux/route.h>
46 #include <linux/init.h>
47 #include <linux/proc_fs.h>
48 #include <linux/seq_file.h>
50 #include <linux/netfilter.h>
51 #include <linux/netfilter_ipv6.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>
63 #include <net/ip6_checksum.h>
65 /* Set to 3 to get tracing... */
69 #define MDBG(x) printk x
75 * These header formats should be in a separate include file, but icmpv6.h
76 * doesn't have in6_addr defined in all cases, there is no __u128, and no
77 * other files reference these.
82 /* Multicast Listener Discovery version 2 headers */
88 struct in6_addr grec_mca;
89 struct in6_addr grec_src[0];
98 struct mld2_grec grec[0];
108 #if defined(__LITTLE_ENDIAN_BITFIELD)
112 #elif defined(__BIG_ENDIAN_BITFIELD)
117 #error "Please fix <asm/byteorder.h>"
121 struct in6_addr srcs[0];
124 static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
126 /* Big mc list lock for all the sockets */
127 static DEFINE_RWLOCK(ipv6_sk_mc_lock);
129 static struct socket *igmp6_socket;
131 int __ipv6_dev_mc_dec(struct inet6_dev *idev, struct in6_addr *addr);
133 static void igmp6_join_group(struct ifmcaddr6 *ma);
134 static void igmp6_leave_group(struct ifmcaddr6 *ma);
135 static void igmp6_timer_handler(unsigned long data);
137 static void mld_gq_timer_expire(unsigned long data);
138 static void mld_ifc_timer_expire(unsigned long data);
139 static void mld_ifc_event(struct inet6_dev *idev);
140 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
141 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *addr);
142 static void mld_clear_delrec(struct inet6_dev *idev);
143 static int sf_setstate(struct ifmcaddr6 *pmc);
144 static void sf_markstate(struct ifmcaddr6 *pmc);
145 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
146 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
147 int sfmode, int sfcount, struct in6_addr *psfsrc,
149 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
150 int sfmode, int sfcount, struct in6_addr *psfsrc,
152 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
153 struct inet6_dev *idev);
156 #define IGMP6_UNSOLICITED_IVAL (10*HZ)
157 #define MLD_QRV_DEFAULT 2
159 #define MLD_V1_SEEN(idev) (ipv6_devconf.force_mld_version == 1 || \
160 (idev)->cnf.force_mld_version == 1 || \
161 ((idev)->mc_v1_seen && \
162 time_before(jiffies, (idev)->mc_v1_seen)))
164 #define MLDV2_MASK(value, nb) ((nb)>=32 ? (value) : ((1<<(nb))-1) & (value))
165 #define MLDV2_EXP(thresh, nbmant, nbexp, value) \
166 ((value) < (thresh) ? (value) : \
167 ((MLDV2_MASK(value, nbmant) | (1<<(nbmant))) << \
168 (MLDV2_MASK((value) >> (nbmant), nbexp) + (nbexp))))
170 #define MLDV2_QQIC(value) MLDV2_EXP(0x80, 4, 3, value)
171 #define MLDV2_MRC(value) MLDV2_EXP(0x8000, 12, 3, value)
173 #define IPV6_MLD_MAX_MSF 64
175 int sysctl_mld_max_msf = IPV6_MLD_MAX_MSF;
178 * socket join on multicast group
181 int ipv6_sock_mc_join(struct sock *sk, int ifindex, struct in6_addr *addr)
183 struct net_device *dev = NULL;
184 struct ipv6_mc_socklist *mc_lst;
185 struct ipv6_pinfo *np = inet6_sk(sk);
188 if (!ipv6_addr_is_multicast(addr))
191 read_lock_bh(&ipv6_sk_mc_lock);
192 for (mc_lst=np->ipv6_mc_list; mc_lst; mc_lst=mc_lst->next) {
193 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
194 ipv6_addr_equal(&mc_lst->addr, addr)) {
195 read_unlock_bh(&ipv6_sk_mc_lock);
199 read_unlock_bh(&ipv6_sk_mc_lock);
201 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
207 ipv6_addr_copy(&mc_lst->addr, addr);
211 rt = rt6_lookup(addr, NULL, 0, 0);
215 dst_release(&rt->u.dst);
218 dev = dev_get_by_index(ifindex);
221 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
225 mc_lst->ifindex = dev->ifindex;
226 mc_lst->sfmode = MCAST_EXCLUDE;
227 rwlock_init(&mc_lst->sflock);
228 mc_lst->sflist = NULL;
231 * now add/increase the group membership on the device
234 err = ipv6_dev_mc_inc(dev, addr);
237 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
242 write_lock_bh(&ipv6_sk_mc_lock);
243 mc_lst->next = np->ipv6_mc_list;
244 np->ipv6_mc_list = mc_lst;
245 write_unlock_bh(&ipv6_sk_mc_lock);
253 * socket leave on multicast group
255 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, struct in6_addr *addr)
257 struct ipv6_pinfo *np = inet6_sk(sk);
258 struct ipv6_mc_socklist *mc_lst, **lnk;
260 write_lock_bh(&ipv6_sk_mc_lock);
261 for (lnk = &np->ipv6_mc_list; (mc_lst = *lnk) !=NULL ; lnk = &mc_lst->next) {
262 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
263 ipv6_addr_equal(&mc_lst->addr, addr)) {
264 struct net_device *dev;
267 write_unlock_bh(&ipv6_sk_mc_lock);
269 if ((dev = dev_get_by_index(mc_lst->ifindex)) != NULL) {
270 struct inet6_dev *idev = in6_dev_get(dev);
273 (void) ip6_mc_leave_src(sk,mc_lst,idev);
274 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
279 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
283 write_unlock_bh(&ipv6_sk_mc_lock);
285 return -EADDRNOTAVAIL;
288 static struct inet6_dev *ip6_mc_find_dev(struct in6_addr *group, int ifindex)
290 struct net_device *dev = NULL;
291 struct inet6_dev *idev = NULL;
296 rt = rt6_lookup(group, NULL, 0, 0);
300 dst_release(&rt->u.dst);
303 dev = dev_get_by_index(ifindex);
307 idev = in6_dev_get(dev);
312 read_lock_bh(&idev->lock);
314 read_unlock_bh(&idev->lock);
322 void ipv6_sock_mc_close(struct sock *sk)
324 struct ipv6_pinfo *np = inet6_sk(sk);
325 struct ipv6_mc_socklist *mc_lst;
327 write_lock_bh(&ipv6_sk_mc_lock);
328 while ((mc_lst = np->ipv6_mc_list) != NULL) {
329 struct net_device *dev;
331 np->ipv6_mc_list = mc_lst->next;
332 write_unlock_bh(&ipv6_sk_mc_lock);
334 dev = dev_get_by_index(mc_lst->ifindex);
336 struct inet6_dev *idev = in6_dev_get(dev);
339 (void) ip6_mc_leave_src(sk, mc_lst, idev);
340 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
346 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
348 write_lock_bh(&ipv6_sk_mc_lock);
350 write_unlock_bh(&ipv6_sk_mc_lock);
353 int ip6_mc_source(int add, int omode, struct sock *sk,
354 struct group_source_req *pgsr)
356 struct in6_addr *source, *group;
357 struct ipv6_mc_socklist *pmc;
358 struct net_device *dev;
359 struct inet6_dev *idev;
360 struct ipv6_pinfo *inet6 = inet6_sk(sk);
361 struct ip6_sf_socklist *psl;
367 if (pgsr->gsr_group.ss_family != AF_INET6 ||
368 pgsr->gsr_source.ss_family != AF_INET6)
371 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
372 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
374 if (!ipv6_addr_is_multicast(group))
377 idev = ip6_mc_find_dev(group, pgsr->gsr_interface);
382 err = -EADDRNOTAVAIL;
384 read_lock_bh(&ipv6_sk_mc_lock);
385 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
386 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
388 if (ipv6_addr_equal(&pmc->addr, group))
391 if (!pmc) { /* must have a prior join */
395 /* if a source filter was set, must be the same mode as before */
397 if (pmc->sfmode != omode) {
401 } else if (pmc->sfmode != omode) {
402 /* allow mode switches for empty-set filters */
403 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
404 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
408 write_lock_bh(&pmc->sflock);
414 goto done; /* err = -EADDRNOTAVAIL */
416 for (i=0; i<psl->sl_count; i++) {
417 rv = memcmp(&psl->sl_addr[i], source,
418 sizeof(struct in6_addr));
422 if (rv) /* source not found */
423 goto done; /* err = -EADDRNOTAVAIL */
425 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
426 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
431 /* update the interface filter */
432 ip6_mc_del_src(idev, group, omode, 1, source, 1);
434 for (j=i+1; j<psl->sl_count; j++)
435 psl->sl_addr[j-1] = psl->sl_addr[j];
440 /* else, add a new source to the filter */
442 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
446 if (!psl || psl->sl_count == psl->sl_max) {
447 struct ip6_sf_socklist *newpsl;
448 int count = IP6_SFBLOCK;
451 count += psl->sl_max;
452 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
457 newpsl->sl_max = count;
458 newpsl->sl_count = count - IP6_SFBLOCK;
460 for (i=0; i<psl->sl_count; i++)
461 newpsl->sl_addr[i] = psl->sl_addr[i];
462 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
464 pmc->sflist = psl = newpsl;
466 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
467 for (i=0; i<psl->sl_count; i++) {
468 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
472 if (rv == 0) /* address already there is an error */
474 for (j=psl->sl_count-1; j>=i; j--)
475 psl->sl_addr[j+1] = psl->sl_addr[j];
476 psl->sl_addr[i] = *source;
479 /* update the interface list */
480 ip6_mc_add_src(idev, group, omode, 1, source, 1);
483 write_unlock_bh(&pmc->sflock);
484 read_unlock_bh(&ipv6_sk_mc_lock);
485 read_unlock_bh(&idev->lock);
489 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
493 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
495 struct in6_addr *group;
496 struct ipv6_mc_socklist *pmc;
497 struct net_device *dev;
498 struct inet6_dev *idev;
499 struct ipv6_pinfo *inet6 = inet6_sk(sk);
500 struct ip6_sf_socklist *newpsl, *psl;
504 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
506 if (!ipv6_addr_is_multicast(group))
508 if (gsf->gf_fmode != MCAST_INCLUDE &&
509 gsf->gf_fmode != MCAST_EXCLUDE)
512 idev = ip6_mc_find_dev(group, gsf->gf_interface);
519 read_lock_bh(&ipv6_sk_mc_lock);
521 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
526 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
527 if (pmc->ifindex != gsf->gf_interface)
529 if (ipv6_addr_equal(&pmc->addr, group))
532 if (!pmc) { /* must have a prior join */
536 if (gsf->gf_numsrc) {
537 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
543 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
544 for (i=0; i<newpsl->sl_count; ++i) {
545 struct sockaddr_in6 *psin6;
547 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
548 newpsl->sl_addr[i] = psin6->sin6_addr;
550 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
551 newpsl->sl_count, newpsl->sl_addr, 0);
553 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
558 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
561 write_lock_bh(&pmc->sflock);
564 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
565 psl->sl_count, psl->sl_addr, 0);
566 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
568 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
569 pmc->sflist = newpsl;
570 pmc->sfmode = gsf->gf_fmode;
571 write_unlock_bh(&pmc->sflock);
574 read_unlock_bh(&ipv6_sk_mc_lock);
575 read_unlock_bh(&idev->lock);
579 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
583 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
584 struct group_filter __user *optval, int __user *optlen)
586 int err, i, count, copycount;
587 struct in6_addr *group;
588 struct ipv6_mc_socklist *pmc;
589 struct inet6_dev *idev;
590 struct net_device *dev;
591 struct ipv6_pinfo *inet6 = inet6_sk(sk);
592 struct ip6_sf_socklist *psl;
594 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
596 if (!ipv6_addr_is_multicast(group))
599 idev = ip6_mc_find_dev(group, gsf->gf_interface);
606 err = -EADDRNOTAVAIL;
608 * changes to the ipv6_mc_list require the socket lock and
609 * a read lock on ip6_sk_mc_lock. We have the socket lock,
610 * so reading the list is safe.
613 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
614 if (pmc->ifindex != gsf->gf_interface)
616 if (ipv6_addr_equal(group, &pmc->addr))
619 if (!pmc) /* must have a prior join */
621 gsf->gf_fmode = pmc->sfmode;
623 count = psl ? psl->sl_count : 0;
624 read_unlock_bh(&idev->lock);
628 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
629 gsf->gf_numsrc = count;
630 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
631 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
634 /* changes to psl require the socket lock, a read lock on
635 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
636 * have the socket lock, so reading here is safe.
638 for (i=0; i<copycount; i++) {
639 struct sockaddr_in6 *psin6;
640 struct sockaddr_storage ss;
642 psin6 = (struct sockaddr_in6 *)&ss;
643 memset(&ss, 0, sizeof(ss));
644 psin6->sin6_family = AF_INET6;
645 psin6->sin6_addr = psl->sl_addr[i];
646 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
651 read_unlock_bh(&idev->lock);
657 int inet6_mc_check(struct sock *sk, struct in6_addr *mc_addr,
658 struct in6_addr *src_addr)
660 struct ipv6_pinfo *np = inet6_sk(sk);
661 struct ipv6_mc_socklist *mc;
662 struct ip6_sf_socklist *psl;
665 read_lock(&ipv6_sk_mc_lock);
666 for (mc = np->ipv6_mc_list; mc; mc = mc->next) {
667 if (ipv6_addr_equal(&mc->addr, mc_addr))
671 read_unlock(&ipv6_sk_mc_lock);
674 read_lock(&mc->sflock);
677 rv = mc->sfmode == MCAST_EXCLUDE;
681 for (i=0; i<psl->sl_count; i++) {
682 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
685 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
687 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
690 read_unlock(&mc->sflock);
691 read_unlock(&ipv6_sk_mc_lock);
696 static void ma_put(struct ifmcaddr6 *mc)
698 if (atomic_dec_and_test(&mc->mca_refcnt)) {
699 in6_dev_put(mc->idev);
704 static void igmp6_group_added(struct ifmcaddr6 *mc)
706 struct net_device *dev = mc->idev->dev;
707 char buf[MAX_ADDR_LEN];
709 spin_lock_bh(&mc->mca_lock);
710 if (!(mc->mca_flags&MAF_LOADED)) {
711 mc->mca_flags |= MAF_LOADED;
712 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
713 dev_mc_add(dev, buf, dev->addr_len, 0);
715 spin_unlock_bh(&mc->mca_lock);
717 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
720 if (MLD_V1_SEEN(mc->idev)) {
721 igmp6_join_group(mc);
726 mc->mca_crcount = mc->idev->mc_qrv;
727 mld_ifc_event(mc->idev);
730 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
732 struct net_device *dev = mc->idev->dev;
733 char buf[MAX_ADDR_LEN];
735 spin_lock_bh(&mc->mca_lock);
736 if (mc->mca_flags&MAF_LOADED) {
737 mc->mca_flags &= ~MAF_LOADED;
738 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
739 dev_mc_delete(dev, buf, dev->addr_len, 0);
742 if (mc->mca_flags & MAF_NOREPORT)
744 spin_unlock_bh(&mc->mca_lock);
747 igmp6_leave_group(mc);
749 spin_lock_bh(&mc->mca_lock);
750 if (del_timer(&mc->mca_timer))
751 atomic_dec(&mc->mca_refcnt);
753 ip6_mc_clear_src(mc);
754 spin_unlock_bh(&mc->mca_lock);
758 * deleted ifmcaddr6 manipulation
760 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
762 struct ifmcaddr6 *pmc;
764 /* this is an "ifmcaddr6" for convenience; only the fields below
765 * are actually used. In particular, the refcnt and users are not
766 * used for management of the delete list. Using the same structure
767 * for deleted items allows change reports to use common code with
768 * non-deleted or query-response MCA's.
770 pmc = kmalloc(sizeof(*pmc), GFP_ATOMIC);
773 memset(pmc, 0, sizeof(*pmc));
774 spin_lock_bh(&im->mca_lock);
775 spin_lock_init(&pmc->mca_lock);
776 pmc->idev = im->idev;
778 pmc->mca_addr = im->mca_addr;
779 pmc->mca_crcount = idev->mc_qrv;
780 pmc->mca_sfmode = im->mca_sfmode;
781 if (pmc->mca_sfmode == MCAST_INCLUDE) {
782 struct ip6_sf_list *psf;
784 pmc->mca_tomb = im->mca_tomb;
785 pmc->mca_sources = im->mca_sources;
786 im->mca_tomb = im->mca_sources = NULL;
787 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
788 psf->sf_crcount = pmc->mca_crcount;
790 spin_unlock_bh(&im->mca_lock);
792 write_lock_bh(&idev->mc_lock);
793 pmc->next = idev->mc_tomb;
795 write_unlock_bh(&idev->mc_lock);
798 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *pmca)
800 struct ifmcaddr6 *pmc, *pmc_prev;
801 struct ip6_sf_list *psf, *psf_next;
803 write_lock_bh(&idev->mc_lock);
805 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
806 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
812 pmc_prev->next = pmc->next;
814 idev->mc_tomb = pmc->next;
816 write_unlock_bh(&idev->mc_lock);
818 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
819 psf_next = psf->sf_next;
822 in6_dev_put(pmc->idev);
827 static void mld_clear_delrec(struct inet6_dev *idev)
829 struct ifmcaddr6 *pmc, *nextpmc;
831 write_lock_bh(&idev->mc_lock);
833 idev->mc_tomb = NULL;
834 write_unlock_bh(&idev->mc_lock);
836 for (; pmc; pmc = nextpmc) {
838 ip6_mc_clear_src(pmc);
839 in6_dev_put(pmc->idev);
843 /* clear dead sources, too */
844 read_lock_bh(&idev->lock);
845 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
846 struct ip6_sf_list *psf, *psf_next;
848 spin_lock_bh(&pmc->mca_lock);
850 pmc->mca_tomb = NULL;
851 spin_unlock_bh(&pmc->mca_lock);
852 for (; psf; psf=psf_next) {
853 psf_next = psf->sf_next;
857 read_unlock_bh(&idev->lock);
862 * device multicast group inc (add if not found)
864 int ipv6_dev_mc_inc(struct net_device *dev, struct in6_addr *addr)
866 struct ifmcaddr6 *mc;
867 struct inet6_dev *idev;
869 idev = in6_dev_get(dev);
874 write_lock_bh(&idev->lock);
876 write_unlock_bh(&idev->lock);
881 for (mc = idev->mc_list; mc; mc = mc->next) {
882 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
884 write_unlock_bh(&idev->lock);
885 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
893 * not found: create a new one.
896 mc = kmalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
899 write_unlock_bh(&idev->lock);
904 memset(mc, 0, sizeof(struct ifmcaddr6));
905 init_timer(&mc->mca_timer);
906 mc->mca_timer.function = igmp6_timer_handler;
907 mc->mca_timer.data = (unsigned long) mc;
909 ipv6_addr_copy(&mc->mca_addr, addr);
912 /* mca_stamp should be updated upon changes */
913 mc->mca_cstamp = mc->mca_tstamp = jiffies;
914 atomic_set(&mc->mca_refcnt, 2);
915 spin_lock_init(&mc->mca_lock);
917 /* initial mode is (EX, empty) */
918 mc->mca_sfmode = MCAST_EXCLUDE;
919 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
921 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
922 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
923 mc->mca_flags |= MAF_NOREPORT;
925 mc->next = idev->mc_list;
927 write_unlock_bh(&idev->lock);
929 mld_del_delrec(idev, &mc->mca_addr);
930 igmp6_group_added(mc);
936 * device multicast group del
938 int __ipv6_dev_mc_dec(struct inet6_dev *idev, struct in6_addr *addr)
940 struct ifmcaddr6 *ma, **map;
942 write_lock_bh(&idev->lock);
943 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
944 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
945 if (--ma->mca_users == 0) {
947 write_unlock_bh(&idev->lock);
949 igmp6_group_dropped(ma);
954 write_unlock_bh(&idev->lock);
958 write_unlock_bh(&idev->lock);
963 int ipv6_dev_mc_dec(struct net_device *dev, struct in6_addr *addr)
965 struct inet6_dev *idev = in6_dev_get(dev);
971 err = __ipv6_dev_mc_dec(idev, addr);
979 * identify MLD packets for MLD filter exceptions
981 int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
983 struct icmp6hdr *pic;
985 if (nexthdr != IPPROTO_ICMPV6)
988 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
991 pic = (struct icmp6hdr *)skb->h.raw;
993 switch (pic->icmp6_type) {
994 case ICMPV6_MGM_QUERY:
995 case ICMPV6_MGM_REPORT:
996 case ICMPV6_MGM_REDUCTION:
997 case ICMPV6_MLD2_REPORT:
1006 * check if the interface/address pair is valid
1008 int ipv6_chk_mcast_addr(struct net_device *dev, struct in6_addr *group,
1009 struct in6_addr *src_addr)
1011 struct inet6_dev *idev;
1012 struct ifmcaddr6 *mc;
1015 idev = in6_dev_get(dev);
1017 read_lock_bh(&idev->lock);
1018 for (mc = idev->mc_list; mc; mc=mc->next) {
1019 if (ipv6_addr_equal(&mc->mca_addr, group))
1023 if (src_addr && !ipv6_addr_any(src_addr)) {
1024 struct ip6_sf_list *psf;
1026 spin_lock_bh(&mc->mca_lock);
1027 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
1028 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
1032 rv = psf->sf_count[MCAST_INCLUDE] ||
1033 psf->sf_count[MCAST_EXCLUDE] !=
1034 mc->mca_sfcount[MCAST_EXCLUDE];
1036 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
1037 spin_unlock_bh(&mc->mca_lock);
1039 rv = 1; /* don't filter unspecified source */
1041 read_unlock_bh(&idev->lock);
1047 static void mld_gq_start_timer(struct inet6_dev *idev)
1049 int tv = net_random() % idev->mc_maxdelay;
1051 idev->mc_gq_running = 1;
1052 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1056 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1058 int tv = net_random() % delay;
1060 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1065 * IGMP handling (alias multicast ICMPv6 messages)
1068 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1070 unsigned long delay = resptime;
1072 /* Do not start timer for these addresses */
1073 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1074 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1077 if (del_timer(&ma->mca_timer)) {
1078 atomic_dec(&ma->mca_refcnt);
1079 delay = ma->mca_timer.expires - jiffies;
1082 if (delay >= resptime) {
1084 delay = net_random() % resptime;
1088 ma->mca_timer.expires = jiffies + delay;
1089 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1090 atomic_inc(&ma->mca_refcnt);
1091 ma->mca_flags |= MAF_TIMER_RUNNING;
1094 /* mark EXCLUDE-mode sources */
1095 static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1096 struct in6_addr *srcs)
1098 struct ip6_sf_list *psf;
1102 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1103 if (scount == nsrcs)
1105 for (i=0; i<nsrcs; i++) {
1106 /* skip inactive filters */
1107 if (pmc->mca_sfcount[MCAST_INCLUDE] ||
1108 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1109 psf->sf_count[MCAST_EXCLUDE])
1111 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1117 pmc->mca_flags &= ~MAF_GSQUERY;
1118 if (scount == nsrcs) /* all sources excluded */
1123 static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1124 struct in6_addr *srcs)
1126 struct ip6_sf_list *psf;
1129 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1130 return mld_xmarksources(pmc, nsrcs, srcs);
1132 /* mark INCLUDE-mode sources */
1135 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1136 if (scount == nsrcs)
1138 for (i=0; i<nsrcs; i++) {
1139 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1147 pmc->mca_flags &= ~MAF_GSQUERY;
1150 pmc->mca_flags |= MAF_GSQUERY;
1154 int igmp6_event_query(struct sk_buff *skb)
1156 struct mld2_query *mlh2 = NULL;
1157 struct ifmcaddr6 *ma;
1158 struct in6_addr *group;
1159 unsigned long max_delay;
1160 struct inet6_dev *idev;
1161 struct icmp6hdr *hdr;
1166 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1169 /* compute payload length excluding extension headers */
1170 len = ntohs(skb->nh.ipv6h->payload_len) + sizeof(struct ipv6hdr);
1171 len -= (char *)skb->h.raw - (char *)skb->nh.ipv6h;
1173 /* Drop queries with not link local source */
1174 if (!(ipv6_addr_type(&skb->nh.ipv6h->saddr)&IPV6_ADDR_LINKLOCAL))
1177 idev = in6_dev_get(skb->dev);
1182 hdr = (struct icmp6hdr *) skb->h.raw;
1183 group = (struct in6_addr *) (hdr + 1);
1184 group_type = ipv6_addr_type(group);
1186 if (group_type != IPV6_ADDR_ANY &&
1187 !(group_type&IPV6_ADDR_MULTICAST)) {
1194 /* MLDv1 router present */
1196 /* Translate milliseconds to jiffies */
1197 max_delay = (ntohs(hdr->icmp6_maxdelay)*HZ)/1000;
1199 switchback = (idev->mc_qrv + 1) * max_delay;
1200 idev->mc_v1_seen = jiffies + switchback;
1202 /* cancel the interface change timer */
1203 idev->mc_ifc_count = 0;
1204 if (del_timer(&idev->mc_ifc_timer))
1205 __in6_dev_put(idev);
1206 /* clear deleted report items */
1207 mld_clear_delrec(idev);
1208 } else if (len >= 28) {
1209 int srcs_offset = sizeof(struct mld2_query) -
1210 sizeof(struct icmp6hdr);
1211 if (!pskb_may_pull(skb, srcs_offset)) {
1215 mlh2 = (struct mld2_query *) skb->h.raw;
1216 max_delay = (MLDV2_MRC(ntohs(mlh2->mrc))*HZ)/1000;
1219 idev->mc_maxdelay = max_delay;
1221 idev->mc_qrv = mlh2->qrv;
1222 if (group_type == IPV6_ADDR_ANY) { /* general query */
1225 return -EINVAL; /* no sources allowed */
1227 mld_gq_start_timer(idev);
1231 /* mark sources to include, if group & source-specific */
1232 if (mlh2->nsrcs != 0) {
1233 if (!pskb_may_pull(skb, srcs_offset +
1234 ntohs(mlh2->nsrcs) * sizeof(struct in6_addr))) {
1238 mlh2 = (struct mld2_query *) skb->h.raw;
1246 read_lock_bh(&idev->lock);
1247 if (group_type == IPV6_ADDR_ANY) {
1248 for (ma = idev->mc_list; ma; ma=ma->next) {
1249 spin_lock_bh(&ma->mca_lock);
1250 igmp6_group_queried(ma, max_delay);
1251 spin_unlock_bh(&ma->mca_lock);
1254 for (ma = idev->mc_list; ma; ma=ma->next) {
1255 if (group_type != IPV6_ADDR_ANY &&
1256 !ipv6_addr_equal(group, &ma->mca_addr))
1258 spin_lock_bh(&ma->mca_lock);
1259 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1260 /* gsquery <- gsquery && mark */
1262 ma->mca_flags &= ~MAF_GSQUERY;
1264 /* gsquery <- mark */
1266 ma->mca_flags |= MAF_GSQUERY;
1268 ma->mca_flags &= ~MAF_GSQUERY;
1270 if (!(ma->mca_flags & MAF_GSQUERY) ||
1271 mld_marksources(ma, ntohs(mlh2->nsrcs), mlh2->srcs))
1272 igmp6_group_queried(ma, max_delay);
1273 spin_unlock_bh(&ma->mca_lock);
1274 if (group_type != IPV6_ADDR_ANY)
1278 read_unlock_bh(&idev->lock);
1285 int igmp6_event_report(struct sk_buff *skb)
1287 struct ifmcaddr6 *ma;
1288 struct in6_addr *addrp;
1289 struct inet6_dev *idev;
1290 struct icmp6hdr *hdr;
1293 /* Our own report looped back. Ignore it. */
1294 if (skb->pkt_type == PACKET_LOOPBACK)
1297 /* send our report if the MC router may not have heard this report */
1298 if (skb->pkt_type != PACKET_MULTICAST &&
1299 skb->pkt_type != PACKET_BROADCAST)
1302 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1305 hdr = (struct icmp6hdr*) skb->h.raw;
1307 /* Drop reports with not link local source */
1308 addr_type = ipv6_addr_type(&skb->nh.ipv6h->saddr);
1309 if (addr_type != IPV6_ADDR_ANY &&
1310 !(addr_type&IPV6_ADDR_LINKLOCAL))
1313 addrp = (struct in6_addr *) (hdr + 1);
1315 idev = in6_dev_get(skb->dev);
1320 * Cancel the timer for this group
1323 read_lock_bh(&idev->lock);
1324 for (ma = idev->mc_list; ma; ma=ma->next) {
1325 if (ipv6_addr_equal(&ma->mca_addr, addrp)) {
1326 spin_lock(&ma->mca_lock);
1327 if (del_timer(&ma->mca_timer))
1328 atomic_dec(&ma->mca_refcnt);
1329 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1330 spin_unlock(&ma->mca_lock);
1334 read_unlock_bh(&idev->lock);
1339 static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1340 int gdeleted, int sdeleted)
1343 case MLD2_MODE_IS_INCLUDE:
1344 case MLD2_MODE_IS_EXCLUDE:
1345 if (gdeleted || sdeleted)
1347 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1348 if (pmc->mca_sfmode == MCAST_INCLUDE)
1350 /* don't include if this source is excluded
1353 if (psf->sf_count[MCAST_INCLUDE])
1355 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1356 psf->sf_count[MCAST_EXCLUDE];
1359 case MLD2_CHANGE_TO_INCLUDE:
1360 if (gdeleted || sdeleted)
1362 return psf->sf_count[MCAST_INCLUDE] != 0;
1363 case MLD2_CHANGE_TO_EXCLUDE:
1364 if (gdeleted || sdeleted)
1366 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1367 psf->sf_count[MCAST_INCLUDE])
1369 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1370 psf->sf_count[MCAST_EXCLUDE];
1371 case MLD2_ALLOW_NEW_SOURCES:
1372 if (gdeleted || !psf->sf_crcount)
1374 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1375 case MLD2_BLOCK_OLD_SOURCES:
1376 if (pmc->mca_sfmode == MCAST_INCLUDE)
1377 return gdeleted || (psf->sf_crcount && sdeleted);
1378 return psf->sf_crcount && !gdeleted && !sdeleted;
1384 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1386 struct ip6_sf_list *psf;
1389 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1390 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1397 static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1399 struct sock *sk = igmp6_socket->sk;
1400 struct sk_buff *skb;
1401 struct mld2_report *pmr;
1402 struct in6_addr addr_buf;
1404 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1405 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1408 /* we assume size > sizeof(ra) here */
1409 skb = sock_alloc_send_skb(sk, size + LL_RESERVED_SPACE(dev), 1, &err);
1414 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1416 if (ipv6_get_lladdr(dev, &addr_buf)) {
1417 /* <draft-ietf-magma-mld-source-05.txt>:
1418 * use unspecified address as the source address
1419 * when a valid link-local address is not available.
1421 memset(&addr_buf, 0, sizeof(addr_buf));
1424 ip6_nd_hdr(sk, skb, dev, &addr_buf, &mld2_all_mcr, NEXTHDR_HOP, 0);
1426 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1428 pmr =(struct mld2_report *)skb_put(skb, sizeof(*pmr));
1429 skb->h.raw = (unsigned char *)pmr;
1430 pmr->type = ICMPV6_MLD2_REPORT;
1438 static inline int mld_dev_queue_xmit2(struct sk_buff *skb)
1440 struct net_device *dev = skb->dev;
1442 if (dev->hard_header) {
1443 unsigned char ha[MAX_ADDR_LEN];
1446 ndisc_mc_map(&skb->nh.ipv6h->daddr, ha, dev, 1);
1447 err = dev->hard_header(skb, dev, ETH_P_IPV6, ha, NULL, skb->len);
1453 return dev_queue_xmit(skb);
1456 static inline int mld_dev_queue_xmit(struct sk_buff *skb)
1458 return NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, skb, NULL, skb->dev,
1459 mld_dev_queue_xmit2);
1462 static void mld_sendpack(struct sk_buff *skb)
1464 struct ipv6hdr *pip6 = skb->nh.ipv6h;
1465 struct mld2_report *pmr = (struct mld2_report *)skb->h.raw;
1466 int payload_len, mldlen;
1467 struct inet6_dev *idev = in6_dev_get(skb->dev);
1470 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
1471 payload_len = skb->tail - (unsigned char *)skb->nh.ipv6h -
1472 sizeof(struct ipv6hdr);
1473 mldlen = skb->tail - skb->h.raw;
1474 pip6->payload_len = htons(payload_len);
1476 pmr->csum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1477 IPPROTO_ICMPV6, csum_partial(skb->h.raw, mldlen, 0));
1478 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dev,
1479 mld_dev_queue_xmit);
1481 ICMP6_INC_STATS(idev,ICMP6_MIB_OUTMSGS);
1482 IP6_INC_STATS(IPSTATS_MIB_OUTMCASTPKTS);
1484 IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1486 if (likely(idev != NULL))
1490 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1492 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1495 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1496 int type, struct mld2_grec **ppgr)
1498 struct net_device *dev = pmc->idev->dev;
1499 struct mld2_report *pmr;
1500 struct mld2_grec *pgr;
1503 skb = mld_newpack(dev, dev->mtu);
1506 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1507 pgr->grec_type = type;
1508 pgr->grec_auxwords = 0;
1509 pgr->grec_nsrcs = 0;
1510 pgr->grec_mca = pmc->mca_addr; /* structure copy */
1511 pmr = (struct mld2_report *)skb->h.raw;
1512 pmr->ngrec = htons(ntohs(pmr->ngrec)+1);
1517 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1518 skb_tailroom(skb)) : 0)
1520 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1521 int type, int gdeleted, int sdeleted)
1523 struct net_device *dev = pmc->idev->dev;
1524 struct mld2_report *pmr;
1525 struct mld2_grec *pgr = NULL;
1526 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1527 int scount, stotal, first, isquery, truncate;
1529 if (pmc->mca_flags & MAF_NOREPORT)
1532 isquery = type == MLD2_MODE_IS_INCLUDE ||
1533 type == MLD2_MODE_IS_EXCLUDE;
1534 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1535 type == MLD2_CHANGE_TO_EXCLUDE;
1537 stotal = scount = 0;
1539 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1544 pmr = skb ? (struct mld2_report *)skb->h.raw : NULL;
1546 /* EX and TO_EX get a fresh packet, if needed */
1548 if (pmr && pmr->ngrec &&
1549 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1552 skb = mld_newpack(dev, dev->mtu);
1557 for (psf=*psf_list; psf; psf=psf_next) {
1558 struct in6_addr *psrc;
1560 psf_next = psf->sf_next;
1562 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1567 /* clear marks on query responses */
1571 if (AVAILABLE(skb) < sizeof(*psrc) +
1572 first*sizeof(struct mld2_grec)) {
1573 if (truncate && !first)
1574 break; /* truncate these */
1576 pgr->grec_nsrcs = htons(scount);
1579 skb = mld_newpack(dev, dev->mtu);
1584 skb = add_grhead(skb, pmc, type, &pgr);
1587 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1588 *psrc = psf->sf_addr;
1590 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1591 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1593 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1595 psf_prev->sf_next = psf->sf_next;
1597 *psf_list = psf->sf_next;
1607 if (type == MLD2_ALLOW_NEW_SOURCES ||
1608 type == MLD2_BLOCK_OLD_SOURCES)
1610 if (pmc->mca_crcount || isquery) {
1611 /* make sure we have room for group header */
1612 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1614 skb = NULL; /* add_grhead will get a new one */
1616 skb = add_grhead(skb, pmc, type, &pgr);
1620 pgr->grec_nsrcs = htons(scount);
1623 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1627 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1629 struct sk_buff *skb = NULL;
1633 read_lock_bh(&idev->lock);
1634 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1635 if (pmc->mca_flags & MAF_NOREPORT)
1637 spin_lock_bh(&pmc->mca_lock);
1638 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1639 type = MLD2_MODE_IS_EXCLUDE;
1641 type = MLD2_MODE_IS_INCLUDE;
1642 skb = add_grec(skb, pmc, type, 0, 0);
1643 spin_unlock_bh(&pmc->mca_lock);
1645 read_unlock_bh(&idev->lock);
1647 spin_lock_bh(&pmc->mca_lock);
1648 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1649 type = MLD2_MODE_IS_EXCLUDE;
1651 type = MLD2_MODE_IS_INCLUDE;
1652 skb = add_grec(skb, pmc, type, 0, 0);
1653 spin_unlock_bh(&pmc->mca_lock);
1660 * remove zero-count source records from a source filter list
1662 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1664 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1667 for (psf=*ppsf; psf; psf = psf_next) {
1668 psf_next = psf->sf_next;
1669 if (psf->sf_crcount == 0) {
1671 psf_prev->sf_next = psf->sf_next;
1673 *ppsf = psf->sf_next;
1680 static void mld_send_cr(struct inet6_dev *idev)
1682 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1683 struct sk_buff *skb = NULL;
1686 read_lock_bh(&idev->lock);
1687 write_lock_bh(&idev->mc_lock);
1691 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1692 pmc_next = pmc->next;
1693 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1694 type = MLD2_BLOCK_OLD_SOURCES;
1695 dtype = MLD2_BLOCK_OLD_SOURCES;
1696 skb = add_grec(skb, pmc, type, 1, 0);
1697 skb = add_grec(skb, pmc, dtype, 1, 1);
1699 if (pmc->mca_crcount) {
1700 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1701 type = MLD2_CHANGE_TO_INCLUDE;
1702 skb = add_grec(skb, pmc, type, 1, 0);
1705 if (pmc->mca_crcount == 0) {
1706 mld_clear_zeros(&pmc->mca_tomb);
1707 mld_clear_zeros(&pmc->mca_sources);
1710 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1711 !pmc->mca_sources) {
1713 pmc_prev->next = pmc_next;
1715 idev->mc_tomb = pmc_next;
1716 in6_dev_put(pmc->idev);
1721 write_unlock_bh(&idev->mc_lock);
1724 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1725 spin_lock_bh(&pmc->mca_lock);
1726 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1727 type = MLD2_BLOCK_OLD_SOURCES;
1728 dtype = MLD2_ALLOW_NEW_SOURCES;
1730 type = MLD2_ALLOW_NEW_SOURCES;
1731 dtype = MLD2_BLOCK_OLD_SOURCES;
1733 skb = add_grec(skb, pmc, type, 0, 0);
1734 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1736 /* filter mode changes */
1737 if (pmc->mca_crcount) {
1738 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1739 type = MLD2_CHANGE_TO_EXCLUDE;
1741 type = MLD2_CHANGE_TO_INCLUDE;
1742 skb = add_grec(skb, pmc, type, 0, 0);
1745 spin_unlock_bh(&pmc->mca_lock);
1747 read_unlock_bh(&idev->lock);
1750 (void) mld_sendpack(skb);
1753 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1755 struct sock *sk = igmp6_socket->sk;
1756 struct inet6_dev *idev;
1757 struct sk_buff *skb;
1758 struct icmp6hdr *hdr;
1759 struct in6_addr *snd_addr;
1760 struct in6_addr *addrp;
1761 struct in6_addr addr_buf;
1762 struct in6_addr all_routers;
1763 int err, len, payload_len, full_len;
1764 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1765 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1768 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
1770 if (type == ICMPV6_MGM_REDUCTION) {
1771 snd_addr = &all_routers;
1772 ipv6_addr_all_routers(&all_routers);
1775 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1776 payload_len = len + sizeof(ra);
1777 full_len = sizeof(struct ipv6hdr) + payload_len;
1779 skb = sock_alloc_send_skb(sk, LL_RESERVED_SPACE(dev) + full_len, 1, &err);
1782 IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1786 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1788 if (ipv6_get_lladdr(dev, &addr_buf)) {
1789 /* <draft-ietf-magma-mld-source-05.txt>:
1790 * use unspecified address as the source address
1791 * when a valid link-local address is not available.
1793 memset(&addr_buf, 0, sizeof(addr_buf));
1796 ip6_nd_hdr(sk, skb, dev, &addr_buf, snd_addr, NEXTHDR_HOP, payload_len);
1798 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1800 hdr = (struct icmp6hdr *) skb_put(skb, sizeof(struct icmp6hdr));
1801 memset(hdr, 0, sizeof(struct icmp6hdr));
1802 hdr->icmp6_type = type;
1804 addrp = (struct in6_addr *) skb_put(skb, sizeof(struct in6_addr));
1805 ipv6_addr_copy(addrp, addr);
1807 hdr->icmp6_cksum = csum_ipv6_magic(&addr_buf, snd_addr, len,
1809 csum_partial((__u8 *) hdr, len, 0));
1811 idev = in6_dev_get(skb->dev);
1813 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dev,
1814 mld_dev_queue_xmit);
1816 if (type == ICMPV6_MGM_REDUCTION)
1817 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTGROUPMEMBREDUCTIONS);
1819 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTGROUPMEMBRESPONSES);
1820 ICMP6_INC_STATS(idev, ICMP6_MIB_OUTMSGS);
1821 IP6_INC_STATS(IPSTATS_MIB_OUTMCASTPKTS);
1823 IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1825 if (likely(idev != NULL))
1830 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1831 struct in6_addr *psfsrc)
1833 struct ip6_sf_list *psf, *psf_prev;
1837 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1838 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1842 if (!psf || psf->sf_count[sfmode] == 0) {
1843 /* source filter not found, or count wrong => bug */
1846 psf->sf_count[sfmode]--;
1847 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1848 struct inet6_dev *idev = pmc->idev;
1850 /* no more filters for this source */
1852 psf_prev->sf_next = psf->sf_next;
1854 pmc->mca_sources = psf->sf_next;
1855 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1856 !MLD_V1_SEEN(idev)) {
1857 psf->sf_crcount = idev->mc_qrv;
1858 psf->sf_next = pmc->mca_tomb;
1859 pmc->mca_tomb = psf;
1867 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
1868 int sfmode, int sfcount, struct in6_addr *psfsrc,
1871 struct ifmcaddr6 *pmc;
1877 read_lock_bh(&idev->lock);
1878 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1879 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1883 /* MCA not found?? bug */
1884 read_unlock_bh(&idev->lock);
1887 spin_lock_bh(&pmc->mca_lock);
1890 if (!pmc->mca_sfcount[sfmode]) {
1891 spin_unlock_bh(&pmc->mca_lock);
1892 read_unlock_bh(&idev->lock);
1895 pmc->mca_sfcount[sfmode]--;
1898 for (i=0; i<sfcount; i++) {
1899 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1901 changerec |= rv > 0;
1905 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1906 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1907 pmc->mca_sfcount[MCAST_INCLUDE]) {
1908 struct ip6_sf_list *psf;
1910 /* filter mode change */
1911 pmc->mca_sfmode = MCAST_INCLUDE;
1912 pmc->mca_crcount = idev->mc_qrv;
1913 idev->mc_ifc_count = pmc->mca_crcount;
1914 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1915 psf->sf_crcount = 0;
1916 mld_ifc_event(pmc->idev);
1917 } else if (sf_setstate(pmc) || changerec)
1918 mld_ifc_event(pmc->idev);
1919 spin_unlock_bh(&pmc->mca_lock);
1920 read_unlock_bh(&idev->lock);
1925 * Add multicast single-source filter to the interface list
1927 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1928 struct in6_addr *psfsrc, int delta)
1930 struct ip6_sf_list *psf, *psf_prev;
1933 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1934 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1939 psf = kmalloc(sizeof(*psf), GFP_ATOMIC);
1942 memset(psf, 0, sizeof(*psf));
1943 psf->sf_addr = *psfsrc;
1945 psf_prev->sf_next = psf;
1947 pmc->mca_sources = psf;
1949 psf->sf_count[sfmode]++;
1953 static void sf_markstate(struct ifmcaddr6 *pmc)
1955 struct ip6_sf_list *psf;
1956 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1958 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1959 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1960 psf->sf_oldin = mca_xcount ==
1961 psf->sf_count[MCAST_EXCLUDE] &&
1962 !psf->sf_count[MCAST_INCLUDE];
1964 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1967 static int sf_setstate(struct ifmcaddr6 *pmc)
1969 struct ip6_sf_list *psf;
1970 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1971 int qrv = pmc->idev->mc_qrv;
1975 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1976 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1977 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1978 !psf->sf_count[MCAST_INCLUDE];
1980 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1981 if (new_in != psf->sf_oldin) {
1982 psf->sf_crcount = qrv;
1990 * Add multicast source filter list to the interface list
1992 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
1993 int sfmode, int sfcount, struct in6_addr *psfsrc,
1996 struct ifmcaddr6 *pmc;
2002 read_lock_bh(&idev->lock);
2003 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2004 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2008 /* MCA not found?? bug */
2009 read_unlock_bh(&idev->lock);
2012 spin_lock_bh(&pmc->mca_lock);
2015 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2017 pmc->mca_sfcount[sfmode]++;
2019 for (i=0; i<sfcount; i++) {
2020 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2028 pmc->mca_sfcount[sfmode]--;
2030 (void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2031 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2032 struct inet6_dev *idev = pmc->idev;
2033 struct ip6_sf_list *psf;
2035 /* filter mode change */
2036 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2037 pmc->mca_sfmode = MCAST_EXCLUDE;
2038 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2039 pmc->mca_sfmode = MCAST_INCLUDE;
2040 /* else no filters; keep old mode for reports */
2042 pmc->mca_crcount = idev->mc_qrv;
2043 idev->mc_ifc_count = pmc->mca_crcount;
2044 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2045 psf->sf_crcount = 0;
2046 mld_ifc_event(idev);
2047 } else if (sf_setstate(pmc))
2048 mld_ifc_event(idev);
2049 spin_unlock_bh(&pmc->mca_lock);
2050 read_unlock_bh(&idev->lock);
2054 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2056 struct ip6_sf_list *psf, *nextpsf;
2058 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2059 nextpsf = psf->sf_next;
2062 pmc->mca_tomb = NULL;
2063 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2064 nextpsf = psf->sf_next;
2067 pmc->mca_sources = NULL;
2068 pmc->mca_sfmode = MCAST_EXCLUDE;
2069 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2070 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2074 static void igmp6_join_group(struct ifmcaddr6 *ma)
2076 unsigned long delay;
2078 if (ma->mca_flags & MAF_NOREPORT)
2081 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2083 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2085 spin_lock_bh(&ma->mca_lock);
2086 if (del_timer(&ma->mca_timer)) {
2087 atomic_dec(&ma->mca_refcnt);
2088 delay = ma->mca_timer.expires - jiffies;
2091 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2092 atomic_inc(&ma->mca_refcnt);
2093 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2094 spin_unlock_bh(&ma->mca_lock);
2097 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2098 struct inet6_dev *idev)
2102 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2103 * so no other readers or writers of iml or its sflist
2105 if (iml->sflist == 0) {
2106 /* any-source empty exclude case */
2107 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2109 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2110 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2111 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2116 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2118 if (MLD_V1_SEEN(ma->idev)) {
2119 if (ma->mca_flags & MAF_LAST_REPORTER)
2120 igmp6_send(&ma->mca_addr, ma->idev->dev,
2121 ICMPV6_MGM_REDUCTION);
2123 mld_add_delrec(ma->idev, ma);
2124 mld_ifc_event(ma->idev);
2128 static void mld_gq_timer_expire(unsigned long data)
2130 struct inet6_dev *idev = (struct inet6_dev *)data;
2132 idev->mc_gq_running = 0;
2133 mld_send_report(idev, NULL);
2134 __in6_dev_put(idev);
2137 static void mld_ifc_timer_expire(unsigned long data)
2139 struct inet6_dev *idev = (struct inet6_dev *)data;
2142 if (idev->mc_ifc_count) {
2143 idev->mc_ifc_count--;
2144 if (idev->mc_ifc_count)
2145 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2147 __in6_dev_put(idev);
2150 static void mld_ifc_event(struct inet6_dev *idev)
2152 if (MLD_V1_SEEN(idev))
2154 idev->mc_ifc_count = idev->mc_qrv;
2155 mld_ifc_start_timer(idev, 1);
2159 static void igmp6_timer_handler(unsigned long data)
2161 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2163 if (MLD_V1_SEEN(ma->idev))
2164 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2166 mld_send_report(ma->idev, ma);
2168 spin_lock(&ma->mca_lock);
2169 ma->mca_flags |= MAF_LAST_REPORTER;
2170 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2171 spin_unlock(&ma->mca_lock);
2175 /* Device going down */
2177 void ipv6_mc_down(struct inet6_dev *idev)
2179 struct ifmcaddr6 *i;
2181 /* Withdraw multicast list */
2183 read_lock_bh(&idev->lock);
2184 idev->mc_ifc_count = 0;
2185 if (del_timer(&idev->mc_ifc_timer))
2186 __in6_dev_put(idev);
2187 idev->mc_gq_running = 0;
2188 if (del_timer(&idev->mc_gq_timer))
2189 __in6_dev_put(idev);
2191 for (i = idev->mc_list; i; i=i->next)
2192 igmp6_group_dropped(i);
2193 read_unlock_bh(&idev->lock);
2195 mld_clear_delrec(idev);
2199 /* Device going up */
2201 void ipv6_mc_up(struct inet6_dev *idev)
2203 struct ifmcaddr6 *i;
2205 /* Install multicast list, except for all-nodes (already installed) */
2207 read_lock_bh(&idev->lock);
2208 for (i = idev->mc_list; i; i=i->next)
2209 igmp6_group_added(i);
2210 read_unlock_bh(&idev->lock);
2213 /* IPv6 device initialization. */
2215 void ipv6_mc_init_dev(struct inet6_dev *idev)
2217 struct in6_addr maddr;
2219 write_lock_bh(&idev->lock);
2220 rwlock_init(&idev->mc_lock);
2221 idev->mc_gq_running = 0;
2222 init_timer(&idev->mc_gq_timer);
2223 idev->mc_gq_timer.data = (unsigned long) idev;
2224 idev->mc_gq_timer.function = &mld_gq_timer_expire;
2225 idev->mc_tomb = NULL;
2226 idev->mc_ifc_count = 0;
2227 init_timer(&idev->mc_ifc_timer);
2228 idev->mc_ifc_timer.data = (unsigned long) idev;
2229 idev->mc_ifc_timer.function = &mld_ifc_timer_expire;
2230 idev->mc_qrv = MLD_QRV_DEFAULT;
2231 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2232 idev->mc_v1_seen = 0;
2233 write_unlock_bh(&idev->lock);
2235 /* Add all-nodes address. */
2236 ipv6_addr_all_nodes(&maddr);
2237 ipv6_dev_mc_inc(idev->dev, &maddr);
2241 * Device is about to be destroyed: clean up.
2244 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2246 struct ifmcaddr6 *i;
2247 struct in6_addr maddr;
2249 /* Deactivate timers */
2252 /* Delete all-nodes address. */
2253 ipv6_addr_all_nodes(&maddr);
2255 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2256 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2259 __ipv6_dev_mc_dec(idev, &maddr);
2261 if (idev->cnf.forwarding) {
2262 ipv6_addr_all_routers(&maddr);
2263 __ipv6_dev_mc_dec(idev, &maddr);
2266 write_lock_bh(&idev->lock);
2267 while ((i = idev->mc_list) != NULL) {
2268 idev->mc_list = i->next;
2269 write_unlock_bh(&idev->lock);
2271 igmp6_group_dropped(i);
2274 write_lock_bh(&idev->lock);
2276 write_unlock_bh(&idev->lock);
2279 #ifdef CONFIG_PROC_FS
2280 struct igmp6_mc_iter_state {
2281 struct net_device *dev;
2282 struct inet6_dev *idev;
2285 #define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2287 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2289 struct ifmcaddr6 *im = NULL;
2290 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2292 for (state->dev = dev_base, state->idev = NULL;
2294 state->dev = state->dev->next) {
2295 struct inet6_dev *idev;
2296 idev = in6_dev_get(state->dev);
2299 read_lock_bh(&idev->lock);
2305 read_unlock_bh(&idev->lock);
2311 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2313 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2317 if (likely(state->idev != NULL)) {
2318 read_unlock_bh(&state->idev->lock);
2319 in6_dev_put(state->idev);
2321 state->dev = state->dev->next;
2326 state->idev = in6_dev_get(state->dev);
2329 read_lock_bh(&state->idev->lock);
2330 im = state->idev->mc_list;
2335 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2337 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2339 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2341 return pos ? NULL : im;
2344 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2346 read_lock(&dev_base_lock);
2347 return igmp6_mc_get_idx(seq, *pos);
2350 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2352 struct ifmcaddr6 *im;
2353 im = igmp6_mc_get_next(seq, v);
2358 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2360 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2361 if (likely(state->idev != NULL)) {
2362 read_unlock_bh(&state->idev->lock);
2363 in6_dev_put(state->idev);
2367 read_unlock(&dev_base_lock);
2370 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2372 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2373 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2376 "%-4d %-15s " NIP6_SEQFMT " %5d %08X %ld\n",
2377 state->dev->ifindex, state->dev->name,
2379 im->mca_users, im->mca_flags,
2380 (im->mca_flags&MAF_TIMER_RUNNING) ?
2381 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2385 static struct seq_operations igmp6_mc_seq_ops = {
2386 .start = igmp6_mc_seq_start,
2387 .next = igmp6_mc_seq_next,
2388 .stop = igmp6_mc_seq_stop,
2389 .show = igmp6_mc_seq_show,
2392 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2394 struct seq_file *seq;
2396 struct igmp6_mc_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
2401 rc = seq_open(file, &igmp6_mc_seq_ops);
2405 seq = file->private_data;
2407 memset(s, 0, sizeof(*s));
2415 static struct file_operations igmp6_mc_seq_fops = {
2416 .owner = THIS_MODULE,
2417 .open = igmp6_mc_seq_open,
2419 .llseek = seq_lseek,
2420 .release = seq_release_private,
2423 struct igmp6_mcf_iter_state {
2424 struct net_device *dev;
2425 struct inet6_dev *idev;
2426 struct ifmcaddr6 *im;
2429 #define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2431 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2433 struct ip6_sf_list *psf = NULL;
2434 struct ifmcaddr6 *im = NULL;
2435 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2437 for (state->dev = dev_base, state->idev = NULL, state->im = NULL;
2439 state->dev = state->dev->next) {
2440 struct inet6_dev *idev;
2441 idev = in6_dev_get(state->dev);
2442 if (unlikely(idev == NULL))
2444 read_lock_bh(&idev->lock);
2446 if (likely(im != NULL)) {
2447 spin_lock_bh(&im->mca_lock);
2448 psf = im->mca_sources;
2449 if (likely(psf != NULL)) {
2454 spin_unlock_bh(&im->mca_lock);
2456 read_unlock_bh(&idev->lock);
2462 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2464 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2468 spin_unlock_bh(&state->im->mca_lock);
2469 state->im = state->im->next;
2470 while (!state->im) {
2471 if (likely(state->idev != NULL)) {
2472 read_unlock_bh(&state->idev->lock);
2473 in6_dev_put(state->idev);
2475 state->dev = state->dev->next;
2480 state->idev = in6_dev_get(state->dev);
2483 read_lock_bh(&state->idev->lock);
2484 state->im = state->idev->mc_list;
2488 spin_lock_bh(&state->im->mca_lock);
2489 psf = state->im->mca_sources;
2495 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2497 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2499 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2501 return pos ? NULL : psf;
2504 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2506 read_lock(&dev_base_lock);
2507 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2510 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2512 struct ip6_sf_list *psf;
2513 if (v == SEQ_START_TOKEN)
2514 psf = igmp6_mcf_get_first(seq);
2516 psf = igmp6_mcf_get_next(seq, v);
2521 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2523 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2524 if (likely(state->im != NULL)) {
2525 spin_unlock_bh(&state->im->mca_lock);
2528 if (likely(state->idev != NULL)) {
2529 read_unlock_bh(&state->idev->lock);
2530 in6_dev_put(state->idev);
2534 read_unlock(&dev_base_lock);
2537 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2539 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2540 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2542 if (v == SEQ_START_TOKEN) {
2545 "%32s %32s %6s %6s\n", "Idx",
2546 "Device", "Multicast Address",
2547 "Source Address", "INC", "EXC");
2550 "%3d %6.6s " NIP6_SEQFMT " " NIP6_SEQFMT " %6lu %6lu\n",
2551 state->dev->ifindex, state->dev->name,
2552 NIP6(state->im->mca_addr),
2554 psf->sf_count[MCAST_INCLUDE],
2555 psf->sf_count[MCAST_EXCLUDE]);
2560 static struct seq_operations igmp6_mcf_seq_ops = {
2561 .start = igmp6_mcf_seq_start,
2562 .next = igmp6_mcf_seq_next,
2563 .stop = igmp6_mcf_seq_stop,
2564 .show = igmp6_mcf_seq_show,
2567 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2569 struct seq_file *seq;
2571 struct igmp6_mcf_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
2576 rc = seq_open(file, &igmp6_mcf_seq_ops);
2580 seq = file->private_data;
2582 memset(s, 0, sizeof(*s));
2590 static struct file_operations igmp6_mcf_seq_fops = {
2591 .owner = THIS_MODULE,
2592 .open = igmp6_mcf_seq_open,
2594 .llseek = seq_lseek,
2595 .release = seq_release_private,
2599 int __init igmp6_init(struct net_proto_family *ops)
2601 struct ipv6_pinfo *np;
2605 err = sock_create_kern(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6, &igmp6_socket);
2608 "Failed to initialize the IGMP6 control socket (err %d).\n",
2610 igmp6_socket = NULL; /* For safety. */
2614 sk = igmp6_socket->sk;
2615 sk->sk_allocation = GFP_ATOMIC;
2616 sk->sk_prot->unhash(sk);
2621 #ifdef CONFIG_PROC_FS
2622 proc_net_fops_create("igmp6", S_IRUGO, &igmp6_mc_seq_fops);
2623 proc_net_fops_create("mcfilter6", S_IRUGO, &igmp6_mcf_seq_fops);
2629 void igmp6_cleanup(void)
2631 sock_release(igmp6_socket);
2632 igmp6_socket = NULL; /* for safety */
2634 #ifdef CONFIG_PROC_FS
2635 proc_net_remove("mcfilter6");
2636 proc_net_remove("igmp6");