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.
12 * Alan Cox <alan@lxorguk.ukuu.org.uk>
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
35 * Tsu-Sheng Tsao E-mail: chihjenc@scf.usc.edu and tsusheng@scf.usc.edu
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 <linux/types.h>
77 #include <linux/kernel.h>
78 #include <linux/jiffies.h>
79 #include <linux/string.h>
80 #include <linux/socket.h>
81 #include <linux/sockios.h>
83 #include <linux/inet.h>
84 #include <linux/netdevice.h>
85 #include <linux/skbuff.h>
86 #include <linux/inetdevice.h>
87 #include <linux/igmp.h>
88 #include <linux/if_arp.h>
89 #include <linux/rtnetlink.h>
90 #include <linux/times.h>
92 #include <net/net_namespace.h>
95 #include <net/protocol.h>
96 #include <net/route.h>
98 #include <net/checksum.h>
99 #include <linux/netfilter_ipv4.h>
100 #ifdef CONFIG_IP_MROUTE
101 #include <linux/mroute.h>
103 #ifdef CONFIG_PROC_FS
104 #include <linux/proc_fs.h>
105 #include <linux/seq_file.h>
108 #define IP_MAX_MEMBERSHIPS 20
109 #define IP_MAX_MSF 10
111 #ifdef CONFIG_IP_MULTICAST
112 /* Parameter names and values are taken from igmp-v2-06 draft */
114 #define IGMP_V1_Router_Present_Timeout (400*HZ)
115 #define IGMP_V2_Router_Present_Timeout (400*HZ)
116 #define IGMP_Unsolicited_Report_Interval (10*HZ)
117 #define IGMP_Query_Response_Interval (10*HZ)
118 #define IGMP_Unsolicited_Report_Count 2
121 #define IGMP_Initial_Report_Delay (1)
123 /* IGMP_Initial_Report_Delay is not from IGMP specs!
124 * IGMP specs require to report membership immediately after
125 * joining a group, but we delay the first report by a
126 * small interval. It seems more natural and still does not
127 * contradict to specs provided this delay is small enough.
130 #define IGMP_V1_SEEN(in_dev) \
131 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \
132 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 1 || \
133 ((in_dev)->mr_v1_seen && \
134 time_before(jiffies, (in_dev)->mr_v1_seen)))
135 #define IGMP_V2_SEEN(in_dev) \
136 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \
137 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 2 || \
138 ((in_dev)->mr_v2_seen && \
139 time_before(jiffies, (in_dev)->mr_v2_seen)))
141 static void igmpv3_add_delrec(struct in_device
*in_dev
, struct ip_mc_list
*im
);
142 static void igmpv3_del_delrec(struct in_device
*in_dev
, __be32 multiaddr
);
143 static void igmpv3_clear_delrec(struct in_device
*in_dev
);
144 static int sf_setstate(struct ip_mc_list
*pmc
);
145 static void sf_markstate(struct ip_mc_list
*pmc
);
147 static void ip_mc_clear_src(struct ip_mc_list
*pmc
);
148 static int ip_mc_add_src(struct in_device
*in_dev
, __be32
*pmca
, int sfmode
,
149 int sfcount
, __be32
*psfsrc
, int delta
);
151 static void ip_ma_put(struct ip_mc_list
*im
)
153 if (atomic_dec_and_test(&im
->refcnt
)) {
154 in_dev_put(im
->interface
);
159 #define for_each_pmc_rcu(in_dev, pmc) \
160 for (pmc = rcu_dereference(in_dev->mc_list); \
162 pmc = rcu_dereference(pmc->next_rcu))
164 #define for_each_pmc_rtnl(in_dev, pmc) \
165 for (pmc = rtnl_dereference(in_dev->mc_list); \
167 pmc = rtnl_dereference(pmc->next_rcu))
169 #ifdef CONFIG_IP_MULTICAST
175 static void igmp_stop_timer(struct ip_mc_list
*im
)
177 spin_lock_bh(&im
->lock
);
178 if (del_timer(&im
->timer
))
179 atomic_dec(&im
->refcnt
);
182 im
->unsolicit_count
= 0;
183 spin_unlock_bh(&im
->lock
);
186 /* It must be called with locked im->lock */
187 static void igmp_start_timer(struct ip_mc_list
*im
, int max_delay
)
189 int tv
= net_random() % max_delay
;
192 if (!mod_timer(&im
->timer
, jiffies
+tv
+2))
193 atomic_inc(&im
->refcnt
);
196 static void igmp_gq_start_timer(struct in_device
*in_dev
)
198 int tv
= net_random() % in_dev
->mr_maxdelay
;
200 in_dev
->mr_gq_running
= 1;
201 if (!mod_timer(&in_dev
->mr_gq_timer
, jiffies
+tv
+2))
205 static void igmp_ifc_start_timer(struct in_device
*in_dev
, int delay
)
207 int tv
= net_random() % delay
;
209 if (!mod_timer(&in_dev
->mr_ifc_timer
, jiffies
+tv
+2))
213 static void igmp_mod_timer(struct ip_mc_list
*im
, int max_delay
)
215 spin_lock_bh(&im
->lock
);
216 im
->unsolicit_count
= 0;
217 if (del_timer(&im
->timer
)) {
218 if ((long)(im
->timer
.expires
-jiffies
) < max_delay
) {
219 add_timer(&im
->timer
);
221 spin_unlock_bh(&im
->lock
);
224 atomic_dec(&im
->refcnt
);
226 igmp_start_timer(im
, max_delay
);
227 spin_unlock_bh(&im
->lock
);
232 * Send an IGMP report.
235 #define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
238 static int is_in(struct ip_mc_list
*pmc
, struct ip_sf_list
*psf
, int type
,
239 int gdeleted
, int sdeleted
)
242 case IGMPV3_MODE_IS_INCLUDE
:
243 case IGMPV3_MODE_IS_EXCLUDE
:
244 if (gdeleted
|| sdeleted
)
246 if (!(pmc
->gsquery
&& !psf
->sf_gsresp
)) {
247 if (pmc
->sfmode
== MCAST_INCLUDE
)
249 /* don't include if this source is excluded
252 if (psf
->sf_count
[MCAST_INCLUDE
])
253 return type
== IGMPV3_MODE_IS_INCLUDE
;
254 return pmc
->sfcount
[MCAST_EXCLUDE
] ==
255 psf
->sf_count
[MCAST_EXCLUDE
];
258 case IGMPV3_CHANGE_TO_INCLUDE
:
259 if (gdeleted
|| sdeleted
)
261 return psf
->sf_count
[MCAST_INCLUDE
] != 0;
262 case IGMPV3_CHANGE_TO_EXCLUDE
:
263 if (gdeleted
|| sdeleted
)
265 if (pmc
->sfcount
[MCAST_EXCLUDE
] == 0 ||
266 psf
->sf_count
[MCAST_INCLUDE
])
268 return pmc
->sfcount
[MCAST_EXCLUDE
] ==
269 psf
->sf_count
[MCAST_EXCLUDE
];
270 case IGMPV3_ALLOW_NEW_SOURCES
:
271 if (gdeleted
|| !psf
->sf_crcount
)
273 return (pmc
->sfmode
== MCAST_INCLUDE
) ^ sdeleted
;
274 case IGMPV3_BLOCK_OLD_SOURCES
:
275 if (pmc
->sfmode
== MCAST_INCLUDE
)
276 return gdeleted
|| (psf
->sf_crcount
&& sdeleted
);
277 return psf
->sf_crcount
&& !gdeleted
&& !sdeleted
;
283 igmp_scount(struct ip_mc_list
*pmc
, int type
, int gdeleted
, int sdeleted
)
285 struct ip_sf_list
*psf
;
288 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
289 if (!is_in(pmc
, psf
, type
, gdeleted
, sdeleted
))
296 #define igmp_skb_size(skb) (*(unsigned int *)((skb)->cb))
298 static struct sk_buff
*igmpv3_newpack(struct net_device
*dev
, int size
)
303 struct igmpv3_report
*pig
;
304 struct net
*net
= dev_net(dev
);
306 int hlen
= LL_RESERVED_SPACE(dev
);
307 int tlen
= dev
->needed_tailroom
;
310 skb
= alloc_skb(size
+ hlen
+ tlen
,
311 GFP_ATOMIC
| __GFP_NOWARN
);
318 igmp_skb_size(skb
) = size
;
320 rt
= ip_route_output_ports(net
, &fl4
, NULL
, IGMPV3_ALL_MCR
, 0,
322 IPPROTO_IGMP
, 0, dev
->ifindex
);
328 skb_dst_set(skb
, &rt
->dst
);
331 skb_reserve(skb
, hlen
);
333 skb_reset_network_header(skb
);
335 skb_put(skb
, sizeof(struct iphdr
) + 4);
338 pip
->ihl
= (sizeof(struct iphdr
)+4)>>2;
340 pip
->frag_off
= htons(IP_DF
);
342 pip
->daddr
= fl4
.daddr
;
343 pip
->saddr
= fl4
.saddr
;
344 pip
->protocol
= IPPROTO_IGMP
;
345 pip
->tot_len
= 0; /* filled in later */
346 ip_select_ident(pip
, &rt
->dst
, NULL
);
347 ((u8
*)&pip
[1])[0] = IPOPT_RA
;
348 ((u8
*)&pip
[1])[1] = 4;
349 ((u8
*)&pip
[1])[2] = 0;
350 ((u8
*)&pip
[1])[3] = 0;
352 skb
->transport_header
= skb
->network_header
+ sizeof(struct iphdr
) + 4;
353 skb_put(skb
, sizeof(*pig
));
354 pig
= igmpv3_report_hdr(skb
);
355 pig
->type
= IGMPV3_HOST_MEMBERSHIP_REPORT
;
363 static int igmpv3_sendpack(struct sk_buff
*skb
)
365 struct igmphdr
*pig
= igmp_hdr(skb
);
366 const int igmplen
= skb_tail_pointer(skb
) - skb_transport_header(skb
);
368 pig
->csum
= ip_compute_csum(igmp_hdr(skb
), igmplen
);
370 return ip_local_out(skb
);
373 static int grec_size(struct ip_mc_list
*pmc
, int type
, int gdel
, int sdel
)
375 return sizeof(struct igmpv3_grec
) + 4*igmp_scount(pmc
, type
, gdel
, sdel
);
378 static struct sk_buff
*add_grhead(struct sk_buff
*skb
, struct ip_mc_list
*pmc
,
379 int type
, struct igmpv3_grec
**ppgr
)
381 struct net_device
*dev
= pmc
->interface
->dev
;
382 struct igmpv3_report
*pih
;
383 struct igmpv3_grec
*pgr
;
386 skb
= igmpv3_newpack(dev
, dev
->mtu
);
389 pgr
= (struct igmpv3_grec
*)skb_put(skb
, sizeof(struct igmpv3_grec
));
390 pgr
->grec_type
= type
;
391 pgr
->grec_auxwords
= 0;
393 pgr
->grec_mca
= pmc
->multiaddr
;
394 pih
= igmpv3_report_hdr(skb
);
395 pih
->ngrec
= htons(ntohs(pih
->ngrec
)+1);
400 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? igmp_skb_size(skb) - (skb)->len : \
401 skb_tailroom(skb)) : 0)
403 static struct sk_buff
*add_grec(struct sk_buff
*skb
, struct ip_mc_list
*pmc
,
404 int type
, int gdeleted
, int sdeleted
)
406 struct net_device
*dev
= pmc
->interface
->dev
;
407 struct igmpv3_report
*pih
;
408 struct igmpv3_grec
*pgr
= NULL
;
409 struct ip_sf_list
*psf
, *psf_next
, *psf_prev
, **psf_list
;
410 int scount
, stotal
, first
, isquery
, truncate
;
412 if (pmc
->multiaddr
== IGMP_ALL_HOSTS
)
415 isquery
= type
== IGMPV3_MODE_IS_INCLUDE
||
416 type
== IGMPV3_MODE_IS_EXCLUDE
;
417 truncate
= type
== IGMPV3_MODE_IS_EXCLUDE
||
418 type
== IGMPV3_CHANGE_TO_EXCLUDE
;
422 psf_list
= sdeleted
? &pmc
->tomb
: &pmc
->sources
;
427 pih
= skb
? igmpv3_report_hdr(skb
) : NULL
;
429 /* EX and TO_EX get a fresh packet, if needed */
431 if (pih
&& pih
->ngrec
&&
432 AVAILABLE(skb
) < grec_size(pmc
, type
, gdeleted
, sdeleted
)) {
434 igmpv3_sendpack(skb
);
435 skb
= igmpv3_newpack(dev
, dev
->mtu
);
440 for (psf
=*psf_list
; psf
; psf
=psf_next
) {
443 psf_next
= psf
->sf_next
;
445 if (!is_in(pmc
, psf
, type
, gdeleted
, sdeleted
)) {
450 /* clear marks on query responses */
454 if (AVAILABLE(skb
) < sizeof(__be32
) +
455 first
*sizeof(struct igmpv3_grec
)) {
456 if (truncate
&& !first
)
457 break; /* truncate these */
459 pgr
->grec_nsrcs
= htons(scount
);
461 igmpv3_sendpack(skb
);
462 skb
= igmpv3_newpack(dev
, dev
->mtu
);
467 skb
= add_grhead(skb
, pmc
, type
, &pgr
);
472 psrc
= (__be32
*)skb_put(skb
, sizeof(__be32
));
473 *psrc
= psf
->sf_inaddr
;
475 if ((type
== IGMPV3_ALLOW_NEW_SOURCES
||
476 type
== IGMPV3_BLOCK_OLD_SOURCES
) && psf
->sf_crcount
) {
478 if ((sdeleted
|| gdeleted
) && psf
->sf_crcount
== 0) {
480 psf_prev
->sf_next
= psf
->sf_next
;
482 *psf_list
= psf
->sf_next
;
492 if (type
== IGMPV3_ALLOW_NEW_SOURCES
||
493 type
== IGMPV3_BLOCK_OLD_SOURCES
)
495 if (pmc
->crcount
|| isquery
) {
496 /* make sure we have room for group header */
497 if (skb
&& AVAILABLE(skb
)<sizeof(struct igmpv3_grec
)) {
498 igmpv3_sendpack(skb
);
499 skb
= NULL
; /* add_grhead will get a new one */
501 skb
= add_grhead(skb
, pmc
, type
, &pgr
);
505 pgr
->grec_nsrcs
= htons(scount
);
508 pmc
->gsquery
= 0; /* clear query state on report */
512 static int igmpv3_send_report(struct in_device
*in_dev
, struct ip_mc_list
*pmc
)
514 struct sk_buff
*skb
= NULL
;
519 for_each_pmc_rcu(in_dev
, pmc
) {
520 if (pmc
->multiaddr
== IGMP_ALL_HOSTS
)
522 spin_lock_bh(&pmc
->lock
);
523 if (pmc
->sfcount
[MCAST_EXCLUDE
])
524 type
= IGMPV3_MODE_IS_EXCLUDE
;
526 type
= IGMPV3_MODE_IS_INCLUDE
;
527 skb
= add_grec(skb
, pmc
, type
, 0, 0);
528 spin_unlock_bh(&pmc
->lock
);
532 spin_lock_bh(&pmc
->lock
);
533 if (pmc
->sfcount
[MCAST_EXCLUDE
])
534 type
= IGMPV3_MODE_IS_EXCLUDE
;
536 type
= IGMPV3_MODE_IS_INCLUDE
;
537 skb
= add_grec(skb
, pmc
, type
, 0, 0);
538 spin_unlock_bh(&pmc
->lock
);
542 return igmpv3_sendpack(skb
);
546 * remove zero-count source records from a source filter list
548 static void igmpv3_clear_zeros(struct ip_sf_list
**ppsf
)
550 struct ip_sf_list
*psf_prev
, *psf_next
, *psf
;
553 for (psf
=*ppsf
; psf
; psf
= psf_next
) {
554 psf_next
= psf
->sf_next
;
555 if (psf
->sf_crcount
== 0) {
557 psf_prev
->sf_next
= psf
->sf_next
;
559 *ppsf
= psf
->sf_next
;
566 static void igmpv3_send_cr(struct in_device
*in_dev
)
568 struct ip_mc_list
*pmc
, *pmc_prev
, *pmc_next
;
569 struct sk_buff
*skb
= NULL
;
573 spin_lock_bh(&in_dev
->mc_tomb_lock
);
577 for (pmc
=in_dev
->mc_tomb
; pmc
; pmc
=pmc_next
) {
578 pmc_next
= pmc
->next
;
579 if (pmc
->sfmode
== MCAST_INCLUDE
) {
580 type
= IGMPV3_BLOCK_OLD_SOURCES
;
581 dtype
= IGMPV3_BLOCK_OLD_SOURCES
;
582 skb
= add_grec(skb
, pmc
, type
, 1, 0);
583 skb
= add_grec(skb
, pmc
, dtype
, 1, 1);
586 if (pmc
->sfmode
== MCAST_EXCLUDE
) {
587 type
= IGMPV3_CHANGE_TO_INCLUDE
;
588 skb
= add_grec(skb
, pmc
, type
, 1, 0);
591 if (pmc
->crcount
== 0) {
592 igmpv3_clear_zeros(&pmc
->tomb
);
593 igmpv3_clear_zeros(&pmc
->sources
);
596 if (pmc
->crcount
== 0 && !pmc
->tomb
&& !pmc
->sources
) {
598 pmc_prev
->next
= pmc_next
;
600 in_dev
->mc_tomb
= pmc_next
;
601 in_dev_put(pmc
->interface
);
606 spin_unlock_bh(&in_dev
->mc_tomb_lock
);
609 for_each_pmc_rcu(in_dev
, pmc
) {
610 spin_lock_bh(&pmc
->lock
);
611 if (pmc
->sfcount
[MCAST_EXCLUDE
]) {
612 type
= IGMPV3_BLOCK_OLD_SOURCES
;
613 dtype
= IGMPV3_ALLOW_NEW_SOURCES
;
615 type
= IGMPV3_ALLOW_NEW_SOURCES
;
616 dtype
= IGMPV3_BLOCK_OLD_SOURCES
;
618 skb
= add_grec(skb
, pmc
, type
, 0, 0);
619 skb
= add_grec(skb
, pmc
, dtype
, 0, 1); /* deleted sources */
621 /* filter mode changes */
623 if (pmc
->sfmode
== MCAST_EXCLUDE
)
624 type
= IGMPV3_CHANGE_TO_EXCLUDE
;
626 type
= IGMPV3_CHANGE_TO_INCLUDE
;
627 skb
= add_grec(skb
, pmc
, type
, 0, 0);
630 spin_unlock_bh(&pmc
->lock
);
636 (void) igmpv3_sendpack(skb
);
639 static int igmp_send_report(struct in_device
*in_dev
, struct ip_mc_list
*pmc
,
646 struct net_device
*dev
= in_dev
->dev
;
647 struct net
*net
= dev_net(dev
);
648 __be32 group
= pmc
? pmc
->multiaddr
: 0;
653 if (type
== IGMPV3_HOST_MEMBERSHIP_REPORT
)
654 return igmpv3_send_report(in_dev
, pmc
);
655 else if (type
== IGMP_HOST_LEAVE_MESSAGE
)
656 dst
= IGMP_ALL_ROUTER
;
660 rt
= ip_route_output_ports(net
, &fl4
, NULL
, dst
, 0,
662 IPPROTO_IGMP
, 0, dev
->ifindex
);
666 hlen
= LL_RESERVED_SPACE(dev
);
667 tlen
= dev
->needed_tailroom
;
668 skb
= alloc_skb(IGMP_SIZE
+ hlen
+ tlen
, GFP_ATOMIC
);
674 skb_dst_set(skb
, &rt
->dst
);
676 skb_reserve(skb
, hlen
);
678 skb_reset_network_header(skb
);
680 skb_put(skb
, sizeof(struct iphdr
) + 4);
683 iph
->ihl
= (sizeof(struct iphdr
)+4)>>2;
685 iph
->frag_off
= htons(IP_DF
);
688 iph
->saddr
= fl4
.saddr
;
689 iph
->protocol
= IPPROTO_IGMP
;
690 ip_select_ident(iph
, &rt
->dst
, NULL
);
691 ((u8
*)&iph
[1])[0] = IPOPT_RA
;
692 ((u8
*)&iph
[1])[1] = 4;
693 ((u8
*)&iph
[1])[2] = 0;
694 ((u8
*)&iph
[1])[3] = 0;
696 ih
= (struct igmphdr
*)skb_put(skb
, sizeof(struct igmphdr
));
701 ih
->csum
= ip_compute_csum((void *)ih
, sizeof(struct igmphdr
));
703 return ip_local_out(skb
);
706 static void igmp_gq_timer_expire(unsigned long data
)
708 struct in_device
*in_dev
= (struct in_device
*)data
;
710 in_dev
->mr_gq_running
= 0;
711 igmpv3_send_report(in_dev
, NULL
);
712 __in_dev_put(in_dev
);
715 static void igmp_ifc_timer_expire(unsigned long data
)
717 struct in_device
*in_dev
= (struct in_device
*)data
;
719 igmpv3_send_cr(in_dev
);
720 if (in_dev
->mr_ifc_count
) {
721 in_dev
->mr_ifc_count
--;
722 igmp_ifc_start_timer(in_dev
, IGMP_Unsolicited_Report_Interval
);
724 __in_dev_put(in_dev
);
727 static void igmp_ifc_event(struct in_device
*in_dev
)
729 if (IGMP_V1_SEEN(in_dev
) || IGMP_V2_SEEN(in_dev
))
731 in_dev
->mr_ifc_count
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
732 IGMP_Unsolicited_Report_Count
;
733 igmp_ifc_start_timer(in_dev
, 1);
737 static void igmp_timer_expire(unsigned long data
)
739 struct ip_mc_list
*im
=(struct ip_mc_list
*)data
;
740 struct in_device
*in_dev
= im
->interface
;
742 spin_lock(&im
->lock
);
745 if (im
->unsolicit_count
) {
746 im
->unsolicit_count
--;
747 igmp_start_timer(im
, IGMP_Unsolicited_Report_Interval
);
750 spin_unlock(&im
->lock
);
752 if (IGMP_V1_SEEN(in_dev
))
753 igmp_send_report(in_dev
, im
, IGMP_HOST_MEMBERSHIP_REPORT
);
754 else if (IGMP_V2_SEEN(in_dev
))
755 igmp_send_report(in_dev
, im
, IGMPV2_HOST_MEMBERSHIP_REPORT
);
757 igmp_send_report(in_dev
, im
, IGMPV3_HOST_MEMBERSHIP_REPORT
);
762 /* mark EXCLUDE-mode sources */
763 static int igmp_xmarksources(struct ip_mc_list
*pmc
, int nsrcs
, __be32
*srcs
)
765 struct ip_sf_list
*psf
;
769 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
772 for (i
=0; i
<nsrcs
; i
++) {
773 /* skip inactive filters */
774 if (psf
->sf_count
[MCAST_INCLUDE
] ||
775 pmc
->sfcount
[MCAST_EXCLUDE
] !=
776 psf
->sf_count
[MCAST_EXCLUDE
])
778 if (srcs
[i
] == psf
->sf_inaddr
) {
785 if (scount
== nsrcs
) /* all sources excluded */
790 static int igmp_marksources(struct ip_mc_list
*pmc
, int nsrcs
, __be32
*srcs
)
792 struct ip_sf_list
*psf
;
795 if (pmc
->sfmode
== MCAST_EXCLUDE
)
796 return igmp_xmarksources(pmc
, nsrcs
, srcs
);
798 /* mark INCLUDE-mode sources */
800 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
803 for (i
=0; i
<nsrcs
; i
++)
804 if (srcs
[i
] == psf
->sf_inaddr
) {
818 /* return true if packet was dropped */
819 static bool igmp_heard_report(struct in_device
*in_dev
, __be32 group
)
821 struct ip_mc_list
*im
;
823 /* Timers are only set for non-local groups */
825 if (group
== IGMP_ALL_HOSTS
)
829 for_each_pmc_rcu(in_dev
, im
) {
830 if (im
->multiaddr
== group
) {
839 /* return true if packet was dropped */
840 static bool igmp_heard_query(struct in_device
*in_dev
, struct sk_buff
*skb
,
843 struct igmphdr
*ih
= igmp_hdr(skb
);
844 struct igmpv3_query
*ih3
= igmpv3_query_hdr(skb
);
845 struct ip_mc_list
*im
;
846 __be32 group
= ih
->group
;
853 /* Alas, old v1 router presents here. */
855 max_delay
= IGMP_Query_Response_Interval
;
856 in_dev
->mr_v1_seen
= jiffies
+
857 IGMP_V1_Router_Present_Timeout
;
860 /* v2 router present */
861 max_delay
= ih
->code
*(HZ
/IGMP_TIMER_SCALE
);
862 in_dev
->mr_v2_seen
= jiffies
+
863 IGMP_V2_Router_Present_Timeout
;
865 /* cancel the interface change timer */
866 in_dev
->mr_ifc_count
= 0;
867 if (del_timer(&in_dev
->mr_ifc_timer
))
868 __in_dev_put(in_dev
);
869 /* clear deleted report items */
870 igmpv3_clear_delrec(in_dev
);
871 } else if (len
< 12) {
872 return true; /* ignore bogus packet; freed by caller */
873 } else if (IGMP_V1_SEEN(in_dev
)) {
874 /* This is a v3 query with v1 queriers present */
875 max_delay
= IGMP_Query_Response_Interval
;
877 } else if (IGMP_V2_SEEN(in_dev
)) {
878 /* this is a v3 query with v2 queriers present;
879 * Interpretation of the max_delay code is problematic here.
880 * A real v2 host would use ih_code directly, while v3 has a
881 * different encoding. We use the v3 encoding as more likely
882 * to be intended in a v3 query.
884 max_delay
= IGMPV3_MRC(ih3
->code
)*(HZ
/IGMP_TIMER_SCALE
);
886 max_delay
= 1; /* can't mod w/ 0 */
888 if (!pskb_may_pull(skb
, sizeof(struct igmpv3_query
)))
891 ih3
= igmpv3_query_hdr(skb
);
893 if (!pskb_may_pull(skb
, sizeof(struct igmpv3_query
)
894 + ntohs(ih3
->nsrcs
)*sizeof(__be32
)))
896 ih3
= igmpv3_query_hdr(skb
);
899 max_delay
= IGMPV3_MRC(ih3
->code
)*(HZ
/IGMP_TIMER_SCALE
);
901 max_delay
= 1; /* can't mod w/ 0 */
902 in_dev
->mr_maxdelay
= max_delay
;
904 in_dev
->mr_qrv
= ih3
->qrv
;
905 if (!group
) { /* general query */
907 return false; /* no sources allowed */
908 igmp_gq_start_timer(in_dev
);
911 /* mark sources to include, if group & source-specific */
912 mark
= ih3
->nsrcs
!= 0;
916 * - Start the timers in all of our membership records
917 * that the query applies to for the interface on
918 * which the query arrived excl. those that belong
919 * to a "local" group (224.0.0.X)
920 * - For timers already running check if they need to
922 * - Use the igmp->igmp_code field as the maximum
926 for_each_pmc_rcu(in_dev
, im
) {
929 if (group
&& group
!= im
->multiaddr
)
931 if (im
->multiaddr
== IGMP_ALL_HOSTS
)
933 spin_lock_bh(&im
->lock
);
935 im
->gsquery
= im
->gsquery
&& mark
;
938 changed
= !im
->gsquery
||
939 igmp_marksources(im
, ntohs(ih3
->nsrcs
), ih3
->srcs
);
940 spin_unlock_bh(&im
->lock
);
942 igmp_mod_timer(im
, max_delay
);
948 /* called in rcu_read_lock() section */
949 int igmp_rcv(struct sk_buff
*skb
)
951 /* This basically follows the spec line by line -- see RFC1112 */
953 struct in_device
*in_dev
= __in_dev_get_rcu(skb
->dev
);
960 if (!pskb_may_pull(skb
, sizeof(struct igmphdr
)))
963 switch (skb
->ip_summed
) {
964 case CHECKSUM_COMPLETE
:
965 if (!csum_fold(skb
->csum
))
970 if (__skb_checksum_complete(skb
))
976 case IGMP_HOST_MEMBERSHIP_QUERY
:
977 dropped
= igmp_heard_query(in_dev
, skb
, len
);
979 case IGMP_HOST_MEMBERSHIP_REPORT
:
980 case IGMPV2_HOST_MEMBERSHIP_REPORT
:
981 /* Is it our report looped back? */
982 if (rt_is_output_route(skb_rtable(skb
)))
984 /* don't rely on MC router hearing unicast reports */
985 if (skb
->pkt_type
== PACKET_MULTICAST
||
986 skb
->pkt_type
== PACKET_BROADCAST
)
987 dropped
= igmp_heard_report(in_dev
, ih
->group
);
990 #ifdef CONFIG_IP_PIMSM_V1
991 return pim_rcv_v1(skb
);
993 case IGMPV3_HOST_MEMBERSHIP_REPORT
:
996 case IGMP_HOST_LEAVE_MESSAGE
:
998 case IGMP_MTRACE_RESP
:
1016 * Add a filter to a device
1019 static void ip_mc_filter_add(struct in_device
*in_dev
, __be32 addr
)
1021 char buf
[MAX_ADDR_LEN
];
1022 struct net_device
*dev
= in_dev
->dev
;
1024 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1025 We will get multicast token leakage, when IFF_MULTICAST
1026 is changed. This check should be done in ndo_set_rx_mode
1027 routine. Something sort of:
1028 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1031 if (arp_mc_map(addr
, buf
, dev
, 0) == 0)
1032 dev_mc_add(dev
, buf
);
1036 * Remove a filter from a device
1039 static void ip_mc_filter_del(struct in_device
*in_dev
, __be32 addr
)
1041 char buf
[MAX_ADDR_LEN
];
1042 struct net_device
*dev
= in_dev
->dev
;
1044 if (arp_mc_map(addr
, buf
, dev
, 0) == 0)
1045 dev_mc_del(dev
, buf
);
1048 #ifdef CONFIG_IP_MULTICAST
1050 * deleted ip_mc_list manipulation
1052 static void igmpv3_add_delrec(struct in_device
*in_dev
, struct ip_mc_list
*im
)
1054 struct ip_mc_list
*pmc
;
1056 /* this is an "ip_mc_list" for convenience; only the fields below
1057 * are actually used. In particular, the refcnt and users are not
1058 * used for management of the delete list. Using the same structure
1059 * for deleted items allows change reports to use common code with
1060 * non-deleted or query-response MCA's.
1062 pmc
= kzalloc(sizeof(*pmc
), GFP_KERNEL
);
1065 spin_lock_bh(&im
->lock
);
1066 pmc
->interface
= im
->interface
;
1067 in_dev_hold(in_dev
);
1068 pmc
->multiaddr
= im
->multiaddr
;
1069 pmc
->crcount
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
1070 IGMP_Unsolicited_Report_Count
;
1071 pmc
->sfmode
= im
->sfmode
;
1072 if (pmc
->sfmode
== MCAST_INCLUDE
) {
1073 struct ip_sf_list
*psf
;
1075 pmc
->tomb
= im
->tomb
;
1076 pmc
->sources
= im
->sources
;
1077 im
->tomb
= im
->sources
= NULL
;
1078 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
)
1079 psf
->sf_crcount
= pmc
->crcount
;
1081 spin_unlock_bh(&im
->lock
);
1083 spin_lock_bh(&in_dev
->mc_tomb_lock
);
1084 pmc
->next
= in_dev
->mc_tomb
;
1085 in_dev
->mc_tomb
= pmc
;
1086 spin_unlock_bh(&in_dev
->mc_tomb_lock
);
1089 static void igmpv3_del_delrec(struct in_device
*in_dev
, __be32 multiaddr
)
1091 struct ip_mc_list
*pmc
, *pmc_prev
;
1092 struct ip_sf_list
*psf
, *psf_next
;
1094 spin_lock_bh(&in_dev
->mc_tomb_lock
);
1096 for (pmc
=in_dev
->mc_tomb
; pmc
; pmc
=pmc
->next
) {
1097 if (pmc
->multiaddr
== multiaddr
)
1103 pmc_prev
->next
= pmc
->next
;
1105 in_dev
->mc_tomb
= pmc
->next
;
1107 spin_unlock_bh(&in_dev
->mc_tomb_lock
);
1109 for (psf
=pmc
->tomb
; psf
; psf
=psf_next
) {
1110 psf_next
= psf
->sf_next
;
1113 in_dev_put(pmc
->interface
);
1118 static void igmpv3_clear_delrec(struct in_device
*in_dev
)
1120 struct ip_mc_list
*pmc
, *nextpmc
;
1122 spin_lock_bh(&in_dev
->mc_tomb_lock
);
1123 pmc
= in_dev
->mc_tomb
;
1124 in_dev
->mc_tomb
= NULL
;
1125 spin_unlock_bh(&in_dev
->mc_tomb_lock
);
1127 for (; pmc
; pmc
= nextpmc
) {
1128 nextpmc
= pmc
->next
;
1129 ip_mc_clear_src(pmc
);
1130 in_dev_put(pmc
->interface
);
1133 /* clear dead sources, too */
1135 for_each_pmc_rcu(in_dev
, pmc
) {
1136 struct ip_sf_list
*psf
, *psf_next
;
1138 spin_lock_bh(&pmc
->lock
);
1141 spin_unlock_bh(&pmc
->lock
);
1142 for (; psf
; psf
=psf_next
) {
1143 psf_next
= psf
->sf_next
;
1151 static void igmp_group_dropped(struct ip_mc_list
*im
)
1153 struct in_device
*in_dev
= im
->interface
;
1154 #ifdef CONFIG_IP_MULTICAST
1160 ip_mc_filter_del(in_dev
, im
->multiaddr
);
1163 #ifdef CONFIG_IP_MULTICAST
1164 if (im
->multiaddr
== IGMP_ALL_HOSTS
)
1167 reporter
= im
->reporter
;
1168 igmp_stop_timer(im
);
1170 if (!in_dev
->dead
) {
1171 if (IGMP_V1_SEEN(in_dev
))
1173 if (IGMP_V2_SEEN(in_dev
)) {
1175 igmp_send_report(in_dev
, im
, IGMP_HOST_LEAVE_MESSAGE
);
1179 igmpv3_add_delrec(in_dev
, im
);
1181 igmp_ifc_event(in_dev
);
1186 static void igmp_group_added(struct ip_mc_list
*im
)
1188 struct in_device
*in_dev
= im
->interface
;
1190 if (im
->loaded
== 0) {
1192 ip_mc_filter_add(in_dev
, im
->multiaddr
);
1195 #ifdef CONFIG_IP_MULTICAST
1196 if (im
->multiaddr
== IGMP_ALL_HOSTS
)
1201 if (IGMP_V1_SEEN(in_dev
) || IGMP_V2_SEEN(in_dev
)) {
1202 spin_lock_bh(&im
->lock
);
1203 igmp_start_timer(im
, IGMP_Initial_Report_Delay
);
1204 spin_unlock_bh(&im
->lock
);
1209 im
->crcount
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
1210 IGMP_Unsolicited_Report_Count
;
1211 igmp_ifc_event(in_dev
);
1217 * Multicast list managers
1220 static u32
ip_mc_hash(const struct ip_mc_list
*im
)
1222 return hash_32((__force u32
)im
->multiaddr
, MC_HASH_SZ_LOG
);
1225 static void ip_mc_hash_add(struct in_device
*in_dev
,
1226 struct ip_mc_list
*im
)
1228 struct ip_mc_list __rcu
**mc_hash
;
1231 mc_hash
= rtnl_dereference(in_dev
->mc_hash
);
1233 hash
= ip_mc_hash(im
);
1234 im
->next_hash
= mc_hash
[hash
];
1235 rcu_assign_pointer(mc_hash
[hash
], im
);
1239 /* do not use a hash table for small number of items */
1240 if (in_dev
->mc_count
< 4)
1243 mc_hash
= kzalloc(sizeof(struct ip_mc_list
*) << MC_HASH_SZ_LOG
,
1248 for_each_pmc_rtnl(in_dev
, im
) {
1249 hash
= ip_mc_hash(im
);
1250 im
->next_hash
= mc_hash
[hash
];
1251 RCU_INIT_POINTER(mc_hash
[hash
], im
);
1254 rcu_assign_pointer(in_dev
->mc_hash
, mc_hash
);
1257 static void ip_mc_hash_remove(struct in_device
*in_dev
,
1258 struct ip_mc_list
*im
)
1260 struct ip_mc_list __rcu
**mc_hash
= rtnl_dereference(in_dev
->mc_hash
);
1261 struct ip_mc_list
*aux
;
1265 mc_hash
+= ip_mc_hash(im
);
1266 while ((aux
= rtnl_dereference(*mc_hash
)) != im
)
1267 mc_hash
= &aux
->next_hash
;
1268 *mc_hash
= im
->next_hash
;
1273 * A socket has joined a multicast group on device dev.
1276 void ip_mc_inc_group(struct in_device
*in_dev
, __be32 addr
)
1278 struct ip_mc_list
*im
;
1282 for_each_pmc_rtnl(in_dev
, im
) {
1283 if (im
->multiaddr
== addr
) {
1285 ip_mc_add_src(in_dev
, &addr
, MCAST_EXCLUDE
, 0, NULL
, 0);
1290 im
= kzalloc(sizeof(*im
), GFP_KERNEL
);
1295 im
->interface
= in_dev
;
1296 in_dev_hold(in_dev
);
1297 im
->multiaddr
= addr
;
1298 /* initial mode is (EX, empty) */
1299 im
->sfmode
= MCAST_EXCLUDE
;
1300 im
->sfcount
[MCAST_EXCLUDE
] = 1;
1301 atomic_set(&im
->refcnt
, 1);
1302 spin_lock_init(&im
->lock
);
1303 #ifdef CONFIG_IP_MULTICAST
1304 setup_timer(&im
->timer
, &igmp_timer_expire
, (unsigned long)im
);
1305 im
->unsolicit_count
= IGMP_Unsolicited_Report_Count
;
1308 im
->next_rcu
= in_dev
->mc_list
;
1310 rcu_assign_pointer(in_dev
->mc_list
, im
);
1312 ip_mc_hash_add(in_dev
, im
);
1314 #ifdef CONFIG_IP_MULTICAST
1315 igmpv3_del_delrec(in_dev
, im
->multiaddr
);
1317 igmp_group_added(im
);
1319 ip_rt_multicast_event(in_dev
);
1323 EXPORT_SYMBOL(ip_mc_inc_group
);
1326 * Resend IGMP JOIN report; used for bonding.
1327 * Called with rcu_read_lock()
1329 void ip_mc_rejoin_groups(struct in_device
*in_dev
)
1331 #ifdef CONFIG_IP_MULTICAST
1332 struct ip_mc_list
*im
;
1335 for_each_pmc_rcu(in_dev
, im
) {
1336 if (im
->multiaddr
== IGMP_ALL_HOSTS
)
1339 /* a failover is happening and switches
1340 * must be notified immediately
1342 if (IGMP_V1_SEEN(in_dev
))
1343 type
= IGMP_HOST_MEMBERSHIP_REPORT
;
1344 else if (IGMP_V2_SEEN(in_dev
))
1345 type
= IGMPV2_HOST_MEMBERSHIP_REPORT
;
1347 type
= IGMPV3_HOST_MEMBERSHIP_REPORT
;
1348 igmp_send_report(in_dev
, im
, type
);
1352 EXPORT_SYMBOL(ip_mc_rejoin_groups
);
1355 * A socket has left a multicast group on device dev
1358 void ip_mc_dec_group(struct in_device
*in_dev
, __be32 addr
)
1360 struct ip_mc_list
*i
;
1361 struct ip_mc_list __rcu
**ip
;
1365 for (ip
= &in_dev
->mc_list
;
1366 (i
= rtnl_dereference(*ip
)) != NULL
;
1367 ip
= &i
->next_rcu
) {
1368 if (i
->multiaddr
== addr
) {
1369 if (--i
->users
== 0) {
1370 ip_mc_hash_remove(in_dev
, i
);
1373 igmp_group_dropped(i
);
1377 ip_rt_multicast_event(in_dev
);
1386 EXPORT_SYMBOL(ip_mc_dec_group
);
1388 /* Device changing type */
1390 void ip_mc_unmap(struct in_device
*in_dev
)
1392 struct ip_mc_list
*pmc
;
1396 for_each_pmc_rtnl(in_dev
, pmc
)
1397 igmp_group_dropped(pmc
);
1400 void ip_mc_remap(struct in_device
*in_dev
)
1402 struct ip_mc_list
*pmc
;
1406 for_each_pmc_rtnl(in_dev
, pmc
)
1407 igmp_group_added(pmc
);
1410 /* Device going down */
1412 void ip_mc_down(struct in_device
*in_dev
)
1414 struct ip_mc_list
*pmc
;
1418 for_each_pmc_rtnl(in_dev
, pmc
)
1419 igmp_group_dropped(pmc
);
1421 #ifdef CONFIG_IP_MULTICAST
1422 in_dev
->mr_ifc_count
= 0;
1423 if (del_timer(&in_dev
->mr_ifc_timer
))
1424 __in_dev_put(in_dev
);
1425 in_dev
->mr_gq_running
= 0;
1426 if (del_timer(&in_dev
->mr_gq_timer
))
1427 __in_dev_put(in_dev
);
1428 igmpv3_clear_delrec(in_dev
);
1431 ip_mc_dec_group(in_dev
, IGMP_ALL_HOSTS
);
1434 void ip_mc_init_dev(struct in_device
*in_dev
)
1438 #ifdef CONFIG_IP_MULTICAST
1439 setup_timer(&in_dev
->mr_gq_timer
, igmp_gq_timer_expire
,
1440 (unsigned long)in_dev
);
1441 setup_timer(&in_dev
->mr_ifc_timer
, igmp_ifc_timer_expire
,
1442 (unsigned long)in_dev
);
1443 in_dev
->mr_qrv
= IGMP_Unsolicited_Report_Count
;
1446 spin_lock_init(&in_dev
->mc_tomb_lock
);
1449 /* Device going up */
1451 void ip_mc_up(struct in_device
*in_dev
)
1453 struct ip_mc_list
*pmc
;
1457 ip_mc_inc_group(in_dev
, IGMP_ALL_HOSTS
);
1459 for_each_pmc_rtnl(in_dev
, pmc
)
1460 igmp_group_added(pmc
);
1464 * Device is about to be destroyed: clean up.
1467 void ip_mc_destroy_dev(struct in_device
*in_dev
)
1469 struct ip_mc_list
*i
;
1473 /* Deactivate timers */
1476 while ((i
= rtnl_dereference(in_dev
->mc_list
)) != NULL
) {
1477 in_dev
->mc_list
= i
->next_rcu
;
1480 /* We've dropped the groups in ip_mc_down already */
1486 /* RTNL is locked */
1487 static struct in_device
*ip_mc_find_dev(struct net
*net
, struct ip_mreqn
*imr
)
1489 struct net_device
*dev
= NULL
;
1490 struct in_device
*idev
= NULL
;
1492 if (imr
->imr_ifindex
) {
1493 idev
= inetdev_by_index(net
, imr
->imr_ifindex
);
1496 if (imr
->imr_address
.s_addr
) {
1497 dev
= __ip_dev_find(net
, imr
->imr_address
.s_addr
, false);
1503 struct rtable
*rt
= ip_route_output(net
,
1504 imr
->imr_multiaddr
.s_addr
,
1512 imr
->imr_ifindex
= dev
->ifindex
;
1513 idev
= __in_dev_get_rtnl(dev
);
1519 * Join a socket to a group
1521 int sysctl_igmp_max_memberships __read_mostly
= IP_MAX_MEMBERSHIPS
;
1522 int sysctl_igmp_max_msf __read_mostly
= IP_MAX_MSF
;
1525 static int ip_mc_del1_src(struct ip_mc_list
*pmc
, int sfmode
,
1528 struct ip_sf_list
*psf
, *psf_prev
;
1532 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
1533 if (psf
->sf_inaddr
== *psfsrc
)
1537 if (!psf
|| psf
->sf_count
[sfmode
] == 0) {
1538 /* source filter not found, or count wrong => bug */
1541 psf
->sf_count
[sfmode
]--;
1542 if (psf
->sf_count
[sfmode
] == 0) {
1543 ip_rt_multicast_event(pmc
->interface
);
1545 if (!psf
->sf_count
[MCAST_INCLUDE
] && !psf
->sf_count
[MCAST_EXCLUDE
]) {
1546 #ifdef CONFIG_IP_MULTICAST
1547 struct in_device
*in_dev
= pmc
->interface
;
1550 /* no more filters for this source */
1552 psf_prev
->sf_next
= psf
->sf_next
;
1554 pmc
->sources
= psf
->sf_next
;
1555 #ifdef CONFIG_IP_MULTICAST
1556 if (psf
->sf_oldin
&&
1557 !IGMP_V1_SEEN(in_dev
) && !IGMP_V2_SEEN(in_dev
)) {
1558 psf
->sf_crcount
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
1559 IGMP_Unsolicited_Report_Count
;
1560 psf
->sf_next
= pmc
->tomb
;
1570 #ifndef CONFIG_IP_MULTICAST
1571 #define igmp_ifc_event(x) do { } while (0)
1574 static int ip_mc_del_src(struct in_device
*in_dev
, __be32
*pmca
, int sfmode
,
1575 int sfcount
, __be32
*psfsrc
, int delta
)
1577 struct ip_mc_list
*pmc
;
1584 for_each_pmc_rcu(in_dev
, pmc
) {
1585 if (*pmca
== pmc
->multiaddr
)
1589 /* MCA not found?? bug */
1593 spin_lock_bh(&pmc
->lock
);
1595 #ifdef CONFIG_IP_MULTICAST
1600 if (!pmc
->sfcount
[sfmode
])
1602 pmc
->sfcount
[sfmode
]--;
1605 for (i
=0; i
<sfcount
; i
++) {
1606 int rv
= ip_mc_del1_src(pmc
, sfmode
, &psfsrc
[i
]);
1608 changerec
|= rv
> 0;
1612 if (pmc
->sfmode
== MCAST_EXCLUDE
&&
1613 pmc
->sfcount
[MCAST_EXCLUDE
] == 0 &&
1614 pmc
->sfcount
[MCAST_INCLUDE
]) {
1615 #ifdef CONFIG_IP_MULTICAST
1616 struct ip_sf_list
*psf
;
1619 /* filter mode change */
1620 pmc
->sfmode
= MCAST_INCLUDE
;
1621 #ifdef CONFIG_IP_MULTICAST
1622 pmc
->crcount
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
1623 IGMP_Unsolicited_Report_Count
;
1624 in_dev
->mr_ifc_count
= pmc
->crcount
;
1625 for (psf
=pmc
->sources
; psf
; psf
= psf
->sf_next
)
1626 psf
->sf_crcount
= 0;
1627 igmp_ifc_event(pmc
->interface
);
1628 } else if (sf_setstate(pmc
) || changerec
) {
1629 igmp_ifc_event(pmc
->interface
);
1633 spin_unlock_bh(&pmc
->lock
);
1638 * Add multicast single-source filter to the interface list
1640 static int ip_mc_add1_src(struct ip_mc_list
*pmc
, int sfmode
,
1643 struct ip_sf_list
*psf
, *psf_prev
;
1646 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
1647 if (psf
->sf_inaddr
== *psfsrc
)
1652 psf
= kzalloc(sizeof(*psf
), GFP_ATOMIC
);
1655 psf
->sf_inaddr
= *psfsrc
;
1657 psf_prev
->sf_next
= psf
;
1661 psf
->sf_count
[sfmode
]++;
1662 if (psf
->sf_count
[sfmode
] == 1) {
1663 ip_rt_multicast_event(pmc
->interface
);
1668 #ifdef CONFIG_IP_MULTICAST
1669 static void sf_markstate(struct ip_mc_list
*pmc
)
1671 struct ip_sf_list
*psf
;
1672 int mca_xcount
= pmc
->sfcount
[MCAST_EXCLUDE
];
1674 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
)
1675 if (pmc
->sfcount
[MCAST_EXCLUDE
]) {
1676 psf
->sf_oldin
= mca_xcount
==
1677 psf
->sf_count
[MCAST_EXCLUDE
] &&
1678 !psf
->sf_count
[MCAST_INCLUDE
];
1680 psf
->sf_oldin
= psf
->sf_count
[MCAST_INCLUDE
] != 0;
1683 static int sf_setstate(struct ip_mc_list
*pmc
)
1685 struct ip_sf_list
*psf
, *dpsf
;
1686 int mca_xcount
= pmc
->sfcount
[MCAST_EXCLUDE
];
1687 int qrv
= pmc
->interface
->mr_qrv
;
1691 for (psf
=pmc
->sources
; psf
; psf
=psf
->sf_next
) {
1692 if (pmc
->sfcount
[MCAST_EXCLUDE
]) {
1693 new_in
= mca_xcount
== psf
->sf_count
[MCAST_EXCLUDE
] &&
1694 !psf
->sf_count
[MCAST_INCLUDE
];
1696 new_in
= psf
->sf_count
[MCAST_INCLUDE
] != 0;
1698 if (!psf
->sf_oldin
) {
1699 struct ip_sf_list
*prev
= NULL
;
1701 for (dpsf
=pmc
->tomb
; dpsf
; dpsf
=dpsf
->sf_next
) {
1702 if (dpsf
->sf_inaddr
== psf
->sf_inaddr
)
1708 prev
->sf_next
= dpsf
->sf_next
;
1710 pmc
->tomb
= dpsf
->sf_next
;
1713 psf
->sf_crcount
= qrv
;
1716 } else if (psf
->sf_oldin
) {
1718 psf
->sf_crcount
= 0;
1720 * add or update "delete" records if an active filter
1723 for (dpsf
=pmc
->tomb
; dpsf
; dpsf
=dpsf
->sf_next
)
1724 if (dpsf
->sf_inaddr
== psf
->sf_inaddr
)
1727 dpsf
= kmalloc(sizeof(*dpsf
), GFP_ATOMIC
);
1731 /* pmc->lock held by callers */
1732 dpsf
->sf_next
= pmc
->tomb
;
1735 dpsf
->sf_crcount
= qrv
;
1744 * Add multicast source filter list to the interface list
1746 static int ip_mc_add_src(struct in_device
*in_dev
, __be32
*pmca
, int sfmode
,
1747 int sfcount
, __be32
*psfsrc
, int delta
)
1749 struct ip_mc_list
*pmc
;
1756 for_each_pmc_rcu(in_dev
, pmc
) {
1757 if (*pmca
== pmc
->multiaddr
)
1761 /* MCA not found?? bug */
1765 spin_lock_bh(&pmc
->lock
);
1768 #ifdef CONFIG_IP_MULTICAST
1771 isexclude
= pmc
->sfmode
== MCAST_EXCLUDE
;
1773 pmc
->sfcount
[sfmode
]++;
1775 for (i
=0; i
<sfcount
; i
++) {
1776 err
= ip_mc_add1_src(pmc
, sfmode
, &psfsrc
[i
]);
1784 pmc
->sfcount
[sfmode
]--;
1786 (void) ip_mc_del1_src(pmc
, sfmode
, &psfsrc
[j
]);
1787 } else if (isexclude
!= (pmc
->sfcount
[MCAST_EXCLUDE
] != 0)) {
1788 #ifdef CONFIG_IP_MULTICAST
1789 struct ip_sf_list
*psf
;
1790 in_dev
= pmc
->interface
;
1793 /* filter mode change */
1794 if (pmc
->sfcount
[MCAST_EXCLUDE
])
1795 pmc
->sfmode
= MCAST_EXCLUDE
;
1796 else if (pmc
->sfcount
[MCAST_INCLUDE
])
1797 pmc
->sfmode
= MCAST_INCLUDE
;
1798 #ifdef CONFIG_IP_MULTICAST
1799 /* else no filters; keep old mode for reports */
1801 pmc
->crcount
= in_dev
->mr_qrv
? in_dev
->mr_qrv
:
1802 IGMP_Unsolicited_Report_Count
;
1803 in_dev
->mr_ifc_count
= pmc
->crcount
;
1804 for (psf
=pmc
->sources
; psf
; psf
= psf
->sf_next
)
1805 psf
->sf_crcount
= 0;
1806 igmp_ifc_event(in_dev
);
1807 } else if (sf_setstate(pmc
)) {
1808 igmp_ifc_event(in_dev
);
1811 spin_unlock_bh(&pmc
->lock
);
1815 static void ip_mc_clear_src(struct ip_mc_list
*pmc
)
1817 struct ip_sf_list
*psf
, *nextpsf
;
1819 for (psf
=pmc
->tomb
; psf
; psf
=nextpsf
) {
1820 nextpsf
= psf
->sf_next
;
1824 for (psf
=pmc
->sources
; psf
; psf
=nextpsf
) {
1825 nextpsf
= psf
->sf_next
;
1828 pmc
->sources
= NULL
;
1829 pmc
->sfmode
= MCAST_EXCLUDE
;
1830 pmc
->sfcount
[MCAST_INCLUDE
] = 0;
1831 pmc
->sfcount
[MCAST_EXCLUDE
] = 1;
1836 * Join a multicast group
1838 int ip_mc_join_group(struct sock
*sk
, struct ip_mreqn
*imr
)
1841 __be32 addr
= imr
->imr_multiaddr
.s_addr
;
1842 struct ip_mc_socklist
*iml
= NULL
, *i
;
1843 struct in_device
*in_dev
;
1844 struct inet_sock
*inet
= inet_sk(sk
);
1845 struct net
*net
= sock_net(sk
);
1849 if (!ipv4_is_multicast(addr
))
1854 in_dev
= ip_mc_find_dev(net
, imr
);
1863 ifindex
= imr
->imr_ifindex
;
1864 for_each_pmc_rtnl(inet
, i
) {
1865 if (i
->multi
.imr_multiaddr
.s_addr
== addr
&&
1866 i
->multi
.imr_ifindex
== ifindex
)
1871 if (count
>= sysctl_igmp_max_memberships
)
1873 iml
= sock_kmalloc(sk
, sizeof(*iml
), GFP_KERNEL
);
1877 memcpy(&iml
->multi
, imr
, sizeof(*imr
));
1878 iml
->next_rcu
= inet
->mc_list
;
1880 iml
->sfmode
= MCAST_EXCLUDE
;
1881 rcu_assign_pointer(inet
->mc_list
, iml
);
1882 ip_mc_inc_group(in_dev
, addr
);
1888 EXPORT_SYMBOL(ip_mc_join_group
);
1890 static int ip_mc_leave_src(struct sock
*sk
, struct ip_mc_socklist
*iml
,
1891 struct in_device
*in_dev
)
1893 struct ip_sf_socklist
*psf
= rtnl_dereference(iml
->sflist
);
1897 /* any-source empty exclude case */
1898 return ip_mc_del_src(in_dev
, &iml
->multi
.imr_multiaddr
.s_addr
,
1899 iml
->sfmode
, 0, NULL
, 0);
1901 err
= ip_mc_del_src(in_dev
, &iml
->multi
.imr_multiaddr
.s_addr
,
1902 iml
->sfmode
, psf
->sl_count
, psf
->sl_addr
, 0);
1903 RCU_INIT_POINTER(iml
->sflist
, NULL
);
1904 /* decrease mem now to avoid the memleak warning */
1905 atomic_sub(IP_SFLSIZE(psf
->sl_max
), &sk
->sk_omem_alloc
);
1906 kfree_rcu(psf
, rcu
);
1911 * Ask a socket to leave a group.
1914 int ip_mc_leave_group(struct sock
*sk
, struct ip_mreqn
*imr
)
1916 struct inet_sock
*inet
= inet_sk(sk
);
1917 struct ip_mc_socklist
*iml
;
1918 struct ip_mc_socklist __rcu
**imlp
;
1919 struct in_device
*in_dev
;
1920 struct net
*net
= sock_net(sk
);
1921 __be32 group
= imr
->imr_multiaddr
.s_addr
;
1923 int ret
= -EADDRNOTAVAIL
;
1926 in_dev
= ip_mc_find_dev(net
, imr
);
1927 ifindex
= imr
->imr_ifindex
;
1928 for (imlp
= &inet
->mc_list
;
1929 (iml
= rtnl_dereference(*imlp
)) != NULL
;
1930 imlp
= &iml
->next_rcu
) {
1931 if (iml
->multi
.imr_multiaddr
.s_addr
!= group
)
1934 if (iml
->multi
.imr_ifindex
!= ifindex
)
1936 } else if (imr
->imr_address
.s_addr
&& imr
->imr_address
.s_addr
!=
1937 iml
->multi
.imr_address
.s_addr
)
1940 (void) ip_mc_leave_src(sk
, iml
, in_dev
);
1942 *imlp
= iml
->next_rcu
;
1945 ip_mc_dec_group(in_dev
, group
);
1947 /* decrease mem now to avoid the memleak warning */
1948 atomic_sub(sizeof(*iml
), &sk
->sk_omem_alloc
);
1949 kfree_rcu(iml
, rcu
);
1957 EXPORT_SYMBOL(ip_mc_leave_group
);
1959 int ip_mc_source(int add
, int omode
, struct sock
*sk
, struct
1960 ip_mreq_source
*mreqs
, int ifindex
)
1963 struct ip_mreqn imr
;
1964 __be32 addr
= mreqs
->imr_multiaddr
;
1965 struct ip_mc_socklist
*pmc
;
1966 struct in_device
*in_dev
= NULL
;
1967 struct inet_sock
*inet
= inet_sk(sk
);
1968 struct ip_sf_socklist
*psl
;
1969 struct net
*net
= sock_net(sk
);
1973 if (!ipv4_is_multicast(addr
))
1978 imr
.imr_multiaddr
.s_addr
= mreqs
->imr_multiaddr
;
1979 imr
.imr_address
.s_addr
= mreqs
->imr_interface
;
1980 imr
.imr_ifindex
= ifindex
;
1981 in_dev
= ip_mc_find_dev(net
, &imr
);
1987 err
= -EADDRNOTAVAIL
;
1989 for_each_pmc_rtnl(inet
, pmc
) {
1990 if ((pmc
->multi
.imr_multiaddr
.s_addr
==
1991 imr
.imr_multiaddr
.s_addr
) &&
1992 (pmc
->multi
.imr_ifindex
== imr
.imr_ifindex
))
1995 if (!pmc
) { /* must have a prior join */
1999 /* if a source filter was set, must be the same mode as before */
2001 if (pmc
->sfmode
!= omode
) {
2005 } else if (pmc
->sfmode
!= omode
) {
2006 /* allow mode switches for empty-set filters */
2007 ip_mc_add_src(in_dev
, &mreqs
->imr_multiaddr
, omode
, 0, NULL
, 0);
2008 ip_mc_del_src(in_dev
, &mreqs
->imr_multiaddr
, pmc
->sfmode
, 0,
2010 pmc
->sfmode
= omode
;
2013 psl
= rtnl_dereference(pmc
->sflist
);
2016 goto done
; /* err = -EADDRNOTAVAIL */
2018 for (i
=0; i
<psl
->sl_count
; i
++) {
2019 rv
= memcmp(&psl
->sl_addr
[i
], &mreqs
->imr_sourceaddr
,
2024 if (rv
) /* source not found */
2025 goto done
; /* err = -EADDRNOTAVAIL */
2027 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2028 if (psl
->sl_count
== 1 && omode
== MCAST_INCLUDE
) {
2033 /* update the interface filter */
2034 ip_mc_del_src(in_dev
, &mreqs
->imr_multiaddr
, omode
, 1,
2035 &mreqs
->imr_sourceaddr
, 1);
2037 for (j
=i
+1; j
<psl
->sl_count
; j
++)
2038 psl
->sl_addr
[j
-1] = psl
->sl_addr
[j
];
2043 /* else, add a new source to the filter */
2045 if (psl
&& psl
->sl_count
>= sysctl_igmp_max_msf
) {
2049 if (!psl
|| psl
->sl_count
== psl
->sl_max
) {
2050 struct ip_sf_socklist
*newpsl
;
2051 int count
= IP_SFBLOCK
;
2054 count
+= psl
->sl_max
;
2055 newpsl
= sock_kmalloc(sk
, IP_SFLSIZE(count
), GFP_KERNEL
);
2060 newpsl
->sl_max
= count
;
2061 newpsl
->sl_count
= count
- IP_SFBLOCK
;
2063 for (i
=0; i
<psl
->sl_count
; i
++)
2064 newpsl
->sl_addr
[i
] = psl
->sl_addr
[i
];
2065 /* decrease mem now to avoid the memleak warning */
2066 atomic_sub(IP_SFLSIZE(psl
->sl_max
), &sk
->sk_omem_alloc
);
2067 kfree_rcu(psl
, rcu
);
2069 rcu_assign_pointer(pmc
->sflist
, newpsl
);
2072 rv
= 1; /* > 0 for insert logic below if sl_count is 0 */
2073 for (i
=0; i
<psl
->sl_count
; i
++) {
2074 rv
= memcmp(&psl
->sl_addr
[i
], &mreqs
->imr_sourceaddr
,
2079 if (rv
== 0) /* address already there is an error */
2081 for (j
=psl
->sl_count
-1; j
>=i
; j
--)
2082 psl
->sl_addr
[j
+1] = psl
->sl_addr
[j
];
2083 psl
->sl_addr
[i
] = mreqs
->imr_sourceaddr
;
2086 /* update the interface list */
2087 ip_mc_add_src(in_dev
, &mreqs
->imr_multiaddr
, omode
, 1,
2088 &mreqs
->imr_sourceaddr
, 1);
2092 return ip_mc_leave_group(sk
, &imr
);
2096 int ip_mc_msfilter(struct sock
*sk
, struct ip_msfilter
*msf
, int ifindex
)
2099 struct ip_mreqn imr
;
2100 __be32 addr
= msf
->imsf_multiaddr
;
2101 struct ip_mc_socklist
*pmc
;
2102 struct in_device
*in_dev
;
2103 struct inet_sock
*inet
= inet_sk(sk
);
2104 struct ip_sf_socklist
*newpsl
, *psl
;
2105 struct net
*net
= sock_net(sk
);
2108 if (!ipv4_is_multicast(addr
))
2110 if (msf
->imsf_fmode
!= MCAST_INCLUDE
&&
2111 msf
->imsf_fmode
!= MCAST_EXCLUDE
)
2116 imr
.imr_multiaddr
.s_addr
= msf
->imsf_multiaddr
;
2117 imr
.imr_address
.s_addr
= msf
->imsf_interface
;
2118 imr
.imr_ifindex
= ifindex
;
2119 in_dev
= ip_mc_find_dev(net
, &imr
);
2126 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2127 if (msf
->imsf_fmode
== MCAST_INCLUDE
&& msf
->imsf_numsrc
== 0) {
2132 for_each_pmc_rtnl(inet
, pmc
) {
2133 if (pmc
->multi
.imr_multiaddr
.s_addr
== msf
->imsf_multiaddr
&&
2134 pmc
->multi
.imr_ifindex
== imr
.imr_ifindex
)
2137 if (!pmc
) { /* must have a prior join */
2141 if (msf
->imsf_numsrc
) {
2142 newpsl
= sock_kmalloc(sk
, IP_SFLSIZE(msf
->imsf_numsrc
),
2148 newpsl
->sl_max
= newpsl
->sl_count
= msf
->imsf_numsrc
;
2149 memcpy(newpsl
->sl_addr
, msf
->imsf_slist
,
2150 msf
->imsf_numsrc
* sizeof(msf
->imsf_slist
[0]));
2151 err
= ip_mc_add_src(in_dev
, &msf
->imsf_multiaddr
,
2152 msf
->imsf_fmode
, newpsl
->sl_count
, newpsl
->sl_addr
, 0);
2154 sock_kfree_s(sk
, newpsl
, IP_SFLSIZE(newpsl
->sl_max
));
2159 (void) ip_mc_add_src(in_dev
, &msf
->imsf_multiaddr
,
2160 msf
->imsf_fmode
, 0, NULL
, 0);
2162 psl
= rtnl_dereference(pmc
->sflist
);
2164 (void) ip_mc_del_src(in_dev
, &msf
->imsf_multiaddr
, pmc
->sfmode
,
2165 psl
->sl_count
, psl
->sl_addr
, 0);
2166 /* decrease mem now to avoid the memleak warning */
2167 atomic_sub(IP_SFLSIZE(psl
->sl_max
), &sk
->sk_omem_alloc
);
2168 kfree_rcu(psl
, rcu
);
2170 (void) ip_mc_del_src(in_dev
, &msf
->imsf_multiaddr
, pmc
->sfmode
,
2172 rcu_assign_pointer(pmc
->sflist
, newpsl
);
2173 pmc
->sfmode
= msf
->imsf_fmode
;
2178 err
= ip_mc_leave_group(sk
, &imr
);
2182 int ip_mc_msfget(struct sock
*sk
, struct ip_msfilter
*msf
,
2183 struct ip_msfilter __user
*optval
, int __user
*optlen
)
2185 int err
, len
, count
, copycount
;
2186 struct ip_mreqn imr
;
2187 __be32 addr
= msf
->imsf_multiaddr
;
2188 struct ip_mc_socklist
*pmc
;
2189 struct in_device
*in_dev
;
2190 struct inet_sock
*inet
= inet_sk(sk
);
2191 struct ip_sf_socklist
*psl
;
2192 struct net
*net
= sock_net(sk
);
2194 if (!ipv4_is_multicast(addr
))
2199 imr
.imr_multiaddr
.s_addr
= msf
->imsf_multiaddr
;
2200 imr
.imr_address
.s_addr
= msf
->imsf_interface
;
2201 imr
.imr_ifindex
= 0;
2202 in_dev
= ip_mc_find_dev(net
, &imr
);
2208 err
= -EADDRNOTAVAIL
;
2210 for_each_pmc_rtnl(inet
, pmc
) {
2211 if (pmc
->multi
.imr_multiaddr
.s_addr
== msf
->imsf_multiaddr
&&
2212 pmc
->multi
.imr_ifindex
== imr
.imr_ifindex
)
2215 if (!pmc
) /* must have a prior join */
2217 msf
->imsf_fmode
= pmc
->sfmode
;
2218 psl
= rtnl_dereference(pmc
->sflist
);
2224 count
= psl
->sl_count
;
2226 copycount
= count
< msf
->imsf_numsrc
? count
: msf
->imsf_numsrc
;
2227 len
= copycount
* sizeof(psl
->sl_addr
[0]);
2228 msf
->imsf_numsrc
= count
;
2229 if (put_user(IP_MSFILTER_SIZE(copycount
), optlen
) ||
2230 copy_to_user(optval
, msf
, IP_MSFILTER_SIZE(0))) {
2234 copy_to_user(&optval
->imsf_slist
[0], psl
->sl_addr
, len
))
2242 int ip_mc_gsfget(struct sock
*sk
, struct group_filter
*gsf
,
2243 struct group_filter __user
*optval
, int __user
*optlen
)
2245 int err
, i
, count
, copycount
;
2246 struct sockaddr_in
*psin
;
2248 struct ip_mc_socklist
*pmc
;
2249 struct inet_sock
*inet
= inet_sk(sk
);
2250 struct ip_sf_socklist
*psl
;
2252 psin
= (struct sockaddr_in
*)&gsf
->gf_group
;
2253 if (psin
->sin_family
!= AF_INET
)
2255 addr
= psin
->sin_addr
.s_addr
;
2256 if (!ipv4_is_multicast(addr
))
2261 err
= -EADDRNOTAVAIL
;
2263 for_each_pmc_rtnl(inet
, pmc
) {
2264 if (pmc
->multi
.imr_multiaddr
.s_addr
== addr
&&
2265 pmc
->multi
.imr_ifindex
== gsf
->gf_interface
)
2268 if (!pmc
) /* must have a prior join */
2270 gsf
->gf_fmode
= pmc
->sfmode
;
2271 psl
= rtnl_dereference(pmc
->sflist
);
2273 count
= psl
? psl
->sl_count
: 0;
2274 copycount
= count
< gsf
->gf_numsrc
? count
: gsf
->gf_numsrc
;
2275 gsf
->gf_numsrc
= count
;
2276 if (put_user(GROUP_FILTER_SIZE(copycount
), optlen
) ||
2277 copy_to_user(optval
, gsf
, GROUP_FILTER_SIZE(0))) {
2280 for (i
=0; i
<copycount
; i
++) {
2281 struct sockaddr_storage ss
;
2283 psin
= (struct sockaddr_in
*)&ss
;
2284 memset(&ss
, 0, sizeof(ss
));
2285 psin
->sin_family
= AF_INET
;
2286 psin
->sin_addr
.s_addr
= psl
->sl_addr
[i
];
2287 if (copy_to_user(&optval
->gf_slist
[i
], &ss
, sizeof(ss
)))
2297 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2299 int ip_mc_sf_allow(struct sock
*sk
, __be32 loc_addr
, __be32 rmt_addr
, int dif
)
2301 struct inet_sock
*inet
= inet_sk(sk
);
2302 struct ip_mc_socklist
*pmc
;
2303 struct ip_sf_socklist
*psl
;
2308 if (!ipv4_is_multicast(loc_addr
))
2312 for_each_pmc_rcu(inet
, pmc
) {
2313 if (pmc
->multi
.imr_multiaddr
.s_addr
== loc_addr
&&
2314 pmc
->multi
.imr_ifindex
== dif
)
2320 psl
= rcu_dereference(pmc
->sflist
);
2321 ret
= (pmc
->sfmode
== MCAST_EXCLUDE
);
2325 for (i
=0; i
<psl
->sl_count
; i
++) {
2326 if (psl
->sl_addr
[i
] == rmt_addr
)
2330 if (pmc
->sfmode
== MCAST_INCLUDE
&& i
>= psl
->sl_count
)
2332 if (pmc
->sfmode
== MCAST_EXCLUDE
&& i
< psl
->sl_count
)
2342 * A socket is closing.
2345 void ip_mc_drop_socket(struct sock
*sk
)
2347 struct inet_sock
*inet
= inet_sk(sk
);
2348 struct ip_mc_socklist
*iml
;
2349 struct net
*net
= sock_net(sk
);
2351 if (inet
->mc_list
== NULL
)
2355 while ((iml
= rtnl_dereference(inet
->mc_list
)) != NULL
) {
2356 struct in_device
*in_dev
;
2358 inet
->mc_list
= iml
->next_rcu
;
2359 in_dev
= inetdev_by_index(net
, iml
->multi
.imr_ifindex
);
2360 (void) ip_mc_leave_src(sk
, iml
, in_dev
);
2362 ip_mc_dec_group(in_dev
, iml
->multi
.imr_multiaddr
.s_addr
);
2363 /* decrease mem now to avoid the memleak warning */
2364 atomic_sub(sizeof(*iml
), &sk
->sk_omem_alloc
);
2365 kfree_rcu(iml
, rcu
);
2370 /* called with rcu_read_lock() */
2371 int ip_check_mc_rcu(struct in_device
*in_dev
, __be32 mc_addr
, __be32 src_addr
, u16 proto
)
2373 struct ip_mc_list
*im
;
2374 struct ip_mc_list __rcu
**mc_hash
;
2375 struct ip_sf_list
*psf
;
2378 mc_hash
= rcu_dereference(in_dev
->mc_hash
);
2380 u32 hash
= hash_32((__force u32
)mc_addr
, MC_HASH_SZ_LOG
);
2382 for (im
= rcu_dereference(mc_hash
[hash
]);
2384 im
= rcu_dereference(im
->next_hash
)) {
2385 if (im
->multiaddr
== mc_addr
)
2389 for_each_pmc_rcu(in_dev
, im
) {
2390 if (im
->multiaddr
== mc_addr
)
2394 if (im
&& proto
== IPPROTO_IGMP
) {
2398 for (psf
=im
->sources
; psf
; psf
=psf
->sf_next
) {
2399 if (psf
->sf_inaddr
== src_addr
)
2403 rv
= psf
->sf_count
[MCAST_INCLUDE
] ||
2404 psf
->sf_count
[MCAST_EXCLUDE
] !=
2405 im
->sfcount
[MCAST_EXCLUDE
];
2407 rv
= im
->sfcount
[MCAST_EXCLUDE
] != 0;
2409 rv
= 1; /* unspecified source; tentatively allow */
2414 #if defined(CONFIG_PROC_FS)
2415 struct igmp_mc_iter_state
{
2416 struct seq_net_private p
;
2417 struct net_device
*dev
;
2418 struct in_device
*in_dev
;
2421 #define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2423 static inline struct ip_mc_list
*igmp_mc_get_first(struct seq_file
*seq
)
2425 struct net
*net
= seq_file_net(seq
);
2426 struct ip_mc_list
*im
= NULL
;
2427 struct igmp_mc_iter_state
*state
= igmp_mc_seq_private(seq
);
2429 state
->in_dev
= NULL
;
2430 for_each_netdev_rcu(net
, state
->dev
) {
2431 struct in_device
*in_dev
;
2433 in_dev
= __in_dev_get_rcu(state
->dev
);
2436 im
= rcu_dereference(in_dev
->mc_list
);
2438 state
->in_dev
= in_dev
;
2445 static struct ip_mc_list
*igmp_mc_get_next(struct seq_file
*seq
, struct ip_mc_list
*im
)
2447 struct igmp_mc_iter_state
*state
= igmp_mc_seq_private(seq
);
2449 im
= rcu_dereference(im
->next_rcu
);
2451 state
->dev
= next_net_device_rcu(state
->dev
);
2453 state
->in_dev
= NULL
;
2456 state
->in_dev
= __in_dev_get_rcu(state
->dev
);
2459 im
= rcu_dereference(state
->in_dev
->mc_list
);
2464 static struct ip_mc_list
*igmp_mc_get_idx(struct seq_file
*seq
, loff_t pos
)
2466 struct ip_mc_list
*im
= igmp_mc_get_first(seq
);
2468 while (pos
&& (im
= igmp_mc_get_next(seq
, im
)) != NULL
)
2470 return pos
? NULL
: im
;
2473 static void *igmp_mc_seq_start(struct seq_file
*seq
, loff_t
*pos
)
2477 return *pos
? igmp_mc_get_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
2480 static void *igmp_mc_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2482 struct ip_mc_list
*im
;
2483 if (v
== SEQ_START_TOKEN
)
2484 im
= igmp_mc_get_first(seq
);
2486 im
= igmp_mc_get_next(seq
, v
);
2491 static void igmp_mc_seq_stop(struct seq_file
*seq
, void *v
)
2494 struct igmp_mc_iter_state
*state
= igmp_mc_seq_private(seq
);
2496 state
->in_dev
= NULL
;
2501 static int igmp_mc_seq_show(struct seq_file
*seq
, void *v
)
2503 if (v
== SEQ_START_TOKEN
)
2505 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2507 struct ip_mc_list
*im
= (struct ip_mc_list
*)v
;
2508 struct igmp_mc_iter_state
*state
= igmp_mc_seq_private(seq
);
2512 #ifdef CONFIG_IP_MULTICAST
2513 querier
= IGMP_V1_SEEN(state
->in_dev
) ? "V1" :
2514 IGMP_V2_SEEN(state
->in_dev
) ? "V2" :
2520 if (rcu_dereference(state
->in_dev
->mc_list
) == im
) {
2521 seq_printf(seq
, "%d\t%-10s: %5d %7s\n",
2522 state
->dev
->ifindex
, state
->dev
->name
, state
->in_dev
->mc_count
, querier
);
2525 delta
= im
->timer
.expires
- jiffies
;
2527 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
2528 im
->multiaddr
, im
->users
,
2530 im
->tm_running
? jiffies_delta_to_clock_t(delta
) : 0,
2536 static const struct seq_operations igmp_mc_seq_ops
= {
2537 .start
= igmp_mc_seq_start
,
2538 .next
= igmp_mc_seq_next
,
2539 .stop
= igmp_mc_seq_stop
,
2540 .show
= igmp_mc_seq_show
,
2543 static int igmp_mc_seq_open(struct inode
*inode
, struct file
*file
)
2545 return seq_open_net(inode
, file
, &igmp_mc_seq_ops
,
2546 sizeof(struct igmp_mc_iter_state
));
2549 static const struct file_operations igmp_mc_seq_fops
= {
2550 .owner
= THIS_MODULE
,
2551 .open
= igmp_mc_seq_open
,
2553 .llseek
= seq_lseek
,
2554 .release
= seq_release_net
,
2557 struct igmp_mcf_iter_state
{
2558 struct seq_net_private p
;
2559 struct net_device
*dev
;
2560 struct in_device
*idev
;
2561 struct ip_mc_list
*im
;
2564 #define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2566 static inline struct ip_sf_list
*igmp_mcf_get_first(struct seq_file
*seq
)
2568 struct net
*net
= seq_file_net(seq
);
2569 struct ip_sf_list
*psf
= NULL
;
2570 struct ip_mc_list
*im
= NULL
;
2571 struct igmp_mcf_iter_state
*state
= igmp_mcf_seq_private(seq
);
2575 for_each_netdev_rcu(net
, state
->dev
) {
2576 struct in_device
*idev
;
2577 idev
= __in_dev_get_rcu(state
->dev
);
2578 if (unlikely(idev
== NULL
))
2580 im
= rcu_dereference(idev
->mc_list
);
2581 if (likely(im
!= NULL
)) {
2582 spin_lock_bh(&im
->lock
);
2584 if (likely(psf
!= NULL
)) {
2589 spin_unlock_bh(&im
->lock
);
2595 static struct ip_sf_list
*igmp_mcf_get_next(struct seq_file
*seq
, struct ip_sf_list
*psf
)
2597 struct igmp_mcf_iter_state
*state
= igmp_mcf_seq_private(seq
);
2601 spin_unlock_bh(&state
->im
->lock
);
2602 state
->im
= state
->im
->next
;
2603 while (!state
->im
) {
2604 state
->dev
= next_net_device_rcu(state
->dev
);
2609 state
->idev
= __in_dev_get_rcu(state
->dev
);
2612 state
->im
= rcu_dereference(state
->idev
->mc_list
);
2616 spin_lock_bh(&state
->im
->lock
);
2617 psf
= state
->im
->sources
;
2623 static struct ip_sf_list
*igmp_mcf_get_idx(struct seq_file
*seq
, loff_t pos
)
2625 struct ip_sf_list
*psf
= igmp_mcf_get_first(seq
);
2627 while (pos
&& (psf
= igmp_mcf_get_next(seq
, psf
)) != NULL
)
2629 return pos
? NULL
: psf
;
2632 static void *igmp_mcf_seq_start(struct seq_file
*seq
, loff_t
*pos
)
2636 return *pos
? igmp_mcf_get_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
2639 static void *igmp_mcf_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2641 struct ip_sf_list
*psf
;
2642 if (v
== SEQ_START_TOKEN
)
2643 psf
= igmp_mcf_get_first(seq
);
2645 psf
= igmp_mcf_get_next(seq
, v
);
2650 static void igmp_mcf_seq_stop(struct seq_file
*seq
, void *v
)
2653 struct igmp_mcf_iter_state
*state
= igmp_mcf_seq_private(seq
);
2654 if (likely(state
->im
!= NULL
)) {
2655 spin_unlock_bh(&state
->im
->lock
);
2663 static int igmp_mcf_seq_show(struct seq_file
*seq
, void *v
)
2665 struct ip_sf_list
*psf
= (struct ip_sf_list
*)v
;
2666 struct igmp_mcf_iter_state
*state
= igmp_mcf_seq_private(seq
);
2668 if (v
== SEQ_START_TOKEN
) {
2671 "%10s %10s %6s %6s\n", "Idx",
2673 "SRC", "INC", "EXC");
2677 "0x%08x %6lu %6lu\n",
2678 state
->dev
->ifindex
, state
->dev
->name
,
2679 ntohl(state
->im
->multiaddr
),
2680 ntohl(psf
->sf_inaddr
),
2681 psf
->sf_count
[MCAST_INCLUDE
],
2682 psf
->sf_count
[MCAST_EXCLUDE
]);
2687 static const struct seq_operations igmp_mcf_seq_ops
= {
2688 .start
= igmp_mcf_seq_start
,
2689 .next
= igmp_mcf_seq_next
,
2690 .stop
= igmp_mcf_seq_stop
,
2691 .show
= igmp_mcf_seq_show
,
2694 static int igmp_mcf_seq_open(struct inode
*inode
, struct file
*file
)
2696 return seq_open_net(inode
, file
, &igmp_mcf_seq_ops
,
2697 sizeof(struct igmp_mcf_iter_state
));
2700 static const struct file_operations igmp_mcf_seq_fops
= {
2701 .owner
= THIS_MODULE
,
2702 .open
= igmp_mcf_seq_open
,
2704 .llseek
= seq_lseek
,
2705 .release
= seq_release_net
,
2708 static int __net_init
igmp_net_init(struct net
*net
)
2710 struct proc_dir_entry
*pde
;
2712 pde
= proc_create("igmp", S_IRUGO
, net
->proc_net
, &igmp_mc_seq_fops
);
2715 pde
= proc_create("mcfilter", S_IRUGO
, net
->proc_net
,
2716 &igmp_mcf_seq_fops
);
2722 remove_proc_entry("igmp", net
->proc_net
);
2727 static void __net_exit
igmp_net_exit(struct net
*net
)
2729 remove_proc_entry("mcfilter", net
->proc_net
);
2730 remove_proc_entry("igmp", net
->proc_net
);
2733 static struct pernet_operations igmp_net_ops
= {
2734 .init
= igmp_net_init
,
2735 .exit
= igmp_net_exit
,
2738 int __init
igmp_mc_proc_init(void)
2740 return register_pernet_subsys(&igmp_net_ops
);