2 * Multicast support for IPv6
3 * Linux INET6 implementation
8 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
18 * yoshfuji : fix format of router-alert option
19 * YOSHIFUJI Hideaki @USAGI:
20 * Fixed source address for MLD message based on
21 * <draft-ietf-magma-mld-source-05.txt>.
22 * YOSHIFUJI Hideaki @USAGI:
23 * - Ignore Queries for invalid addresses.
24 * - MLD for link-local addresses.
29 #include <linux/module.h>
30 #include <linux/errno.h>
31 #include <linux/types.h>
32 #include <linux/string.h>
33 #include <linux/socket.h>
34 #include <linux/sockios.h>
35 #include <linux/jiffies.h>
36 #include <linux/times.h>
37 #include <linux/net.h>
39 #include <linux/in6.h>
40 #include <linux/netdevice.h>
41 #include <linux/if_arp.h>
42 #include <linux/route.h>
43 #include <linux/init.h>
44 #include <linux/proc_fs.h>
45 #include <linux/seq_file.h>
46 #include <linux/slab.h>
49 #include <linux/netfilter.h>
50 #include <linux/netfilter_ipv6.h>
52 #include <net/net_namespace.h>
57 #include <net/protocol.h>
58 #include <net/if_inet6.h>
59 #include <net/ndisc.h>
60 #include <net/addrconf.h>
61 #include <net/ip6_route.h>
62 #include <net/inet_common.h>
64 #include <net/ip6_checksum.h>
66 /* Set to 3 to get tracing... */
70 #define MDBG(x) printk x
75 /* Ensure that we have struct in6_addr aligned on 32bit word. */
76 static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
77 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
78 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
79 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
82 static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
84 /* Big mc list lock for all the sockets */
85 static DEFINE_RWLOCK(ipv6_sk_mc_lock);
87 static void igmp6_join_group(struct ifmcaddr6 *ma);
88 static void igmp6_leave_group(struct ifmcaddr6 *ma);
89 static void igmp6_timer_handler(unsigned long data);
91 static void mld_gq_timer_expire(unsigned long data);
92 static void mld_ifc_timer_expire(unsigned long data);
93 static void mld_ifc_event(struct inet6_dev *idev);
94 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
95 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *addr);
96 static void mld_clear_delrec(struct inet6_dev *idev);
97 static int sf_setstate(struct ifmcaddr6 *pmc);
98 static void sf_markstate(struct ifmcaddr6 *pmc);
99 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
100 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
101 int sfmode, int sfcount, struct in6_addr *psfsrc,
103 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
104 int sfmode, int sfcount, struct in6_addr *psfsrc,
106 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
107 struct inet6_dev *idev);
110 #define IGMP6_UNSOLICITED_IVAL (10*HZ)
111 #define MLD_QRV_DEFAULT 2
113 #define MLD_V1_SEEN(idev) (dev_net((idev)->dev)->ipv6.devconf_all->force_mld_version == 1 || \
114 (idev)->cnf.force_mld_version == 1 || \
115 ((idev)->mc_v1_seen && \
116 time_before(jiffies, (idev)->mc_v1_seen)))
118 #define IPV6_MLD_MAX_MSF 64
120 int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
123 * socket join on multicast group
126 int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
128 struct net_device *dev = NULL;
129 struct ipv6_mc_socklist *mc_lst;
130 struct ipv6_pinfo *np = inet6_sk(sk);
131 struct net *net = sock_net(sk);
134 if (!ipv6_addr_is_multicast(addr))
137 read_lock_bh(&ipv6_sk_mc_lock);
138 for (mc_lst=np->ipv6_mc_list; mc_lst; mc_lst=mc_lst->next) {
139 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
140 ipv6_addr_equal(&mc_lst->addr, addr)) {
141 read_unlock_bh(&ipv6_sk_mc_lock);
145 read_unlock_bh(&ipv6_sk_mc_lock);
147 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
153 ipv6_addr_copy(&mc_lst->addr, addr);
158 rt = rt6_lookup(net, addr, NULL, 0, 0);
161 dst_release(&rt->dst);
164 dev = dev_get_by_index_rcu(net, ifindex);
168 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
172 mc_lst->ifindex = dev->ifindex;
173 mc_lst->sfmode = MCAST_EXCLUDE;
174 rwlock_init(&mc_lst->sflock);
175 mc_lst->sflist = NULL;
178 * now add/increase the group membership on the device
181 err = ipv6_dev_mc_inc(dev, addr);
185 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
189 write_lock_bh(&ipv6_sk_mc_lock);
190 mc_lst->next = np->ipv6_mc_list;
191 np->ipv6_mc_list = mc_lst;
192 write_unlock_bh(&ipv6_sk_mc_lock);
200 * socket leave on multicast group
202 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
204 struct ipv6_pinfo *np = inet6_sk(sk);
205 struct ipv6_mc_socklist *mc_lst, **lnk;
206 struct net *net = sock_net(sk);
208 write_lock_bh(&ipv6_sk_mc_lock);
209 for (lnk = &np->ipv6_mc_list; (mc_lst = *lnk) !=NULL ; lnk = &mc_lst->next) {
210 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
211 ipv6_addr_equal(&mc_lst->addr, addr)) {
212 struct net_device *dev;
215 write_unlock_bh(&ipv6_sk_mc_lock);
218 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
220 struct inet6_dev *idev = __in6_dev_get(dev);
222 (void) ip6_mc_leave_src(sk, mc_lst, idev);
224 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
226 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
228 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
232 write_unlock_bh(&ipv6_sk_mc_lock);
234 return -EADDRNOTAVAIL;
237 /* called with rcu_read_lock() */
238 static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
239 struct in6_addr *group,
242 struct net_device *dev = NULL;
243 struct inet6_dev *idev = NULL;
246 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
251 dst_release(&rt->dst);
254 dev = dev_get_by_index_rcu(net, ifindex);
258 idev = __in6_dev_get(dev);
261 read_lock_bh(&idev->lock);
263 read_unlock_bh(&idev->lock);
269 void ipv6_sock_mc_close(struct sock *sk)
271 struct ipv6_pinfo *np = inet6_sk(sk);
272 struct ipv6_mc_socklist *mc_lst;
273 struct net *net = sock_net(sk);
275 write_lock_bh(&ipv6_sk_mc_lock);
276 while ((mc_lst = np->ipv6_mc_list) != NULL) {
277 struct net_device *dev;
279 np->ipv6_mc_list = mc_lst->next;
280 write_unlock_bh(&ipv6_sk_mc_lock);
283 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
285 struct inet6_dev *idev = __in6_dev_get(dev);
287 (void) ip6_mc_leave_src(sk, mc_lst, idev);
289 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
291 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
293 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
295 write_lock_bh(&ipv6_sk_mc_lock);
297 write_unlock_bh(&ipv6_sk_mc_lock);
300 int ip6_mc_source(int add, int omode, struct sock *sk,
301 struct group_source_req *pgsr)
303 struct in6_addr *source, *group;
304 struct ipv6_mc_socklist *pmc;
305 struct net_device *dev;
306 struct inet6_dev *idev;
307 struct ipv6_pinfo *inet6 = inet6_sk(sk);
308 struct ip6_sf_socklist *psl;
309 struct net *net = sock_net(sk);
315 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
316 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
318 if (!ipv6_addr_is_multicast(group))
322 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
329 err = -EADDRNOTAVAIL;
331 read_lock(&ipv6_sk_mc_lock);
332 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
333 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
335 if (ipv6_addr_equal(&pmc->addr, group))
338 if (!pmc) { /* must have a prior join */
342 /* if a source filter was set, must be the same mode as before */
344 if (pmc->sfmode != omode) {
348 } else if (pmc->sfmode != omode) {
349 /* allow mode switches for empty-set filters */
350 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
351 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
355 write_lock(&pmc->sflock);
361 goto done; /* err = -EADDRNOTAVAIL */
363 for (i=0; i<psl->sl_count; i++) {
364 rv = memcmp(&psl->sl_addr[i], source,
365 sizeof(struct in6_addr));
369 if (rv) /* source not found */
370 goto done; /* err = -EADDRNOTAVAIL */
372 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
373 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
378 /* update the interface filter */
379 ip6_mc_del_src(idev, group, omode, 1, source, 1);
381 for (j=i+1; j<psl->sl_count; j++)
382 psl->sl_addr[j-1] = psl->sl_addr[j];
387 /* else, add a new source to the filter */
389 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
393 if (!psl || psl->sl_count == psl->sl_max) {
394 struct ip6_sf_socklist *newpsl;
395 int count = IP6_SFBLOCK;
398 count += psl->sl_max;
399 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
404 newpsl->sl_max = count;
405 newpsl->sl_count = count - IP6_SFBLOCK;
407 for (i=0; i<psl->sl_count; i++)
408 newpsl->sl_addr[i] = psl->sl_addr[i];
409 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
411 pmc->sflist = psl = newpsl;
413 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
414 for (i=0; i<psl->sl_count; i++) {
415 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
419 if (rv == 0) /* address already there is an error */
421 for (j=psl->sl_count-1; j>=i; j--)
422 psl->sl_addr[j+1] = psl->sl_addr[j];
423 psl->sl_addr[i] = *source;
426 /* update the interface list */
427 ip6_mc_add_src(idev, group, omode, 1, source, 1);
430 write_unlock(&pmc->sflock);
431 read_unlock(&ipv6_sk_mc_lock);
432 read_unlock_bh(&idev->lock);
435 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
439 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
441 struct in6_addr *group;
442 struct ipv6_mc_socklist *pmc;
443 struct net_device *dev;
444 struct inet6_dev *idev;
445 struct ipv6_pinfo *inet6 = inet6_sk(sk);
446 struct ip6_sf_socklist *newpsl, *psl;
447 struct net *net = sock_net(sk);
451 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
453 if (!ipv6_addr_is_multicast(group))
455 if (gsf->gf_fmode != MCAST_INCLUDE &&
456 gsf->gf_fmode != MCAST_EXCLUDE)
460 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
469 read_lock(&ipv6_sk_mc_lock);
471 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
476 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
477 if (pmc->ifindex != gsf->gf_interface)
479 if (ipv6_addr_equal(&pmc->addr, group))
482 if (!pmc) { /* must have a prior join */
486 if (gsf->gf_numsrc) {
487 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
493 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
494 for (i=0; i<newpsl->sl_count; ++i) {
495 struct sockaddr_in6 *psin6;
497 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
498 newpsl->sl_addr[i] = psin6->sin6_addr;
500 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
501 newpsl->sl_count, newpsl->sl_addr, 0);
503 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
508 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
511 write_lock(&pmc->sflock);
514 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
515 psl->sl_count, psl->sl_addr, 0);
516 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
518 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
519 pmc->sflist = newpsl;
520 pmc->sfmode = gsf->gf_fmode;
521 write_unlock(&pmc->sflock);
524 read_unlock(&ipv6_sk_mc_lock);
525 read_unlock_bh(&idev->lock);
528 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
532 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
533 struct group_filter __user *optval, int __user *optlen)
535 int err, i, count, copycount;
536 struct in6_addr *group;
537 struct ipv6_mc_socklist *pmc;
538 struct inet6_dev *idev;
539 struct net_device *dev;
540 struct ipv6_pinfo *inet6 = inet6_sk(sk);
541 struct ip6_sf_socklist *psl;
542 struct net *net = sock_net(sk);
544 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
546 if (!ipv6_addr_is_multicast(group))
550 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
558 err = -EADDRNOTAVAIL;
560 * changes to the ipv6_mc_list require the socket lock and
561 * a read lock on ip6_sk_mc_lock. We have the socket lock,
562 * so reading the list is safe.
565 for (pmc=inet6->ipv6_mc_list; pmc; pmc=pmc->next) {
566 if (pmc->ifindex != gsf->gf_interface)
568 if (ipv6_addr_equal(group, &pmc->addr))
571 if (!pmc) /* must have a prior join */
573 gsf->gf_fmode = pmc->sfmode;
575 count = psl ? psl->sl_count : 0;
576 read_unlock_bh(&idev->lock);
579 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
580 gsf->gf_numsrc = count;
581 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
582 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
585 /* changes to psl require the socket lock, a read lock on
586 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
587 * have the socket lock, so reading here is safe.
589 for (i=0; i<copycount; i++) {
590 struct sockaddr_in6 *psin6;
591 struct sockaddr_storage ss;
593 psin6 = (struct sockaddr_in6 *)&ss;
594 memset(&ss, 0, sizeof(ss));
595 psin6->sin6_family = AF_INET6;
596 psin6->sin6_addr = psl->sl_addr[i];
597 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
602 read_unlock_bh(&idev->lock);
607 int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
608 const struct in6_addr *src_addr)
610 struct ipv6_pinfo *np = inet6_sk(sk);
611 struct ipv6_mc_socklist *mc;
612 struct ip6_sf_socklist *psl;
615 read_lock(&ipv6_sk_mc_lock);
616 for (mc = np->ipv6_mc_list; mc; mc = mc->next) {
617 if (ipv6_addr_equal(&mc->addr, mc_addr))
621 read_unlock(&ipv6_sk_mc_lock);
624 read_lock(&mc->sflock);
627 rv = mc->sfmode == MCAST_EXCLUDE;
631 for (i=0; i<psl->sl_count; i++) {
632 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
635 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
637 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
640 read_unlock(&mc->sflock);
641 read_unlock(&ipv6_sk_mc_lock);
646 static void ma_put(struct ifmcaddr6 *mc)
648 if (atomic_dec_and_test(&mc->mca_refcnt)) {
649 in6_dev_put(mc->idev);
654 static void igmp6_group_added(struct ifmcaddr6 *mc)
656 struct net_device *dev = mc->idev->dev;
657 char buf[MAX_ADDR_LEN];
659 spin_lock_bh(&mc->mca_lock);
660 if (!(mc->mca_flags&MAF_LOADED)) {
661 mc->mca_flags |= MAF_LOADED;
662 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
663 dev_mc_add(dev, buf);
665 spin_unlock_bh(&mc->mca_lock);
667 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
670 if (MLD_V1_SEEN(mc->idev)) {
671 igmp6_join_group(mc);
676 mc->mca_crcount = mc->idev->mc_qrv;
677 mld_ifc_event(mc->idev);
680 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
682 struct net_device *dev = mc->idev->dev;
683 char buf[MAX_ADDR_LEN];
685 spin_lock_bh(&mc->mca_lock);
686 if (mc->mca_flags&MAF_LOADED) {
687 mc->mca_flags &= ~MAF_LOADED;
688 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
689 dev_mc_del(dev, buf);
692 if (mc->mca_flags & MAF_NOREPORT)
694 spin_unlock_bh(&mc->mca_lock);
697 igmp6_leave_group(mc);
699 spin_lock_bh(&mc->mca_lock);
700 if (del_timer(&mc->mca_timer))
701 atomic_dec(&mc->mca_refcnt);
703 ip6_mc_clear_src(mc);
704 spin_unlock_bh(&mc->mca_lock);
708 * deleted ifmcaddr6 manipulation
710 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
712 struct ifmcaddr6 *pmc;
714 /* this is an "ifmcaddr6" for convenience; only the fields below
715 * are actually used. In particular, the refcnt and users are not
716 * used for management of the delete list. Using the same structure
717 * for deleted items allows change reports to use common code with
718 * non-deleted or query-response MCA's.
720 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
724 spin_lock_bh(&im->mca_lock);
725 spin_lock_init(&pmc->mca_lock);
726 pmc->idev = im->idev;
728 pmc->mca_addr = im->mca_addr;
729 pmc->mca_crcount = idev->mc_qrv;
730 pmc->mca_sfmode = im->mca_sfmode;
731 if (pmc->mca_sfmode == MCAST_INCLUDE) {
732 struct ip6_sf_list *psf;
734 pmc->mca_tomb = im->mca_tomb;
735 pmc->mca_sources = im->mca_sources;
736 im->mca_tomb = im->mca_sources = NULL;
737 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
738 psf->sf_crcount = pmc->mca_crcount;
740 spin_unlock_bh(&im->mca_lock);
742 spin_lock_bh(&idev->mc_lock);
743 pmc->next = idev->mc_tomb;
745 spin_unlock_bh(&idev->mc_lock);
748 static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *pmca)
750 struct ifmcaddr6 *pmc, *pmc_prev;
751 struct ip6_sf_list *psf, *psf_next;
753 spin_lock_bh(&idev->mc_lock);
755 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
756 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
762 pmc_prev->next = pmc->next;
764 idev->mc_tomb = pmc->next;
766 spin_unlock_bh(&idev->mc_lock);
769 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
770 psf_next = psf->sf_next;
773 in6_dev_put(pmc->idev);
778 static void mld_clear_delrec(struct inet6_dev *idev)
780 struct ifmcaddr6 *pmc, *nextpmc;
782 spin_lock_bh(&idev->mc_lock);
784 idev->mc_tomb = NULL;
785 spin_unlock_bh(&idev->mc_lock);
787 for (; pmc; pmc = nextpmc) {
789 ip6_mc_clear_src(pmc);
790 in6_dev_put(pmc->idev);
794 /* clear dead sources, too */
795 read_lock_bh(&idev->lock);
796 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
797 struct ip6_sf_list *psf, *psf_next;
799 spin_lock_bh(&pmc->mca_lock);
801 pmc->mca_tomb = NULL;
802 spin_unlock_bh(&pmc->mca_lock);
803 for (; psf; psf=psf_next) {
804 psf_next = psf->sf_next;
808 read_unlock_bh(&idev->lock);
813 * device multicast group inc (add if not found)
815 int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
817 struct ifmcaddr6 *mc;
818 struct inet6_dev *idev;
820 /* we need to take a reference on idev */
821 idev = in6_dev_get(dev);
826 write_lock_bh(&idev->lock);
828 write_unlock_bh(&idev->lock);
833 for (mc = idev->mc_list; mc; mc = mc->next) {
834 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
836 write_unlock_bh(&idev->lock);
837 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
845 * not found: create a new one.
848 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
851 write_unlock_bh(&idev->lock);
856 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
858 ipv6_addr_copy(&mc->mca_addr, addr);
859 mc->idev = idev; /* (reference taken) */
861 /* mca_stamp should be updated upon changes */
862 mc->mca_cstamp = mc->mca_tstamp = jiffies;
863 atomic_set(&mc->mca_refcnt, 2);
864 spin_lock_init(&mc->mca_lock);
866 /* initial mode is (EX, empty) */
867 mc->mca_sfmode = MCAST_EXCLUDE;
868 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
870 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
871 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
872 mc->mca_flags |= MAF_NOREPORT;
874 mc->next = idev->mc_list;
876 write_unlock_bh(&idev->lock);
878 mld_del_delrec(idev, &mc->mca_addr);
879 igmp6_group_added(mc);
885 * device multicast group del
887 int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
889 struct ifmcaddr6 *ma, **map;
891 write_lock_bh(&idev->lock);
892 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
893 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
894 if (--ma->mca_users == 0) {
896 write_unlock_bh(&idev->lock);
898 igmp6_group_dropped(ma);
903 write_unlock_bh(&idev->lock);
907 write_unlock_bh(&idev->lock);
912 int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
914 struct inet6_dev *idev;
919 idev = __in6_dev_get(dev);
923 err = __ipv6_dev_mc_dec(idev, addr);
930 * identify MLD packets for MLD filter exceptions
932 int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
934 struct icmp6hdr *pic;
936 if (nexthdr != IPPROTO_ICMPV6)
939 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
942 pic = icmp6_hdr(skb);
944 switch (pic->icmp6_type) {
945 case ICMPV6_MGM_QUERY:
946 case ICMPV6_MGM_REPORT:
947 case ICMPV6_MGM_REDUCTION:
948 case ICMPV6_MLD2_REPORT:
957 * check if the interface/address pair is valid
959 int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
960 const struct in6_addr *src_addr)
962 struct inet6_dev *idev;
963 struct ifmcaddr6 *mc;
967 idev = __in6_dev_get(dev);
969 read_lock_bh(&idev->lock);
970 for (mc = idev->mc_list; mc; mc=mc->next) {
971 if (ipv6_addr_equal(&mc->mca_addr, group))
975 if (src_addr && !ipv6_addr_any(src_addr)) {
976 struct ip6_sf_list *psf;
978 spin_lock_bh(&mc->mca_lock);
979 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
980 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
984 rv = psf->sf_count[MCAST_INCLUDE] ||
985 psf->sf_count[MCAST_EXCLUDE] !=
986 mc->mca_sfcount[MCAST_EXCLUDE];
988 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
989 spin_unlock_bh(&mc->mca_lock);
991 rv = 1; /* don't filter unspecified source */
993 read_unlock_bh(&idev->lock);
999 static void mld_gq_start_timer(struct inet6_dev *idev)
1001 int tv = net_random() % idev->mc_maxdelay;
1003 idev->mc_gq_running = 1;
1004 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1008 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1010 int tv = net_random() % delay;
1012 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1017 * IGMP handling (alias multicast ICMPv6 messages)
1020 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1022 unsigned long delay = resptime;
1024 /* Do not start timer for these addresses */
1025 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1026 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1029 if (del_timer(&ma->mca_timer)) {
1030 atomic_dec(&ma->mca_refcnt);
1031 delay = ma->mca_timer.expires - jiffies;
1034 if (delay >= resptime) {
1036 delay = net_random() % resptime;
1040 ma->mca_timer.expires = jiffies + delay;
1041 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1042 atomic_inc(&ma->mca_refcnt);
1043 ma->mca_flags |= MAF_TIMER_RUNNING;
1046 /* mark EXCLUDE-mode sources */
1047 static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1048 struct in6_addr *srcs)
1050 struct ip6_sf_list *psf;
1054 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1055 if (scount == nsrcs)
1057 for (i=0; i<nsrcs; i++) {
1058 /* skip inactive filters */
1059 if (pmc->mca_sfcount[MCAST_INCLUDE] ||
1060 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1061 psf->sf_count[MCAST_EXCLUDE])
1063 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1069 pmc->mca_flags &= ~MAF_GSQUERY;
1070 if (scount == nsrcs) /* all sources excluded */
1075 static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1076 struct in6_addr *srcs)
1078 struct ip6_sf_list *psf;
1081 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1082 return mld_xmarksources(pmc, nsrcs, srcs);
1084 /* mark INCLUDE-mode sources */
1087 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1088 if (scount == nsrcs)
1090 for (i=0; i<nsrcs; i++) {
1091 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1099 pmc->mca_flags &= ~MAF_GSQUERY;
1102 pmc->mca_flags |= MAF_GSQUERY;
1106 /* called with rcu_read_lock() */
1107 int igmp6_event_query(struct sk_buff *skb)
1109 struct mld2_query *mlh2 = NULL;
1110 struct ifmcaddr6 *ma;
1111 struct in6_addr *group;
1112 unsigned long max_delay;
1113 struct inet6_dev *idev;
1114 struct mld_msg *mld;
1119 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1122 /* compute payload length excluding extension headers */
1123 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1124 len -= skb_network_header_len(skb);
1126 /* Drop queries with not link local source */
1127 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
1130 idev = __in6_dev_get(skb->dev);
1135 mld = (struct mld_msg *)icmp6_hdr(skb);
1136 group = &mld->mld_mca;
1137 group_type = ipv6_addr_type(group);
1139 if (group_type != IPV6_ADDR_ANY &&
1140 !(group_type&IPV6_ADDR_MULTICAST))
1145 /* MLDv1 router present */
1147 /* Translate milliseconds to jiffies */
1148 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
1150 switchback = (idev->mc_qrv + 1) * max_delay;
1151 idev->mc_v1_seen = jiffies + switchback;
1153 /* cancel the interface change timer */
1154 idev->mc_ifc_count = 0;
1155 if (del_timer(&idev->mc_ifc_timer))
1156 __in6_dev_put(idev);
1157 /* clear deleted report items */
1158 mld_clear_delrec(idev);
1159 } else if (len >= 28) {
1160 int srcs_offset = sizeof(struct mld2_query) -
1161 sizeof(struct icmp6hdr);
1162 if (!pskb_may_pull(skb, srcs_offset))
1165 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1166 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
1169 idev->mc_maxdelay = max_delay;
1170 if (mlh2->mld2q_qrv)
1171 idev->mc_qrv = mlh2->mld2q_qrv;
1172 if (group_type == IPV6_ADDR_ANY) { /* general query */
1173 if (mlh2->mld2q_nsrcs)
1174 return -EINVAL; /* no sources allowed */
1176 mld_gq_start_timer(idev);
1179 /* mark sources to include, if group & source-specific */
1180 if (mlh2->mld2q_nsrcs != 0) {
1181 if (!pskb_may_pull(skb, srcs_offset +
1182 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
1185 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1191 read_lock_bh(&idev->lock);
1192 if (group_type == IPV6_ADDR_ANY) {
1193 for (ma = idev->mc_list; ma; ma=ma->next) {
1194 spin_lock_bh(&ma->mca_lock);
1195 igmp6_group_queried(ma, max_delay);
1196 spin_unlock_bh(&ma->mca_lock);
1199 for (ma = idev->mc_list; ma; ma=ma->next) {
1200 if (!ipv6_addr_equal(group, &ma->mca_addr))
1202 spin_lock_bh(&ma->mca_lock);
1203 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1204 /* gsquery <- gsquery && mark */
1206 ma->mca_flags &= ~MAF_GSQUERY;
1208 /* gsquery <- mark */
1210 ma->mca_flags |= MAF_GSQUERY;
1212 ma->mca_flags &= ~MAF_GSQUERY;
1214 if (!(ma->mca_flags & MAF_GSQUERY) ||
1215 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
1216 igmp6_group_queried(ma, max_delay);
1217 spin_unlock_bh(&ma->mca_lock);
1221 read_unlock_bh(&idev->lock);
1226 /* called with rcu_read_lock() */
1227 int igmp6_event_report(struct sk_buff *skb)
1229 struct ifmcaddr6 *ma;
1230 struct inet6_dev *idev;
1231 struct mld_msg *mld;
1234 /* Our own report looped back. Ignore it. */
1235 if (skb->pkt_type == PACKET_LOOPBACK)
1238 /* send our report if the MC router may not have heard this report */
1239 if (skb->pkt_type != PACKET_MULTICAST &&
1240 skb->pkt_type != PACKET_BROADCAST)
1243 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
1246 mld = (struct mld_msg *)icmp6_hdr(skb);
1248 /* Drop reports with not link local source */
1249 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1250 if (addr_type != IPV6_ADDR_ANY &&
1251 !(addr_type&IPV6_ADDR_LINKLOCAL))
1254 idev = __in6_dev_get(skb->dev);
1259 * Cancel the timer for this group
1262 read_lock_bh(&idev->lock);
1263 for (ma = idev->mc_list; ma; ma=ma->next) {
1264 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
1265 spin_lock(&ma->mca_lock);
1266 if (del_timer(&ma->mca_timer))
1267 atomic_dec(&ma->mca_refcnt);
1268 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1269 spin_unlock(&ma->mca_lock);
1273 read_unlock_bh(&idev->lock);
1277 static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1278 int gdeleted, int sdeleted)
1281 case MLD2_MODE_IS_INCLUDE:
1282 case MLD2_MODE_IS_EXCLUDE:
1283 if (gdeleted || sdeleted)
1285 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1286 if (pmc->mca_sfmode == MCAST_INCLUDE)
1288 /* don't include if this source is excluded
1291 if (psf->sf_count[MCAST_INCLUDE])
1292 return type == MLD2_MODE_IS_INCLUDE;
1293 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1294 psf->sf_count[MCAST_EXCLUDE];
1297 case MLD2_CHANGE_TO_INCLUDE:
1298 if (gdeleted || sdeleted)
1300 return psf->sf_count[MCAST_INCLUDE] != 0;
1301 case MLD2_CHANGE_TO_EXCLUDE:
1302 if (gdeleted || sdeleted)
1304 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1305 psf->sf_count[MCAST_INCLUDE])
1307 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1308 psf->sf_count[MCAST_EXCLUDE];
1309 case MLD2_ALLOW_NEW_SOURCES:
1310 if (gdeleted || !psf->sf_crcount)
1312 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1313 case MLD2_BLOCK_OLD_SOURCES:
1314 if (pmc->mca_sfmode == MCAST_INCLUDE)
1315 return gdeleted || (psf->sf_crcount && sdeleted);
1316 return psf->sf_crcount && !gdeleted && !sdeleted;
1322 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1324 struct ip6_sf_list *psf;
1327 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1328 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1335 static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1337 struct net *net = dev_net(dev);
1338 struct sock *sk = net->ipv6.igmp_sk;
1339 struct sk_buff *skb;
1340 struct mld2_report *pmr;
1341 struct in6_addr addr_buf;
1342 const struct in6_addr *saddr;
1344 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1345 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1348 /* we assume size > sizeof(ra) here */
1349 size += LL_ALLOCATED_SPACE(dev);
1350 /* limit our allocations to order-0 page */
1351 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1352 skb = sock_alloc_send_skb(sk, size, 1, &err);
1357 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1359 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1360 /* <draft-ietf-magma-mld-source-05.txt>:
1361 * use unspecified address as the source address
1362 * when a valid link-local address is not available.
1364 saddr = &in6addr_any;
1368 ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
1370 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1372 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1373 skb_put(skb, sizeof(*pmr));
1374 pmr = (struct mld2_report *)skb_transport_header(skb);
1375 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1376 pmr->mld2r_resv1 = 0;
1377 pmr->mld2r_cksum = 0;
1378 pmr->mld2r_resv2 = 0;
1379 pmr->mld2r_ngrec = 0;
1383 static void mld_sendpack(struct sk_buff *skb)
1385 struct ipv6hdr *pip6 = ipv6_hdr(skb);
1386 struct mld2_report *pmr =
1387 (struct mld2_report *)skb_transport_header(skb);
1388 int payload_len, mldlen;
1389 struct inet6_dev *idev;
1390 struct net *net = dev_net(skb->dev);
1393 struct dst_entry *dst;
1396 idev = __in6_dev_get(skb->dev);
1397 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1399 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1400 mldlen = skb->tail - skb->transport_header;
1401 pip6->payload_len = htons(payload_len);
1403 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1405 csum_partial(skb_transport_header(skb),
1408 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1415 icmpv6_flow_init(net->ipv6.igmp_sk, &fl, ICMPV6_MLD2_REPORT,
1416 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1419 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
1420 skb_dst_set(skb, dst);
1424 payload_len = skb->len;
1426 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1430 ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
1431 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
1432 IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1434 IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
1444 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1446 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1449 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1450 int type, struct mld2_grec **ppgr)
1452 struct net_device *dev = pmc->idev->dev;
1453 struct mld2_report *pmr;
1454 struct mld2_grec *pgr;
1457 skb = mld_newpack(dev, dev->mtu);
1460 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1461 pgr->grec_type = type;
1462 pgr->grec_auxwords = 0;
1463 pgr->grec_nsrcs = 0;
1464 pgr->grec_mca = pmc->mca_addr; /* structure copy */
1465 pmr = (struct mld2_report *)skb_transport_header(skb);
1466 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
1471 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1472 skb_tailroom(skb)) : 0)
1474 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1475 int type, int gdeleted, int sdeleted)
1477 struct net_device *dev = pmc->idev->dev;
1478 struct mld2_report *pmr;
1479 struct mld2_grec *pgr = NULL;
1480 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1481 int scount, stotal, first, isquery, truncate;
1483 if (pmc->mca_flags & MAF_NOREPORT)
1486 isquery = type == MLD2_MODE_IS_INCLUDE ||
1487 type == MLD2_MODE_IS_EXCLUDE;
1488 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1489 type == MLD2_CHANGE_TO_EXCLUDE;
1491 stotal = scount = 0;
1493 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1498 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
1500 /* EX and TO_EX get a fresh packet, if needed */
1502 if (pmr && pmr->mld2r_ngrec &&
1503 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1506 skb = mld_newpack(dev, dev->mtu);
1511 for (psf=*psf_list; psf; psf=psf_next) {
1512 struct in6_addr *psrc;
1514 psf_next = psf->sf_next;
1516 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1521 /* clear marks on query responses */
1525 if (AVAILABLE(skb) < sizeof(*psrc) +
1526 first*sizeof(struct mld2_grec)) {
1527 if (truncate && !first)
1528 break; /* truncate these */
1530 pgr->grec_nsrcs = htons(scount);
1533 skb = mld_newpack(dev, dev->mtu);
1538 skb = add_grhead(skb, pmc, type, &pgr);
1543 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1544 *psrc = psf->sf_addr;
1546 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1547 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1549 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1551 psf_prev->sf_next = psf->sf_next;
1553 *psf_list = psf->sf_next;
1563 if (type == MLD2_ALLOW_NEW_SOURCES ||
1564 type == MLD2_BLOCK_OLD_SOURCES)
1566 if (pmc->mca_crcount || isquery) {
1567 /* make sure we have room for group header */
1568 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1570 skb = NULL; /* add_grhead will get a new one */
1572 skb = add_grhead(skb, pmc, type, &pgr);
1576 pgr->grec_nsrcs = htons(scount);
1579 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1583 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1585 struct sk_buff *skb = NULL;
1589 read_lock_bh(&idev->lock);
1590 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1591 if (pmc->mca_flags & MAF_NOREPORT)
1593 spin_lock_bh(&pmc->mca_lock);
1594 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1595 type = MLD2_MODE_IS_EXCLUDE;
1597 type = MLD2_MODE_IS_INCLUDE;
1598 skb = add_grec(skb, pmc, type, 0, 0);
1599 spin_unlock_bh(&pmc->mca_lock);
1601 read_unlock_bh(&idev->lock);
1603 spin_lock_bh(&pmc->mca_lock);
1604 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1605 type = MLD2_MODE_IS_EXCLUDE;
1607 type = MLD2_MODE_IS_INCLUDE;
1608 skb = add_grec(skb, pmc, type, 0, 0);
1609 spin_unlock_bh(&pmc->mca_lock);
1616 * remove zero-count source records from a source filter list
1618 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1620 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1623 for (psf=*ppsf; psf; psf = psf_next) {
1624 psf_next = psf->sf_next;
1625 if (psf->sf_crcount == 0) {
1627 psf_prev->sf_next = psf->sf_next;
1629 *ppsf = psf->sf_next;
1636 static void mld_send_cr(struct inet6_dev *idev)
1638 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1639 struct sk_buff *skb = NULL;
1642 read_lock_bh(&idev->lock);
1643 spin_lock(&idev->mc_lock);
1647 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1648 pmc_next = pmc->next;
1649 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1650 type = MLD2_BLOCK_OLD_SOURCES;
1651 dtype = MLD2_BLOCK_OLD_SOURCES;
1652 skb = add_grec(skb, pmc, type, 1, 0);
1653 skb = add_grec(skb, pmc, dtype, 1, 1);
1655 if (pmc->mca_crcount) {
1656 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1657 type = MLD2_CHANGE_TO_INCLUDE;
1658 skb = add_grec(skb, pmc, type, 1, 0);
1661 if (pmc->mca_crcount == 0) {
1662 mld_clear_zeros(&pmc->mca_tomb);
1663 mld_clear_zeros(&pmc->mca_sources);
1666 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1667 !pmc->mca_sources) {
1669 pmc_prev->next = pmc_next;
1671 idev->mc_tomb = pmc_next;
1672 in6_dev_put(pmc->idev);
1677 spin_unlock(&idev->mc_lock);
1680 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1681 spin_lock_bh(&pmc->mca_lock);
1682 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1683 type = MLD2_BLOCK_OLD_SOURCES;
1684 dtype = MLD2_ALLOW_NEW_SOURCES;
1686 type = MLD2_ALLOW_NEW_SOURCES;
1687 dtype = MLD2_BLOCK_OLD_SOURCES;
1689 skb = add_grec(skb, pmc, type, 0, 0);
1690 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1692 /* filter mode changes */
1693 if (pmc->mca_crcount) {
1694 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1695 type = MLD2_CHANGE_TO_EXCLUDE;
1697 type = MLD2_CHANGE_TO_INCLUDE;
1698 skb = add_grec(skb, pmc, type, 0, 0);
1701 spin_unlock_bh(&pmc->mca_lock);
1703 read_unlock_bh(&idev->lock);
1706 (void) mld_sendpack(skb);
1709 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1711 struct net *net = dev_net(dev);
1712 struct sock *sk = net->ipv6.igmp_sk;
1713 struct inet6_dev *idev;
1714 struct sk_buff *skb;
1715 struct mld_msg *hdr;
1716 const struct in6_addr *snd_addr, *saddr;
1717 struct in6_addr addr_buf;
1718 int err, len, payload_len, full_len;
1719 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1720 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1723 struct dst_entry *dst;
1725 if (type == ICMPV6_MGM_REDUCTION)
1726 snd_addr = &in6addr_linklocal_allrouters;
1730 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1731 payload_len = len + sizeof(ra);
1732 full_len = sizeof(struct ipv6hdr) + payload_len;
1735 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1736 IPSTATS_MIB_OUT, full_len);
1739 skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err);
1743 IP6_INC_STATS(net, __in6_dev_get(dev),
1744 IPSTATS_MIB_OUTDISCARDS);
1749 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1751 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1752 /* <draft-ietf-magma-mld-source-05.txt>:
1753 * use unspecified address as the source address
1754 * when a valid link-local address is not available.
1756 saddr = &in6addr_any;
1760 ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
1762 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1764 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1765 memset(hdr, 0, sizeof(struct mld_msg));
1766 hdr->mld_type = type;
1767 ipv6_addr_copy(&hdr->mld_mca, addr);
1769 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1771 csum_partial(hdr, len, 0));
1774 idev = __in6_dev_get(skb->dev);
1776 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1782 icmpv6_flow_init(sk, &fl, type,
1783 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1786 err = xfrm_lookup(net, &dst, &fl, NULL, 0);
1790 skb_dst_set(skb, dst);
1791 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1795 ICMP6MSGOUT_INC_STATS(net, idev, type);
1796 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1797 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
1799 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1809 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1810 struct in6_addr *psfsrc)
1812 struct ip6_sf_list *psf, *psf_prev;
1816 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1817 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1821 if (!psf || psf->sf_count[sfmode] == 0) {
1822 /* source filter not found, or count wrong => bug */
1825 psf->sf_count[sfmode]--;
1826 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1827 struct inet6_dev *idev = pmc->idev;
1829 /* no more filters for this source */
1831 psf_prev->sf_next = psf->sf_next;
1833 pmc->mca_sources = psf->sf_next;
1834 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1835 !MLD_V1_SEEN(idev)) {
1836 psf->sf_crcount = idev->mc_qrv;
1837 psf->sf_next = pmc->mca_tomb;
1838 pmc->mca_tomb = psf;
1846 static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
1847 int sfmode, int sfcount, struct in6_addr *psfsrc,
1850 struct ifmcaddr6 *pmc;
1856 read_lock_bh(&idev->lock);
1857 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1858 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1862 /* MCA not found?? bug */
1863 read_unlock_bh(&idev->lock);
1866 spin_lock_bh(&pmc->mca_lock);
1869 if (!pmc->mca_sfcount[sfmode]) {
1870 spin_unlock_bh(&pmc->mca_lock);
1871 read_unlock_bh(&idev->lock);
1874 pmc->mca_sfcount[sfmode]--;
1877 for (i=0; i<sfcount; i++) {
1878 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1880 changerec |= rv > 0;
1884 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1885 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1886 pmc->mca_sfcount[MCAST_INCLUDE]) {
1887 struct ip6_sf_list *psf;
1889 /* filter mode change */
1890 pmc->mca_sfmode = MCAST_INCLUDE;
1891 pmc->mca_crcount = idev->mc_qrv;
1892 idev->mc_ifc_count = pmc->mca_crcount;
1893 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1894 psf->sf_crcount = 0;
1895 mld_ifc_event(pmc->idev);
1896 } else if (sf_setstate(pmc) || changerec)
1897 mld_ifc_event(pmc->idev);
1898 spin_unlock_bh(&pmc->mca_lock);
1899 read_unlock_bh(&idev->lock);
1904 * Add multicast single-source filter to the interface list
1906 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1907 struct in6_addr *psfsrc, int delta)
1909 struct ip6_sf_list *psf, *psf_prev;
1912 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1913 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1918 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1922 psf->sf_addr = *psfsrc;
1924 psf_prev->sf_next = psf;
1926 pmc->mca_sources = psf;
1928 psf->sf_count[sfmode]++;
1932 static void sf_markstate(struct ifmcaddr6 *pmc)
1934 struct ip6_sf_list *psf;
1935 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1937 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1938 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1939 psf->sf_oldin = mca_xcount ==
1940 psf->sf_count[MCAST_EXCLUDE] &&
1941 !psf->sf_count[MCAST_INCLUDE];
1943 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1946 static int sf_setstate(struct ifmcaddr6 *pmc)
1948 struct ip6_sf_list *psf, *dpsf;
1949 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1950 int qrv = pmc->idev->mc_qrv;
1954 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1955 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1956 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1957 !psf->sf_count[MCAST_INCLUDE];
1959 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1961 if (!psf->sf_oldin) {
1962 struct ip6_sf_list *prev = NULL;
1964 for (dpsf=pmc->mca_tomb; dpsf;
1965 dpsf=dpsf->sf_next) {
1966 if (ipv6_addr_equal(&dpsf->sf_addr,
1973 prev->sf_next = dpsf->sf_next;
1975 pmc->mca_tomb = dpsf->sf_next;
1978 psf->sf_crcount = qrv;
1981 } else if (psf->sf_oldin) {
1982 psf->sf_crcount = 0;
1984 * add or update "delete" records if an active filter
1987 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
1988 if (ipv6_addr_equal(&dpsf->sf_addr,
1992 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
1996 /* pmc->mca_lock held by callers */
1997 dpsf->sf_next = pmc->mca_tomb;
1998 pmc->mca_tomb = dpsf;
2000 dpsf->sf_crcount = qrv;
2008 * Add multicast source filter list to the interface list
2010 static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
2011 int sfmode, int sfcount, struct in6_addr *psfsrc,
2014 struct ifmcaddr6 *pmc;
2020 read_lock_bh(&idev->lock);
2021 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2022 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2026 /* MCA not found?? bug */
2027 read_unlock_bh(&idev->lock);
2030 spin_lock_bh(&pmc->mca_lock);
2033 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2035 pmc->mca_sfcount[sfmode]++;
2037 for (i=0; i<sfcount; i++) {
2038 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2046 pmc->mca_sfcount[sfmode]--;
2048 (void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2049 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2050 struct ip6_sf_list *psf;
2052 /* filter mode change */
2053 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2054 pmc->mca_sfmode = MCAST_EXCLUDE;
2055 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2056 pmc->mca_sfmode = MCAST_INCLUDE;
2057 /* else no filters; keep old mode for reports */
2059 pmc->mca_crcount = idev->mc_qrv;
2060 idev->mc_ifc_count = pmc->mca_crcount;
2061 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2062 psf->sf_crcount = 0;
2063 mld_ifc_event(idev);
2064 } else if (sf_setstate(pmc))
2065 mld_ifc_event(idev);
2066 spin_unlock_bh(&pmc->mca_lock);
2067 read_unlock_bh(&idev->lock);
2071 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2073 struct ip6_sf_list *psf, *nextpsf;
2075 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2076 nextpsf = psf->sf_next;
2079 pmc->mca_tomb = NULL;
2080 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2081 nextpsf = psf->sf_next;
2084 pmc->mca_sources = NULL;
2085 pmc->mca_sfmode = MCAST_EXCLUDE;
2086 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2087 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2091 static void igmp6_join_group(struct ifmcaddr6 *ma)
2093 unsigned long delay;
2095 if (ma->mca_flags & MAF_NOREPORT)
2098 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2100 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2102 spin_lock_bh(&ma->mca_lock);
2103 if (del_timer(&ma->mca_timer)) {
2104 atomic_dec(&ma->mca_refcnt);
2105 delay = ma->mca_timer.expires - jiffies;
2108 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2109 atomic_inc(&ma->mca_refcnt);
2110 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2111 spin_unlock_bh(&ma->mca_lock);
2114 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2115 struct inet6_dev *idev)
2119 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2120 * so no other readers or writers of iml or its sflist
2123 /* any-source empty exclude case */
2124 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2126 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2127 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2128 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2133 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2135 if (MLD_V1_SEEN(ma->idev)) {
2136 if (ma->mca_flags & MAF_LAST_REPORTER)
2137 igmp6_send(&ma->mca_addr, ma->idev->dev,
2138 ICMPV6_MGM_REDUCTION);
2140 mld_add_delrec(ma->idev, ma);
2141 mld_ifc_event(ma->idev);
2145 static void mld_gq_timer_expire(unsigned long data)
2147 struct inet6_dev *idev = (struct inet6_dev *)data;
2149 idev->mc_gq_running = 0;
2150 mld_send_report(idev, NULL);
2151 __in6_dev_put(idev);
2154 static void mld_ifc_timer_expire(unsigned long data)
2156 struct inet6_dev *idev = (struct inet6_dev *)data;
2159 if (idev->mc_ifc_count) {
2160 idev->mc_ifc_count--;
2161 if (idev->mc_ifc_count)
2162 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2164 __in6_dev_put(idev);
2167 static void mld_ifc_event(struct inet6_dev *idev)
2169 if (MLD_V1_SEEN(idev))
2171 idev->mc_ifc_count = idev->mc_qrv;
2172 mld_ifc_start_timer(idev, 1);
2176 static void igmp6_timer_handler(unsigned long data)
2178 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2180 if (MLD_V1_SEEN(ma->idev))
2181 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2183 mld_send_report(ma->idev, ma);
2185 spin_lock(&ma->mca_lock);
2186 ma->mca_flags |= MAF_LAST_REPORTER;
2187 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2188 spin_unlock(&ma->mca_lock);
2192 /* Device changing type */
2194 void ipv6_mc_unmap(struct inet6_dev *idev)
2196 struct ifmcaddr6 *i;
2198 /* Install multicast list, except for all-nodes (already installed) */
2200 read_lock_bh(&idev->lock);
2201 for (i = idev->mc_list; i; i = i->next)
2202 igmp6_group_dropped(i);
2203 read_unlock_bh(&idev->lock);
2206 void ipv6_mc_remap(struct inet6_dev *idev)
2211 /* Device going down */
2213 void ipv6_mc_down(struct inet6_dev *idev)
2215 struct ifmcaddr6 *i;
2217 /* Withdraw multicast list */
2219 read_lock_bh(&idev->lock);
2220 idev->mc_ifc_count = 0;
2221 if (del_timer(&idev->mc_ifc_timer))
2222 __in6_dev_put(idev);
2223 idev->mc_gq_running = 0;
2224 if (del_timer(&idev->mc_gq_timer))
2225 __in6_dev_put(idev);
2227 for (i = idev->mc_list; i; i=i->next)
2228 igmp6_group_dropped(i);
2229 read_unlock_bh(&idev->lock);
2231 mld_clear_delrec(idev);
2235 /* Device going up */
2237 void ipv6_mc_up(struct inet6_dev *idev)
2239 struct ifmcaddr6 *i;
2241 /* Install multicast list, except for all-nodes (already installed) */
2243 read_lock_bh(&idev->lock);
2244 for (i = idev->mc_list; i; i=i->next)
2245 igmp6_group_added(i);
2246 read_unlock_bh(&idev->lock);
2249 /* IPv6 device initialization. */
2251 void ipv6_mc_init_dev(struct inet6_dev *idev)
2253 write_lock_bh(&idev->lock);
2254 spin_lock_init(&idev->mc_lock);
2255 idev->mc_gq_running = 0;
2256 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2257 (unsigned long)idev);
2258 idev->mc_tomb = NULL;
2259 idev->mc_ifc_count = 0;
2260 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2261 (unsigned long)idev);
2262 idev->mc_qrv = MLD_QRV_DEFAULT;
2263 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2264 idev->mc_v1_seen = 0;
2265 write_unlock_bh(&idev->lock);
2269 * Device is about to be destroyed: clean up.
2272 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2274 struct ifmcaddr6 *i;
2276 /* Deactivate timers */
2279 /* Delete all-nodes address. */
2280 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2281 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2284 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
2286 if (idev->cnf.forwarding)
2287 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
2289 write_lock_bh(&idev->lock);
2290 while ((i = idev->mc_list) != NULL) {
2291 idev->mc_list = i->next;
2292 write_unlock_bh(&idev->lock);
2294 igmp6_group_dropped(i);
2297 write_lock_bh(&idev->lock);
2299 write_unlock_bh(&idev->lock);
2302 #ifdef CONFIG_PROC_FS
2303 struct igmp6_mc_iter_state {
2304 struct seq_net_private p;
2305 struct net_device *dev;
2306 struct inet6_dev *idev;
2309 #define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2311 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2313 struct ifmcaddr6 *im = NULL;
2314 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2315 struct net *net = seq_file_net(seq);
2318 for_each_netdev_rcu(net, state->dev) {
2319 struct inet6_dev *idev;
2320 idev = __in6_dev_get(state->dev);
2323 read_lock_bh(&idev->lock);
2329 read_unlock_bh(&idev->lock);
2334 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2336 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2340 if (likely(state->idev != NULL))
2341 read_unlock_bh(&state->idev->lock);
2343 state->dev = next_net_device_rcu(state->dev);
2348 state->idev = __in6_dev_get(state->dev);
2351 read_lock_bh(&state->idev->lock);
2352 im = state->idev->mc_list;
2357 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2359 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2361 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2363 return pos ? NULL : im;
2366 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2370 return igmp6_mc_get_idx(seq, *pos);
2373 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2375 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2381 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2384 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2386 if (likely(state->idev != NULL)) {
2387 read_unlock_bh(&state->idev->lock);
2394 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2396 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2397 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2400 "%-4d %-15s %pi6 %5d %08X %ld\n",
2401 state->dev->ifindex, state->dev->name,
2403 im->mca_users, im->mca_flags,
2404 (im->mca_flags&MAF_TIMER_RUNNING) ?
2405 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2409 static const struct seq_operations igmp6_mc_seq_ops = {
2410 .start = igmp6_mc_seq_start,
2411 .next = igmp6_mc_seq_next,
2412 .stop = igmp6_mc_seq_stop,
2413 .show = igmp6_mc_seq_show,
2416 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2418 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2419 sizeof(struct igmp6_mc_iter_state));
2422 static const struct file_operations igmp6_mc_seq_fops = {
2423 .owner = THIS_MODULE,
2424 .open = igmp6_mc_seq_open,
2426 .llseek = seq_lseek,
2427 .release = seq_release_net,
2430 struct igmp6_mcf_iter_state {
2431 struct seq_net_private p;
2432 struct net_device *dev;
2433 struct inet6_dev *idev;
2434 struct ifmcaddr6 *im;
2437 #define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2439 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2441 struct ip6_sf_list *psf = NULL;
2442 struct ifmcaddr6 *im = NULL;
2443 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2444 struct net *net = seq_file_net(seq);
2448 for_each_netdev_rcu(net, state->dev) {
2449 struct inet6_dev *idev;
2450 idev = __in6_dev_get(state->dev);
2451 if (unlikely(idev == NULL))
2453 read_lock_bh(&idev->lock);
2455 if (likely(im != NULL)) {
2456 spin_lock_bh(&im->mca_lock);
2457 psf = im->mca_sources;
2458 if (likely(psf != NULL)) {
2463 spin_unlock_bh(&im->mca_lock);
2465 read_unlock_bh(&idev->lock);
2470 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2472 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2476 spin_unlock_bh(&state->im->mca_lock);
2477 state->im = state->im->next;
2478 while (!state->im) {
2479 if (likely(state->idev != NULL))
2480 read_unlock_bh(&state->idev->lock);
2482 state->dev = next_net_device_rcu(state->dev);
2487 state->idev = __in6_dev_get(state->dev);
2490 read_lock_bh(&state->idev->lock);
2491 state->im = state->idev->mc_list;
2495 spin_lock_bh(&state->im->mca_lock);
2496 psf = state->im->mca_sources;
2502 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2504 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2506 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2508 return pos ? NULL : psf;
2511 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2515 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2518 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2520 struct ip6_sf_list *psf;
2521 if (v == SEQ_START_TOKEN)
2522 psf = igmp6_mcf_get_first(seq);
2524 psf = igmp6_mcf_get_next(seq, v);
2529 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2532 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2533 if (likely(state->im != NULL)) {
2534 spin_unlock_bh(&state->im->mca_lock);
2537 if (likely(state->idev != NULL)) {
2538 read_unlock_bh(&state->idev->lock);
2545 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2547 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2548 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2550 if (v == SEQ_START_TOKEN) {
2553 "%32s %32s %6s %6s\n", "Idx",
2554 "Device", "Multicast Address",
2555 "Source Address", "INC", "EXC");
2558 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
2559 state->dev->ifindex, state->dev->name,
2560 &state->im->mca_addr,
2562 psf->sf_count[MCAST_INCLUDE],
2563 psf->sf_count[MCAST_EXCLUDE]);
2568 static const struct seq_operations igmp6_mcf_seq_ops = {
2569 .start = igmp6_mcf_seq_start,
2570 .next = igmp6_mcf_seq_next,
2571 .stop = igmp6_mcf_seq_stop,
2572 .show = igmp6_mcf_seq_show,
2575 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2577 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2578 sizeof(struct igmp6_mcf_iter_state));
2581 static const struct file_operations igmp6_mcf_seq_fops = {
2582 .owner = THIS_MODULE,
2583 .open = igmp6_mcf_seq_open,
2585 .llseek = seq_lseek,
2586 .release = seq_release_net,
2589 static int __net_init igmp6_proc_init(struct net *net)
2594 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2596 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2597 &igmp6_mcf_seq_fops))
2598 goto out_proc_net_igmp6;
2605 proc_net_remove(net, "igmp6");
2609 static void __net_exit igmp6_proc_exit(struct net *net)
2611 proc_net_remove(net, "mcfilter6");
2612 proc_net_remove(net, "igmp6");
2615 static inline int igmp6_proc_init(struct net *net)
2619 static inline void igmp6_proc_exit(struct net *net)
2624 static int __net_init igmp6_net_init(struct net *net)
2628 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2629 SOCK_RAW, IPPROTO_ICMPV6, net);
2632 "Failed to initialize the IGMP6 control socket (err %d).\n",
2637 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
2639 err = igmp6_proc_init(net);
2641 goto out_sock_create;
2646 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2650 static void __net_exit igmp6_net_exit(struct net *net)
2652 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2653 igmp6_proc_exit(net);
2656 static struct pernet_operations igmp6_net_ops = {
2657 .init = igmp6_net_init,
2658 .exit = igmp6_net_exit,
2661 int __init igmp6_init(void)
2663 return register_pernet_subsys(&igmp6_net_ops);
2666 void igmp6_cleanup(void)
2668 unregister_pernet_subsys(&igmp6_net_ops);