2 * Linux NET3: Internet Group Management Protocol [IGMP]
4 * This code implements the IGMP protocol as defined in RFC1112. There has
5 * been a further revision of this protocol since which is now supported.
7 * If you have trouble with this module be careful what gcc you have used,
8 * the older version didn't come out right using gcc 2.5.8, the newer one
9 * seems to fall out with gcc 2.6.2.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
21 * Alan Cox : Added lots of __inline__ to optimise
22 * the memory usage of all the tiny little
24 * Alan Cox : Dumped the header building experiment.
25 * Alan Cox : Minor tweaks ready for multicast routing
26 * and extended IGMP protocol.
27 * Alan Cox : Removed a load of inline directives. Gcc 2.5.8
28 * writes utterly bogus code otherwise (sigh)
29 * fixed IGMP loopback to behave in the manner
30 * desired by mrouted, fixed the fact it has been
31 * broken since 1.3.6 and cleaned up a few minor
34 * Chih-Jen Chang : Tried to revise IGMP to Version 2
36 * The enhancements are mainly based on Steve Deering's
37 * ipmulti-3.5 source code.
38 * Chih-Jen Chang : Added the igmp_get_mrouter_info and
39 * Tsu-Sheng Tsao igmp_set_mrouter_info to keep track of
40 * the mrouted version on that device.
41 * Chih-Jen Chang : Added the max_resp_time parameter to
42 * Tsu-Sheng Tsao igmp_heard_query(). Using this parameter
43 * to identify the multicast router version
44 * and do what the IGMP version 2 specified.
45 * Chih-Jen Chang : Added a timer to revert to IGMP V2 router
46 * Tsu-Sheng Tsao if the specified time expired.
47 * Alan Cox : Stop IGMP from 0.0.0.0 being accepted.
48 * Alan Cox : Use GFP_ATOMIC in the right places.
49 * Christian Daudt : igmp timer wasn't set for local group
50 * memberships but was being deleted,
51 * which caused a "del_timer() called
52 * from %p with timer not initialized\n"
54 * Christian Daudt : removed del_timer from
55 * igmp_timer_expire function (960205).
56 * Christian Daudt : igmp_heard_report now only calls
57 * igmp_timer_expire if tm->running is
59 * Malcolm Beattie : ttl comparison wrong in igmp_rcv made
60 * igmp_heard_query never trigger. Expiry
61 * miscalculation fixed in igmp_heard_query
62 * and random() made to return unsigned to
63 * prevent negative expiry times.
64 * Alexey Kuznetsov: Wrong group leaving behaviour, backport
65 * fix from pending 2.1.x patches.
66 * Alan Cox: Forget to enable FDDI support earlier.
67 * Alexey Kuznetsov: Fixed leaving groups on device down.
68 * Alexey Kuznetsov: Accordance to igmp-v2-06 draft.
69 * David L Stevens: IGMPv3 support, with help from
73 #include <linux/module.h>
74 #include <linux/slab.h>
75 #include <asm/uaccess.h>
76 #include <asm/system.h>
77 #include <linux/types.h>
78 #include <linux/kernel.h>
79 #include <linux/jiffies.h>
80 #include <linux/string.h>
81 #include <linux/socket.h>
82 #include <linux/sockios.h>
84 #include <linux/inet.h>
85 #include <linux/netdevice.h>
86 #include <linux/skbuff.h>
87 #include <linux/inetdevice.h>
88 #include <linux/igmp.h>
89 #include <linux/if_arp.h>
90 #include <linux/rtnetlink.h>
91 #include <linux/times.h>
93 #include <net/net_namespace.h>
96 #include <net/protocol.h>
97 #include <net/route.h>
99 #include <net/checksum.h>
100 #include <linux/netfilter_ipv4.h>
101 #ifdef CONFIG_IP_MROUTE
102 #include <linux/mroute.h>
104 #ifdef CONFIG_PROC_FS
105 #include <linux/proc_fs.h>
106 #include <linux/seq_file.h>
109 #define IP_MAX_MEMBERSHIPS 20
110 #define IP_MAX_MSF 10
112 #ifdef CONFIG_IP_MULTICAST
113 /* Parameter names and values are taken from igmp-v2-06 draft */
115 #define IGMP_V1_Router_Present_Timeout (400*HZ)
116 #define IGMP_V2_Router_Present_Timeout (400*HZ)
117 #define IGMP_Unsolicited_Report_Interval (10*HZ)
118 #define IGMP_Query_Response_Interval (10*HZ)
119 #define IGMP_Unsolicited_Report_Count 2
122 #define IGMP_Initial_Report_Delay (1)
124 /* IGMP_Initial_Report_Delay is not from IGMP specs!
125 * IGMP specs require to report membership immediately after
126 * joining a group, but we delay the first report by a
127 * small interval. It seems more natural and still does not
128 * contradict to specs provided this delay is small enough.
131 #define IGMP_V1_SEEN(in_dev) \
132 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \
133 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 1 || \
134 ((in_dev)->mr_v1_seen && \
135 time_before(jiffies, (in_dev)->mr_v1_seen)))
136 #define IGMP_V2_SEEN(in_dev) \
137 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \
138 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 2 || \
139 ((in_dev)->mr_v2_seen && \
140 time_before(jiffies, (in_dev)->mr_v2_seen)))
142 static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im);
143 static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr);
144 static void igmpv3_clear_delrec(struct in_device *in_dev);
145 static int sf_setstate(struct ip_mc_list *pmc);
146 static void sf_markstate(struct ip_mc_list *pmc);
148 static void ip_mc_clear_src(struct ip_mc_list *pmc);
149 static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
150 int sfcount, __be32 *psfsrc, int delta);
153 static void ip_mc_list_reclaim(struct rcu_head *head)
155 kfree(container_of(head, struct ip_mc_list, rcu));
158 static void ip_ma_put(struct ip_mc_list *im)
160 if (atomic_dec_and_test(&im->refcnt)) {
161 in_dev_put(im->interface);
162 call_rcu(&im->rcu, ip_mc_list_reclaim);
166 #define for_each_pmc_rcu(in_dev, pmc) \
167 for (pmc = rcu_dereference(in_dev->mc_list); \
169 pmc = rcu_dereference(pmc->next_rcu))
171 #define for_each_pmc_rtnl(in_dev, pmc) \
172 for (pmc = rtnl_dereference(in_dev->mc_list); \
174 pmc = rtnl_dereference(pmc->next_rcu))
176 #ifdef CONFIG_IP_MULTICAST
182 static void igmp_stop_timer(struct ip_mc_list *im)
184 spin_lock_bh(&im->lock);
185 if (del_timer(&im->timer))
186 atomic_dec(&im->refcnt);
189 im->unsolicit_count = 0;
190 spin_unlock_bh(&im->lock);
193 /* It must be called with locked im->lock */
194 static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
196 int tv = net_random() % max_delay;
199 if (!mod_timer(&im->timer, jiffies+tv+2))
200 atomic_inc(&im->refcnt);
203 static void igmp_gq_start_timer(struct in_device *in_dev)
205 int tv = net_random() % in_dev->mr_maxdelay;
207 in_dev->mr_gq_running = 1;
208 if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2))
212 static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
214 int tv = net_random() % delay;
216 if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
220 static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
222 spin_lock_bh(&im->lock);
223 im->unsolicit_count = 0;
224 if (del_timer(&im->timer)) {
225 if ((long)(im->timer.expires-jiffies) < max_delay) {
226 add_timer(&im->timer);
228 spin_unlock_bh(&im->lock);
231 atomic_dec(&im->refcnt);
233 igmp_start_timer(im, max_delay);
234 spin_unlock_bh(&im->lock);
239 * Send an IGMP report.
242 #define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
245 static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
246 int gdeleted, int sdeleted)
249 case IGMPV3_MODE_IS_INCLUDE:
250 case IGMPV3_MODE_IS_EXCLUDE:
251 if (gdeleted || sdeleted)
253 if (!(pmc->gsquery && !psf->sf_gsresp)) {
254 if (pmc->sfmode == MCAST_INCLUDE)
256 /* don't include if this source is excluded
259 if (psf->sf_count[MCAST_INCLUDE])
260 return type == IGMPV3_MODE_IS_INCLUDE;
261 return pmc->sfcount[MCAST_EXCLUDE] ==
262 psf->sf_count[MCAST_EXCLUDE];
265 case IGMPV3_CHANGE_TO_INCLUDE:
266 if (gdeleted || sdeleted)
268 return psf->sf_count[MCAST_INCLUDE] != 0;
269 case IGMPV3_CHANGE_TO_EXCLUDE:
270 if (gdeleted || sdeleted)
272 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
273 psf->sf_count[MCAST_INCLUDE])
275 return pmc->sfcount[MCAST_EXCLUDE] ==
276 psf->sf_count[MCAST_EXCLUDE];
277 case IGMPV3_ALLOW_NEW_SOURCES:
278 if (gdeleted || !psf->sf_crcount)
280 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
281 case IGMPV3_BLOCK_OLD_SOURCES:
282 if (pmc->sfmode == MCAST_INCLUDE)
283 return gdeleted || (psf->sf_crcount && sdeleted);
284 return psf->sf_crcount && !gdeleted && !sdeleted;
290 igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
292 struct ip_sf_list *psf;
295 for (psf=pmc->sources; psf; psf=psf->sf_next) {
296 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
303 #define igmp_skb_size(skb) (*(unsigned int *)((skb)->cb))
305 static struct sk_buff *igmpv3_newpack(struct net_device *dev, int size)
310 struct igmpv3_report *pig;
311 struct net *net = dev_net(dev);
314 skb = alloc_skb(size + LL_ALLOCATED_SPACE(dev),
315 GFP_ATOMIC | __GFP_NOWARN);
322 igmp_skb_size(skb) = size;
325 struct flowi fl = { .oif = dev->ifindex,
326 .fl4_dst = IGMPV3_ALL_MCR,
327 .proto = IPPROTO_IGMP };
328 if (ip_route_output_key(net, &rt, &fl)) {
333 if (rt->rt_src == 0) {
339 skb_dst_set(skb, &rt->dst);
342 skb_reserve(skb, LL_RESERVED_SPACE(dev));
344 skb_reset_network_header(skb);
346 skb_put(skb, sizeof(struct iphdr) + 4);
349 pip->ihl = (sizeof(struct iphdr)+4)>>2;
351 pip->frag_off = htons(IP_DF);
353 pip->daddr = rt->rt_dst;
354 pip->saddr = rt->rt_src;
355 pip->protocol = IPPROTO_IGMP;
356 pip->tot_len = 0; /* filled in later */
357 ip_select_ident(pip, &rt->dst, NULL);
358 ((u8*)&pip[1])[0] = IPOPT_RA;
359 ((u8*)&pip[1])[1] = 4;
360 ((u8*)&pip[1])[2] = 0;
361 ((u8*)&pip[1])[3] = 0;
363 skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4;
364 skb_put(skb, sizeof(*pig));
365 pig = igmpv3_report_hdr(skb);
366 pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
374 static int igmpv3_sendpack(struct sk_buff *skb)
376 struct igmphdr *pig = igmp_hdr(skb);
377 const int igmplen = skb->tail - skb->transport_header;
379 pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
381 return ip_local_out(skb);
384 static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
386 return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel);
389 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
390 int type, struct igmpv3_grec **ppgr)
392 struct net_device *dev = pmc->interface->dev;
393 struct igmpv3_report *pih;
394 struct igmpv3_grec *pgr;
397 skb = igmpv3_newpack(dev, dev->mtu);
400 pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
401 pgr->grec_type = type;
402 pgr->grec_auxwords = 0;
404 pgr->grec_mca = pmc->multiaddr;
405 pih = igmpv3_report_hdr(skb);
406 pih->ngrec = htons(ntohs(pih->ngrec)+1);
411 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? igmp_skb_size(skb) - (skb)->len : \
412 skb_tailroom(skb)) : 0)
414 static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
415 int type, int gdeleted, int sdeleted)
417 struct net_device *dev = pmc->interface->dev;
418 struct igmpv3_report *pih;
419 struct igmpv3_grec *pgr = NULL;
420 struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
421 int scount, stotal, first, isquery, truncate;
423 if (pmc->multiaddr == IGMP_ALL_HOSTS)
426 isquery = type == IGMPV3_MODE_IS_INCLUDE ||
427 type == IGMPV3_MODE_IS_EXCLUDE;
428 truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
429 type == IGMPV3_CHANGE_TO_EXCLUDE;
433 psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
438 pih = skb ? igmpv3_report_hdr(skb) : NULL;
440 /* EX and TO_EX get a fresh packet, if needed */
442 if (pih && pih->ngrec &&
443 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
445 igmpv3_sendpack(skb);
446 skb = igmpv3_newpack(dev, dev->mtu);
451 for (psf=*psf_list; psf; psf=psf_next) {
454 psf_next = psf->sf_next;
456 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
461 /* clear marks on query responses */
465 if (AVAILABLE(skb) < sizeof(__be32) +
466 first*sizeof(struct igmpv3_grec)) {
467 if (truncate && !first)
468 break; /* truncate these */
470 pgr->grec_nsrcs = htons(scount);
472 igmpv3_sendpack(skb);
473 skb = igmpv3_newpack(dev, dev->mtu);
478 skb = add_grhead(skb, pmc, type, &pgr);
483 psrc = (__be32 *)skb_put(skb, sizeof(__be32));
484 *psrc = psf->sf_inaddr;
486 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
487 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
489 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
491 psf_prev->sf_next = psf->sf_next;
493 *psf_list = psf->sf_next;
503 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
504 type == IGMPV3_BLOCK_OLD_SOURCES)
506 if (pmc->crcount || isquery) {
507 /* make sure we have room for group header */
508 if (skb && AVAILABLE(skb)<sizeof(struct igmpv3_grec)) {
509 igmpv3_sendpack(skb);
510 skb = NULL; /* add_grhead will get a new one */
512 skb = add_grhead(skb, pmc, type, &pgr);
516 pgr->grec_nsrcs = htons(scount);
519 pmc->gsquery = 0; /* clear query state on report */
523 static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
525 struct sk_buff *skb = NULL;
530 for_each_pmc_rcu(in_dev, pmc) {
531 if (pmc->multiaddr == IGMP_ALL_HOSTS)
533 spin_lock_bh(&pmc->lock);
534 if (pmc->sfcount[MCAST_EXCLUDE])
535 type = IGMPV3_MODE_IS_EXCLUDE;
537 type = IGMPV3_MODE_IS_INCLUDE;
538 skb = add_grec(skb, pmc, type, 0, 0);
539 spin_unlock_bh(&pmc->lock);
543 spin_lock_bh(&pmc->lock);
544 if (pmc->sfcount[MCAST_EXCLUDE])
545 type = IGMPV3_MODE_IS_EXCLUDE;
547 type = IGMPV3_MODE_IS_INCLUDE;
548 skb = add_grec(skb, pmc, type, 0, 0);
549 spin_unlock_bh(&pmc->lock);
553 return igmpv3_sendpack(skb);
557 * remove zero-count source records from a source filter list
559 static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
561 struct ip_sf_list *psf_prev, *psf_next, *psf;
564 for (psf=*ppsf; psf; psf = psf_next) {
565 psf_next = psf->sf_next;
566 if (psf->sf_crcount == 0) {
568 psf_prev->sf_next = psf->sf_next;
570 *ppsf = psf->sf_next;
577 static void igmpv3_send_cr(struct in_device *in_dev)
579 struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
580 struct sk_buff *skb = NULL;
584 spin_lock_bh(&in_dev->mc_tomb_lock);
588 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc_next) {
589 pmc_next = pmc->next;
590 if (pmc->sfmode == MCAST_INCLUDE) {
591 type = IGMPV3_BLOCK_OLD_SOURCES;
592 dtype = IGMPV3_BLOCK_OLD_SOURCES;
593 skb = add_grec(skb, pmc, type, 1, 0);
594 skb = add_grec(skb, pmc, dtype, 1, 1);
597 if (pmc->sfmode == MCAST_EXCLUDE) {
598 type = IGMPV3_CHANGE_TO_INCLUDE;
599 skb = add_grec(skb, pmc, type, 1, 0);
602 if (pmc->crcount == 0) {
603 igmpv3_clear_zeros(&pmc->tomb);
604 igmpv3_clear_zeros(&pmc->sources);
607 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
609 pmc_prev->next = pmc_next;
611 in_dev->mc_tomb = pmc_next;
612 in_dev_put(pmc->interface);
617 spin_unlock_bh(&in_dev->mc_tomb_lock);
620 for_each_pmc_rcu(in_dev, pmc) {
621 spin_lock_bh(&pmc->lock);
622 if (pmc->sfcount[MCAST_EXCLUDE]) {
623 type = IGMPV3_BLOCK_OLD_SOURCES;
624 dtype = IGMPV3_ALLOW_NEW_SOURCES;
626 type = IGMPV3_ALLOW_NEW_SOURCES;
627 dtype = IGMPV3_BLOCK_OLD_SOURCES;
629 skb = add_grec(skb, pmc, type, 0, 0);
630 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
632 /* filter mode changes */
634 if (pmc->sfmode == MCAST_EXCLUDE)
635 type = IGMPV3_CHANGE_TO_EXCLUDE;
637 type = IGMPV3_CHANGE_TO_INCLUDE;
638 skb = add_grec(skb, pmc, type, 0, 0);
641 spin_unlock_bh(&pmc->lock);
647 (void) igmpv3_sendpack(skb);
650 static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
657 struct net_device *dev = in_dev->dev;
658 struct net *net = dev_net(dev);
659 __be32 group = pmc ? pmc->multiaddr : 0;
662 if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
663 return igmpv3_send_report(in_dev, pmc);
664 else if (type == IGMP_HOST_LEAVE_MESSAGE)
665 dst = IGMP_ALL_ROUTER;
670 struct flowi fl = { .oif = dev->ifindex,
672 .proto = IPPROTO_IGMP };
673 if (ip_route_output_key(net, &rt, &fl))
676 if (rt->rt_src == 0) {
681 skb = alloc_skb(IGMP_SIZE+LL_ALLOCATED_SPACE(dev), GFP_ATOMIC);
687 skb_dst_set(skb, &rt->dst);
689 skb_reserve(skb, LL_RESERVED_SPACE(dev));
691 skb_reset_network_header(skb);
693 skb_put(skb, sizeof(struct iphdr) + 4);
696 iph->ihl = (sizeof(struct iphdr)+4)>>2;
698 iph->frag_off = htons(IP_DF);
701 iph->saddr = rt->rt_src;
702 iph->protocol = IPPROTO_IGMP;
703 ip_select_ident(iph, &rt->dst, NULL);
704 ((u8*)&iph[1])[0] = IPOPT_RA;
705 ((u8*)&iph[1])[1] = 4;
706 ((u8*)&iph[1])[2] = 0;
707 ((u8*)&iph[1])[3] = 0;
709 ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
714 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
716 return ip_local_out(skb);
719 static void igmp_gq_timer_expire(unsigned long data)
721 struct in_device *in_dev = (struct in_device *)data;
723 in_dev->mr_gq_running = 0;
724 igmpv3_send_report(in_dev, NULL);
725 __in_dev_put(in_dev);
728 static void igmp_ifc_timer_expire(unsigned long data)
730 struct in_device *in_dev = (struct in_device *)data;
732 igmpv3_send_cr(in_dev);
733 if (in_dev->mr_ifc_count) {
734 in_dev->mr_ifc_count--;
735 igmp_ifc_start_timer(in_dev, IGMP_Unsolicited_Report_Interval);
737 __in_dev_put(in_dev);
740 static void igmp_ifc_event(struct in_device *in_dev)
742 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
744 in_dev->mr_ifc_count = in_dev->mr_qrv ? in_dev->mr_qrv :
745 IGMP_Unsolicited_Report_Count;
746 igmp_ifc_start_timer(in_dev, 1);
750 static void igmp_timer_expire(unsigned long data)
752 struct ip_mc_list *im=(struct ip_mc_list *)data;
753 struct in_device *in_dev = im->interface;
755 spin_lock(&im->lock);
758 if (im->unsolicit_count) {
759 im->unsolicit_count--;
760 igmp_start_timer(im, IGMP_Unsolicited_Report_Interval);
763 spin_unlock(&im->lock);
765 if (IGMP_V1_SEEN(in_dev))
766 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
767 else if (IGMP_V2_SEEN(in_dev))
768 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
770 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
775 /* mark EXCLUDE-mode sources */
776 static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
778 struct ip_sf_list *psf;
782 for (psf=pmc->sources; psf; psf=psf->sf_next) {
785 for (i=0; i<nsrcs; i++) {
786 /* skip inactive filters */
787 if (pmc->sfcount[MCAST_INCLUDE] ||
788 pmc->sfcount[MCAST_EXCLUDE] !=
789 psf->sf_count[MCAST_EXCLUDE])
791 if (srcs[i] == psf->sf_inaddr) {
798 if (scount == nsrcs) /* all sources excluded */
803 static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
805 struct ip_sf_list *psf;
808 if (pmc->sfmode == MCAST_EXCLUDE)
809 return igmp_xmarksources(pmc, nsrcs, srcs);
811 /* mark INCLUDE-mode sources */
813 for (psf=pmc->sources; psf; psf=psf->sf_next) {
816 for (i=0; i<nsrcs; i++)
817 if (srcs[i] == psf->sf_inaddr) {
831 static void igmp_heard_report(struct in_device *in_dev, __be32 group)
833 struct ip_mc_list *im;
835 /* Timers are only set for non-local groups */
837 if (group == IGMP_ALL_HOSTS)
841 for_each_pmc_rcu(in_dev, im) {
842 if (im->multiaddr == group) {
850 static void igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
853 struct igmphdr *ih = igmp_hdr(skb);
854 struct igmpv3_query *ih3 = igmpv3_query_hdr(skb);
855 struct ip_mc_list *im;
856 __be32 group = ih->group;
863 /* Alas, old v1 router presents here. */
865 max_delay = IGMP_Query_Response_Interval;
866 in_dev->mr_v1_seen = jiffies +
867 IGMP_V1_Router_Present_Timeout;
870 /* v2 router present */
871 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
872 in_dev->mr_v2_seen = jiffies +
873 IGMP_V2_Router_Present_Timeout;
875 /* cancel the interface change timer */
876 in_dev->mr_ifc_count = 0;
877 if (del_timer(&in_dev->mr_ifc_timer))
878 __in_dev_put(in_dev);
879 /* clear deleted report items */
880 igmpv3_clear_delrec(in_dev);
881 } else if (len < 12) {
882 return; /* ignore bogus packet; freed by caller */
883 } else if (IGMP_V1_SEEN(in_dev)) {
884 /* This is a v3 query with v1 queriers present */
885 max_delay = IGMP_Query_Response_Interval;
887 } else if (IGMP_V2_SEEN(in_dev)) {
888 /* this is a v3 query with v2 queriers present;
889 * Interpretation of the max_delay code is problematic here.
890 * A real v2 host would use ih_code directly, while v3 has a
891 * different encoding. We use the v3 encoding as more likely
892 * to be intended in a v3 query.
894 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
896 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
899 ih3 = igmpv3_query_hdr(skb);
901 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)
902 + ntohs(ih3->nsrcs)*sizeof(__be32)))
904 ih3 = igmpv3_query_hdr(skb);
907 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
909 max_delay = 1; /* can't mod w/ 0 */
910 in_dev->mr_maxdelay = max_delay;
912 in_dev->mr_qrv = ih3->qrv;
913 if (!group) { /* general query */
915 return; /* no sources allowed */
916 igmp_gq_start_timer(in_dev);
919 /* mark sources to include, if group & source-specific */
920 mark = ih3->nsrcs != 0;
924 * - Start the timers in all of our membership records
925 * that the query applies to for the interface on
926 * which the query arrived excl. those that belong
927 * to a "local" group (224.0.0.X)
928 * - For timers already running check if they need to
930 * - Use the igmp->igmp_code field as the maximum
934 for_each_pmc_rcu(in_dev, im) {
937 if (group && group != im->multiaddr)
939 if (im->multiaddr == IGMP_ALL_HOSTS)
941 spin_lock_bh(&im->lock);
943 im->gsquery = im->gsquery && mark;
946 changed = !im->gsquery ||
947 igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
948 spin_unlock_bh(&im->lock);
950 igmp_mod_timer(im, max_delay);
955 /* called in rcu_read_lock() section */
956 int igmp_rcv(struct sk_buff *skb)
958 /* This basically follows the spec line by line -- see RFC1112 */
960 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
966 if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
969 switch (skb->ip_summed) {
970 case CHECKSUM_COMPLETE:
971 if (!csum_fold(skb->csum))
976 if (__skb_checksum_complete(skb))
982 case IGMP_HOST_MEMBERSHIP_QUERY:
983 igmp_heard_query(in_dev, skb, len);
985 case IGMP_HOST_MEMBERSHIP_REPORT:
986 case IGMPV2_HOST_MEMBERSHIP_REPORT:
987 /* Is it our report looped back? */
988 if (rt_is_output_route(skb_rtable(skb)))
990 /* don't rely on MC router hearing unicast reports */
991 if (skb->pkt_type == PACKET_MULTICAST ||
992 skb->pkt_type == PACKET_BROADCAST)
993 igmp_heard_report(in_dev, ih->group);
996 #ifdef CONFIG_IP_PIMSM_V1
997 return pim_rcv_v1(skb);
999 case IGMPV3_HOST_MEMBERSHIP_REPORT:
1002 case IGMP_HOST_LEAVE_MESSAGE:
1004 case IGMP_MTRACE_RESP:
1019 * Add a filter to a device
1022 static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr)
1024 char buf[MAX_ADDR_LEN];
1025 struct net_device *dev = in_dev->dev;
1027 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1028 We will get multicast token leakage, when IFF_MULTICAST
1029 is changed. This check should be done in dev->set_multicast_list
1030 routine. Something sort of:
1031 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1034 if (arp_mc_map(addr, buf, dev, 0) == 0)
1035 dev_mc_add(dev, buf);
1039 * Remove a filter from a device
1042 static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr)
1044 char buf[MAX_ADDR_LEN];
1045 struct net_device *dev = in_dev->dev;
1047 if (arp_mc_map(addr, buf, dev, 0) == 0)
1048 dev_mc_del(dev, buf);
1051 #ifdef CONFIG_IP_MULTICAST
1053 * deleted ip_mc_list manipulation
1055 static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1057 struct ip_mc_list *pmc;
1059 /* this is an "ip_mc_list" for convenience; only the fields below
1060 * are actually used. In particular, the refcnt and users are not
1061 * used for management of the delete list. Using the same structure
1062 * for deleted items allows change reports to use common code with
1063 * non-deleted or query-response MCA's.
1065 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
1068 spin_lock_bh(&im->lock);
1069 pmc->interface = im->interface;
1070 in_dev_hold(in_dev);
1071 pmc->multiaddr = im->multiaddr;
1072 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1073 IGMP_Unsolicited_Report_Count;
1074 pmc->sfmode = im->sfmode;
1075 if (pmc->sfmode == MCAST_INCLUDE) {
1076 struct ip_sf_list *psf;
1078 pmc->tomb = im->tomb;
1079 pmc->sources = im->sources;
1080 im->tomb = im->sources = NULL;
1081 for (psf=pmc->sources; psf; psf=psf->sf_next)
1082 psf->sf_crcount = pmc->crcount;
1084 spin_unlock_bh(&im->lock);
1086 spin_lock_bh(&in_dev->mc_tomb_lock);
1087 pmc->next = in_dev->mc_tomb;
1088 in_dev->mc_tomb = pmc;
1089 spin_unlock_bh(&in_dev->mc_tomb_lock);
1092 static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr)
1094 struct ip_mc_list *pmc, *pmc_prev;
1095 struct ip_sf_list *psf, *psf_next;
1097 spin_lock_bh(&in_dev->mc_tomb_lock);
1099 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc->next) {
1100 if (pmc->multiaddr == multiaddr)
1106 pmc_prev->next = pmc->next;
1108 in_dev->mc_tomb = pmc->next;
1110 spin_unlock_bh(&in_dev->mc_tomb_lock);
1112 for (psf=pmc->tomb; psf; psf=psf_next) {
1113 psf_next = psf->sf_next;
1116 in_dev_put(pmc->interface);
1121 static void igmpv3_clear_delrec(struct in_device *in_dev)
1123 struct ip_mc_list *pmc, *nextpmc;
1125 spin_lock_bh(&in_dev->mc_tomb_lock);
1126 pmc = in_dev->mc_tomb;
1127 in_dev->mc_tomb = NULL;
1128 spin_unlock_bh(&in_dev->mc_tomb_lock);
1130 for (; pmc; pmc = nextpmc) {
1131 nextpmc = pmc->next;
1132 ip_mc_clear_src(pmc);
1133 in_dev_put(pmc->interface);
1136 /* clear dead sources, too */
1138 for_each_pmc_rcu(in_dev, pmc) {
1139 struct ip_sf_list *psf, *psf_next;
1141 spin_lock_bh(&pmc->lock);
1144 spin_unlock_bh(&pmc->lock);
1145 for (; psf; psf=psf_next) {
1146 psf_next = psf->sf_next;
1154 static void igmp_group_dropped(struct ip_mc_list *im)
1156 struct in_device *in_dev = im->interface;
1157 #ifdef CONFIG_IP_MULTICAST
1163 ip_mc_filter_del(in_dev, im->multiaddr);
1166 #ifdef CONFIG_IP_MULTICAST
1167 if (im->multiaddr == IGMP_ALL_HOSTS)
1170 reporter = im->reporter;
1171 igmp_stop_timer(im);
1173 if (!in_dev->dead) {
1174 if (IGMP_V1_SEEN(in_dev))
1176 if (IGMP_V2_SEEN(in_dev)) {
1178 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
1182 igmpv3_add_delrec(in_dev, im);
1184 igmp_ifc_event(in_dev);
1188 ip_mc_clear_src(im);
1191 static void igmp_group_added(struct ip_mc_list *im)
1193 struct in_device *in_dev = im->interface;
1195 if (im->loaded == 0) {
1197 ip_mc_filter_add(in_dev, im->multiaddr);
1200 #ifdef CONFIG_IP_MULTICAST
1201 if (im->multiaddr == IGMP_ALL_HOSTS)
1206 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1207 spin_lock_bh(&im->lock);
1208 igmp_start_timer(im, IGMP_Initial_Report_Delay);
1209 spin_unlock_bh(&im->lock);
1214 im->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1215 IGMP_Unsolicited_Report_Count;
1216 igmp_ifc_event(in_dev);
1222 * Multicast list managers
1227 * A socket has joined a multicast group on device dev.
1230 void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
1232 struct ip_mc_list *im;
1236 for_each_pmc_rtnl(in_dev, im) {
1237 if (im->multiaddr == addr) {
1239 ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1244 im = kzalloc(sizeof(*im), GFP_KERNEL);
1249 im->interface = in_dev;
1250 in_dev_hold(in_dev);
1251 im->multiaddr = addr;
1252 /* initial mode is (EX, empty) */
1253 im->sfmode = MCAST_EXCLUDE;
1254 im->sfcount[MCAST_EXCLUDE] = 1;
1255 atomic_set(&im->refcnt, 1);
1256 spin_lock_init(&im->lock);
1257 #ifdef CONFIG_IP_MULTICAST
1258 setup_timer(&im->timer, &igmp_timer_expire, (unsigned long)im);
1259 im->unsolicit_count = IGMP_Unsolicited_Report_Count;
1262 im->next_rcu = in_dev->mc_list;
1264 rcu_assign_pointer(in_dev->mc_list, im);
1266 #ifdef CONFIG_IP_MULTICAST
1267 igmpv3_del_delrec(in_dev, im->multiaddr);
1269 igmp_group_added(im);
1271 ip_rt_multicast_event(in_dev);
1275 EXPORT_SYMBOL(ip_mc_inc_group);
1278 * Resend IGMP JOIN report; used for bonding.
1279 * Called with rcu_read_lock()
1281 void ip_mc_rejoin_groups(struct in_device *in_dev)
1283 #ifdef CONFIG_IP_MULTICAST
1284 struct ip_mc_list *im;
1287 for_each_pmc_rcu(in_dev, im) {
1288 if (im->multiaddr == IGMP_ALL_HOSTS)
1291 /* a failover is happening and switches
1292 * must be notified immediately
1294 if (IGMP_V1_SEEN(in_dev))
1295 type = IGMP_HOST_MEMBERSHIP_REPORT;
1296 else if (IGMP_V2_SEEN(in_dev))
1297 type = IGMPV2_HOST_MEMBERSHIP_REPORT;
1299 type = IGMPV3_HOST_MEMBERSHIP_REPORT;
1300 igmp_send_report(in_dev, im, type);
1304 EXPORT_SYMBOL(ip_mc_rejoin_groups);
1307 * A socket has left a multicast group on device dev
1310 void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
1312 struct ip_mc_list *i;
1313 struct ip_mc_list __rcu **ip;
1317 for (ip = &in_dev->mc_list;
1318 (i = rtnl_dereference(*ip)) != NULL;
1319 ip = &i->next_rcu) {
1320 if (i->multiaddr == addr) {
1321 if (--i->users == 0) {
1324 igmp_group_dropped(i);
1327 ip_rt_multicast_event(in_dev);
1336 EXPORT_SYMBOL(ip_mc_dec_group);
1338 /* Device changing type */
1340 void ip_mc_unmap(struct in_device *in_dev)
1342 struct ip_mc_list *pmc;
1346 for_each_pmc_rtnl(in_dev, pmc)
1347 igmp_group_dropped(pmc);
1350 void ip_mc_remap(struct in_device *in_dev)
1352 struct ip_mc_list *pmc;
1356 for_each_pmc_rtnl(in_dev, pmc)
1357 igmp_group_added(pmc);
1360 /* Device going down */
1362 void ip_mc_down(struct in_device *in_dev)
1364 struct ip_mc_list *pmc;
1368 for_each_pmc_rtnl(in_dev, pmc)
1369 igmp_group_dropped(pmc);
1371 #ifdef CONFIG_IP_MULTICAST
1372 in_dev->mr_ifc_count = 0;
1373 if (del_timer(&in_dev->mr_ifc_timer))
1374 __in_dev_put(in_dev);
1375 in_dev->mr_gq_running = 0;
1376 if (del_timer(&in_dev->mr_gq_timer))
1377 __in_dev_put(in_dev);
1378 igmpv3_clear_delrec(in_dev);
1381 ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1384 void ip_mc_init_dev(struct in_device *in_dev)
1388 in_dev->mc_tomb = NULL;
1389 #ifdef CONFIG_IP_MULTICAST
1390 in_dev->mr_gq_running = 0;
1391 setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire,
1392 (unsigned long)in_dev);
1393 in_dev->mr_ifc_count = 0;
1394 in_dev->mc_count = 0;
1395 setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire,
1396 (unsigned long)in_dev);
1397 in_dev->mr_qrv = IGMP_Unsolicited_Report_Count;
1400 spin_lock_init(&in_dev->mc_tomb_lock);
1403 /* Device going up */
1405 void ip_mc_up(struct in_device *in_dev)
1407 struct ip_mc_list *pmc;
1411 ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1413 for_each_pmc_rtnl(in_dev, pmc)
1414 igmp_group_added(pmc);
1418 * Device is about to be destroyed: clean up.
1421 void ip_mc_destroy_dev(struct in_device *in_dev)
1423 struct ip_mc_list *i;
1427 /* Deactivate timers */
1430 while ((i = rtnl_dereference(in_dev->mc_list)) != NULL) {
1431 in_dev->mc_list = i->next_rcu;
1434 igmp_group_dropped(i);
1439 /* RTNL is locked */
1440 static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr)
1442 struct flowi fl = { .fl4_dst = imr->imr_multiaddr.s_addr };
1444 struct net_device *dev = NULL;
1445 struct in_device *idev = NULL;
1447 if (imr->imr_ifindex) {
1448 idev = inetdev_by_index(net, imr->imr_ifindex);
1451 if (imr->imr_address.s_addr) {
1452 dev = __ip_dev_find(net, imr->imr_address.s_addr, false);
1457 if (!dev && !ip_route_output_key(net, &rt, &fl)) {
1462 imr->imr_ifindex = dev->ifindex;
1463 idev = __in_dev_get_rtnl(dev);
1469 * Join a socket to a group
1471 int sysctl_igmp_max_memberships __read_mostly = IP_MAX_MEMBERSHIPS;
1472 int sysctl_igmp_max_msf __read_mostly = IP_MAX_MSF;
1475 static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
1478 struct ip_sf_list *psf, *psf_prev;
1482 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1483 if (psf->sf_inaddr == *psfsrc)
1487 if (!psf || psf->sf_count[sfmode] == 0) {
1488 /* source filter not found, or count wrong => bug */
1491 psf->sf_count[sfmode]--;
1492 if (psf->sf_count[sfmode] == 0) {
1493 ip_rt_multicast_event(pmc->interface);
1495 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1496 #ifdef CONFIG_IP_MULTICAST
1497 struct in_device *in_dev = pmc->interface;
1500 /* no more filters for this source */
1502 psf_prev->sf_next = psf->sf_next;
1504 pmc->sources = psf->sf_next;
1505 #ifdef CONFIG_IP_MULTICAST
1506 if (psf->sf_oldin &&
1507 !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
1508 psf->sf_crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1509 IGMP_Unsolicited_Report_Count;
1510 psf->sf_next = pmc->tomb;
1520 #ifndef CONFIG_IP_MULTICAST
1521 #define igmp_ifc_event(x) do { } while (0)
1524 static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1525 int sfcount, __be32 *psfsrc, int delta)
1527 struct ip_mc_list *pmc;
1534 for_each_pmc_rcu(in_dev, pmc) {
1535 if (*pmca == pmc->multiaddr)
1539 /* MCA not found?? bug */
1543 spin_lock_bh(&pmc->lock);
1545 #ifdef CONFIG_IP_MULTICAST
1550 if (!pmc->sfcount[sfmode])
1552 pmc->sfcount[sfmode]--;
1555 for (i=0; i<sfcount; i++) {
1556 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1558 changerec |= rv > 0;
1562 if (pmc->sfmode == MCAST_EXCLUDE &&
1563 pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1564 pmc->sfcount[MCAST_INCLUDE]) {
1565 #ifdef CONFIG_IP_MULTICAST
1566 struct ip_sf_list *psf;
1569 /* filter mode change */
1570 pmc->sfmode = MCAST_INCLUDE;
1571 #ifdef CONFIG_IP_MULTICAST
1572 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1573 IGMP_Unsolicited_Report_Count;
1574 in_dev->mr_ifc_count = pmc->crcount;
1575 for (psf=pmc->sources; psf; psf = psf->sf_next)
1576 psf->sf_crcount = 0;
1577 igmp_ifc_event(pmc->interface);
1578 } else if (sf_setstate(pmc) || changerec) {
1579 igmp_ifc_event(pmc->interface);
1583 spin_unlock_bh(&pmc->lock);
1588 * Add multicast single-source filter to the interface list
1590 static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
1591 __be32 *psfsrc, int delta)
1593 struct ip_sf_list *psf, *psf_prev;
1596 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1597 if (psf->sf_inaddr == *psfsrc)
1602 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1605 psf->sf_inaddr = *psfsrc;
1607 psf_prev->sf_next = psf;
1611 psf->sf_count[sfmode]++;
1612 if (psf->sf_count[sfmode] == 1) {
1613 ip_rt_multicast_event(pmc->interface);
1618 #ifdef CONFIG_IP_MULTICAST
1619 static void sf_markstate(struct ip_mc_list *pmc)
1621 struct ip_sf_list *psf;
1622 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1624 for (psf=pmc->sources; psf; psf=psf->sf_next)
1625 if (pmc->sfcount[MCAST_EXCLUDE]) {
1626 psf->sf_oldin = mca_xcount ==
1627 psf->sf_count[MCAST_EXCLUDE] &&
1628 !psf->sf_count[MCAST_INCLUDE];
1630 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1633 static int sf_setstate(struct ip_mc_list *pmc)
1635 struct ip_sf_list *psf, *dpsf;
1636 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1637 int qrv = pmc->interface->mr_qrv;
1641 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1642 if (pmc->sfcount[MCAST_EXCLUDE]) {
1643 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1644 !psf->sf_count[MCAST_INCLUDE];
1646 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1648 if (!psf->sf_oldin) {
1649 struct ip_sf_list *prev = NULL;
1651 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next) {
1652 if (dpsf->sf_inaddr == psf->sf_inaddr)
1658 prev->sf_next = dpsf->sf_next;
1660 pmc->tomb = dpsf->sf_next;
1663 psf->sf_crcount = qrv;
1666 } else if (psf->sf_oldin) {
1668 psf->sf_crcount = 0;
1670 * add or update "delete" records if an active filter
1673 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next)
1674 if (dpsf->sf_inaddr == psf->sf_inaddr)
1677 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
1681 /* pmc->lock held by callers */
1682 dpsf->sf_next = pmc->tomb;
1685 dpsf->sf_crcount = qrv;
1694 * Add multicast source filter list to the interface list
1696 static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1697 int sfcount, __be32 *psfsrc, int delta)
1699 struct ip_mc_list *pmc;
1706 for_each_pmc_rcu(in_dev, pmc) {
1707 if (*pmca == pmc->multiaddr)
1711 /* MCA not found?? bug */
1715 spin_lock_bh(&pmc->lock);
1718 #ifdef CONFIG_IP_MULTICAST
1721 isexclude = pmc->sfmode == MCAST_EXCLUDE;
1723 pmc->sfcount[sfmode]++;
1725 for (i=0; i<sfcount; i++) {
1726 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
1733 pmc->sfcount[sfmode]--;
1735 (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1736 } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
1737 #ifdef CONFIG_IP_MULTICAST
1738 struct ip_sf_list *psf;
1739 in_dev = pmc->interface;
1742 /* filter mode change */
1743 if (pmc->sfcount[MCAST_EXCLUDE])
1744 pmc->sfmode = MCAST_EXCLUDE;
1745 else if (pmc->sfcount[MCAST_INCLUDE])
1746 pmc->sfmode = MCAST_INCLUDE;
1747 #ifdef CONFIG_IP_MULTICAST
1748 /* else no filters; keep old mode for reports */
1750 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1751 IGMP_Unsolicited_Report_Count;
1752 in_dev->mr_ifc_count = pmc->crcount;
1753 for (psf=pmc->sources; psf; psf = psf->sf_next)
1754 psf->sf_crcount = 0;
1755 igmp_ifc_event(in_dev);
1756 } else if (sf_setstate(pmc)) {
1757 igmp_ifc_event(in_dev);
1760 spin_unlock_bh(&pmc->lock);
1764 static void ip_mc_clear_src(struct ip_mc_list *pmc)
1766 struct ip_sf_list *psf, *nextpsf;
1768 for (psf=pmc->tomb; psf; psf=nextpsf) {
1769 nextpsf = psf->sf_next;
1773 for (psf=pmc->sources; psf; psf=nextpsf) {
1774 nextpsf = psf->sf_next;
1777 pmc->sources = NULL;
1778 pmc->sfmode = MCAST_EXCLUDE;
1779 pmc->sfcount[MCAST_INCLUDE] = 0;
1780 pmc->sfcount[MCAST_EXCLUDE] = 1;
1785 * Join a multicast group
1787 int ip_mc_join_group(struct sock *sk , struct ip_mreqn *imr)
1790 __be32 addr = imr->imr_multiaddr.s_addr;
1791 struct ip_mc_socklist *iml = NULL, *i;
1792 struct in_device *in_dev;
1793 struct inet_sock *inet = inet_sk(sk);
1794 struct net *net = sock_net(sk);
1798 if (!ipv4_is_multicast(addr))
1803 in_dev = ip_mc_find_dev(net, imr);
1812 ifindex = imr->imr_ifindex;
1813 for_each_pmc_rtnl(inet, i) {
1814 if (i->multi.imr_multiaddr.s_addr == addr &&
1815 i->multi.imr_ifindex == ifindex)
1820 if (count >= sysctl_igmp_max_memberships)
1822 iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL);
1826 memcpy(&iml->multi, imr, sizeof(*imr));
1827 iml->next_rcu = inet->mc_list;
1829 iml->sfmode = MCAST_EXCLUDE;
1830 rcu_assign_pointer(inet->mc_list, iml);
1831 ip_mc_inc_group(in_dev, addr);
1837 EXPORT_SYMBOL(ip_mc_join_group);
1839 static void ip_sf_socklist_reclaim(struct rcu_head *rp)
1841 kfree(container_of(rp, struct ip_sf_socklist, rcu));
1842 /* sk_omem_alloc should have been decreased by the caller*/
1845 static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
1846 struct in_device *in_dev)
1848 struct ip_sf_socklist *psf = rtnl_dereference(iml->sflist);
1852 /* any-source empty exclude case */
1853 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1854 iml->sfmode, 0, NULL, 0);
1856 err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1857 iml->sfmode, psf->sl_count, psf->sl_addr, 0);
1858 rcu_assign_pointer(iml->sflist, NULL);
1859 /* decrease mem now to avoid the memleak warning */
1860 atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc);
1861 call_rcu(&psf->rcu, ip_sf_socklist_reclaim);
1866 static void ip_mc_socklist_reclaim(struct rcu_head *rp)
1868 kfree(container_of(rp, struct ip_mc_socklist, rcu));
1869 /* sk_omem_alloc should have been decreased by the caller*/
1874 * Ask a socket to leave a group.
1877 int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
1879 struct inet_sock *inet = inet_sk(sk);
1880 struct ip_mc_socklist *iml;
1881 struct ip_mc_socklist __rcu **imlp;
1882 struct in_device *in_dev;
1883 struct net *net = sock_net(sk);
1884 __be32 group = imr->imr_multiaddr.s_addr;
1886 int ret = -EADDRNOTAVAIL;
1889 in_dev = ip_mc_find_dev(net, imr);
1890 ifindex = imr->imr_ifindex;
1891 for (imlp = &inet->mc_list;
1892 (iml = rtnl_dereference(*imlp)) != NULL;
1893 imlp = &iml->next_rcu) {
1894 if (iml->multi.imr_multiaddr.s_addr != group)
1897 if (iml->multi.imr_ifindex != ifindex)
1899 } else if (imr->imr_address.s_addr && imr->imr_address.s_addr !=
1900 iml->multi.imr_address.s_addr)
1903 (void) ip_mc_leave_src(sk, iml, in_dev);
1905 *imlp = iml->next_rcu;
1908 ip_mc_dec_group(in_dev, group);
1910 /* decrease mem now to avoid the memleak warning */
1911 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
1912 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
1921 int ip_mc_source(int add, int omode, struct sock *sk, struct
1922 ip_mreq_source *mreqs, int ifindex)
1925 struct ip_mreqn imr;
1926 __be32 addr = mreqs->imr_multiaddr;
1927 struct ip_mc_socklist *pmc;
1928 struct in_device *in_dev = NULL;
1929 struct inet_sock *inet = inet_sk(sk);
1930 struct ip_sf_socklist *psl;
1931 struct net *net = sock_net(sk);
1935 if (!ipv4_is_multicast(addr))
1940 imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
1941 imr.imr_address.s_addr = mreqs->imr_interface;
1942 imr.imr_ifindex = ifindex;
1943 in_dev = ip_mc_find_dev(net, &imr);
1949 err = -EADDRNOTAVAIL;
1951 for_each_pmc_rtnl(inet, pmc) {
1952 if ((pmc->multi.imr_multiaddr.s_addr ==
1953 imr.imr_multiaddr.s_addr) &&
1954 (pmc->multi.imr_ifindex == imr.imr_ifindex))
1957 if (!pmc) { /* must have a prior join */
1961 /* if a source filter was set, must be the same mode as before */
1963 if (pmc->sfmode != omode) {
1967 } else if (pmc->sfmode != omode) {
1968 /* allow mode switches for empty-set filters */
1969 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
1970 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
1972 pmc->sfmode = omode;
1975 psl = rtnl_dereference(pmc->sflist);
1978 goto done; /* err = -EADDRNOTAVAIL */
1980 for (i=0; i<psl->sl_count; i++) {
1981 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
1986 if (rv) /* source not found */
1987 goto done; /* err = -EADDRNOTAVAIL */
1989 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
1990 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
1995 /* update the interface filter */
1996 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
1997 &mreqs->imr_sourceaddr, 1);
1999 for (j=i+1; j<psl->sl_count; j++)
2000 psl->sl_addr[j-1] = psl->sl_addr[j];
2005 /* else, add a new source to the filter */
2007 if (psl && psl->sl_count >= sysctl_igmp_max_msf) {
2011 if (!psl || psl->sl_count == psl->sl_max) {
2012 struct ip_sf_socklist *newpsl;
2013 int count = IP_SFBLOCK;
2016 count += psl->sl_max;
2017 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
2022 newpsl->sl_max = count;
2023 newpsl->sl_count = count - IP_SFBLOCK;
2025 for (i=0; i<psl->sl_count; i++)
2026 newpsl->sl_addr[i] = psl->sl_addr[i];
2027 /* decrease mem now to avoid the memleak warning */
2028 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2029 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
2031 rcu_assign_pointer(pmc->sflist, newpsl);
2034 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
2035 for (i=0; i<psl->sl_count; i++) {
2036 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
2041 if (rv == 0) /* address already there is an error */
2043 for (j=psl->sl_count-1; j>=i; j--)
2044 psl->sl_addr[j+1] = psl->sl_addr[j];
2045 psl->sl_addr[i] = mreqs->imr_sourceaddr;
2048 /* update the interface list */
2049 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
2050 &mreqs->imr_sourceaddr, 1);
2054 return ip_mc_leave_group(sk, &imr);
2058 int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
2061 struct ip_mreqn imr;
2062 __be32 addr = msf->imsf_multiaddr;
2063 struct ip_mc_socklist *pmc;
2064 struct in_device *in_dev;
2065 struct inet_sock *inet = inet_sk(sk);
2066 struct ip_sf_socklist *newpsl, *psl;
2067 struct net *net = sock_net(sk);
2070 if (!ipv4_is_multicast(addr))
2072 if (msf->imsf_fmode != MCAST_INCLUDE &&
2073 msf->imsf_fmode != MCAST_EXCLUDE)
2078 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2079 imr.imr_address.s_addr = msf->imsf_interface;
2080 imr.imr_ifindex = ifindex;
2081 in_dev = ip_mc_find_dev(net, &imr);
2088 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2089 if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
2094 for_each_pmc_rtnl(inet, pmc) {
2095 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2096 pmc->multi.imr_ifindex == imr.imr_ifindex)
2099 if (!pmc) { /* must have a prior join */
2103 if (msf->imsf_numsrc) {
2104 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
2110 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2111 memcpy(newpsl->sl_addr, msf->imsf_slist,
2112 msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2113 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2114 msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2116 sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2121 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2122 msf->imsf_fmode, 0, NULL, 0);
2124 psl = rtnl_dereference(pmc->sflist);
2126 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2127 psl->sl_count, psl->sl_addr, 0);
2128 /* decrease mem now to avoid the memleak warning */
2129 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2130 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
2132 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2134 rcu_assign_pointer(pmc->sflist, newpsl);
2135 pmc->sfmode = msf->imsf_fmode;
2140 err = ip_mc_leave_group(sk, &imr);
2144 int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2145 struct ip_msfilter __user *optval, int __user *optlen)
2147 int err, len, count, copycount;
2148 struct ip_mreqn imr;
2149 __be32 addr = msf->imsf_multiaddr;
2150 struct ip_mc_socklist *pmc;
2151 struct in_device *in_dev;
2152 struct inet_sock *inet = inet_sk(sk);
2153 struct ip_sf_socklist *psl;
2154 struct net *net = sock_net(sk);
2156 if (!ipv4_is_multicast(addr))
2161 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2162 imr.imr_address.s_addr = msf->imsf_interface;
2163 imr.imr_ifindex = 0;
2164 in_dev = ip_mc_find_dev(net, &imr);
2170 err = -EADDRNOTAVAIL;
2172 for_each_pmc_rtnl(inet, pmc) {
2173 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2174 pmc->multi.imr_ifindex == imr.imr_ifindex)
2177 if (!pmc) /* must have a prior join */
2179 msf->imsf_fmode = pmc->sfmode;
2180 psl = rtnl_dereference(pmc->sflist);
2186 count = psl->sl_count;
2188 copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2189 len = copycount * sizeof(psl->sl_addr[0]);
2190 msf->imsf_numsrc = count;
2191 if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2192 copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2196 copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2204 int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2205 struct group_filter __user *optval, int __user *optlen)
2207 int err, i, count, copycount;
2208 struct sockaddr_in *psin;
2210 struct ip_mc_socklist *pmc;
2211 struct inet_sock *inet = inet_sk(sk);
2212 struct ip_sf_socklist *psl;
2214 psin = (struct sockaddr_in *)&gsf->gf_group;
2215 if (psin->sin_family != AF_INET)
2217 addr = psin->sin_addr.s_addr;
2218 if (!ipv4_is_multicast(addr))
2223 err = -EADDRNOTAVAIL;
2225 for_each_pmc_rtnl(inet, pmc) {
2226 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2227 pmc->multi.imr_ifindex == gsf->gf_interface)
2230 if (!pmc) /* must have a prior join */
2232 gsf->gf_fmode = pmc->sfmode;
2233 psl = rtnl_dereference(pmc->sflist);
2235 count = psl ? psl->sl_count : 0;
2236 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2237 gsf->gf_numsrc = count;
2238 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2239 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2242 for (i=0; i<copycount; i++) {
2243 struct sockaddr_storage ss;
2245 psin = (struct sockaddr_in *)&ss;
2246 memset(&ss, 0, sizeof(ss));
2247 psin->sin_family = AF_INET;
2248 psin->sin_addr.s_addr = psl->sl_addr[i];
2249 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2259 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2261 int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif)
2263 struct inet_sock *inet = inet_sk(sk);
2264 struct ip_mc_socklist *pmc;
2265 struct ip_sf_socklist *psl;
2270 if (!ipv4_is_multicast(loc_addr))
2274 for_each_pmc_rcu(inet, pmc) {
2275 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2276 pmc->multi.imr_ifindex == dif)
2282 psl = rcu_dereference(pmc->sflist);
2283 ret = (pmc->sfmode == MCAST_EXCLUDE);
2287 for (i=0; i<psl->sl_count; i++) {
2288 if (psl->sl_addr[i] == rmt_addr)
2292 if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
2294 if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
2304 * A socket is closing.
2307 void ip_mc_drop_socket(struct sock *sk)
2309 struct inet_sock *inet = inet_sk(sk);
2310 struct ip_mc_socklist *iml;
2311 struct net *net = sock_net(sk);
2313 if (inet->mc_list == NULL)
2317 while ((iml = rtnl_dereference(inet->mc_list)) != NULL) {
2318 struct in_device *in_dev;
2320 inet->mc_list = iml->next_rcu;
2321 in_dev = inetdev_by_index(net, iml->multi.imr_ifindex);
2322 (void) ip_mc_leave_src(sk, iml, in_dev);
2324 ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
2325 /* decrease mem now to avoid the memleak warning */
2326 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
2327 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
2332 int ip_check_mc(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u16 proto)
2334 struct ip_mc_list *im;
2335 struct ip_sf_list *psf;
2339 for_each_pmc_rcu(in_dev, im) {
2340 if (im->multiaddr == mc_addr)
2343 if (im && proto == IPPROTO_IGMP) {
2347 for (psf=im->sources; psf; psf=psf->sf_next) {
2348 if (psf->sf_inaddr == src_addr)
2352 rv = psf->sf_count[MCAST_INCLUDE] ||
2353 psf->sf_count[MCAST_EXCLUDE] !=
2354 im->sfcount[MCAST_EXCLUDE];
2356 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2358 rv = 1; /* unspecified source; tentatively allow */
2364 #if defined(CONFIG_PROC_FS)
2365 struct igmp_mc_iter_state {
2366 struct seq_net_private p;
2367 struct net_device *dev;
2368 struct in_device *in_dev;
2371 #define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2373 static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2375 struct net *net = seq_file_net(seq);
2376 struct ip_mc_list *im = NULL;
2377 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2379 state->in_dev = NULL;
2380 for_each_netdev_rcu(net, state->dev) {
2381 struct in_device *in_dev;
2383 in_dev = __in_dev_get_rcu(state->dev);
2386 im = rcu_dereference(in_dev->mc_list);
2388 state->in_dev = in_dev;
2395 static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2397 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2399 im = rcu_dereference(im->next_rcu);
2401 state->dev = next_net_device_rcu(state->dev);
2403 state->in_dev = NULL;
2406 state->in_dev = __in_dev_get_rcu(state->dev);
2409 im = rcu_dereference(state->in_dev->mc_list);
2414 static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2416 struct ip_mc_list *im = igmp_mc_get_first(seq);
2418 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2420 return pos ? NULL : im;
2423 static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
2427 return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2430 static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2432 struct ip_mc_list *im;
2433 if (v == SEQ_START_TOKEN)
2434 im = igmp_mc_get_first(seq);
2436 im = igmp_mc_get_next(seq, v);
2441 static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
2444 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2446 state->in_dev = NULL;
2451 static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2453 if (v == SEQ_START_TOKEN)
2455 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2457 struct ip_mc_list *im = (struct ip_mc_list *)v;
2458 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2460 #ifdef CONFIG_IP_MULTICAST
2461 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2462 IGMP_V2_SEEN(state->in_dev) ? "V2" :
2468 if (rcu_dereference(state->in_dev->mc_list) == im) {
2469 seq_printf(seq, "%d\t%-10s: %5d %7s\n",
2470 state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier);
2474 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
2475 im->multiaddr, im->users,
2476 im->tm_running, im->tm_running ?
2477 jiffies_to_clock_t(im->timer.expires-jiffies) : 0,
2483 static const struct seq_operations igmp_mc_seq_ops = {
2484 .start = igmp_mc_seq_start,
2485 .next = igmp_mc_seq_next,
2486 .stop = igmp_mc_seq_stop,
2487 .show = igmp_mc_seq_show,
2490 static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2492 return seq_open_net(inode, file, &igmp_mc_seq_ops,
2493 sizeof(struct igmp_mc_iter_state));
2496 static const struct file_operations igmp_mc_seq_fops = {
2497 .owner = THIS_MODULE,
2498 .open = igmp_mc_seq_open,
2500 .llseek = seq_lseek,
2501 .release = seq_release_net,
2504 struct igmp_mcf_iter_state {
2505 struct seq_net_private p;
2506 struct net_device *dev;
2507 struct in_device *idev;
2508 struct ip_mc_list *im;
2511 #define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2513 static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2515 struct net *net = seq_file_net(seq);
2516 struct ip_sf_list *psf = NULL;
2517 struct ip_mc_list *im = NULL;
2518 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2522 for_each_netdev_rcu(net, state->dev) {
2523 struct in_device *idev;
2524 idev = __in_dev_get_rcu(state->dev);
2525 if (unlikely(idev == NULL))
2527 im = rcu_dereference(idev->mc_list);
2528 if (likely(im != NULL)) {
2529 spin_lock_bh(&im->lock);
2531 if (likely(psf != NULL)) {
2536 spin_unlock_bh(&im->lock);
2542 static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2544 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2548 spin_unlock_bh(&state->im->lock);
2549 state->im = state->im->next;
2550 while (!state->im) {
2551 state->dev = next_net_device_rcu(state->dev);
2556 state->idev = __in_dev_get_rcu(state->dev);
2559 state->im = rcu_dereference(state->idev->mc_list);
2563 spin_lock_bh(&state->im->lock);
2564 psf = state->im->sources;
2570 static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2572 struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2574 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2576 return pos ? NULL : psf;
2579 static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2583 return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2586 static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2588 struct ip_sf_list *psf;
2589 if (v == SEQ_START_TOKEN)
2590 psf = igmp_mcf_get_first(seq);
2592 psf = igmp_mcf_get_next(seq, v);
2597 static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
2600 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2601 if (likely(state->im != NULL)) {
2602 spin_unlock_bh(&state->im->lock);
2610 static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2612 struct ip_sf_list *psf = (struct ip_sf_list *)v;
2613 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2615 if (v == SEQ_START_TOKEN) {
2618 "%10s %10s %6s %6s\n", "Idx",
2620 "SRC", "INC", "EXC");
2624 "0x%08x %6lu %6lu\n",
2625 state->dev->ifindex, state->dev->name,
2626 ntohl(state->im->multiaddr),
2627 ntohl(psf->sf_inaddr),
2628 psf->sf_count[MCAST_INCLUDE],
2629 psf->sf_count[MCAST_EXCLUDE]);
2634 static const struct seq_operations igmp_mcf_seq_ops = {
2635 .start = igmp_mcf_seq_start,
2636 .next = igmp_mcf_seq_next,
2637 .stop = igmp_mcf_seq_stop,
2638 .show = igmp_mcf_seq_show,
2641 static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2643 return seq_open_net(inode, file, &igmp_mcf_seq_ops,
2644 sizeof(struct igmp_mcf_iter_state));
2647 static const struct file_operations igmp_mcf_seq_fops = {
2648 .owner = THIS_MODULE,
2649 .open = igmp_mcf_seq_open,
2651 .llseek = seq_lseek,
2652 .release = seq_release_net,
2655 static int __net_init igmp_net_init(struct net *net)
2657 struct proc_dir_entry *pde;
2659 pde = proc_net_fops_create(net, "igmp", S_IRUGO, &igmp_mc_seq_fops);
2662 pde = proc_net_fops_create(net, "mcfilter", S_IRUGO, &igmp_mcf_seq_fops);
2668 proc_net_remove(net, "igmp");
2673 static void __net_exit igmp_net_exit(struct net *net)
2675 proc_net_remove(net, "mcfilter");
2676 proc_net_remove(net, "igmp");
2679 static struct pernet_operations igmp_net_ops = {
2680 .init = igmp_net_init,
2681 .exit = igmp_net_exit,
2684 int __init igmp_mc_proc_init(void)
2686 return register_pernet_subsys(&igmp_net_ops);