blob: 2a4bb76f2132957da25326ce98653b249d9ccaaf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux NET3: Internet Group Management Protocol [IGMP]
3 *
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.
6 *
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.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Authors:
Alan Cox113aa832008-10-13 19:01:08 -070012 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
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.
18 *
19 * Fixes:
20 *
21 * Alan Cox : Added lots of __inline__ to optimise
22 * the memory usage of all the tiny little
23 * functions.
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
32 * points.
33 *
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
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090036 * The enhancements are mainly based on Steve Deering's
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * 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
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090050 * memberships but was being deleted,
51 * which caused a "del_timer() called
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * from %p with timer not initialized\n"
53 * message (960131).
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090054 * Christian Daudt : removed del_timer from
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * igmp_timer_expire function (960205).
56 * Christian Daudt : igmp_heard_report now only calls
57 * igmp_timer_expire if tm->running is
58 * true (960216).
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
70 * Vinay Kulkarni
71 */
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090074#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#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>
83#include <linux/in.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>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020092
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020093#include <net/net_namespace.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020094#include <net/arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <net/ip.h>
96#include <net/protocol.h>
97#include <net/route.h>
98#include <net/sock.h>
99#include <net/checksum.h>
100#include <linux/netfilter_ipv4.h>
101#ifdef CONFIG_IP_MROUTE
102#include <linux/mroute.h>
103#endif
104#ifdef CONFIG_PROC_FS
105#include <linux/proc_fs.h>
106#include <linux/seq_file.h>
107#endif
108
109#define IP_MAX_MEMBERSHIPS 20
110#define IP_MAX_MSF 10
111
112#ifdef CONFIG_IP_MULTICAST
113/* Parameter names and values are taken from igmp-v2-06 draft */
114
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
120
121
122#define IGMP_Initial_Report_Delay (1)
123
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.
129 */
130
Herbert Xu42f811b2007-06-04 23:34:44 -0700131#define IGMP_V1_SEEN(in_dev) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900132 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700133 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) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900137 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700138 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)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im);
Al Viro63007722006-09-27 18:31:32 -0700143static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static void igmpv3_clear_delrec(struct in_device *in_dev);
145static int sf_setstate(struct ip_mc_list *pmc);
146static void sf_markstate(struct ip_mc_list *pmc);
147#endif
148static void ip_mc_clear_src(struct ip_mc_list *pmc);
Al Viro8f935bb2006-09-27 18:30:07 -0700149static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
150 int sfcount, __be32 *psfsrc, int delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152static void ip_ma_put(struct ip_mc_list *im)
153{
154 if (atomic_dec_and_test(&im->refcnt)) {
155 in_dev_put(im->interface);
156 kfree(im);
157 }
158}
159
160#ifdef CONFIG_IP_MULTICAST
161
162/*
163 * Timer management
164 */
165
166static __inline__ void igmp_stop_timer(struct ip_mc_list *im)
167{
168 spin_lock_bh(&im->lock);
169 if (del_timer(&im->timer))
170 atomic_dec(&im->refcnt);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800171 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 im->reporter = 0;
173 im->unsolicit_count = 0;
174 spin_unlock_bh(&im->lock);
175}
176
177/* It must be called with locked im->lock */
178static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
179{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800180 int tv = net_random() % max_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800182 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (!mod_timer(&im->timer, jiffies+tv+2))
184 atomic_inc(&im->refcnt);
185}
186
187static void igmp_gq_start_timer(struct in_device *in_dev)
188{
189 int tv = net_random() % in_dev->mr_maxdelay;
190
191 in_dev->mr_gq_running = 1;
192 if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2))
193 in_dev_hold(in_dev);
194}
195
196static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
197{
198 int tv = net_random() % delay;
199
200 if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
201 in_dev_hold(in_dev);
202}
203
204static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
205{
206 spin_lock_bh(&im->lock);
207 im->unsolicit_count = 0;
208 if (del_timer(&im->timer)) {
209 if ((long)(im->timer.expires-jiffies) < max_delay) {
210 add_timer(&im->timer);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800211 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 spin_unlock_bh(&im->lock);
213 return;
214 }
215 atomic_dec(&im->refcnt);
216 }
217 igmp_start_timer(im, max_delay);
218 spin_unlock_bh(&im->lock);
219}
220
221
222/*
223 * Send an IGMP report.
224 */
225
226#define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
227
228
229static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
230 int gdeleted, int sdeleted)
231{
232 switch (type) {
233 case IGMPV3_MODE_IS_INCLUDE:
234 case IGMPV3_MODE_IS_EXCLUDE:
235 if (gdeleted || sdeleted)
236 return 0;
David L Stevensad125832006-01-18 14:20:56 -0800237 if (!(pmc->gsquery && !psf->sf_gsresp)) {
238 if (pmc->sfmode == MCAST_INCLUDE)
239 return 1;
240 /* don't include if this source is excluded
241 * in all filters
242 */
243 if (psf->sf_count[MCAST_INCLUDE])
244 return type == IGMPV3_MODE_IS_INCLUDE;
245 return pmc->sfcount[MCAST_EXCLUDE] ==
246 psf->sf_count[MCAST_EXCLUDE];
247 }
248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 case IGMPV3_CHANGE_TO_INCLUDE:
250 if (gdeleted || sdeleted)
251 return 0;
252 return psf->sf_count[MCAST_INCLUDE] != 0;
253 case IGMPV3_CHANGE_TO_EXCLUDE:
254 if (gdeleted || sdeleted)
255 return 0;
256 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
257 psf->sf_count[MCAST_INCLUDE])
258 return 0;
259 return pmc->sfcount[MCAST_EXCLUDE] ==
260 psf->sf_count[MCAST_EXCLUDE];
261 case IGMPV3_ALLOW_NEW_SOURCES:
262 if (gdeleted || !psf->sf_crcount)
263 return 0;
264 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
265 case IGMPV3_BLOCK_OLD_SOURCES:
266 if (pmc->sfmode == MCAST_INCLUDE)
267 return gdeleted || (psf->sf_crcount && sdeleted);
268 return psf->sf_crcount && !gdeleted && !sdeleted;
269 }
270 return 0;
271}
272
273static int
274igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
275{
276 struct ip_sf_list *psf;
277 int scount = 0;
278
279 for (psf=pmc->sources; psf; psf=psf->sf_next) {
280 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
281 continue;
282 scount++;
283 }
284 return scount;
285}
286
287static struct sk_buff *igmpv3_newpack(struct net_device *dev, int size)
288{
289 struct sk_buff *skb;
290 struct rtable *rt;
291 struct iphdr *pip;
292 struct igmpv3_report *pig;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700293 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Johannes Bergf5184d22008-05-12 20:48:31 -0700295 skb = alloc_skb(size + LL_ALLOCATED_SPACE(dev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (skb == NULL)
297 return NULL;
298
299 {
300 struct flowi fl = { .oif = dev->ifindex,
301 .nl_u = { .ip4_u = {
302 .daddr = IGMPV3_ALL_MCR } },
303 .proto = IPPROTO_IGMP };
Daniel Lezcano877aced2008-08-13 16:15:57 -0700304 if (ip_route_output_key(net, &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 kfree_skb(skb);
306 return NULL;
307 }
308 }
309 if (rt->rt_src == 0) {
310 kfree_skb(skb);
311 ip_rt_put(rt);
312 return NULL;
313 }
314
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 skb->dev = dev;
317
318 skb_reserve(skb, LL_RESERVED_SPACE(dev));
319
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300320 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700321 pip = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300322 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 pip->version = 4;
325 pip->ihl = (sizeof(struct iphdr)+4)>>2;
326 pip->tos = 0xc0;
327 pip->frag_off = htons(IP_DF);
328 pip->ttl = 1;
329 pip->daddr = rt->rt_dst;
330 pip->saddr = rt->rt_src;
331 pip->protocol = IPPROTO_IGMP;
332 pip->tot_len = 0; /* filled in later */
Changli Gaod8d1f302010-06-10 23:31:35 -0700333 ip_select_ident(pip, &rt->dst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 ((u8*)&pip[1])[0] = IPOPT_RA;
335 ((u8*)&pip[1])[1] = 4;
336 ((u8*)&pip[1])[2] = 0;
337 ((u8*)&pip[1])[3] = 0;
338
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700339 skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4;
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -0300340 skb_put(skb, sizeof(*pig));
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300341 pig = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
343 pig->resv1 = 0;
344 pig->csum = 0;
345 pig->resv2 = 0;
346 pig->ngrec = 0;
347 return skb;
348}
349
350static int igmpv3_sendpack(struct sk_buff *skb)
351{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300352 struct igmphdr *pig = igmp_hdr(skb);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700353 const int igmplen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300355 pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Herbert Xuc439cb22008-01-11 19:14:00 -0800357 return ip_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
361{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800362 return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
366 int type, struct igmpv3_grec **ppgr)
367{
368 struct net_device *dev = pmc->interface->dev;
369 struct igmpv3_report *pih;
370 struct igmpv3_grec *pgr;
371
372 if (!skb)
373 skb = igmpv3_newpack(dev, dev->mtu);
374 if (!skb)
375 return NULL;
376 pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
377 pgr->grec_type = type;
378 pgr->grec_auxwords = 0;
379 pgr->grec_nsrcs = 0;
380 pgr->grec_mca = pmc->multiaddr;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300381 pih = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 pih->ngrec = htons(ntohs(pih->ngrec)+1);
383 *ppgr = pgr;
384 return skb;
385}
386
387#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
388 skb_tailroom(skb)) : 0)
389
390static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
391 int type, int gdeleted, int sdeleted)
392{
393 struct net_device *dev = pmc->interface->dev;
394 struct igmpv3_report *pih;
395 struct igmpv3_grec *pgr = NULL;
396 struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevensad125832006-01-18 14:20:56 -0800397 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 if (pmc->multiaddr == IGMP_ALL_HOSTS)
400 return skb;
401
402 isquery = type == IGMPV3_MODE_IS_INCLUDE ||
403 type == IGMPV3_MODE_IS_EXCLUDE;
404 truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
405 type == IGMPV3_CHANGE_TO_EXCLUDE;
406
David L Stevensad125832006-01-18 14:20:56 -0800407 stotal = scount = 0;
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
410
David L Stevensad125832006-01-18 14:20:56 -0800411 if (!*psf_list)
412 goto empty_source;
413
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300414 pih = skb ? igmpv3_report_hdr(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /* EX and TO_EX get a fresh packet, if needed */
417 if (truncate) {
418 if (pih && pih->ngrec &&
419 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
420 if (skb)
421 igmpv3_sendpack(skb);
422 skb = igmpv3_newpack(dev, dev->mtu);
423 }
424 }
425 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 psf_prev = NULL;
427 for (psf=*psf_list; psf; psf=psf_next) {
Al Viroea4d9e72006-09-27 18:30:52 -0700428 __be32 *psrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 psf_next = psf->sf_next;
431
432 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
433 psf_prev = psf;
434 continue;
435 }
436
437 /* clear marks on query responses */
438 if (isquery)
439 psf->sf_gsresp = 0;
440
Al Viro63007722006-09-27 18:31:32 -0700441 if (AVAILABLE(skb) < sizeof(__be32) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 first*sizeof(struct igmpv3_grec)) {
443 if (truncate && !first)
444 break; /* truncate these */
445 if (pgr)
446 pgr->grec_nsrcs = htons(scount);
447 if (skb)
448 igmpv3_sendpack(skb);
449 skb = igmpv3_newpack(dev, dev->mtu);
450 first = 1;
451 scount = 0;
452 }
453 if (first) {
454 skb = add_grhead(skb, pmc, type, &pgr);
455 first = 0;
456 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -0800457 if (!skb)
458 return NULL;
Al Viro63007722006-09-27 18:31:32 -0700459 psrc = (__be32 *)skb_put(skb, sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 *psrc = psf->sf_inaddr;
David L Stevensad125832006-01-18 14:20:56 -0800461 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
463 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
464 psf->sf_crcount--;
465 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
466 if (psf_prev)
467 psf_prev->sf_next = psf->sf_next;
468 else
469 *psf_list = psf->sf_next;
470 kfree(psf);
471 continue;
472 }
473 }
474 psf_prev = psf;
475 }
David L Stevensad125832006-01-18 14:20:56 -0800476
477empty_source:
478 if (!stotal) {
479 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
480 type == IGMPV3_BLOCK_OLD_SOURCES)
481 return skb;
482 if (pmc->crcount || isquery) {
483 /* make sure we have room for group header */
484 if (skb && AVAILABLE(skb)<sizeof(struct igmpv3_grec)) {
485 igmpv3_sendpack(skb);
486 skb = NULL; /* add_grhead will get a new one */
487 }
488 skb = add_grhead(skb, pmc, type, &pgr);
489 }
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (pgr)
492 pgr->grec_nsrcs = htons(scount);
493
494 if (isquery)
495 pmc->gsquery = 0; /* clear query state on report */
496 return skb;
497}
498
499static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
500{
501 struct sk_buff *skb = NULL;
502 int type;
503
504 if (!pmc) {
505 read_lock(&in_dev->mc_list_lock);
506 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
507 if (pmc->multiaddr == IGMP_ALL_HOSTS)
508 continue;
509 spin_lock_bh(&pmc->lock);
510 if (pmc->sfcount[MCAST_EXCLUDE])
511 type = IGMPV3_MODE_IS_EXCLUDE;
512 else
513 type = IGMPV3_MODE_IS_INCLUDE;
514 skb = add_grec(skb, pmc, type, 0, 0);
515 spin_unlock_bh(&pmc->lock);
516 }
517 read_unlock(&in_dev->mc_list_lock);
518 } else {
519 spin_lock_bh(&pmc->lock);
520 if (pmc->sfcount[MCAST_EXCLUDE])
521 type = IGMPV3_MODE_IS_EXCLUDE;
522 else
523 type = IGMPV3_MODE_IS_INCLUDE;
524 skb = add_grec(skb, pmc, type, 0, 0);
525 spin_unlock_bh(&pmc->lock);
526 }
527 if (!skb)
528 return 0;
529 return igmpv3_sendpack(skb);
530}
531
532/*
533 * remove zero-count source records from a source filter list
534 */
535static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
536{
537 struct ip_sf_list *psf_prev, *psf_next, *psf;
538
539 psf_prev = NULL;
540 for (psf=*ppsf; psf; psf = psf_next) {
541 psf_next = psf->sf_next;
542 if (psf->sf_crcount == 0) {
543 if (psf_prev)
544 psf_prev->sf_next = psf->sf_next;
545 else
546 *ppsf = psf->sf_next;
547 kfree(psf);
548 } else
549 psf_prev = psf;
550 }
551}
552
553static void igmpv3_send_cr(struct in_device *in_dev)
554{
555 struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
556 struct sk_buff *skb = NULL;
557 int type, dtype;
558
559 read_lock(&in_dev->mc_list_lock);
560 spin_lock_bh(&in_dev->mc_tomb_lock);
561
562 /* deleted MCA's */
563 pmc_prev = NULL;
564 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc_next) {
565 pmc_next = pmc->next;
566 if (pmc->sfmode == MCAST_INCLUDE) {
567 type = IGMPV3_BLOCK_OLD_SOURCES;
568 dtype = IGMPV3_BLOCK_OLD_SOURCES;
569 skb = add_grec(skb, pmc, type, 1, 0);
570 skb = add_grec(skb, pmc, dtype, 1, 1);
571 }
572 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (pmc->sfmode == MCAST_EXCLUDE) {
574 type = IGMPV3_CHANGE_TO_INCLUDE;
575 skb = add_grec(skb, pmc, type, 1, 0);
576 }
David L Stevensad125832006-01-18 14:20:56 -0800577 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (pmc->crcount == 0) {
579 igmpv3_clear_zeros(&pmc->tomb);
580 igmpv3_clear_zeros(&pmc->sources);
581 }
582 }
583 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
584 if (pmc_prev)
585 pmc_prev->next = pmc_next;
586 else
587 in_dev->mc_tomb = pmc_next;
588 in_dev_put(pmc->interface);
589 kfree(pmc);
590 } else
591 pmc_prev = pmc;
592 }
593 spin_unlock_bh(&in_dev->mc_tomb_lock);
594
595 /* change recs */
596 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
597 spin_lock_bh(&pmc->lock);
598 if (pmc->sfcount[MCAST_EXCLUDE]) {
599 type = IGMPV3_BLOCK_OLD_SOURCES;
600 dtype = IGMPV3_ALLOW_NEW_SOURCES;
601 } else {
602 type = IGMPV3_ALLOW_NEW_SOURCES;
603 dtype = IGMPV3_BLOCK_OLD_SOURCES;
604 }
605 skb = add_grec(skb, pmc, type, 0, 0);
606 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
607
608 /* filter mode changes */
609 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (pmc->sfmode == MCAST_EXCLUDE)
611 type = IGMPV3_CHANGE_TO_EXCLUDE;
612 else
613 type = IGMPV3_CHANGE_TO_INCLUDE;
614 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevensad125832006-01-18 14:20:56 -0800615 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 spin_unlock_bh(&pmc->lock);
618 }
619 read_unlock(&in_dev->mc_list_lock);
620
621 if (!skb)
622 return;
623 (void) igmpv3_sendpack(skb);
624}
625
626static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
627 int type)
628{
629 struct sk_buff *skb;
630 struct iphdr *iph;
631 struct igmphdr *ih;
632 struct rtable *rt;
633 struct net_device *dev = in_dev->dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700634 struct net *net = dev_net(dev);
Al Viro63007722006-09-27 18:31:32 -0700635 __be32 group = pmc ? pmc->multiaddr : 0;
636 __be32 dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
639 return igmpv3_send_report(in_dev, pmc);
640 else if (type == IGMP_HOST_LEAVE_MESSAGE)
641 dst = IGMP_ALL_ROUTER;
642 else
643 dst = group;
644
645 {
646 struct flowi fl = { .oif = dev->ifindex,
647 .nl_u = { .ip4_u = { .daddr = dst } },
648 .proto = IPPROTO_IGMP };
Daniel Lezcano877aced2008-08-13 16:15:57 -0700649 if (ip_route_output_key(net, &rt, &fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -1;
651 }
652 if (rt->rt_src == 0) {
653 ip_rt_put(rt);
654 return -1;
655 }
656
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800657 skb = alloc_skb(IGMP_SIZE+LL_ALLOCATED_SPACE(dev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (skb == NULL) {
659 ip_rt_put(rt);
660 return -1;
661 }
662
Changli Gaod8d1f302010-06-10 23:31:35 -0700663 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 skb_reserve(skb, LL_RESERVED_SPACE(dev));
666
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300667 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700668 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300669 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 iph->version = 4;
672 iph->ihl = (sizeof(struct iphdr)+4)>>2;
673 iph->tos = 0xc0;
674 iph->frag_off = htons(IP_DF);
675 iph->ttl = 1;
676 iph->daddr = dst;
677 iph->saddr = rt->rt_src;
678 iph->protocol = IPPROTO_IGMP;
Changli Gaod8d1f302010-06-10 23:31:35 -0700679 ip_select_ident(iph, &rt->dst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 ((u8*)&iph[1])[0] = IPOPT_RA;
681 ((u8*)&iph[1])[1] = 4;
682 ((u8*)&iph[1])[2] = 0;
683 ((u8*)&iph[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800686 ih->type = type;
687 ih->code = 0;
688 ih->csum = 0;
689 ih->group = group;
690 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Herbert Xuc439cb22008-01-11 19:14:00 -0800692 return ip_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695static void igmp_gq_timer_expire(unsigned long data)
696{
697 struct in_device *in_dev = (struct in_device *)data;
698
699 in_dev->mr_gq_running = 0;
700 igmpv3_send_report(in_dev, NULL);
701 __in_dev_put(in_dev);
702}
703
704static void igmp_ifc_timer_expire(unsigned long data)
705{
706 struct in_device *in_dev = (struct in_device *)data;
707
708 igmpv3_send_cr(in_dev);
709 if (in_dev->mr_ifc_count) {
710 in_dev->mr_ifc_count--;
711 igmp_ifc_start_timer(in_dev, IGMP_Unsolicited_Report_Interval);
712 }
713 __in_dev_put(in_dev);
714}
715
716static void igmp_ifc_event(struct in_device *in_dev)
717{
718 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
719 return;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900720 in_dev->mr_ifc_count = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 IGMP_Unsolicited_Report_Count;
722 igmp_ifc_start_timer(in_dev, 1);
723}
724
725
726static void igmp_timer_expire(unsigned long data)
727{
728 struct ip_mc_list *im=(struct ip_mc_list *)data;
729 struct in_device *in_dev = im->interface;
730
731 spin_lock(&im->lock);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800732 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (im->unsolicit_count) {
735 im->unsolicit_count--;
736 igmp_start_timer(im, IGMP_Unsolicited_Report_Interval);
737 }
738 im->reporter = 1;
739 spin_unlock(&im->lock);
740
741 if (IGMP_V1_SEEN(in_dev))
742 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
743 else if (IGMP_V2_SEEN(in_dev))
744 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
745 else
746 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
747
748 ip_ma_put(im);
749}
750
David L Stevensad125832006-01-18 14:20:56 -0800751/* mark EXCLUDE-mode sources */
Al Viroea4d9e72006-09-27 18:30:52 -0700752static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 struct ip_sf_list *psf;
755 int i, scount;
756
757 scount = 0;
758 for (psf=pmc->sources; psf; psf=psf->sf_next) {
759 if (scount == nsrcs)
760 break;
David L Stevensad125832006-01-18 14:20:56 -0800761 for (i=0; i<nsrcs; i++) {
762 /* skip inactive filters */
763 if (pmc->sfcount[MCAST_INCLUDE] ||
764 pmc->sfcount[MCAST_EXCLUDE] !=
765 psf->sf_count[MCAST_EXCLUDE])
766 continue;
767 if (srcs[i] == psf->sf_inaddr) {
768 scount++;
769 break;
770 }
771 }
772 }
773 pmc->gsquery = 0;
774 if (scount == nsrcs) /* all sources excluded */
775 return 0;
776 return 1;
777}
778
Al Viroea4d9e72006-09-27 18:30:52 -0700779static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
David L Stevensad125832006-01-18 14:20:56 -0800780{
781 struct ip_sf_list *psf;
782 int i, scount;
783
784 if (pmc->sfmode == MCAST_EXCLUDE)
785 return igmp_xmarksources(pmc, nsrcs, srcs);
786
787 /* mark INCLUDE-mode sources */
788 scount = 0;
789 for (psf=pmc->sources; psf; psf=psf->sf_next) {
790 if (scount == nsrcs)
791 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 for (i=0; i<nsrcs; i++)
793 if (srcs[i] == psf->sf_inaddr) {
794 psf->sf_gsresp = 1;
795 scount++;
796 break;
797 }
798 }
David L Stevensad125832006-01-18 14:20:56 -0800799 if (!scount) {
800 pmc->gsquery = 0;
801 return 0;
802 }
803 pmc->gsquery = 1;
804 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Al Viro63007722006-09-27 18:31:32 -0700807static void igmp_heard_report(struct in_device *in_dev, __be32 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 struct ip_mc_list *im;
810
811 /* Timers are only set for non-local groups */
812
813 if (group == IGMP_ALL_HOSTS)
814 return;
815
816 read_lock(&in_dev->mc_list_lock);
817 for (im=in_dev->mc_list; im!=NULL; im=im->next) {
818 if (im->multiaddr == group) {
819 igmp_stop_timer(im);
820 break;
821 }
822 }
823 read_unlock(&in_dev->mc_list_lock);
824}
825
826static void igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
827 int len)
828{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300829 struct igmphdr *ih = igmp_hdr(skb);
830 struct igmpv3_query *ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct ip_mc_list *im;
Al Viro63007722006-09-27 18:31:32 -0700832 __be32 group = ih->group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 int max_delay;
834 int mark = 0;
835
836
David Stevens5b7c8402010-09-30 14:29:40 +0000837 if (len == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (ih->code == 0) {
839 /* Alas, old v1 router presents here. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 max_delay = IGMP_Query_Response_Interval;
842 in_dev->mr_v1_seen = jiffies +
843 IGMP_V1_Router_Present_Timeout;
844 group = 0;
845 } else {
846 /* v2 router present */
847 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
848 in_dev->mr_v2_seen = jiffies +
849 IGMP_V2_Router_Present_Timeout;
850 }
851 /* cancel the interface change timer */
852 in_dev->mr_ifc_count = 0;
853 if (del_timer(&in_dev->mr_ifc_timer))
854 __in_dev_put(in_dev);
855 /* clear deleted report items */
856 igmpv3_clear_delrec(in_dev);
857 } else if (len < 12) {
858 return; /* ignore bogus packet; freed by caller */
David Stevens5b7c8402010-09-30 14:29:40 +0000859 } else if (IGMP_V1_SEEN(in_dev)) {
860 /* This is a v3 query with v1 queriers present */
861 max_delay = IGMP_Query_Response_Interval;
862 group = 0;
863 } else if (IGMP_V2_SEEN(in_dev)) {
864 /* this is a v3 query with v2 queriers present;
865 * Interpretation of the max_delay code is problematic here.
866 * A real v2 host would use ih_code directly, while v3 has a
867 * different encoding. We use the v3 encoding as more likely
868 * to be intended in a v3 query.
869 */
870 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } else { /* v3 */
872 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
873 return;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900874
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300875 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (ih3->nsrcs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900877 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)
Al Viro63007722006-09-27 18:31:32 -0700878 + ntohs(ih3->nsrcs)*sizeof(__be32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300880 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882
883 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
884 if (!max_delay)
885 max_delay = 1; /* can't mod w/ 0 */
886 in_dev->mr_maxdelay = max_delay;
887 if (ih3->qrv)
888 in_dev->mr_qrv = ih3->qrv;
889 if (!group) { /* general query */
890 if (ih3->nsrcs)
891 return; /* no sources allowed */
892 igmp_gq_start_timer(in_dev);
893 return;
894 }
895 /* mark sources to include, if group & source-specific */
896 mark = ih3->nsrcs != 0;
897 }
898
899 /*
900 * - Start the timers in all of our membership records
901 * that the query applies to for the interface on
902 * which the query arrived excl. those that belong
903 * to a "local" group (224.0.0.X)
904 * - For timers already running check if they need to
905 * be reset.
906 * - Use the igmp->igmp_code field as the maximum
907 * delay possible
908 */
909 read_lock(&in_dev->mc_list_lock);
910 for (im=in_dev->mc_list; im!=NULL; im=im->next) {
David L Stevensad125832006-01-18 14:20:56 -0800911 int changed;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (group && group != im->multiaddr)
914 continue;
915 if (im->multiaddr == IGMP_ALL_HOSTS)
916 continue;
917 spin_lock_bh(&im->lock);
918 if (im->tm_running)
919 im->gsquery = im->gsquery && mark;
920 else
921 im->gsquery = mark;
David L Stevensad125832006-01-18 14:20:56 -0800922 changed = !im->gsquery ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900923 igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 spin_unlock_bh(&im->lock);
David L Stevensad125832006-01-18 14:20:56 -0800925 if (changed)
926 igmp_mod_timer(im, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928 read_unlock(&in_dev->mc_list_lock);
929}
930
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000931/* called in rcu_read_lock() section */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932int igmp_rcv(struct sk_buff *skb)
933{
934 /* This basically follows the spec line by line -- see RFC1112 */
935 struct igmphdr *ih;
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000936 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int len = skb->len;
938
Denis V. Lunevcd557bc2008-02-09 23:22:26 -0800939 if (in_dev == NULL)
940 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Herbert Xufb286bb2005-11-10 13:01:24 -0800942 if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000943 goto drop;
Herbert Xufb286bb2005-11-10 13:01:24 -0800944
945 switch (skb->ip_summed) {
Patrick McHardy84fa7932006-08-29 16:44:56 -0700946 case CHECKSUM_COMPLETE:
Al Virod3bc23e2006-11-14 21:24:49 -0800947 if (!csum_fold(skb->csum))
Herbert Xufb286bb2005-11-10 13:01:24 -0800948 break;
949 /* fall through */
950 case CHECKSUM_NONE:
951 skb->csum = 0;
952 if (__skb_checksum_complete(skb))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000953 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300956 ih = igmp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 switch (ih->type) {
958 case IGMP_HOST_MEMBERSHIP_QUERY:
959 igmp_heard_query(in_dev, skb, len);
960 break;
961 case IGMP_HOST_MEMBERSHIP_REPORT:
962 case IGMPV2_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /* Is it our report looped back? */
Eric Dumazet511c3f92009-06-02 05:14:27 +0000964 if (skb_rtable(skb)->fl.iif == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
David Stevens24c69272005-12-02 20:32:59 -0800966 /* don't rely on MC router hearing unicast reports */
967 if (skb->pkt_type == PACKET_MULTICAST ||
968 skb->pkt_type == PACKET_BROADCAST)
969 igmp_heard_report(in_dev, ih->group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 break;
971 case IGMP_PIM:
972#ifdef CONFIG_IP_PIMSM_V1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return pim_rcv_v1(skb);
974#endif
Herbert Xuc6b471e2010-02-07 17:26:30 +0000975 case IGMPV3_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 case IGMP_DVMRP:
977 case IGMP_TRACE:
978 case IGMP_HOST_LEAVE_MESSAGE:
979 case IGMP_MTRACE:
980 case IGMP_MTRACE_RESP:
981 break;
982 default:
Linus Torvaldsdd1c1852006-01-31 13:11:41 -0800983 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Herbert Xufb286bb2005-11-10 13:01:24 -0800985
Denis V. Lunevcd557bc2008-02-09 23:22:26 -0800986drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 kfree_skb(skb);
988 return 0;
989}
990
991#endif
992
993
994/*
995 * Add a filter to a device
996 */
997
Al Viro63007722006-09-27 18:31:32 -0700998static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 char buf[MAX_ADDR_LEN];
1001 struct net_device *dev = in_dev->dev;
1002
1003 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1004 We will get multicast token leakage, when IFF_MULTICAST
1005 is changed. This check should be done in dev->set_multicast_list
1006 routine. Something sort of:
1007 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1008 --ANK
1009 */
1010 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001011 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014/*
1015 * Remove a filter from a device
1016 */
1017
Al Viro63007722006-09-27 18:31:32 -07001018static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 char buf[MAX_ADDR_LEN];
1021 struct net_device *dev = in_dev->dev;
1022
1023 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001024 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027#ifdef CONFIG_IP_MULTICAST
1028/*
1029 * deleted ip_mc_list manipulation
1030 */
1031static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1032{
1033 struct ip_mc_list *pmc;
1034
1035 /* this is an "ip_mc_list" for convenience; only the fields below
1036 * are actually used. In particular, the refcnt and users are not
1037 * used for management of the delete list. Using the same structure
1038 * for deleted items allows change reports to use common code with
1039 * non-deleted or query-response MCA's.
1040 */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001041 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (!pmc)
1043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 spin_lock_bh(&im->lock);
1045 pmc->interface = im->interface;
1046 in_dev_hold(in_dev);
1047 pmc->multiaddr = im->multiaddr;
1048 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1049 IGMP_Unsolicited_Report_Count;
1050 pmc->sfmode = im->sfmode;
1051 if (pmc->sfmode == MCAST_INCLUDE) {
1052 struct ip_sf_list *psf;
1053
1054 pmc->tomb = im->tomb;
1055 pmc->sources = im->sources;
1056 im->tomb = im->sources = NULL;
1057 for (psf=pmc->sources; psf; psf=psf->sf_next)
1058 psf->sf_crcount = pmc->crcount;
1059 }
1060 spin_unlock_bh(&im->lock);
1061
1062 spin_lock_bh(&in_dev->mc_tomb_lock);
1063 pmc->next = in_dev->mc_tomb;
1064 in_dev->mc_tomb = pmc;
1065 spin_unlock_bh(&in_dev->mc_tomb_lock);
1066}
1067
Al Viro63007722006-09-27 18:31:32 -07001068static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 struct ip_mc_list *pmc, *pmc_prev;
1071 struct ip_sf_list *psf, *psf_next;
1072
1073 spin_lock_bh(&in_dev->mc_tomb_lock);
1074 pmc_prev = NULL;
1075 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc->next) {
1076 if (pmc->multiaddr == multiaddr)
1077 break;
1078 pmc_prev = pmc;
1079 }
1080 if (pmc) {
1081 if (pmc_prev)
1082 pmc_prev->next = pmc->next;
1083 else
1084 in_dev->mc_tomb = pmc->next;
1085 }
1086 spin_unlock_bh(&in_dev->mc_tomb_lock);
1087 if (pmc) {
1088 for (psf=pmc->tomb; psf; psf=psf_next) {
1089 psf_next = psf->sf_next;
1090 kfree(psf);
1091 }
1092 in_dev_put(pmc->interface);
1093 kfree(pmc);
1094 }
1095}
1096
1097static void igmpv3_clear_delrec(struct in_device *in_dev)
1098{
1099 struct ip_mc_list *pmc, *nextpmc;
1100
1101 spin_lock_bh(&in_dev->mc_tomb_lock);
1102 pmc = in_dev->mc_tomb;
1103 in_dev->mc_tomb = NULL;
1104 spin_unlock_bh(&in_dev->mc_tomb_lock);
1105
1106 for (; pmc; pmc = nextpmc) {
1107 nextpmc = pmc->next;
1108 ip_mc_clear_src(pmc);
1109 in_dev_put(pmc->interface);
1110 kfree(pmc);
1111 }
1112 /* clear dead sources, too */
1113 read_lock(&in_dev->mc_list_lock);
1114 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1115 struct ip_sf_list *psf, *psf_next;
1116
1117 spin_lock_bh(&pmc->lock);
1118 psf = pmc->tomb;
1119 pmc->tomb = NULL;
1120 spin_unlock_bh(&pmc->lock);
1121 for (; psf; psf=psf_next) {
1122 psf_next = psf->sf_next;
1123 kfree(psf);
1124 }
1125 }
1126 read_unlock(&in_dev->mc_list_lock);
1127}
1128#endif
1129
1130static void igmp_group_dropped(struct ip_mc_list *im)
1131{
1132 struct in_device *in_dev = im->interface;
1133#ifdef CONFIG_IP_MULTICAST
1134 int reporter;
1135#endif
1136
1137 if (im->loaded) {
1138 im->loaded = 0;
1139 ip_mc_filter_del(in_dev, im->multiaddr);
1140 }
1141
1142#ifdef CONFIG_IP_MULTICAST
1143 if (im->multiaddr == IGMP_ALL_HOSTS)
1144 return;
1145
1146 reporter = im->reporter;
1147 igmp_stop_timer(im);
1148
1149 if (!in_dev->dead) {
1150 if (IGMP_V1_SEEN(in_dev))
1151 goto done;
1152 if (IGMP_V2_SEEN(in_dev)) {
1153 if (reporter)
1154 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
1155 goto done;
1156 }
1157 /* IGMPv3 */
1158 igmpv3_add_delrec(in_dev, im);
1159
1160 igmp_ifc_event(in_dev);
1161 }
1162done:
1163#endif
1164 ip_mc_clear_src(im);
1165}
1166
1167static void igmp_group_added(struct ip_mc_list *im)
1168{
1169 struct in_device *in_dev = im->interface;
1170
1171 if (im->loaded == 0) {
1172 im->loaded = 1;
1173 ip_mc_filter_add(in_dev, im->multiaddr);
1174 }
1175
1176#ifdef CONFIG_IP_MULTICAST
1177 if (im->multiaddr == IGMP_ALL_HOSTS)
1178 return;
1179
1180 if (in_dev->dead)
1181 return;
1182 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1183 spin_lock_bh(&im->lock);
1184 igmp_start_timer(im, IGMP_Initial_Report_Delay);
1185 spin_unlock_bh(&im->lock);
1186 return;
1187 }
1188 /* else, v3 */
1189
1190 im->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1191 IGMP_Unsolicited_Report_Count;
1192 igmp_ifc_event(in_dev);
1193#endif
1194}
1195
1196
1197/*
1198 * Multicast list managers
1199 */
1200
1201
1202/*
1203 * A socket has joined a multicast group on device dev.
1204 */
1205
Al Viro8f935bb2006-09-27 18:30:07 -07001206void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 struct ip_mc_list *im;
1209
1210 ASSERT_RTNL();
1211
1212 for (im=in_dev->mc_list; im; im=im->next) {
1213 if (im->multiaddr == addr) {
1214 im->users++;
1215 ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1216 goto out;
1217 }
1218 }
1219
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001220 im = kmalloc(sizeof(*im), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!im)
1222 goto out;
1223
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001224 im->users = 1;
1225 im->interface = in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 in_dev_hold(in_dev);
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001227 im->multiaddr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* initial mode is (EX, empty) */
1229 im->sfmode = MCAST_EXCLUDE;
1230 im->sfcount[MCAST_INCLUDE] = 0;
1231 im->sfcount[MCAST_EXCLUDE] = 1;
1232 im->sources = NULL;
1233 im->tomb = NULL;
1234 im->crcount = 0;
1235 atomic_set(&im->refcnt, 1);
1236 spin_lock_init(&im->lock);
1237#ifdef CONFIG_IP_MULTICAST
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001238 im->tm_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001239 setup_timer(&im->timer, &igmp_timer_expire, (unsigned long)im);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 im->unsolicit_count = IGMP_Unsolicited_Report_Count;
1241 im->reporter = 0;
1242 im->gsquery = 0;
1243#endif
1244 im->loaded = 0;
1245 write_lock_bh(&in_dev->mc_list_lock);
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001246 im->next = in_dev->mc_list;
1247 in_dev->mc_list = im;
Rami Rosenb8bae412008-10-07 15:34:37 -07001248 in_dev->mc_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 write_unlock_bh(&in_dev->mc_list_lock);
1250#ifdef CONFIG_IP_MULTICAST
1251 igmpv3_del_delrec(in_dev, im->multiaddr);
1252#endif
1253 igmp_group_added(im);
1254 if (!in_dev->dead)
1255 ip_rt_multicast_event(in_dev);
1256out:
1257 return;
1258}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001259EXPORT_SYMBOL(ip_mc_inc_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261/*
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001262 * Resend IGMP JOIN report; used for bonding.
1263 */
1264void ip_mc_rejoin_group(struct ip_mc_list *im)
1265{
Geert Uytterhoeven08882662007-03-12 17:02:37 -07001266#ifdef CONFIG_IP_MULTICAST
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001267 struct in_device *in_dev = im->interface;
1268
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001269 if (im->multiaddr == IGMP_ALL_HOSTS)
1270 return;
1271
1272 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1273 igmp_mod_timer(im, IGMP_Initial_Report_Delay);
1274 return;
1275 }
1276 /* else, v3 */
1277 im->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1278 IGMP_Unsolicited_Report_Count;
1279 igmp_ifc_event(in_dev);
1280#endif
1281}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001282EXPORT_SYMBOL(ip_mc_rejoin_group);
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001283
1284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * A socket has left a multicast group on device dev
1286 */
1287
Al Viro8f935bb2006-09-27 18:30:07 -07001288void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 struct ip_mc_list *i, **ip;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 ASSERT_RTNL();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 for (ip=&in_dev->mc_list; (i=*ip)!=NULL; ip=&i->next) {
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001295 if (i->multiaddr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (--i->users == 0) {
1297 write_lock_bh(&in_dev->mc_list_lock);
1298 *ip = i->next;
Rami Rosenb8bae412008-10-07 15:34:37 -07001299 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 write_unlock_bh(&in_dev->mc_list_lock);
1301 igmp_group_dropped(i);
1302
1303 if (!in_dev->dead)
1304 ip_rt_multicast_event(in_dev);
1305
1306 ip_ma_put(i);
1307 return;
1308 }
1309 break;
1310 }
1311 }
1312}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001313EXPORT_SYMBOL(ip_mc_dec_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Moni Shoua75c78502009-09-15 02:37:40 -07001315/* Device changing type */
1316
1317void ip_mc_unmap(struct in_device *in_dev)
1318{
1319 struct ip_mc_list *i;
1320
1321 ASSERT_RTNL();
1322
1323 for (i = in_dev->mc_list; i; i = i->next)
1324 igmp_group_dropped(i);
1325}
1326
1327void ip_mc_remap(struct in_device *in_dev)
1328{
1329 struct ip_mc_list *i;
1330
1331 ASSERT_RTNL();
1332
1333 for (i = in_dev->mc_list; i; i = i->next)
1334 igmp_group_added(i);
1335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/* Device going down */
1338
1339void ip_mc_down(struct in_device *in_dev)
1340{
1341 struct ip_mc_list *i;
1342
1343 ASSERT_RTNL();
1344
1345 for (i=in_dev->mc_list; i; i=i->next)
1346 igmp_group_dropped(i);
1347
1348#ifdef CONFIG_IP_MULTICAST
1349 in_dev->mr_ifc_count = 0;
1350 if (del_timer(&in_dev->mr_ifc_timer))
1351 __in_dev_put(in_dev);
1352 in_dev->mr_gq_running = 0;
1353 if (del_timer(&in_dev->mr_gq_timer))
1354 __in_dev_put(in_dev);
1355 igmpv3_clear_delrec(in_dev);
1356#endif
1357
1358 ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1359}
1360
1361void ip_mc_init_dev(struct in_device *in_dev)
1362{
1363 ASSERT_RTNL();
1364
1365 in_dev->mc_tomb = NULL;
1366#ifdef CONFIG_IP_MULTICAST
1367 in_dev->mr_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001368 setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire,
1369 (unsigned long)in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 in_dev->mr_ifc_count = 0;
Rami Rosenb8bae412008-10-07 15:34:37 -07001371 in_dev->mc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001372 setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire,
1373 (unsigned long)in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 in_dev->mr_qrv = IGMP_Unsolicited_Report_Count;
1375#endif
1376
1377 rwlock_init(&in_dev->mc_list_lock);
1378 spin_lock_init(&in_dev->mc_tomb_lock);
1379}
1380
1381/* Device going up */
1382
1383void ip_mc_up(struct in_device *in_dev)
1384{
1385 struct ip_mc_list *i;
1386
1387 ASSERT_RTNL();
1388
1389 ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1390
1391 for (i=in_dev->mc_list; i; i=i->next)
1392 igmp_group_added(i);
1393}
1394
1395/*
1396 * Device is about to be destroyed: clean up.
1397 */
1398
1399void ip_mc_destroy_dev(struct in_device *in_dev)
1400{
1401 struct ip_mc_list *i;
1402
1403 ASSERT_RTNL();
1404
1405 /* Deactivate timers */
1406 ip_mc_down(in_dev);
1407
1408 write_lock_bh(&in_dev->mc_list_lock);
1409 while ((i = in_dev->mc_list) != NULL) {
1410 in_dev->mc_list = i->next;
Rami Rosenb8bae412008-10-07 15:34:37 -07001411 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 write_unlock_bh(&in_dev->mc_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 igmp_group_dropped(i);
1414 ip_ma_put(i);
1415
1416 write_lock_bh(&in_dev->mc_list_lock);
1417 }
1418 write_unlock_bh(&in_dev->mc_list_lock);
1419}
1420
Daniel Lezcano877aced2008-08-13 16:15:57 -07001421static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
1423 struct flowi fl = { .nl_u = { .ip4_u =
1424 { .daddr = imr->imr_multiaddr.s_addr } } };
1425 struct rtable *rt;
1426 struct net_device *dev = NULL;
1427 struct in_device *idev = NULL;
1428
1429 if (imr->imr_ifindex) {
Daniel Lezcano877aced2008-08-13 16:15:57 -07001430 idev = inetdev_by_index(net, imr->imr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (idev)
1432 __in_dev_put(idev);
1433 return idev;
1434 }
1435 if (imr->imr_address.s_addr) {
Daniel Lezcano877aced2008-08-13 16:15:57 -07001436 dev = ip_dev_find(net, imr->imr_address.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (!dev)
1438 return NULL;
Stephen Hemminger15333062006-03-20 22:32:28 -08001439 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441
Daniel Lezcano877aced2008-08-13 16:15:57 -07001442 if (!dev && !ip_route_output_key(net, &rt, &fl)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001443 dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 ip_rt_put(rt);
1445 }
1446 if (dev) {
1447 imr->imr_ifindex = dev->ifindex;
Herbert Xue5ed6392005-10-03 14:35:55 -07001448 idev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450 return idev;
1451}
1452
1453/*
1454 * Join a socket to a group
1455 */
Brian Haleyab32ea52006-09-22 14:15:41 -07001456int sysctl_igmp_max_memberships __read_mostly = IP_MAX_MEMBERSHIPS;
1457int sysctl_igmp_max_msf __read_mostly = IP_MAX_MSF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459
1460static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001461 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 struct ip_sf_list *psf, *psf_prev;
1464 int rv = 0;
1465
1466 psf_prev = NULL;
1467 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1468 if (psf->sf_inaddr == *psfsrc)
1469 break;
1470 psf_prev = psf;
1471 }
1472 if (!psf || psf->sf_count[sfmode] == 0) {
1473 /* source filter not found, or count wrong => bug */
1474 return -ESRCH;
1475 }
1476 psf->sf_count[sfmode]--;
1477 if (psf->sf_count[sfmode] == 0) {
1478 ip_rt_multicast_event(pmc->interface);
1479 }
1480 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1481#ifdef CONFIG_IP_MULTICAST
1482 struct in_device *in_dev = pmc->interface;
1483#endif
1484
1485 /* no more filters for this source */
1486 if (psf_prev)
1487 psf_prev->sf_next = psf->sf_next;
1488 else
1489 pmc->sources = psf->sf_next;
1490#ifdef CONFIG_IP_MULTICAST
1491 if (psf->sf_oldin &&
1492 !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001493 psf->sf_crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 IGMP_Unsolicited_Report_Count;
1495 psf->sf_next = pmc->tomb;
1496 pmc->tomb = psf;
1497 rv = 1;
1498 } else
1499#endif
1500 kfree(psf);
1501 }
1502 return rv;
1503}
1504
1505#ifndef CONFIG_IP_MULTICAST
1506#define igmp_ifc_event(x) do { } while (0)
1507#endif
1508
Al Viro8f935bb2006-09-27 18:30:07 -07001509static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1510 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 struct ip_mc_list *pmc;
1513 int changerec = 0;
1514 int i, err;
1515
1516 if (!in_dev)
1517 return -ENODEV;
1518 read_lock(&in_dev->mc_list_lock);
1519 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1520 if (*pmca == pmc->multiaddr)
1521 break;
1522 }
1523 if (!pmc) {
1524 /* MCA not found?? bug */
1525 read_unlock(&in_dev->mc_list_lock);
1526 return -ESRCH;
1527 }
1528 spin_lock_bh(&pmc->lock);
1529 read_unlock(&in_dev->mc_list_lock);
1530#ifdef CONFIG_IP_MULTICAST
1531 sf_markstate(pmc);
1532#endif
1533 if (!delta) {
1534 err = -EINVAL;
1535 if (!pmc->sfcount[sfmode])
1536 goto out_unlock;
1537 pmc->sfcount[sfmode]--;
1538 }
1539 err = 0;
1540 for (i=0; i<sfcount; i++) {
1541 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1542
1543 changerec |= rv > 0;
1544 if (!err && rv < 0)
1545 err = rv;
1546 }
1547 if (pmc->sfmode == MCAST_EXCLUDE &&
1548 pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1549 pmc->sfcount[MCAST_INCLUDE]) {
1550#ifdef CONFIG_IP_MULTICAST
1551 struct ip_sf_list *psf;
1552#endif
1553
1554 /* filter mode change */
1555 pmc->sfmode = MCAST_INCLUDE;
1556#ifdef CONFIG_IP_MULTICAST
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001557 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 IGMP_Unsolicited_Report_Count;
1559 in_dev->mr_ifc_count = pmc->crcount;
1560 for (psf=pmc->sources; psf; psf = psf->sf_next)
1561 psf->sf_crcount = 0;
1562 igmp_ifc_event(pmc->interface);
1563 } else if (sf_setstate(pmc) || changerec) {
1564 igmp_ifc_event(pmc->interface);
1565#endif
1566 }
1567out_unlock:
1568 spin_unlock_bh(&pmc->lock);
1569 return err;
1570}
1571
1572/*
1573 * Add multicast single-source filter to the interface list
1574 */
1575static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001576 __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 struct ip_sf_list *psf, *psf_prev;
1579
1580 psf_prev = NULL;
1581 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1582 if (psf->sf_inaddr == *psfsrc)
1583 break;
1584 psf_prev = psf;
1585 }
1586 if (!psf) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001587 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (!psf)
1589 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 psf->sf_inaddr = *psfsrc;
1591 if (psf_prev) {
1592 psf_prev->sf_next = psf;
1593 } else
1594 pmc->sources = psf;
1595 }
1596 psf->sf_count[sfmode]++;
1597 if (psf->sf_count[sfmode] == 1) {
1598 ip_rt_multicast_event(pmc->interface);
1599 }
1600 return 0;
1601}
1602
1603#ifdef CONFIG_IP_MULTICAST
1604static void sf_markstate(struct ip_mc_list *pmc)
1605{
1606 struct ip_sf_list *psf;
1607 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1608
1609 for (psf=pmc->sources; psf; psf=psf->sf_next)
1610 if (pmc->sfcount[MCAST_EXCLUDE]) {
1611 psf->sf_oldin = mca_xcount ==
1612 psf->sf_count[MCAST_EXCLUDE] &&
1613 !psf->sf_count[MCAST_INCLUDE];
1614 } else
1615 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1616}
1617
1618static int sf_setstate(struct ip_mc_list *pmc)
1619{
David L Stevensad125832006-01-18 14:20:56 -08001620 struct ip_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1622 int qrv = pmc->interface->mr_qrv;
1623 int new_in, rv;
1624
1625 rv = 0;
1626 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1627 if (pmc->sfcount[MCAST_EXCLUDE]) {
1628 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1629 !psf->sf_count[MCAST_INCLUDE];
1630 } else
1631 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevensad125832006-01-18 14:20:56 -08001632 if (new_in) {
1633 if (!psf->sf_oldin) {
Al Viro76edc602006-02-01 05:54:35 -05001634 struct ip_sf_list *prev = NULL;
David L Stevensad125832006-01-18 14:20:56 -08001635
1636 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next) {
1637 if (dpsf->sf_inaddr == psf->sf_inaddr)
1638 break;
1639 prev = dpsf;
1640 }
1641 if (dpsf) {
1642 if (prev)
1643 prev->sf_next = dpsf->sf_next;
1644 else
1645 pmc->tomb = dpsf->sf_next;
1646 kfree(dpsf);
1647 }
1648 psf->sf_crcount = qrv;
1649 rv++;
1650 }
1651 } else if (psf->sf_oldin) {
1652
1653 psf->sf_crcount = 0;
1654 /*
1655 * add or update "delete" records if an active filter
1656 * is now inactive
1657 */
1658 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next)
1659 if (dpsf->sf_inaddr == psf->sf_inaddr)
1660 break;
1661 if (!dpsf) {
Joe Perches3ed37a62010-05-31 17:23:21 +00001662 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevensad125832006-01-18 14:20:56 -08001663 if (!dpsf)
1664 continue;
1665 *dpsf = *psf;
1666 /* pmc->lock held by callers */
1667 dpsf->sf_next = pmc->tomb;
1668 pmc->tomb = dpsf;
1669 }
1670 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 rv++;
1672 }
1673 }
1674 return rv;
1675}
1676#endif
1677
1678/*
1679 * Add multicast source filter list to the interface list
1680 */
Al Viro8f935bb2006-09-27 18:30:07 -07001681static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1682 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 struct ip_mc_list *pmc;
1685 int isexclude;
1686 int i, err;
1687
1688 if (!in_dev)
1689 return -ENODEV;
1690 read_lock(&in_dev->mc_list_lock);
1691 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1692 if (*pmca == pmc->multiaddr)
1693 break;
1694 }
1695 if (!pmc) {
1696 /* MCA not found?? bug */
1697 read_unlock(&in_dev->mc_list_lock);
1698 return -ESRCH;
1699 }
1700 spin_lock_bh(&pmc->lock);
1701 read_unlock(&in_dev->mc_list_lock);
1702
1703#ifdef CONFIG_IP_MULTICAST
1704 sf_markstate(pmc);
1705#endif
1706 isexclude = pmc->sfmode == MCAST_EXCLUDE;
1707 if (!delta)
1708 pmc->sfcount[sfmode]++;
1709 err = 0;
1710 for (i=0; i<sfcount; i++) {
1711 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
1712 if (err)
1713 break;
1714 }
1715 if (err) {
1716 int j;
1717
1718 pmc->sfcount[sfmode]--;
1719 for (j=0; j<i; j++)
1720 (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1721 } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
1722#ifdef CONFIG_IP_MULTICAST
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct ip_sf_list *psf;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001724 in_dev = pmc->interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725#endif
1726
1727 /* filter mode change */
1728 if (pmc->sfcount[MCAST_EXCLUDE])
1729 pmc->sfmode = MCAST_EXCLUDE;
1730 else if (pmc->sfcount[MCAST_INCLUDE])
1731 pmc->sfmode = MCAST_INCLUDE;
1732#ifdef CONFIG_IP_MULTICAST
1733 /* else no filters; keep old mode for reports */
1734
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001735 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 IGMP_Unsolicited_Report_Count;
1737 in_dev->mr_ifc_count = pmc->crcount;
1738 for (psf=pmc->sources; psf; psf = psf->sf_next)
1739 psf->sf_crcount = 0;
1740 igmp_ifc_event(in_dev);
1741 } else if (sf_setstate(pmc)) {
1742 igmp_ifc_event(in_dev);
1743#endif
1744 }
1745 spin_unlock_bh(&pmc->lock);
1746 return err;
1747}
1748
1749static void ip_mc_clear_src(struct ip_mc_list *pmc)
1750{
1751 struct ip_sf_list *psf, *nextpsf;
1752
1753 for (psf=pmc->tomb; psf; psf=nextpsf) {
1754 nextpsf = psf->sf_next;
1755 kfree(psf);
1756 }
1757 pmc->tomb = NULL;
1758 for (psf=pmc->sources; psf; psf=nextpsf) {
1759 nextpsf = psf->sf_next;
1760 kfree(psf);
1761 }
1762 pmc->sources = NULL;
1763 pmc->sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07001764 pmc->sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 pmc->sfcount[MCAST_EXCLUDE] = 1;
1766}
1767
1768
1769/*
1770 * Join a multicast group
1771 */
1772int ip_mc_join_group(struct sock *sk , struct ip_mreqn *imr)
1773{
1774 int err;
Al Viro8f935bb2006-09-27 18:30:07 -07001775 __be32 addr = imr->imr_multiaddr.s_addr;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001776 struct ip_mc_socklist *iml = NULL, *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 struct in_device *in_dev;
1778 struct inet_sock *inet = inet_sk(sk);
Daniel Lezcano877aced2008-08-13 16:15:57 -07001779 struct net *net = sock_net(sk);
David L Stevensca9b9072005-07-08 17:38:07 -07001780 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 int count = 0;
1782
Joe Perchesf97c1e02007-12-16 13:45:43 -08001783 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return -EINVAL;
1785
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001786 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Daniel Lezcano877aced2008-08-13 16:15:57 -07001788 in_dev = ip_mc_find_dev(net, imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 if (!in_dev) {
1791 iml = NULL;
1792 err = -ENODEV;
1793 goto done;
1794 }
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 err = -EADDRINUSE;
David L Stevensca9b9072005-07-08 17:38:07 -07001797 ifindex = imr->imr_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 for (i = inet->mc_list; i; i = i->next) {
David L Stevensca9b9072005-07-08 17:38:07 -07001799 if (i->multi.imr_multiaddr.s_addr == addr &&
1800 i->multi.imr_ifindex == ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 count++;
1803 }
1804 err = -ENOBUFS;
David L Stevensca9b9072005-07-08 17:38:07 -07001805 if (count >= sysctl_igmp_max_memberships)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto done;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001807 iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL);
David L Stevensca9b9072005-07-08 17:38:07 -07001808 if (iml == NULL)
1809 goto done;
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 memcpy(&iml->multi, imr, sizeof(*imr));
1812 iml->next = inet->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 iml->sflist = NULL;
1814 iml->sfmode = MCAST_EXCLUDE;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001815 rcu_assign_pointer(inet->mc_list, iml);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 ip_mc_inc_group(in_dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001819 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return err;
1821}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001822EXPORT_SYMBOL(ip_mc_join_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001824static void ip_sf_socklist_reclaim(struct rcu_head *rp)
1825{
1826 struct ip_sf_socklist *psf;
1827
1828 psf = container_of(rp, struct ip_sf_socklist, rcu);
1829 /* sk_omem_alloc should have been decreased by the caller*/
1830 kfree(psf);
1831}
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
1834 struct in_device *in_dev)
1835{
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001836 struct ip_sf_socklist *psf = iml->sflist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int err;
1838
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001839 if (psf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /* any-source empty exclude case */
1841 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1842 iml->sfmode, 0, NULL, 0);
1843 }
1844 err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001845 iml->sfmode, psf->sl_count, psf->sl_addr, 0);
1846 rcu_assign_pointer(iml->sflist, NULL);
1847 /* decrease mem now to avoid the memleak warning */
1848 atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc);
1849 call_rcu(&psf->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return err;
1851}
1852
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001853
1854static void ip_mc_socklist_reclaim(struct rcu_head *rp)
1855{
1856 struct ip_mc_socklist *iml;
1857
1858 iml = container_of(rp, struct ip_mc_socklist, rcu);
1859 /* sk_omem_alloc should have been decreased by the caller*/
1860 kfree(iml);
1861}
1862
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864/*
1865 * Ask a socket to leave a group.
1866 */
1867
1868int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
1869{
1870 struct inet_sock *inet = inet_sk(sk);
1871 struct ip_mc_socklist *iml, **imlp;
David L Stevens84b42ba2005-07-08 17:48:38 -07001872 struct in_device *in_dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001873 struct net *net = sock_net(sk);
Al Viro8f935bb2006-09-27 18:30:07 -07001874 __be32 group = imr->imr_multiaddr.s_addr;
David L Stevens84b42ba2005-07-08 17:48:38 -07001875 u32 ifindex;
David L Stevensacd6e002006-08-17 16:27:39 -07001876 int ret = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 rtnl_lock();
Daniel Lezcano877aced2008-08-13 16:15:57 -07001879 in_dev = ip_mc_find_dev(net, imr);
David L Stevens84b42ba2005-07-08 17:48:38 -07001880 ifindex = imr->imr_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 for (imlp = &inet->mc_list; (iml = *imlp) != NULL; imlp = &iml->next) {
David L Stevensacd6e002006-08-17 16:27:39 -07001882 if (iml->multi.imr_multiaddr.s_addr != group)
1883 continue;
1884 if (ifindex) {
1885 if (iml->multi.imr_ifindex != ifindex)
1886 continue;
1887 } else if (imr->imr_address.s_addr && imr->imr_address.s_addr !=
1888 iml->multi.imr_address.s_addr)
1889 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
David L Stevensacd6e002006-08-17 16:27:39 -07001891 (void) ip_mc_leave_src(sk, iml, in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001893 rcu_assign_pointer(*imlp, iml->next);
David L Stevensacd6e002006-08-17 16:27:39 -07001894
1895 if (in_dev)
David L Stevens84b42ba2005-07-08 17:48:38 -07001896 ip_mc_dec_group(in_dev, group);
David L Stevensacd6e002006-08-17 16:27:39 -07001897 rtnl_unlock();
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001898 /* decrease mem now to avoid the memleak warning */
1899 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
1900 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
David L Stevensacd6e002006-08-17 16:27:39 -07001901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
David L Stevensacd6e002006-08-17 16:27:39 -07001903 if (!in_dev)
1904 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 rtnl_unlock();
David L Stevensacd6e002006-08-17 16:27:39 -07001906 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
1909int ip_mc_source(int add, int omode, struct sock *sk, struct
1910 ip_mreq_source *mreqs, int ifindex)
1911{
1912 int err;
1913 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07001914 __be32 addr = mreqs->imr_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct ip_mc_socklist *pmc;
1916 struct in_device *in_dev = NULL;
1917 struct inet_sock *inet = inet_sk(sk);
1918 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001919 struct net *net = sock_net(sk);
David L Stevens8cdaaa12005-07-08 17:39:23 -07001920 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 int i, j, rv;
1922
Joe Perchesf97c1e02007-12-16 13:45:43 -08001923 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return -EINVAL;
1925
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001926 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
1929 imr.imr_address.s_addr = mreqs->imr_interface;
1930 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001931 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 if (!in_dev) {
1934 err = -ENODEV;
1935 goto done;
1936 }
1937 err = -EADDRNOTAVAIL;
1938
1939 for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08001940 if ((pmc->multi.imr_multiaddr.s_addr ==
1941 imr.imr_multiaddr.s_addr) &&
1942 (pmc->multi.imr_ifindex == imr.imr_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 break;
1944 }
David L Stevens917f2f12005-07-08 17:45:16 -07001945 if (!pmc) { /* must have a prior join */
1946 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07001948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /* if a source filter was set, must be the same mode as before */
1950 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -07001951 if (pmc->sfmode != omode) {
1952 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07001954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 } else if (pmc->sfmode != omode) {
1956 /* allow mode switches for empty-set filters */
1957 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001958 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 NULL, 0);
1960 pmc->sfmode = omode;
1961 }
1962
1963 psl = pmc->sflist;
1964 if (!add) {
1965 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -07001966 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 rv = !0;
1968 for (i=0; i<psl->sl_count; i++) {
1969 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07001970 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (rv == 0)
1972 break;
1973 }
1974 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -07001975 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
David L Stevens8cdaaa12005-07-08 17:39:23 -07001977 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
1978 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
1979 leavegroup = 1;
1980 goto done;
1981 }
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /* update the interface filter */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001984 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 &mreqs->imr_sourceaddr, 1);
1986
1987 for (j=i+1; j<psl->sl_count; j++)
1988 psl->sl_addr[j-1] = psl->sl_addr[j];
1989 psl->sl_count--;
1990 err = 0;
1991 goto done;
1992 }
1993 /* else, add a new source to the filter */
1994
1995 if (psl && psl->sl_count >= sysctl_igmp_max_msf) {
1996 err = -ENOBUFS;
1997 goto done;
1998 }
1999 if (!psl || psl->sl_count == psl->sl_max) {
2000 struct ip_sf_socklist *newpsl;
2001 int count = IP_SFBLOCK;
2002
2003 if (psl)
2004 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002005 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (!newpsl) {
2007 err = -ENOBUFS;
2008 goto done;
2009 }
2010 newpsl->sl_max = count;
2011 newpsl->sl_count = count - IP_SFBLOCK;
2012 if (psl) {
2013 for (i=0; i<psl->sl_count; i++)
2014 newpsl->sl_addr[i] = psl->sl_addr[i];
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002015 /* decrease mem now to avoid the memleak warning */
2016 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2017 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002019 rcu_assign_pointer(pmc->sflist, newpsl);
2020 psl = newpsl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
2023 for (i=0; i<psl->sl_count; i++) {
2024 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002025 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 if (rv == 0)
2027 break;
2028 }
2029 if (rv == 0) /* address already there is an error */
2030 goto done;
2031 for (j=psl->sl_count-1; j>=i; j--)
2032 psl->sl_addr[j+1] = psl->sl_addr[j];
2033 psl->sl_addr[i] = mreqs->imr_sourceaddr;
2034 psl->sl_count++;
2035 err = 0;
2036 /* update the interface list */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002037 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 &mreqs->imr_sourceaddr, 1);
2039done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002040 rtnl_unlock();
David L Stevens8cdaaa12005-07-08 17:39:23 -07002041 if (leavegroup)
2042 return ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return err;
2044}
2045
2046int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
2047{
David L Stevens9951f032005-07-08 17:47:28 -07002048 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002050 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 struct ip_mc_socklist *pmc;
2052 struct in_device *in_dev;
2053 struct inet_sock *inet = inet_sk(sk);
2054 struct ip_sf_socklist *newpsl, *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002055 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -07002056 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Joe Perchesf97c1e02007-12-16 13:45:43 -08002058 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return -EINVAL;
2060 if (msf->imsf_fmode != MCAST_INCLUDE &&
2061 msf->imsf_fmode != MCAST_EXCLUDE)
2062 return -EINVAL;
2063
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002064 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2067 imr.imr_address.s_addr = msf->imsf_interface;
2068 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002069 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 if (!in_dev) {
2072 err = -ENODEV;
2073 goto done;
2074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
David L Stevens9951f032005-07-08 17:47:28 -07002076 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2077 if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
2078 leavegroup = 1;
2079 goto done;
2080 }
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2083 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2084 pmc->multi.imr_ifindex == imr.imr_ifindex)
2085 break;
2086 }
David L Stevens917f2f12005-07-08 17:45:16 -07002087 if (!pmc) { /* must have a prior join */
2088 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (msf->imsf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002092 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
2093 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (!newpsl) {
2095 err = -ENOBUFS;
2096 goto done;
2097 }
2098 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2099 memcpy(newpsl->sl_addr, msf->imsf_slist,
2100 msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2101 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2102 msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2103 if (err) {
2104 sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2105 goto done;
2106 }
Yan Zheng8713dbf2005-10-28 08:02:08 +08002107 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +08002109 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2110 msf->imsf_fmode, 0, NULL, 0);
2111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 psl = pmc->sflist;
2113 if (psl) {
2114 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2115 psl->sl_count, psl->sl_addr, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002116 /* decrease mem now to avoid the memleak warning */
2117 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2118 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 } else
2120 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2121 0, NULL, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002122 rcu_assign_pointer(pmc->sflist, newpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 pmc->sfmode = msf->imsf_fmode;
David L Stevens917f2f12005-07-08 17:45:16 -07002124 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002126 rtnl_unlock();
David L Stevens9951f032005-07-08 17:47:28 -07002127 if (leavegroup)
2128 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return err;
2130}
2131
2132int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2133 struct ip_msfilter __user *optval, int __user *optlen)
2134{
2135 int err, len, count, copycount;
2136 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002137 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 struct ip_mc_socklist *pmc;
2139 struct in_device *in_dev;
2140 struct inet_sock *inet = inet_sk(sk);
2141 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002142 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Joe Perchesf97c1e02007-12-16 13:45:43 -08002144 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return -EINVAL;
2146
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002147 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2150 imr.imr_address.s_addr = msf->imsf_interface;
2151 imr.imr_ifindex = 0;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002152 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 if (!in_dev) {
2155 err = -ENODEV;
2156 goto done;
2157 }
2158 err = -EADDRNOTAVAIL;
2159
2160 for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2161 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2162 pmc->multi.imr_ifindex == imr.imr_ifindex)
2163 break;
2164 }
2165 if (!pmc) /* must have a prior join */
2166 goto done;
2167 msf->imsf_fmode = pmc->sfmode;
2168 psl = pmc->sflist;
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002169 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (!psl) {
2171 len = 0;
2172 count = 0;
2173 } else {
2174 count = psl->sl_count;
2175 }
2176 copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2177 len = copycount * sizeof(psl->sl_addr[0]);
2178 msf->imsf_numsrc = count;
2179 if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2180 copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2181 return -EFAULT;
2182 }
2183 if (len &&
2184 copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2185 return -EFAULT;
2186 return 0;
2187done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002188 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return err;
2190}
2191
2192int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2193 struct group_filter __user *optval, int __user *optlen)
2194{
2195 int err, i, count, copycount;
2196 struct sockaddr_in *psin;
Al Viro63007722006-09-27 18:31:32 -07002197 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 struct ip_mc_socklist *pmc;
2199 struct inet_sock *inet = inet_sk(sk);
2200 struct ip_sf_socklist *psl;
2201
2202 psin = (struct sockaddr_in *)&gsf->gf_group;
2203 if (psin->sin_family != AF_INET)
2204 return -EINVAL;
2205 addr = psin->sin_addr.s_addr;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002206 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return -EINVAL;
2208
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002209 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211 err = -EADDRNOTAVAIL;
2212
2213 for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2214 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2215 pmc->multi.imr_ifindex == gsf->gf_interface)
2216 break;
2217 }
2218 if (!pmc) /* must have a prior join */
2219 goto done;
2220 gsf->gf_fmode = pmc->sfmode;
2221 psl = pmc->sflist;
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002222 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 count = psl ? psl->sl_count : 0;
2224 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2225 gsf->gf_numsrc = count;
2226 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2227 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2228 return -EFAULT;
2229 }
2230 for (i=0; i<copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 struct sockaddr_storage ss;
2232
2233 psin = (struct sockaddr_in *)&ss;
2234 memset(&ss, 0, sizeof(ss));
2235 psin->sin_family = AF_INET;
2236 psin->sin_addr.s_addr = psl->sl_addr[i];
2237 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2238 return -EFAULT;
2239 }
2240 return 0;
2241done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002242 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return err;
2244}
2245
2246/*
2247 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2248 */
Al Viroc0cda062006-09-27 18:31:10 -07002249int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 struct inet_sock *inet = inet_sk(sk);
2252 struct ip_mc_socklist *pmc;
2253 struct ip_sf_socklist *psl;
2254 int i;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002255 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002257 ret = 1;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002258 if (!ipv4_is_multicast(loc_addr))
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002259 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002261 rcu_read_lock();
2262 for (pmc=rcu_dereference(inet->mc_list); pmc; pmc=rcu_dereference(pmc->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2264 pmc->multi.imr_ifindex == dif)
2265 break;
2266 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002267 ret = inet->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 if (!pmc)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002269 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 psl = pmc->sflist;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002271 ret = (pmc->sfmode == MCAST_EXCLUDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (!psl)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002273 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 for (i=0; i<psl->sl_count; i++) {
2276 if (psl->sl_addr[i] == rmt_addr)
2277 break;
2278 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002279 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002281 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002283 goto unlock;
2284 ret = 1;
2285unlock:
2286 rcu_read_unlock();
2287out:
2288 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/*
2292 * A socket is closing.
2293 */
2294
2295void ip_mc_drop_socket(struct sock *sk)
2296{
2297 struct inet_sock *inet = inet_sk(sk);
2298 struct ip_mc_socklist *iml;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002299 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 if (inet->mc_list == NULL)
2302 return;
2303
2304 rtnl_lock();
2305 while ((iml = inet->mc_list) != NULL) {
2306 struct in_device *in_dev;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002307 rcu_assign_pointer(inet->mc_list, iml->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Daniel Lezcano877aced2008-08-13 16:15:57 -07002309 in_dev = inetdev_by_index(net, iml->multi.imr_ifindex);
Michal Ruzickabb699cbc2006-08-15 00:20:17 -07002310 (void) ip_mc_leave_src(sk, iml, in_dev);
2311 if (in_dev != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
2313 in_dev_put(in_dev);
2314 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002315 /* decrease mem now to avoid the memleak warning */
2316 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
2317 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319 rtnl_unlock();
2320}
2321
Al Viroa60c4922006-09-26 21:28:34 -07002322int ip_check_mc(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u16 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
2324 struct ip_mc_list *im;
2325 struct ip_sf_list *psf;
2326 int rv = 0;
2327
2328 read_lock(&in_dev->mc_list_lock);
2329 for (im=in_dev->mc_list; im; im=im->next) {
2330 if (im->multiaddr == mc_addr)
2331 break;
2332 }
2333 if (im && proto == IPPROTO_IGMP) {
2334 rv = 1;
2335 } else if (im) {
2336 if (src_addr) {
2337 for (psf=im->sources; psf; psf=psf->sf_next) {
2338 if (psf->sf_inaddr == src_addr)
2339 break;
2340 }
2341 if (psf)
2342 rv = psf->sf_count[MCAST_INCLUDE] ||
2343 psf->sf_count[MCAST_EXCLUDE] !=
2344 im->sfcount[MCAST_EXCLUDE];
2345 else
2346 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2347 } else
2348 rv = 1; /* unspecified source; tentatively allow */
2349 }
2350 read_unlock(&in_dev->mc_list_lock);
2351 return rv;
2352}
2353
2354#if defined(CONFIG_PROC_FS)
2355struct igmp_mc_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002356 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 struct net_device *dev;
2358 struct in_device *in_dev;
2359};
2360
2361#define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2362
2363static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2364{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002365 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 struct ip_mc_list *im = NULL;
2367 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2368
Pavel Emelianov7562f872007-05-03 15:13:45 -07002369 state->in_dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002370 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 struct in_device *in_dev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002372
2373 in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (!in_dev)
2375 continue;
2376 read_lock(&in_dev->mc_list_lock);
2377 im = in_dev->mc_list;
2378 if (im) {
2379 state->in_dev = in_dev;
2380 break;
2381 }
2382 read_unlock(&in_dev->mc_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
2384 return im;
2385}
2386
2387static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2388{
2389 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2390 im = im->next;
2391 while (!im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002392 if (likely(state->in_dev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 read_unlock(&state->in_dev->mc_list_lock);
Eric Dumazet6baff152009-11-11 17:48:52 +00002394
2395 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (!state->dev) {
2397 state->in_dev = NULL;
2398 break;
2399 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002400 state->in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (!state->in_dev)
2402 continue;
2403 read_lock(&state->in_dev->mc_list_lock);
2404 im = state->in_dev->mc_list;
2405 }
2406 return im;
2407}
2408
2409static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2410{
2411 struct ip_mc_list *im = igmp_mc_get_first(seq);
2412 if (im)
2413 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2414 --pos;
2415 return pos ? NULL : im;
2416}
2417
2418static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002419 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
stephen hemminger61fbab72009-11-10 07:54:55 +00002421 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2423}
2424
2425static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2426{
2427 struct ip_mc_list *im;
2428 if (v == SEQ_START_TOKEN)
2429 im = igmp_mc_get_first(seq);
2430 else
2431 im = igmp_mc_get_next(seq, v);
2432 ++*pos;
2433 return im;
2434}
2435
2436static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002437 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2440 if (likely(state->in_dev != NULL)) {
2441 read_unlock(&state->in_dev->mc_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 state->in_dev = NULL;
2443 }
2444 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002445 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
2448static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2449{
2450 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002451 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2453 else {
2454 struct ip_mc_list *im = (struct ip_mc_list *)v;
2455 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2456 char *querier;
2457#ifdef CONFIG_IP_MULTICAST
2458 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2459 IGMP_V2_SEEN(state->in_dev) ? "V2" :
2460 "V3";
2461#else
2462 querier = "NONE";
2463#endif
2464
2465 if (state->in_dev->mc_list == im) {
2466 seq_printf(seq, "%d\t%-10s: %5d %7s\n",
Rami Rosenb8bae412008-10-07 15:34:37 -07002467 state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
2469
2470 seq_printf(seq,
Alexey Dobriyan338fcf92006-06-05 21:04:39 -07002471 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 im->multiaddr, im->users,
2473 im->tm_running, im->tm_running ?
2474 jiffies_to_clock_t(im->timer.expires-jiffies) : 0,
2475 im->reporter);
2476 }
2477 return 0;
2478}
2479
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002480static const struct seq_operations igmp_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 .start = igmp_mc_seq_start,
2482 .next = igmp_mc_seq_next,
2483 .stop = igmp_mc_seq_stop,
2484 .show = igmp_mc_seq_show,
2485};
2486
2487static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2488{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002489 return seq_open_net(inode, file, &igmp_mc_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002490 sizeof(struct igmp_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Arjan van de Ven9a321442007-02-12 00:55:35 -08002493static const struct file_operations igmp_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 .owner = THIS_MODULE,
2495 .open = igmp_mc_seq_open,
2496 .read = seq_read,
2497 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002498 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499};
2500
2501struct igmp_mcf_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002502 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 struct net_device *dev;
2504 struct in_device *idev;
2505 struct ip_mc_list *im;
2506};
2507
2508#define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2509
2510static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2511{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002512 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 struct ip_sf_list *psf = NULL;
2514 struct ip_mc_list *im = NULL;
2515 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2516
Pavel Emelianov7562f872007-05-03 15:13:45 -07002517 state->idev = NULL;
2518 state->im = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002519 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 struct in_device *idev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002521 idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if (unlikely(idev == NULL))
2523 continue;
2524 read_lock(&idev->mc_list_lock);
2525 im = idev->mc_list;
2526 if (likely(im != NULL)) {
2527 spin_lock_bh(&im->lock);
2528 psf = im->sources;
2529 if (likely(psf != NULL)) {
2530 state->im = im;
2531 state->idev = idev;
2532 break;
2533 }
2534 spin_unlock_bh(&im->lock);
2535 }
2536 read_unlock(&idev->mc_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 }
2538 return psf;
2539}
2540
2541static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2542{
2543 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2544
2545 psf = psf->sf_next;
2546 while (!psf) {
2547 spin_unlock_bh(&state->im->lock);
2548 state->im = state->im->next;
2549 while (!state->im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002550 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 read_unlock(&state->idev->mc_list_lock);
Eric Dumazet6baff152009-11-11 17:48:52 +00002552
2553 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (!state->dev) {
2555 state->idev = NULL;
2556 goto out;
2557 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002558 state->idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (!state->idev)
2560 continue;
2561 read_lock(&state->idev->mc_list_lock);
2562 state->im = state->idev->mc_list;
2563 }
2564 if (!state->im)
2565 break;
2566 spin_lock_bh(&state->im->lock);
2567 psf = state->im->sources;
2568 }
2569out:
2570 return psf;
2571}
2572
2573static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2574{
2575 struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2576 if (psf)
2577 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2578 --pos;
2579 return pos ? NULL : psf;
2580}
2581
2582static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002583 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
stephen hemminger61fbab72009-11-10 07:54:55 +00002585 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2587}
2588
2589static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2590{
2591 struct ip_sf_list *psf;
2592 if (v == SEQ_START_TOKEN)
2593 psf = igmp_mcf_get_first(seq);
2594 else
2595 psf = igmp_mcf_get_next(seq, v);
2596 ++*pos;
2597 return psf;
2598}
2599
2600static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002601 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
2603 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2604 if (likely(state->im != NULL)) {
2605 spin_unlock_bh(&state->im->lock);
2606 state->im = NULL;
2607 }
2608 if (likely(state->idev != NULL)) {
2609 read_unlock(&state->idev->mc_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 state->idev = NULL;
2611 }
2612 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002613 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
2616static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2617{
2618 struct ip_sf_list *psf = (struct ip_sf_list *)v;
2619 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2620
2621 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002622 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 "%3s %6s "
2624 "%10s %10s %6s %6s\n", "Idx",
2625 "Device", "MCA",
2626 "SRC", "INC", "EXC");
2627 } else {
2628 seq_printf(seq,
2629 "%3d %6.6s 0x%08x "
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002630 "0x%08x %6lu %6lu\n",
2631 state->dev->ifindex, state->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 ntohl(state->im->multiaddr),
2633 ntohl(psf->sf_inaddr),
2634 psf->sf_count[MCAST_INCLUDE],
2635 psf->sf_count[MCAST_EXCLUDE]);
2636 }
2637 return 0;
2638}
2639
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002640static const struct seq_operations igmp_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 .start = igmp_mcf_seq_start,
2642 .next = igmp_mcf_seq_next,
2643 .stop = igmp_mcf_seq_stop,
2644 .show = igmp_mcf_seq_show,
2645};
2646
2647static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2648{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002649 return seq_open_net(inode, file, &igmp_mcf_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002650 sizeof(struct igmp_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
2652
Arjan van de Ven9a321442007-02-12 00:55:35 -08002653static const struct file_operations igmp_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 .owner = THIS_MODULE,
2655 .open = igmp_mcf_seq_open,
2656 .read = seq_read,
2657 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002658 .release = seq_release_net,
2659};
2660
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002661static int __net_init igmp_net_init(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002662{
2663 struct proc_dir_entry *pde;
2664
2665 pde = proc_net_fops_create(net, "igmp", S_IRUGO, &igmp_mc_seq_fops);
2666 if (!pde)
2667 goto out_igmp;
2668 pde = proc_net_fops_create(net, "mcfilter", S_IRUGO, &igmp_mcf_seq_fops);
2669 if (!pde)
2670 goto out_mcfilter;
2671 return 0;
2672
2673out_mcfilter:
2674 proc_net_remove(net, "igmp");
2675out_igmp:
2676 return -ENOMEM;
2677}
2678
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002679static void __net_exit igmp_net_exit(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002680{
2681 proc_net_remove(net, "mcfilter");
2682 proc_net_remove(net, "igmp");
2683}
2684
2685static struct pernet_operations igmp_net_ops = {
2686 .init = igmp_net_init,
2687 .exit = igmp_net_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688};
2689
2690int __init igmp_mc_proc_init(void)
2691{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002692 return register_pernet_subsys(&igmp_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693}
2694#endif