blob: 44ba9068b72f9b9136d8126a9b1b76b4cca1ce66 [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
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000152
153static void ip_mc_list_reclaim(struct rcu_head *head)
154{
155 kfree(container_of(head, struct ip_mc_list, rcu));
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static void ip_ma_put(struct ip_mc_list *im)
159{
160 if (atomic_dec_and_test(&im->refcnt)) {
161 in_dev_put(im->interface);
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000162 call_rcu(&im->rcu, ip_mc_list_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164}
165
David S. Millerd9aa9382010-11-15 08:52:02 -0800166#define for_each_pmc_rcu(in_dev, pmc) \
167 for (pmc = rcu_dereference(in_dev->mc_list); \
168 pmc != NULL; \
169 pmc = rcu_dereference(pmc->next_rcu))
170
171#define for_each_pmc_rtnl(in_dev, pmc) \
172 for (pmc = rtnl_dereference(in_dev->mc_list); \
173 pmc != NULL; \
174 pmc = rtnl_dereference(pmc->next_rcu))
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#ifdef CONFIG_IP_MULTICAST
177
178/*
179 * Timer management
180 */
181
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000182static void igmp_stop_timer(struct ip_mc_list *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 spin_lock_bh(&im->lock);
185 if (del_timer(&im->timer))
186 atomic_dec(&im->refcnt);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800187 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 im->reporter = 0;
189 im->unsolicit_count = 0;
190 spin_unlock_bh(&im->lock);
191}
192
193/* It must be called with locked im->lock */
194static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
195{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800196 int tv = net_random() % max_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800198 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (!mod_timer(&im->timer, jiffies+tv+2))
200 atomic_inc(&im->refcnt);
201}
202
203static void igmp_gq_start_timer(struct in_device *in_dev)
204{
205 int tv = net_random() % in_dev->mr_maxdelay;
206
207 in_dev->mr_gq_running = 1;
208 if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2))
209 in_dev_hold(in_dev);
210}
211
212static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
213{
214 int tv = net_random() % delay;
215
216 if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
217 in_dev_hold(in_dev);
218}
219
220static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
221{
222 spin_lock_bh(&im->lock);
223 im->unsolicit_count = 0;
224 if (del_timer(&im->timer)) {
225 if ((long)(im->timer.expires-jiffies) < max_delay) {
226 add_timer(&im->timer);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800227 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 spin_unlock_bh(&im->lock);
229 return;
230 }
231 atomic_dec(&im->refcnt);
232 }
233 igmp_start_timer(im, max_delay);
234 spin_unlock_bh(&im->lock);
235}
236
237
238/*
239 * Send an IGMP report.
240 */
241
242#define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
243
244
245static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
246 int gdeleted, int sdeleted)
247{
248 switch (type) {
249 case IGMPV3_MODE_IS_INCLUDE:
250 case IGMPV3_MODE_IS_EXCLUDE:
251 if (gdeleted || sdeleted)
252 return 0;
David L Stevensad125832006-01-18 14:20:56 -0800253 if (!(pmc->gsquery && !psf->sf_gsresp)) {
254 if (pmc->sfmode == MCAST_INCLUDE)
255 return 1;
256 /* don't include if this source is excluded
257 * in all filters
258 */
259 if (psf->sf_count[MCAST_INCLUDE])
260 return type == IGMPV3_MODE_IS_INCLUDE;
261 return pmc->sfcount[MCAST_EXCLUDE] ==
262 psf->sf_count[MCAST_EXCLUDE];
263 }
264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 case IGMPV3_CHANGE_TO_INCLUDE:
266 if (gdeleted || sdeleted)
267 return 0;
268 return psf->sf_count[MCAST_INCLUDE] != 0;
269 case IGMPV3_CHANGE_TO_EXCLUDE:
270 if (gdeleted || sdeleted)
271 return 0;
272 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
273 psf->sf_count[MCAST_INCLUDE])
274 return 0;
275 return pmc->sfcount[MCAST_EXCLUDE] ==
276 psf->sf_count[MCAST_EXCLUDE];
277 case IGMPV3_ALLOW_NEW_SOURCES:
278 if (gdeleted || !psf->sf_crcount)
279 return 0;
280 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
281 case IGMPV3_BLOCK_OLD_SOURCES:
282 if (pmc->sfmode == MCAST_INCLUDE)
283 return gdeleted || (psf->sf_crcount && sdeleted);
284 return psf->sf_crcount && !gdeleted && !sdeleted;
285 }
286 return 0;
287}
288
289static int
290igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
291{
292 struct ip_sf_list *psf;
293 int scount = 0;
294
295 for (psf=pmc->sources; psf; psf=psf->sf_next) {
296 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
297 continue;
298 scount++;
299 }
300 return scount;
301}
302
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000303#define igmp_skb_size(skb) (*(unsigned int *)((skb)->cb))
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static struct sk_buff *igmpv3_newpack(struct net_device *dev, int size)
306{
307 struct sk_buff *skb;
308 struct rtable *rt;
309 struct iphdr *pip;
310 struct igmpv3_report *pig;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700311 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000313 while (1) {
314 skb = alloc_skb(size + LL_ALLOCATED_SPACE(dev),
315 GFP_ATOMIC | __GFP_NOWARN);
316 if (skb)
317 break;
318 size >>= 1;
319 if (size < 256)
320 return NULL;
321 }
322 igmp_skb_size(skb) = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 {
325 struct flowi fl = { .oif = dev->ifindex,
Changli Gao58116622010-11-12 18:43:55 +0000326 .fl4_dst = IGMPV3_ALL_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 .proto = IPPROTO_IGMP };
David S. Millerb23dd4f2011-03-02 14:31:35 -0800328 rt = ip_route_output_key(net, &fl);
329 if (IS_ERR(rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 kfree_skb(skb);
331 return NULL;
332 }
333 }
334 if (rt->rt_src == 0) {
335 kfree_skb(skb);
336 ip_rt_put(rt);
337 return NULL;
338 }
339
Changli Gaod8d1f302010-06-10 23:31:35 -0700340 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 skb->dev = dev;
342
343 skb_reserve(skb, LL_RESERVED_SPACE(dev));
344
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300345 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700346 pip = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300347 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 pip->version = 4;
350 pip->ihl = (sizeof(struct iphdr)+4)>>2;
351 pip->tos = 0xc0;
352 pip->frag_off = htons(IP_DF);
353 pip->ttl = 1;
354 pip->daddr = rt->rt_dst;
355 pip->saddr = rt->rt_src;
356 pip->protocol = IPPROTO_IGMP;
357 pip->tot_len = 0; /* filled in later */
Changli Gaod8d1f302010-06-10 23:31:35 -0700358 ip_select_ident(pip, &rt->dst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 ((u8*)&pip[1])[0] = IPOPT_RA;
360 ((u8*)&pip[1])[1] = 4;
361 ((u8*)&pip[1])[2] = 0;
362 ((u8*)&pip[1])[3] = 0;
363
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700364 skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4;
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -0300365 skb_put(skb, sizeof(*pig));
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300366 pig = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
368 pig->resv1 = 0;
369 pig->csum = 0;
370 pig->resv2 = 0;
371 pig->ngrec = 0;
372 return skb;
373}
374
375static int igmpv3_sendpack(struct sk_buff *skb)
376{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300377 struct igmphdr *pig = igmp_hdr(skb);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700378 const int igmplen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300380 pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Herbert Xuc439cb22008-01-11 19:14:00 -0800382 return ip_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
386{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800387 return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
391 int type, struct igmpv3_grec **ppgr)
392{
393 struct net_device *dev = pmc->interface->dev;
394 struct igmpv3_report *pih;
395 struct igmpv3_grec *pgr;
396
397 if (!skb)
398 skb = igmpv3_newpack(dev, dev->mtu);
399 if (!skb)
400 return NULL;
401 pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
402 pgr->grec_type = type;
403 pgr->grec_auxwords = 0;
404 pgr->grec_nsrcs = 0;
405 pgr->grec_mca = pmc->multiaddr;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300406 pih = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 pih->ngrec = htons(ntohs(pih->ngrec)+1);
408 *ppgr = pgr;
409 return skb;
410}
411
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000412#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? igmp_skb_size(skb) - (skb)->len : \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 skb_tailroom(skb)) : 0)
414
415static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
416 int type, int gdeleted, int sdeleted)
417{
418 struct net_device *dev = pmc->interface->dev;
419 struct igmpv3_report *pih;
420 struct igmpv3_grec *pgr = NULL;
421 struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevensad125832006-01-18 14:20:56 -0800422 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (pmc->multiaddr == IGMP_ALL_HOSTS)
425 return skb;
426
427 isquery = type == IGMPV3_MODE_IS_INCLUDE ||
428 type == IGMPV3_MODE_IS_EXCLUDE;
429 truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
430 type == IGMPV3_CHANGE_TO_EXCLUDE;
431
David L Stevensad125832006-01-18 14:20:56 -0800432 stotal = scount = 0;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
435
David L Stevensad125832006-01-18 14:20:56 -0800436 if (!*psf_list)
437 goto empty_source;
438
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300439 pih = skb ? igmpv3_report_hdr(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* EX and TO_EX get a fresh packet, if needed */
442 if (truncate) {
443 if (pih && pih->ngrec &&
444 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
445 if (skb)
446 igmpv3_sendpack(skb);
447 skb = igmpv3_newpack(dev, dev->mtu);
448 }
449 }
450 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 psf_prev = NULL;
452 for (psf=*psf_list; psf; psf=psf_next) {
Al Viroea4d9e72006-09-27 18:30:52 -0700453 __be32 *psrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 psf_next = psf->sf_next;
456
457 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
458 psf_prev = psf;
459 continue;
460 }
461
462 /* clear marks on query responses */
463 if (isquery)
464 psf->sf_gsresp = 0;
465
Al Viro63007722006-09-27 18:31:32 -0700466 if (AVAILABLE(skb) < sizeof(__be32) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 first*sizeof(struct igmpv3_grec)) {
468 if (truncate && !first)
469 break; /* truncate these */
470 if (pgr)
471 pgr->grec_nsrcs = htons(scount);
472 if (skb)
473 igmpv3_sendpack(skb);
474 skb = igmpv3_newpack(dev, dev->mtu);
475 first = 1;
476 scount = 0;
477 }
478 if (first) {
479 skb = add_grhead(skb, pmc, type, &pgr);
480 first = 0;
481 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -0800482 if (!skb)
483 return NULL;
Al Viro63007722006-09-27 18:31:32 -0700484 psrc = (__be32 *)skb_put(skb, sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *psrc = psf->sf_inaddr;
David L Stevensad125832006-01-18 14:20:56 -0800486 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
488 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
489 psf->sf_crcount--;
490 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
491 if (psf_prev)
492 psf_prev->sf_next = psf->sf_next;
493 else
494 *psf_list = psf->sf_next;
495 kfree(psf);
496 continue;
497 }
498 }
499 psf_prev = psf;
500 }
David L Stevensad125832006-01-18 14:20:56 -0800501
502empty_source:
503 if (!stotal) {
504 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
505 type == IGMPV3_BLOCK_OLD_SOURCES)
506 return skb;
507 if (pmc->crcount || isquery) {
508 /* make sure we have room for group header */
509 if (skb && AVAILABLE(skb)<sizeof(struct igmpv3_grec)) {
510 igmpv3_sendpack(skb);
511 skb = NULL; /* add_grhead will get a new one */
512 }
513 skb = add_grhead(skb, pmc, type, &pgr);
514 }
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (pgr)
517 pgr->grec_nsrcs = htons(scount);
518
519 if (isquery)
520 pmc->gsquery = 0; /* clear query state on report */
521 return skb;
522}
523
524static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
525{
526 struct sk_buff *skb = NULL;
527 int type;
528
529 if (!pmc) {
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000530 rcu_read_lock();
531 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (pmc->multiaddr == IGMP_ALL_HOSTS)
533 continue;
534 spin_lock_bh(&pmc->lock);
535 if (pmc->sfcount[MCAST_EXCLUDE])
536 type = IGMPV3_MODE_IS_EXCLUDE;
537 else
538 type = IGMPV3_MODE_IS_INCLUDE;
539 skb = add_grec(skb, pmc, type, 0, 0);
540 spin_unlock_bh(&pmc->lock);
541 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000542 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 } else {
544 spin_lock_bh(&pmc->lock);
545 if (pmc->sfcount[MCAST_EXCLUDE])
546 type = IGMPV3_MODE_IS_EXCLUDE;
547 else
548 type = IGMPV3_MODE_IS_INCLUDE;
549 skb = add_grec(skb, pmc, type, 0, 0);
550 spin_unlock_bh(&pmc->lock);
551 }
552 if (!skb)
553 return 0;
554 return igmpv3_sendpack(skb);
555}
556
557/*
558 * remove zero-count source records from a source filter list
559 */
560static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
561{
562 struct ip_sf_list *psf_prev, *psf_next, *psf;
563
564 psf_prev = NULL;
565 for (psf=*ppsf; psf; psf = psf_next) {
566 psf_next = psf->sf_next;
567 if (psf->sf_crcount == 0) {
568 if (psf_prev)
569 psf_prev->sf_next = psf->sf_next;
570 else
571 *ppsf = psf->sf_next;
572 kfree(psf);
573 } else
574 psf_prev = psf;
575 }
576}
577
578static void igmpv3_send_cr(struct in_device *in_dev)
579{
580 struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
581 struct sk_buff *skb = NULL;
582 int type, dtype;
583
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000584 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 spin_lock_bh(&in_dev->mc_tomb_lock);
586
587 /* deleted MCA's */
588 pmc_prev = NULL;
589 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc_next) {
590 pmc_next = pmc->next;
591 if (pmc->sfmode == MCAST_INCLUDE) {
592 type = IGMPV3_BLOCK_OLD_SOURCES;
593 dtype = IGMPV3_BLOCK_OLD_SOURCES;
594 skb = add_grec(skb, pmc, type, 1, 0);
595 skb = add_grec(skb, pmc, dtype, 1, 1);
596 }
597 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (pmc->sfmode == MCAST_EXCLUDE) {
599 type = IGMPV3_CHANGE_TO_INCLUDE;
600 skb = add_grec(skb, pmc, type, 1, 0);
601 }
David L Stevensad125832006-01-18 14:20:56 -0800602 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (pmc->crcount == 0) {
604 igmpv3_clear_zeros(&pmc->tomb);
605 igmpv3_clear_zeros(&pmc->sources);
606 }
607 }
608 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
609 if (pmc_prev)
610 pmc_prev->next = pmc_next;
611 else
612 in_dev->mc_tomb = pmc_next;
613 in_dev_put(pmc->interface);
614 kfree(pmc);
615 } else
616 pmc_prev = pmc;
617 }
618 spin_unlock_bh(&in_dev->mc_tomb_lock);
619
620 /* change recs */
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000621 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 spin_lock_bh(&pmc->lock);
623 if (pmc->sfcount[MCAST_EXCLUDE]) {
624 type = IGMPV3_BLOCK_OLD_SOURCES;
625 dtype = IGMPV3_ALLOW_NEW_SOURCES;
626 } else {
627 type = IGMPV3_ALLOW_NEW_SOURCES;
628 dtype = IGMPV3_BLOCK_OLD_SOURCES;
629 }
630 skb = add_grec(skb, pmc, type, 0, 0);
631 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
632
633 /* filter mode changes */
634 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (pmc->sfmode == MCAST_EXCLUDE)
636 type = IGMPV3_CHANGE_TO_EXCLUDE;
637 else
638 type = IGMPV3_CHANGE_TO_INCLUDE;
639 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevensad125832006-01-18 14:20:56 -0800640 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642 spin_unlock_bh(&pmc->lock);
643 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000644 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if (!skb)
647 return;
648 (void) igmpv3_sendpack(skb);
649}
650
651static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
652 int type)
653{
654 struct sk_buff *skb;
655 struct iphdr *iph;
656 struct igmphdr *ih;
657 struct rtable *rt;
658 struct net_device *dev = in_dev->dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700659 struct net *net = dev_net(dev);
Al Viro63007722006-09-27 18:31:32 -0700660 __be32 group = pmc ? pmc->multiaddr : 0;
661 __be32 dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
664 return igmpv3_send_report(in_dev, pmc);
665 else if (type == IGMP_HOST_LEAVE_MESSAGE)
666 dst = IGMP_ALL_ROUTER;
667 else
668 dst = group;
669
670 {
671 struct flowi fl = { .oif = dev->ifindex,
Changli Gao58116622010-11-12 18:43:55 +0000672 .fl4_dst = dst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .proto = IPPROTO_IGMP };
David S. Millerb23dd4f2011-03-02 14:31:35 -0800674 rt = ip_route_output_key(net, &fl);
675 if (IS_ERR(rt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return -1;
677 }
678 if (rt->rt_src == 0) {
679 ip_rt_put(rt);
680 return -1;
681 }
682
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800683 skb = alloc_skb(IGMP_SIZE+LL_ALLOCATED_SPACE(dev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (skb == NULL) {
685 ip_rt_put(rt);
686 return -1;
687 }
688
Changli Gaod8d1f302010-06-10 23:31:35 -0700689 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 skb_reserve(skb, LL_RESERVED_SPACE(dev));
692
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300693 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700694 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300695 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 iph->version = 4;
698 iph->ihl = (sizeof(struct iphdr)+4)>>2;
699 iph->tos = 0xc0;
700 iph->frag_off = htons(IP_DF);
701 iph->ttl = 1;
702 iph->daddr = dst;
703 iph->saddr = rt->rt_src;
704 iph->protocol = IPPROTO_IGMP;
Changli Gaod8d1f302010-06-10 23:31:35 -0700705 ip_select_ident(iph, &rt->dst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 ((u8*)&iph[1])[0] = IPOPT_RA;
707 ((u8*)&iph[1])[1] = 4;
708 ((u8*)&iph[1])[2] = 0;
709 ((u8*)&iph[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800712 ih->type = type;
713 ih->code = 0;
714 ih->csum = 0;
715 ih->group = group;
716 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Herbert Xuc439cb22008-01-11 19:14:00 -0800718 return ip_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
721static void igmp_gq_timer_expire(unsigned long data)
722{
723 struct in_device *in_dev = (struct in_device *)data;
724
725 in_dev->mr_gq_running = 0;
726 igmpv3_send_report(in_dev, NULL);
727 __in_dev_put(in_dev);
728}
729
730static void igmp_ifc_timer_expire(unsigned long data)
731{
732 struct in_device *in_dev = (struct in_device *)data;
733
734 igmpv3_send_cr(in_dev);
735 if (in_dev->mr_ifc_count) {
736 in_dev->mr_ifc_count--;
737 igmp_ifc_start_timer(in_dev, IGMP_Unsolicited_Report_Interval);
738 }
739 __in_dev_put(in_dev);
740}
741
742static void igmp_ifc_event(struct in_device *in_dev)
743{
744 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
745 return;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900746 in_dev->mr_ifc_count = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 IGMP_Unsolicited_Report_Count;
748 igmp_ifc_start_timer(in_dev, 1);
749}
750
751
752static void igmp_timer_expire(unsigned long data)
753{
754 struct ip_mc_list *im=(struct ip_mc_list *)data;
755 struct in_device *in_dev = im->interface;
756
757 spin_lock(&im->lock);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800758 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if (im->unsolicit_count) {
761 im->unsolicit_count--;
762 igmp_start_timer(im, IGMP_Unsolicited_Report_Interval);
763 }
764 im->reporter = 1;
765 spin_unlock(&im->lock);
766
767 if (IGMP_V1_SEEN(in_dev))
768 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
769 else if (IGMP_V2_SEEN(in_dev))
770 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
771 else
772 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
773
774 ip_ma_put(im);
775}
776
David L Stevensad125832006-01-18 14:20:56 -0800777/* mark EXCLUDE-mode sources */
Al Viroea4d9e72006-09-27 18:30:52 -0700778static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct ip_sf_list *psf;
781 int i, scount;
782
783 scount = 0;
784 for (psf=pmc->sources; psf; psf=psf->sf_next) {
785 if (scount == nsrcs)
786 break;
David L Stevensad125832006-01-18 14:20:56 -0800787 for (i=0; i<nsrcs; i++) {
788 /* skip inactive filters */
789 if (pmc->sfcount[MCAST_INCLUDE] ||
790 pmc->sfcount[MCAST_EXCLUDE] !=
791 psf->sf_count[MCAST_EXCLUDE])
792 continue;
793 if (srcs[i] == psf->sf_inaddr) {
794 scount++;
795 break;
796 }
797 }
798 }
799 pmc->gsquery = 0;
800 if (scount == nsrcs) /* all sources excluded */
801 return 0;
802 return 1;
803}
804
Al Viroea4d9e72006-09-27 18:30:52 -0700805static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
David L Stevensad125832006-01-18 14:20:56 -0800806{
807 struct ip_sf_list *psf;
808 int i, scount;
809
810 if (pmc->sfmode == MCAST_EXCLUDE)
811 return igmp_xmarksources(pmc, nsrcs, srcs);
812
813 /* mark INCLUDE-mode sources */
814 scount = 0;
815 for (psf=pmc->sources; psf; psf=psf->sf_next) {
816 if (scount == nsrcs)
817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 for (i=0; i<nsrcs; i++)
819 if (srcs[i] == psf->sf_inaddr) {
820 psf->sf_gsresp = 1;
821 scount++;
822 break;
823 }
824 }
David L Stevensad125832006-01-18 14:20:56 -0800825 if (!scount) {
826 pmc->gsquery = 0;
827 return 0;
828 }
829 pmc->gsquery = 1;
830 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Al Viro63007722006-09-27 18:31:32 -0700833static void igmp_heard_report(struct in_device *in_dev, __be32 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct ip_mc_list *im;
836
837 /* Timers are only set for non-local groups */
838
839 if (group == IGMP_ALL_HOSTS)
840 return;
841
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000842 rcu_read_lock();
843 for_each_pmc_rcu(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (im->multiaddr == group) {
845 igmp_stop_timer(im);
846 break;
847 }
848 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000849 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
852static void igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
853 int len)
854{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300855 struct igmphdr *ih = igmp_hdr(skb);
856 struct igmpv3_query *ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct ip_mc_list *im;
Al Viro63007722006-09-27 18:31:32 -0700858 __be32 group = ih->group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int max_delay;
860 int mark = 0;
861
862
David Stevens5b7c8402010-09-30 14:29:40 +0000863 if (len == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (ih->code == 0) {
865 /* Alas, old v1 router presents here. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 max_delay = IGMP_Query_Response_Interval;
868 in_dev->mr_v1_seen = jiffies +
869 IGMP_V1_Router_Present_Timeout;
870 group = 0;
871 } else {
872 /* v2 router present */
873 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
874 in_dev->mr_v2_seen = jiffies +
875 IGMP_V2_Router_Present_Timeout;
876 }
877 /* cancel the interface change timer */
878 in_dev->mr_ifc_count = 0;
879 if (del_timer(&in_dev->mr_ifc_timer))
880 __in_dev_put(in_dev);
881 /* clear deleted report items */
882 igmpv3_clear_delrec(in_dev);
883 } else if (len < 12) {
884 return; /* ignore bogus packet; freed by caller */
David Stevens5b7c8402010-09-30 14:29:40 +0000885 } else if (IGMP_V1_SEEN(in_dev)) {
886 /* This is a v3 query with v1 queriers present */
887 max_delay = IGMP_Query_Response_Interval;
888 group = 0;
889 } else if (IGMP_V2_SEEN(in_dev)) {
890 /* this is a v3 query with v2 queriers present;
891 * Interpretation of the max_delay code is problematic here.
892 * A real v2 host would use ih_code directly, while v3 has a
893 * different encoding. We use the v3 encoding as more likely
894 * to be intended in a v3 query.
895 */
896 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 } else { /* v3 */
898 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
899 return;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900900
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300901 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (ih3->nsrcs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900903 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)
Al Viro63007722006-09-27 18:31:32 -0700904 + ntohs(ih3->nsrcs)*sizeof(__be32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300906 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
909 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
910 if (!max_delay)
911 max_delay = 1; /* can't mod w/ 0 */
912 in_dev->mr_maxdelay = max_delay;
913 if (ih3->qrv)
914 in_dev->mr_qrv = ih3->qrv;
915 if (!group) { /* general query */
916 if (ih3->nsrcs)
917 return; /* no sources allowed */
918 igmp_gq_start_timer(in_dev);
919 return;
920 }
921 /* mark sources to include, if group & source-specific */
922 mark = ih3->nsrcs != 0;
923 }
924
925 /*
926 * - Start the timers in all of our membership records
927 * that the query applies to for the interface on
928 * which the query arrived excl. those that belong
929 * to a "local" group (224.0.0.X)
930 * - For timers already running check if they need to
931 * be reset.
932 * - Use the igmp->igmp_code field as the maximum
933 * delay possible
934 */
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000935 rcu_read_lock();
936 for_each_pmc_rcu(in_dev, im) {
David L Stevensad125832006-01-18 14:20:56 -0800937 int changed;
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (group && group != im->multiaddr)
940 continue;
941 if (im->multiaddr == IGMP_ALL_HOSTS)
942 continue;
943 spin_lock_bh(&im->lock);
944 if (im->tm_running)
945 im->gsquery = im->gsquery && mark;
946 else
947 im->gsquery = mark;
David L Stevensad125832006-01-18 14:20:56 -0800948 changed = !im->gsquery ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900949 igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 spin_unlock_bh(&im->lock);
David L Stevensad125832006-01-18 14:20:56 -0800951 if (changed)
952 igmp_mod_timer(im, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000954 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000957/* called in rcu_read_lock() section */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958int igmp_rcv(struct sk_buff *skb)
959{
960 /* This basically follows the spec line by line -- see RFC1112 */
961 struct igmphdr *ih;
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000962 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 int len = skb->len;
964
Denis V. Lunevcd557bc2008-02-09 23:22:26 -0800965 if (in_dev == NULL)
966 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Herbert Xufb286bb2005-11-10 13:01:24 -0800968 if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000969 goto drop;
Herbert Xufb286bb2005-11-10 13:01:24 -0800970
971 switch (skb->ip_summed) {
Patrick McHardy84fa7932006-08-29 16:44:56 -0700972 case CHECKSUM_COMPLETE:
Al Virod3bc23e2006-11-14 21:24:49 -0800973 if (!csum_fold(skb->csum))
Herbert Xufb286bb2005-11-10 13:01:24 -0800974 break;
975 /* fall through */
976 case CHECKSUM_NONE:
977 skb->csum = 0;
978 if (__skb_checksum_complete(skb))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000979 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300982 ih = igmp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 switch (ih->type) {
984 case IGMP_HOST_MEMBERSHIP_QUERY:
985 igmp_heard_query(in_dev, skb, len);
986 break;
987 case IGMP_HOST_MEMBERSHIP_REPORT:
988 case IGMPV2_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* Is it our report looped back? */
David S. Millerc7537962010-11-11 17:07:48 -0800990 if (rt_is_output_route(skb_rtable(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 break;
David Stevens24c69272005-12-02 20:32:59 -0800992 /* don't rely on MC router hearing unicast reports */
993 if (skb->pkt_type == PACKET_MULTICAST ||
994 skb->pkt_type == PACKET_BROADCAST)
995 igmp_heard_report(in_dev, ih->group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 break;
997 case IGMP_PIM:
998#ifdef CONFIG_IP_PIMSM_V1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return pim_rcv_v1(skb);
1000#endif
Herbert Xuc6b471e2010-02-07 17:26:30 +00001001 case IGMPV3_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 case IGMP_DVMRP:
1003 case IGMP_TRACE:
1004 case IGMP_HOST_LEAVE_MESSAGE:
1005 case IGMP_MTRACE:
1006 case IGMP_MTRACE_RESP:
1007 break;
1008 default:
Linus Torvaldsdd1c1852006-01-31 13:11:41 -08001009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001011
Denis V. Lunevcd557bc2008-02-09 23:22:26 -08001012drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 kfree_skb(skb);
1014 return 0;
1015}
1016
1017#endif
1018
1019
1020/*
1021 * Add a filter to a device
1022 */
1023
Al Viro63007722006-09-27 18:31:32 -07001024static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 char buf[MAX_ADDR_LEN];
1027 struct net_device *dev = in_dev->dev;
1028
1029 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1030 We will get multicast token leakage, when IFF_MULTICAST
1031 is changed. This check should be done in dev->set_multicast_list
1032 routine. Something sort of:
1033 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1034 --ANK
1035 */
1036 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +00001037 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/*
1041 * Remove a filter from a device
1042 */
1043
Al Viro63007722006-09-27 18:31:32 -07001044static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 char buf[MAX_ADDR_LEN];
1047 struct net_device *dev = in_dev->dev;
1048
1049 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +00001050 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053#ifdef CONFIG_IP_MULTICAST
1054/*
1055 * deleted ip_mc_list manipulation
1056 */
1057static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1058{
1059 struct ip_mc_list *pmc;
1060
1061 /* this is an "ip_mc_list" for convenience; only the fields below
1062 * are actually used. In particular, the refcnt and users are not
1063 * used for management of the delete list. Using the same structure
1064 * for deleted items allows change reports to use common code with
1065 * non-deleted or query-response MCA's.
1066 */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001067 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (!pmc)
1069 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 spin_lock_bh(&im->lock);
1071 pmc->interface = im->interface;
1072 in_dev_hold(in_dev);
1073 pmc->multiaddr = im->multiaddr;
1074 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1075 IGMP_Unsolicited_Report_Count;
1076 pmc->sfmode = im->sfmode;
1077 if (pmc->sfmode == MCAST_INCLUDE) {
1078 struct ip_sf_list *psf;
1079
1080 pmc->tomb = im->tomb;
1081 pmc->sources = im->sources;
1082 im->tomb = im->sources = NULL;
1083 for (psf=pmc->sources; psf; psf=psf->sf_next)
1084 psf->sf_crcount = pmc->crcount;
1085 }
1086 spin_unlock_bh(&im->lock);
1087
1088 spin_lock_bh(&in_dev->mc_tomb_lock);
1089 pmc->next = in_dev->mc_tomb;
1090 in_dev->mc_tomb = pmc;
1091 spin_unlock_bh(&in_dev->mc_tomb_lock);
1092}
1093
Al Viro63007722006-09-27 18:31:32 -07001094static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 struct ip_mc_list *pmc, *pmc_prev;
1097 struct ip_sf_list *psf, *psf_next;
1098
1099 spin_lock_bh(&in_dev->mc_tomb_lock);
1100 pmc_prev = NULL;
1101 for (pmc=in_dev->mc_tomb; pmc; pmc=pmc->next) {
1102 if (pmc->multiaddr == multiaddr)
1103 break;
1104 pmc_prev = pmc;
1105 }
1106 if (pmc) {
1107 if (pmc_prev)
1108 pmc_prev->next = pmc->next;
1109 else
1110 in_dev->mc_tomb = pmc->next;
1111 }
1112 spin_unlock_bh(&in_dev->mc_tomb_lock);
1113 if (pmc) {
1114 for (psf=pmc->tomb; psf; psf=psf_next) {
1115 psf_next = psf->sf_next;
1116 kfree(psf);
1117 }
1118 in_dev_put(pmc->interface);
1119 kfree(pmc);
1120 }
1121}
1122
1123static void igmpv3_clear_delrec(struct in_device *in_dev)
1124{
1125 struct ip_mc_list *pmc, *nextpmc;
1126
1127 spin_lock_bh(&in_dev->mc_tomb_lock);
1128 pmc = in_dev->mc_tomb;
1129 in_dev->mc_tomb = NULL;
1130 spin_unlock_bh(&in_dev->mc_tomb_lock);
1131
1132 for (; pmc; pmc = nextpmc) {
1133 nextpmc = pmc->next;
1134 ip_mc_clear_src(pmc);
1135 in_dev_put(pmc->interface);
1136 kfree(pmc);
1137 }
1138 /* clear dead sources, too */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001139 rcu_read_lock();
1140 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 struct ip_sf_list *psf, *psf_next;
1142
1143 spin_lock_bh(&pmc->lock);
1144 psf = pmc->tomb;
1145 pmc->tomb = NULL;
1146 spin_unlock_bh(&pmc->lock);
1147 for (; psf; psf=psf_next) {
1148 psf_next = psf->sf_next;
1149 kfree(psf);
1150 }
1151 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001152 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154#endif
1155
1156static void igmp_group_dropped(struct ip_mc_list *im)
1157{
1158 struct in_device *in_dev = im->interface;
1159#ifdef CONFIG_IP_MULTICAST
1160 int reporter;
1161#endif
1162
1163 if (im->loaded) {
1164 im->loaded = 0;
1165 ip_mc_filter_del(in_dev, im->multiaddr);
1166 }
1167
1168#ifdef CONFIG_IP_MULTICAST
1169 if (im->multiaddr == IGMP_ALL_HOSTS)
1170 return;
1171
1172 reporter = im->reporter;
1173 igmp_stop_timer(im);
1174
1175 if (!in_dev->dead) {
1176 if (IGMP_V1_SEEN(in_dev))
1177 goto done;
1178 if (IGMP_V2_SEEN(in_dev)) {
1179 if (reporter)
1180 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
1181 goto done;
1182 }
1183 /* IGMPv3 */
1184 igmpv3_add_delrec(in_dev, im);
1185
1186 igmp_ifc_event(in_dev);
1187 }
1188done:
1189#endif
1190 ip_mc_clear_src(im);
1191}
1192
1193static void igmp_group_added(struct ip_mc_list *im)
1194{
1195 struct in_device *in_dev = im->interface;
1196
1197 if (im->loaded == 0) {
1198 im->loaded = 1;
1199 ip_mc_filter_add(in_dev, im->multiaddr);
1200 }
1201
1202#ifdef CONFIG_IP_MULTICAST
1203 if (im->multiaddr == IGMP_ALL_HOSTS)
1204 return;
1205
1206 if (in_dev->dead)
1207 return;
1208 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1209 spin_lock_bh(&im->lock);
1210 igmp_start_timer(im, IGMP_Initial_Report_Delay);
1211 spin_unlock_bh(&im->lock);
1212 return;
1213 }
1214 /* else, v3 */
1215
1216 im->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1217 IGMP_Unsolicited_Report_Count;
1218 igmp_ifc_event(in_dev);
1219#endif
1220}
1221
1222
1223/*
1224 * Multicast list managers
1225 */
1226
1227
1228/*
1229 * A socket has joined a multicast group on device dev.
1230 */
1231
Al Viro8f935bb2006-09-27 18:30:07 -07001232void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
1234 struct ip_mc_list *im;
1235
1236 ASSERT_RTNL();
1237
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001238 for_each_pmc_rtnl(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (im->multiaddr == addr) {
1240 im->users++;
1241 ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1242 goto out;
1243 }
1244 }
1245
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001246 im = kzalloc(sizeof(*im), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (!im)
1248 goto out;
1249
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001250 im->users = 1;
1251 im->interface = in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 in_dev_hold(in_dev);
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001253 im->multiaddr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /* initial mode is (EX, empty) */
1255 im->sfmode = MCAST_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 im->sfcount[MCAST_EXCLUDE] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 atomic_set(&im->refcnt, 1);
1258 spin_lock_init(&im->lock);
1259#ifdef CONFIG_IP_MULTICAST
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001260 setup_timer(&im->timer, &igmp_timer_expire, (unsigned long)im);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 im->unsolicit_count = IGMP_Unsolicited_Report_Count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262#endif
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001263
1264 im->next_rcu = in_dev->mc_list;
Rami Rosenb8bae412008-10-07 15:34:37 -07001265 in_dev->mc_count++;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001266 rcu_assign_pointer(in_dev->mc_list, im);
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268#ifdef CONFIG_IP_MULTICAST
1269 igmpv3_del_delrec(in_dev, im->multiaddr);
1270#endif
1271 igmp_group_added(im);
1272 if (!in_dev->dead)
1273 ip_rt_multicast_event(in_dev);
1274out:
1275 return;
1276}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001277EXPORT_SYMBOL(ip_mc_inc_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279/*
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001280 * Resend IGMP JOIN report; used for bonding.
Eric Dumazet866f3b22010-11-18 09:33:19 -08001281 * Called with rcu_read_lock()
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001282 */
Eric Dumazet866f3b22010-11-18 09:33:19 -08001283void ip_mc_rejoin_groups(struct in_device *in_dev)
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001284{
Geert Uytterhoeven08882662007-03-12 17:02:37 -07001285#ifdef CONFIG_IP_MULTICAST
Eric Dumazet866f3b22010-11-18 09:33:19 -08001286 struct ip_mc_list *im;
1287 int type;
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001288
Eric Dumazet866f3b22010-11-18 09:33:19 -08001289 for_each_pmc_rcu(in_dev, im) {
1290 if (im->multiaddr == IGMP_ALL_HOSTS)
1291 continue;
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001292
Eric Dumazet866f3b22010-11-18 09:33:19 -08001293 /* a failover is happening and switches
1294 * must be notified immediately
1295 */
1296 if (IGMP_V1_SEEN(in_dev))
1297 type = IGMP_HOST_MEMBERSHIP_REPORT;
1298 else if (IGMP_V2_SEEN(in_dev))
1299 type = IGMPV2_HOST_MEMBERSHIP_REPORT;
1300 else
1301 type = IGMPV3_HOST_MEMBERSHIP_REPORT;
1302 igmp_send_report(in_dev, im, type);
1303 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001304#endif
1305}
Eric Dumazet866f3b22010-11-18 09:33:19 -08001306EXPORT_SYMBOL(ip_mc_rejoin_groups);
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001307
1308/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 * A socket has left a multicast group on device dev
1310 */
1311
Al Viro8f935bb2006-09-27 18:30:07 -07001312void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001314 struct ip_mc_list *i;
1315 struct ip_mc_list __rcu **ip;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ASSERT_RTNL();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001318
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001319 for (ip = &in_dev->mc_list;
1320 (i = rtnl_dereference(*ip)) != NULL;
1321 ip = &i->next_rcu) {
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001322 if (i->multiaddr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (--i->users == 0) {
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001324 *ip = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001325 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 igmp_group_dropped(i);
1327
1328 if (!in_dev->dead)
1329 ip_rt_multicast_event(in_dev);
1330
1331 ip_ma_put(i);
1332 return;
1333 }
1334 break;
1335 }
1336 }
1337}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001338EXPORT_SYMBOL(ip_mc_dec_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Moni Shoua75c78502009-09-15 02:37:40 -07001340/* Device changing type */
1341
1342void ip_mc_unmap(struct in_device *in_dev)
1343{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001344 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001345
1346 ASSERT_RTNL();
1347
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001348 for_each_pmc_rtnl(in_dev, pmc)
1349 igmp_group_dropped(pmc);
Moni Shoua75c78502009-09-15 02:37:40 -07001350}
1351
1352void ip_mc_remap(struct in_device *in_dev)
1353{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001354 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001355
1356 ASSERT_RTNL();
1357
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001358 for_each_pmc_rtnl(in_dev, pmc)
1359 igmp_group_added(pmc);
Moni Shoua75c78502009-09-15 02:37:40 -07001360}
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362/* Device going down */
1363
1364void ip_mc_down(struct in_device *in_dev)
1365{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001366 struct ip_mc_list *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 ASSERT_RTNL();
1369
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001370 for_each_pmc_rtnl(in_dev, pmc)
1371 igmp_group_dropped(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373#ifdef CONFIG_IP_MULTICAST
1374 in_dev->mr_ifc_count = 0;
1375 if (del_timer(&in_dev->mr_ifc_timer))
1376 __in_dev_put(in_dev);
1377 in_dev->mr_gq_running = 0;
1378 if (del_timer(&in_dev->mr_gq_timer))
1379 __in_dev_put(in_dev);
1380 igmpv3_clear_delrec(in_dev);
1381#endif
1382
1383 ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1384}
1385
1386void ip_mc_init_dev(struct in_device *in_dev)
1387{
1388 ASSERT_RTNL();
1389
1390 in_dev->mc_tomb = NULL;
1391#ifdef CONFIG_IP_MULTICAST
1392 in_dev->mr_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001393 setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire,
1394 (unsigned long)in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 in_dev->mr_ifc_count = 0;
Rami Rosenb8bae412008-10-07 15:34:37 -07001396 in_dev->mc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001397 setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire,
1398 (unsigned long)in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 in_dev->mr_qrv = IGMP_Unsolicited_Report_Count;
1400#endif
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 spin_lock_init(&in_dev->mc_tomb_lock);
1403}
1404
1405/* Device going up */
1406
1407void ip_mc_up(struct in_device *in_dev)
1408{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001409 struct ip_mc_list *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 ASSERT_RTNL();
1412
1413 ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1414
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001415 for_each_pmc_rtnl(in_dev, pmc)
1416 igmp_group_added(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
1419/*
1420 * Device is about to be destroyed: clean up.
1421 */
1422
1423void ip_mc_destroy_dev(struct in_device *in_dev)
1424{
1425 struct ip_mc_list *i;
1426
1427 ASSERT_RTNL();
1428
1429 /* Deactivate timers */
1430 ip_mc_down(in_dev);
1431
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001432 while ((i = rtnl_dereference(in_dev->mc_list)) != NULL) {
1433 in_dev->mc_list = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001434 in_dev->mc_count--;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 igmp_group_dropped(i);
1437 ip_ma_put(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001441/* RTNL is locked */
Daniel Lezcano877aced2008-08-13 16:15:57 -07001442static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Changli Gao58116622010-11-12 18:43:55 +00001444 struct flowi fl = { .fl4_dst = imr->imr_multiaddr.s_addr };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct net_device *dev = NULL;
1446 struct in_device *idev = NULL;
1447
1448 if (imr->imr_ifindex) {
Daniel Lezcano877aced2008-08-13 16:15:57 -07001449 idev = inetdev_by_index(net, imr->imr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return idev;
1451 }
1452 if (imr->imr_address.s_addr) {
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001453 dev = __ip_dev_find(net, imr->imr_address.s_addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!dev)
1455 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457
David S. Millerb23dd4f2011-03-02 14:31:35 -08001458 if (!dev) {
1459 struct rtable *rt = ip_route_output_key(net, &fl);
1460 if (!IS_ERR(rt)) {
1461 dev = rt->dst.dev;
1462 ip_rt_put(rt);
1463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465 if (dev) {
1466 imr->imr_ifindex = dev->ifindex;
Herbert Xue5ed6392005-10-03 14:35:55 -07001467 idev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469 return idev;
1470}
1471
1472/*
1473 * Join a socket to a group
1474 */
Brian Haleyab32ea52006-09-22 14:15:41 -07001475int sysctl_igmp_max_memberships __read_mostly = IP_MAX_MEMBERSHIPS;
1476int sysctl_igmp_max_msf __read_mostly = IP_MAX_MSF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478
1479static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001480 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 struct ip_sf_list *psf, *psf_prev;
1483 int rv = 0;
1484
1485 psf_prev = NULL;
1486 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1487 if (psf->sf_inaddr == *psfsrc)
1488 break;
1489 psf_prev = psf;
1490 }
1491 if (!psf || psf->sf_count[sfmode] == 0) {
1492 /* source filter not found, or count wrong => bug */
1493 return -ESRCH;
1494 }
1495 psf->sf_count[sfmode]--;
1496 if (psf->sf_count[sfmode] == 0) {
1497 ip_rt_multicast_event(pmc->interface);
1498 }
1499 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1500#ifdef CONFIG_IP_MULTICAST
1501 struct in_device *in_dev = pmc->interface;
1502#endif
1503
1504 /* no more filters for this source */
1505 if (psf_prev)
1506 psf_prev->sf_next = psf->sf_next;
1507 else
1508 pmc->sources = psf->sf_next;
1509#ifdef CONFIG_IP_MULTICAST
1510 if (psf->sf_oldin &&
1511 !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001512 psf->sf_crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 IGMP_Unsolicited_Report_Count;
1514 psf->sf_next = pmc->tomb;
1515 pmc->tomb = psf;
1516 rv = 1;
1517 } else
1518#endif
1519 kfree(psf);
1520 }
1521 return rv;
1522}
1523
1524#ifndef CONFIG_IP_MULTICAST
1525#define igmp_ifc_event(x) do { } while (0)
1526#endif
1527
Al Viro8f935bb2006-09-27 18:30:07 -07001528static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1529 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 struct ip_mc_list *pmc;
1532 int changerec = 0;
1533 int i, err;
1534
1535 if (!in_dev)
1536 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001537 rcu_read_lock();
1538 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (*pmca == pmc->multiaddr)
1540 break;
1541 }
1542 if (!pmc) {
1543 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001544 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return -ESRCH;
1546 }
1547 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001548 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549#ifdef CONFIG_IP_MULTICAST
1550 sf_markstate(pmc);
1551#endif
1552 if (!delta) {
1553 err = -EINVAL;
1554 if (!pmc->sfcount[sfmode])
1555 goto out_unlock;
1556 pmc->sfcount[sfmode]--;
1557 }
1558 err = 0;
1559 for (i=0; i<sfcount; i++) {
1560 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1561
1562 changerec |= rv > 0;
1563 if (!err && rv < 0)
1564 err = rv;
1565 }
1566 if (pmc->sfmode == MCAST_EXCLUDE &&
1567 pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1568 pmc->sfcount[MCAST_INCLUDE]) {
1569#ifdef CONFIG_IP_MULTICAST
1570 struct ip_sf_list *psf;
1571#endif
1572
1573 /* filter mode change */
1574 pmc->sfmode = MCAST_INCLUDE;
1575#ifdef CONFIG_IP_MULTICAST
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001576 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 IGMP_Unsolicited_Report_Count;
1578 in_dev->mr_ifc_count = pmc->crcount;
1579 for (psf=pmc->sources; psf; psf = psf->sf_next)
1580 psf->sf_crcount = 0;
1581 igmp_ifc_event(pmc->interface);
1582 } else if (sf_setstate(pmc) || changerec) {
1583 igmp_ifc_event(pmc->interface);
1584#endif
1585 }
1586out_unlock:
1587 spin_unlock_bh(&pmc->lock);
1588 return err;
1589}
1590
1591/*
1592 * Add multicast single-source filter to the interface list
1593 */
1594static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001595 __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 struct ip_sf_list *psf, *psf_prev;
1598
1599 psf_prev = NULL;
1600 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1601 if (psf->sf_inaddr == *psfsrc)
1602 break;
1603 psf_prev = psf;
1604 }
1605 if (!psf) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001606 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (!psf)
1608 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 psf->sf_inaddr = *psfsrc;
1610 if (psf_prev) {
1611 psf_prev->sf_next = psf;
1612 } else
1613 pmc->sources = psf;
1614 }
1615 psf->sf_count[sfmode]++;
1616 if (psf->sf_count[sfmode] == 1) {
1617 ip_rt_multicast_event(pmc->interface);
1618 }
1619 return 0;
1620}
1621
1622#ifdef CONFIG_IP_MULTICAST
1623static void sf_markstate(struct ip_mc_list *pmc)
1624{
1625 struct ip_sf_list *psf;
1626 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1627
1628 for (psf=pmc->sources; psf; psf=psf->sf_next)
1629 if (pmc->sfcount[MCAST_EXCLUDE]) {
1630 psf->sf_oldin = mca_xcount ==
1631 psf->sf_count[MCAST_EXCLUDE] &&
1632 !psf->sf_count[MCAST_INCLUDE];
1633 } else
1634 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1635}
1636
1637static int sf_setstate(struct ip_mc_list *pmc)
1638{
David L Stevensad125832006-01-18 14:20:56 -08001639 struct ip_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1641 int qrv = pmc->interface->mr_qrv;
1642 int new_in, rv;
1643
1644 rv = 0;
1645 for (psf=pmc->sources; psf; psf=psf->sf_next) {
1646 if (pmc->sfcount[MCAST_EXCLUDE]) {
1647 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1648 !psf->sf_count[MCAST_INCLUDE];
1649 } else
1650 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevensad125832006-01-18 14:20:56 -08001651 if (new_in) {
1652 if (!psf->sf_oldin) {
Al Viro76edc602006-02-01 05:54:35 -05001653 struct ip_sf_list *prev = NULL;
David L Stevensad125832006-01-18 14:20:56 -08001654
1655 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next) {
1656 if (dpsf->sf_inaddr == psf->sf_inaddr)
1657 break;
1658 prev = dpsf;
1659 }
1660 if (dpsf) {
1661 if (prev)
1662 prev->sf_next = dpsf->sf_next;
1663 else
1664 pmc->tomb = dpsf->sf_next;
1665 kfree(dpsf);
1666 }
1667 psf->sf_crcount = qrv;
1668 rv++;
1669 }
1670 } else if (psf->sf_oldin) {
1671
1672 psf->sf_crcount = 0;
1673 /*
1674 * add or update "delete" records if an active filter
1675 * is now inactive
1676 */
1677 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next)
1678 if (dpsf->sf_inaddr == psf->sf_inaddr)
1679 break;
1680 if (!dpsf) {
Joe Perches3ed37a62010-05-31 17:23:21 +00001681 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevensad125832006-01-18 14:20:56 -08001682 if (!dpsf)
1683 continue;
1684 *dpsf = *psf;
1685 /* pmc->lock held by callers */
1686 dpsf->sf_next = pmc->tomb;
1687 pmc->tomb = dpsf;
1688 }
1689 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 rv++;
1691 }
1692 }
1693 return rv;
1694}
1695#endif
1696
1697/*
1698 * Add multicast source filter list to the interface list
1699 */
Al Viro8f935bb2006-09-27 18:30:07 -07001700static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1701 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 struct ip_mc_list *pmc;
1704 int isexclude;
1705 int i, err;
1706
1707 if (!in_dev)
1708 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001709 rcu_read_lock();
1710 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (*pmca == pmc->multiaddr)
1712 break;
1713 }
1714 if (!pmc) {
1715 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001716 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return -ESRCH;
1718 }
1719 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001720 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722#ifdef CONFIG_IP_MULTICAST
1723 sf_markstate(pmc);
1724#endif
1725 isexclude = pmc->sfmode == MCAST_EXCLUDE;
1726 if (!delta)
1727 pmc->sfcount[sfmode]++;
1728 err = 0;
1729 for (i=0; i<sfcount; i++) {
1730 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
1731 if (err)
1732 break;
1733 }
1734 if (err) {
1735 int j;
1736
1737 pmc->sfcount[sfmode]--;
1738 for (j=0; j<i; j++)
1739 (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1740 } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
1741#ifdef CONFIG_IP_MULTICAST
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct ip_sf_list *psf;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001743 in_dev = pmc->interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744#endif
1745
1746 /* filter mode change */
1747 if (pmc->sfcount[MCAST_EXCLUDE])
1748 pmc->sfmode = MCAST_EXCLUDE;
1749 else if (pmc->sfcount[MCAST_INCLUDE])
1750 pmc->sfmode = MCAST_INCLUDE;
1751#ifdef CONFIG_IP_MULTICAST
1752 /* else no filters; keep old mode for reports */
1753
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001754 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 IGMP_Unsolicited_Report_Count;
1756 in_dev->mr_ifc_count = pmc->crcount;
1757 for (psf=pmc->sources; psf; psf = psf->sf_next)
1758 psf->sf_crcount = 0;
1759 igmp_ifc_event(in_dev);
1760 } else if (sf_setstate(pmc)) {
1761 igmp_ifc_event(in_dev);
1762#endif
1763 }
1764 spin_unlock_bh(&pmc->lock);
1765 return err;
1766}
1767
1768static void ip_mc_clear_src(struct ip_mc_list *pmc)
1769{
1770 struct ip_sf_list *psf, *nextpsf;
1771
1772 for (psf=pmc->tomb; psf; psf=nextpsf) {
1773 nextpsf = psf->sf_next;
1774 kfree(psf);
1775 }
1776 pmc->tomb = NULL;
1777 for (psf=pmc->sources; psf; psf=nextpsf) {
1778 nextpsf = psf->sf_next;
1779 kfree(psf);
1780 }
1781 pmc->sources = NULL;
1782 pmc->sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07001783 pmc->sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 pmc->sfcount[MCAST_EXCLUDE] = 1;
1785}
1786
1787
1788/*
1789 * Join a multicast group
1790 */
1791int ip_mc_join_group(struct sock *sk , struct ip_mreqn *imr)
1792{
1793 int err;
Al Viro8f935bb2006-09-27 18:30:07 -07001794 __be32 addr = imr->imr_multiaddr.s_addr;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001795 struct ip_mc_socklist *iml = NULL, *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct in_device *in_dev;
1797 struct inet_sock *inet = inet_sk(sk);
Daniel Lezcano877aced2008-08-13 16:15:57 -07001798 struct net *net = sock_net(sk);
David L Stevensca9b9072005-07-08 17:38:07 -07001799 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 int count = 0;
1801
Joe Perchesf97c1e02007-12-16 13:45:43 -08001802 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 return -EINVAL;
1804
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001805 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Daniel Lezcano877aced2008-08-13 16:15:57 -07001807 in_dev = ip_mc_find_dev(net, imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 if (!in_dev) {
1810 iml = NULL;
1811 err = -ENODEV;
1812 goto done;
1813 }
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 err = -EADDRINUSE;
David L Stevensca9b9072005-07-08 17:38:07 -07001816 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001817 for_each_pmc_rtnl(inet, i) {
David L Stevensca9b9072005-07-08 17:38:07 -07001818 if (i->multi.imr_multiaddr.s_addr == addr &&
1819 i->multi.imr_ifindex == ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 count++;
1822 }
1823 err = -ENOBUFS;
David L Stevensca9b9072005-07-08 17:38:07 -07001824 if (count >= sysctl_igmp_max_memberships)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 goto done;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001826 iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL);
David L Stevensca9b9072005-07-08 17:38:07 -07001827 if (iml == NULL)
1828 goto done;
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 memcpy(&iml->multi, imr, sizeof(*imr));
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001831 iml->next_rcu = inet->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 iml->sflist = NULL;
1833 iml->sfmode = MCAST_EXCLUDE;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001834 rcu_assign_pointer(inet->mc_list, iml);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 ip_mc_inc_group(in_dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001838 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return err;
1840}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001841EXPORT_SYMBOL(ip_mc_join_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001843static void ip_sf_socklist_reclaim(struct rcu_head *rp)
1844{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001845 kfree(container_of(rp, struct ip_sf_socklist, rcu));
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001846 /* sk_omem_alloc should have been decreased by the caller*/
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
1850 struct in_device *in_dev)
1851{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001852 struct ip_sf_socklist *psf = rtnl_dereference(iml->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 int err;
1854
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001855 if (psf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 /* any-source empty exclude case */
1857 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1858 iml->sfmode, 0, NULL, 0);
1859 }
1860 err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001861 iml->sfmode, psf->sl_count, psf->sl_addr, 0);
1862 rcu_assign_pointer(iml->sflist, NULL);
1863 /* decrease mem now to avoid the memleak warning */
1864 atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc);
1865 call_rcu(&psf->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return err;
1867}
1868
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001869
1870static void ip_mc_socklist_reclaim(struct rcu_head *rp)
1871{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001872 kfree(container_of(rp, struct ip_mc_socklist, rcu));
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001873 /* sk_omem_alloc should have been decreased by the caller*/
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001874}
1875
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877/*
1878 * Ask a socket to leave a group.
1879 */
1880
1881int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
1882{
1883 struct inet_sock *inet = inet_sk(sk);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001884 struct ip_mc_socklist *iml;
1885 struct ip_mc_socklist __rcu **imlp;
David L Stevens84b42ba2005-07-08 17:48:38 -07001886 struct in_device *in_dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001887 struct net *net = sock_net(sk);
Al Viro8f935bb2006-09-27 18:30:07 -07001888 __be32 group = imr->imr_multiaddr.s_addr;
David L Stevens84b42ba2005-07-08 17:48:38 -07001889 u32 ifindex;
David L Stevensacd6e002006-08-17 16:27:39 -07001890 int ret = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 rtnl_lock();
Daniel Lezcano877aced2008-08-13 16:15:57 -07001893 in_dev = ip_mc_find_dev(net, imr);
David L Stevens84b42ba2005-07-08 17:48:38 -07001894 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001895 for (imlp = &inet->mc_list;
1896 (iml = rtnl_dereference(*imlp)) != NULL;
1897 imlp = &iml->next_rcu) {
David L Stevensacd6e002006-08-17 16:27:39 -07001898 if (iml->multi.imr_multiaddr.s_addr != group)
1899 continue;
1900 if (ifindex) {
1901 if (iml->multi.imr_ifindex != ifindex)
1902 continue;
1903 } else if (imr->imr_address.s_addr && imr->imr_address.s_addr !=
1904 iml->multi.imr_address.s_addr)
1905 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
David L Stevensacd6e002006-08-17 16:27:39 -07001907 (void) ip_mc_leave_src(sk, iml, in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001909 *imlp = iml->next_rcu;
David L Stevensacd6e002006-08-17 16:27:39 -07001910
1911 if (in_dev)
David L Stevens84b42ba2005-07-08 17:48:38 -07001912 ip_mc_dec_group(in_dev, group);
David L Stevensacd6e002006-08-17 16:27:39 -07001913 rtnl_unlock();
Flavio Leitnerc85bb412010-02-02 07:32:29 -08001914 /* decrease mem now to avoid the memleak warning */
1915 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
1916 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
David L Stevensacd6e002006-08-17 16:27:39 -07001917 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
David L Stevensacd6e002006-08-17 16:27:39 -07001919 if (!in_dev)
1920 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 rtnl_unlock();
David L Stevensacd6e002006-08-17 16:27:39 -07001922 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
1925int ip_mc_source(int add, int omode, struct sock *sk, struct
1926 ip_mreq_source *mreqs, int ifindex)
1927{
1928 int err;
1929 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07001930 __be32 addr = mreqs->imr_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct ip_mc_socklist *pmc;
1932 struct in_device *in_dev = NULL;
1933 struct inet_sock *inet = inet_sk(sk);
1934 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001935 struct net *net = sock_net(sk);
David L Stevens8cdaaa12005-07-08 17:39:23 -07001936 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 int i, j, rv;
1938
Joe Perchesf97c1e02007-12-16 13:45:43 -08001939 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return -EINVAL;
1941
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001942 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
1945 imr.imr_address.s_addr = mreqs->imr_interface;
1946 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07001947 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 if (!in_dev) {
1950 err = -ENODEV;
1951 goto done;
1952 }
1953 err = -EADDRNOTAVAIL;
1954
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001955 for_each_pmc_rtnl(inet, pmc) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08001956 if ((pmc->multi.imr_multiaddr.s_addr ==
1957 imr.imr_multiaddr.s_addr) &&
1958 (pmc->multi.imr_ifindex == imr.imr_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 break;
1960 }
David L Stevens917f2f12005-07-08 17:45:16 -07001961 if (!pmc) { /* must have a prior join */
1962 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07001964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* if a source filter was set, must be the same mode as before */
1966 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -07001967 if (pmc->sfmode != omode) {
1968 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07001970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 } else if (pmc->sfmode != omode) {
1972 /* allow mode switches for empty-set filters */
1973 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001974 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 NULL, 0);
1976 pmc->sfmode = omode;
1977 }
1978
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001979 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (!add) {
1981 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -07001982 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 rv = !0;
1984 for (i=0; i<psl->sl_count; i++) {
1985 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07001986 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (rv == 0)
1988 break;
1989 }
1990 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -07001991 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
David L Stevens8cdaaa12005-07-08 17:39:23 -07001993 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
1994 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
1995 leavegroup = 1;
1996 goto done;
1997 }
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 /* update the interface filter */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002000 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 &mreqs->imr_sourceaddr, 1);
2002
2003 for (j=i+1; j<psl->sl_count; j++)
2004 psl->sl_addr[j-1] = psl->sl_addr[j];
2005 psl->sl_count--;
2006 err = 0;
2007 goto done;
2008 }
2009 /* else, add a new source to the filter */
2010
2011 if (psl && psl->sl_count >= sysctl_igmp_max_msf) {
2012 err = -ENOBUFS;
2013 goto done;
2014 }
2015 if (!psl || psl->sl_count == psl->sl_max) {
2016 struct ip_sf_socklist *newpsl;
2017 int count = IP_SFBLOCK;
2018
2019 if (psl)
2020 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002021 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (!newpsl) {
2023 err = -ENOBUFS;
2024 goto done;
2025 }
2026 newpsl->sl_max = count;
2027 newpsl->sl_count = count - IP_SFBLOCK;
2028 if (psl) {
2029 for (i=0; i<psl->sl_count; i++)
2030 newpsl->sl_addr[i] = psl->sl_addr[i];
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002031 /* decrease mem now to avoid the memleak warning */
2032 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2033 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002035 rcu_assign_pointer(pmc->sflist, newpsl);
2036 psl = newpsl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
2039 for (i=0; i<psl->sl_count; i++) {
2040 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002041 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (rv == 0)
2043 break;
2044 }
2045 if (rv == 0) /* address already there is an error */
2046 goto done;
2047 for (j=psl->sl_count-1; j>=i; j--)
2048 psl->sl_addr[j+1] = psl->sl_addr[j];
2049 psl->sl_addr[i] = mreqs->imr_sourceaddr;
2050 psl->sl_count++;
2051 err = 0;
2052 /* update the interface list */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002053 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 &mreqs->imr_sourceaddr, 1);
2055done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002056 rtnl_unlock();
David L Stevens8cdaaa12005-07-08 17:39:23 -07002057 if (leavegroup)
2058 return ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return err;
2060}
2061
2062int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
2063{
David L Stevens9951f032005-07-08 17:47:28 -07002064 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002066 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 struct ip_mc_socklist *pmc;
2068 struct in_device *in_dev;
2069 struct inet_sock *inet = inet_sk(sk);
2070 struct ip_sf_socklist *newpsl, *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002071 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -07002072 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Joe Perchesf97c1e02007-12-16 13:45:43 -08002074 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return -EINVAL;
2076 if (msf->imsf_fmode != MCAST_INCLUDE &&
2077 msf->imsf_fmode != MCAST_EXCLUDE)
2078 return -EINVAL;
2079
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002080 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2083 imr.imr_address.s_addr = msf->imsf_interface;
2084 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002085 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 if (!in_dev) {
2088 err = -ENODEV;
2089 goto done;
2090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
David L Stevens9951f032005-07-08 17:47:28 -07002092 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2093 if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
2094 leavegroup = 1;
2095 goto done;
2096 }
2097
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002098 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2100 pmc->multi.imr_ifindex == imr.imr_ifindex)
2101 break;
2102 }
David L Stevens917f2f12005-07-08 17:45:16 -07002103 if (!pmc) { /* must have a prior join */
2104 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (msf->imsf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002108 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
2109 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (!newpsl) {
2111 err = -ENOBUFS;
2112 goto done;
2113 }
2114 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2115 memcpy(newpsl->sl_addr, msf->imsf_slist,
2116 msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2117 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2118 msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2119 if (err) {
2120 sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2121 goto done;
2122 }
Yan Zheng8713dbf2005-10-28 08:02:08 +08002123 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +08002125 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2126 msf->imsf_fmode, 0, NULL, 0);
2127 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002128 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (psl) {
2130 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2131 psl->sl_count, psl->sl_addr, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002132 /* decrease mem now to avoid the memleak warning */
2133 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
2134 call_rcu(&psl->rcu, ip_sf_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 } else
2136 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2137 0, NULL, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002138 rcu_assign_pointer(pmc->sflist, newpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 pmc->sfmode = msf->imsf_fmode;
David L Stevens917f2f12005-07-08 17:45:16 -07002140 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002142 rtnl_unlock();
David L Stevens9951f032005-07-08 17:47:28 -07002143 if (leavegroup)
2144 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return err;
2146}
2147
2148int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2149 struct ip_msfilter __user *optval, int __user *optlen)
2150{
2151 int err, len, count, copycount;
2152 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002153 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 struct ip_mc_socklist *pmc;
2155 struct in_device *in_dev;
2156 struct inet_sock *inet = inet_sk(sk);
2157 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002158 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Joe Perchesf97c1e02007-12-16 13:45:43 -08002160 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return -EINVAL;
2162
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002163 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2166 imr.imr_address.s_addr = msf->imsf_interface;
2167 imr.imr_ifindex = 0;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002168 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170 if (!in_dev) {
2171 err = -ENODEV;
2172 goto done;
2173 }
2174 err = -EADDRNOTAVAIL;
2175
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002176 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2178 pmc->multi.imr_ifindex == imr.imr_ifindex)
2179 break;
2180 }
2181 if (!pmc) /* must have a prior join */
2182 goto done;
2183 msf->imsf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002184 psl = rtnl_dereference(pmc->sflist);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002185 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (!psl) {
2187 len = 0;
2188 count = 0;
2189 } else {
2190 count = psl->sl_count;
2191 }
2192 copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2193 len = copycount * sizeof(psl->sl_addr[0]);
2194 msf->imsf_numsrc = count;
2195 if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2196 copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2197 return -EFAULT;
2198 }
2199 if (len &&
2200 copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2201 return -EFAULT;
2202 return 0;
2203done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002204 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return err;
2206}
2207
2208int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2209 struct group_filter __user *optval, int __user *optlen)
2210{
2211 int err, i, count, copycount;
2212 struct sockaddr_in *psin;
Al Viro63007722006-09-27 18:31:32 -07002213 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 struct ip_mc_socklist *pmc;
2215 struct inet_sock *inet = inet_sk(sk);
2216 struct ip_sf_socklist *psl;
2217
2218 psin = (struct sockaddr_in *)&gsf->gf_group;
2219 if (psin->sin_family != AF_INET)
2220 return -EINVAL;
2221 addr = psin->sin_addr.s_addr;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002222 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return -EINVAL;
2224
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002225 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 err = -EADDRNOTAVAIL;
2228
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002229 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2231 pmc->multi.imr_ifindex == gsf->gf_interface)
2232 break;
2233 }
2234 if (!pmc) /* must have a prior join */
2235 goto done;
2236 gsf->gf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002237 psl = rtnl_dereference(pmc->sflist);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002238 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 count = psl ? psl->sl_count : 0;
2240 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2241 gsf->gf_numsrc = count;
2242 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2243 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2244 return -EFAULT;
2245 }
2246 for (i=0; i<copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 struct sockaddr_storage ss;
2248
2249 psin = (struct sockaddr_in *)&ss;
2250 memset(&ss, 0, sizeof(ss));
2251 psin->sin_family = AF_INET;
2252 psin->sin_addr.s_addr = psl->sl_addr[i];
2253 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2254 return -EFAULT;
2255 }
2256 return 0;
2257done:
Stephen Hemminger6756ae42006-03-20 22:23:58 -08002258 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return err;
2260}
2261
2262/*
2263 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2264 */
Al Viroc0cda062006-09-27 18:31:10 -07002265int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
2267 struct inet_sock *inet = inet_sk(sk);
2268 struct ip_mc_socklist *pmc;
2269 struct ip_sf_socklist *psl;
2270 int i;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002271 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002273 ret = 1;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002274 if (!ipv4_is_multicast(loc_addr))
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002275 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002277 rcu_read_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002278 for_each_pmc_rcu(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2280 pmc->multi.imr_ifindex == dif)
2281 break;
2282 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002283 ret = inet->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (!pmc)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002285 goto unlock;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002286 psl = rcu_dereference(pmc->sflist);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002287 ret = (pmc->sfmode == MCAST_EXCLUDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (!psl)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002289 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291 for (i=0; i<psl->sl_count; i++) {
2292 if (psl->sl_addr[i] == rmt_addr)
2293 break;
2294 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002295 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002297 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002299 goto unlock;
2300 ret = 1;
2301unlock:
2302 rcu_read_unlock();
2303out:
2304 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
2306
2307/*
2308 * A socket is closing.
2309 */
2310
2311void ip_mc_drop_socket(struct sock *sk)
2312{
2313 struct inet_sock *inet = inet_sk(sk);
2314 struct ip_mc_socklist *iml;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002315 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 if (inet->mc_list == NULL)
2318 return;
2319
2320 rtnl_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002321 while ((iml = rtnl_dereference(inet->mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002324 inet->mc_list = iml->next_rcu;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002325 in_dev = inetdev_by_index(net, iml->multi.imr_ifindex);
Michal Ruzickabb699cbc2006-08-15 00:20:17 -07002326 (void) ip_mc_leave_src(sk, iml, in_dev);
Eric Dumazet18943d22010-11-08 11:15:54 +00002327 if (in_dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002329 /* decrease mem now to avoid the memleak warning */
2330 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
2331 call_rcu(&iml->rcu, ip_mc_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333 rtnl_unlock();
2334}
2335
Al Viroa60c4922006-09-26 21:28:34 -07002336int ip_check_mc(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u16 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 struct ip_mc_list *im;
2339 struct ip_sf_list *psf;
2340 int rv = 0;
2341
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002342 rcu_read_lock();
2343 for_each_pmc_rcu(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 if (im->multiaddr == mc_addr)
2345 break;
2346 }
2347 if (im && proto == IPPROTO_IGMP) {
2348 rv = 1;
2349 } else if (im) {
2350 if (src_addr) {
2351 for (psf=im->sources; psf; psf=psf->sf_next) {
2352 if (psf->sf_inaddr == src_addr)
2353 break;
2354 }
2355 if (psf)
2356 rv = psf->sf_count[MCAST_INCLUDE] ||
2357 psf->sf_count[MCAST_EXCLUDE] !=
2358 im->sfcount[MCAST_EXCLUDE];
2359 else
2360 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2361 } else
2362 rv = 1; /* unspecified source; tentatively allow */
2363 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002364 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 return rv;
2366}
2367
2368#if defined(CONFIG_PROC_FS)
2369struct igmp_mc_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002370 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 struct net_device *dev;
2372 struct in_device *in_dev;
2373};
2374
2375#define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2376
2377static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2378{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002379 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 struct ip_mc_list *im = NULL;
2381 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2382
Pavel Emelianov7562f872007-05-03 15:13:45 -07002383 state->in_dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002384 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 struct in_device *in_dev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002386
2387 in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (!in_dev)
2389 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002390 im = rcu_dereference(in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if (im) {
2392 state->in_dev = in_dev;
2393 break;
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
2396 return im;
2397}
2398
2399static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2400{
2401 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet6baff152009-11-11 17:48:52 +00002402
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002403 im = rcu_dereference(im->next_rcu);
2404 while (!im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002405 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (!state->dev) {
2407 state->in_dev = NULL;
2408 break;
2409 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002410 state->in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (!state->in_dev)
2412 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002413 im = rcu_dereference(state->in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 }
2415 return im;
2416}
2417
2418static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2419{
2420 struct ip_mc_list *im = igmp_mc_get_first(seq);
2421 if (im)
2422 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2423 --pos;
2424 return pos ? NULL : im;
2425}
2426
2427static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002428 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
stephen hemminger61fbab72009-11-10 07:54:55 +00002430 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2432}
2433
2434static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2435{
2436 struct ip_mc_list *im;
2437 if (v == SEQ_START_TOKEN)
2438 im = igmp_mc_get_first(seq);
2439 else
2440 im = igmp_mc_get_next(seq, v);
2441 ++*pos;
2442 return im;
2443}
2444
2445static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002446 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
2448 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002449
2450 state->in_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002452 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
2455static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2456{
2457 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002458 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2460 else {
2461 struct ip_mc_list *im = (struct ip_mc_list *)v;
2462 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2463 char *querier;
2464#ifdef CONFIG_IP_MULTICAST
2465 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2466 IGMP_V2_SEEN(state->in_dev) ? "V2" :
2467 "V3";
2468#else
2469 querier = "NONE";
2470#endif
2471
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002472 if (rcu_dereference(state->in_dev->mc_list) == im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 seq_printf(seq, "%d\t%-10s: %5d %7s\n",
Rami Rosenb8bae412008-10-07 15:34:37 -07002474 state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476
2477 seq_printf(seq,
Alexey Dobriyan338fcf92006-06-05 21:04:39 -07002478 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 im->multiaddr, im->users,
2480 im->tm_running, im->tm_running ?
2481 jiffies_to_clock_t(im->timer.expires-jiffies) : 0,
2482 im->reporter);
2483 }
2484 return 0;
2485}
2486
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002487static const struct seq_operations igmp_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 .start = igmp_mc_seq_start,
2489 .next = igmp_mc_seq_next,
2490 .stop = igmp_mc_seq_stop,
2491 .show = igmp_mc_seq_show,
2492};
2493
2494static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2495{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002496 return seq_open_net(inode, file, &igmp_mc_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002497 sizeof(struct igmp_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Arjan van de Ven9a321442007-02-12 00:55:35 -08002500static const struct file_operations igmp_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 .owner = THIS_MODULE,
2502 .open = igmp_mc_seq_open,
2503 .read = seq_read,
2504 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002505 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506};
2507
2508struct igmp_mcf_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002509 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 struct net_device *dev;
2511 struct in_device *idev;
2512 struct ip_mc_list *im;
2513};
2514
2515#define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2516
2517static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2518{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002519 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 struct ip_sf_list *psf = NULL;
2521 struct ip_mc_list *im = NULL;
2522 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2523
Pavel Emelianov7562f872007-05-03 15:13:45 -07002524 state->idev = NULL;
2525 state->im = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002526 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 struct in_device *idev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002528 idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (unlikely(idev == NULL))
2530 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002531 im = rcu_dereference(idev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (likely(im != NULL)) {
2533 spin_lock_bh(&im->lock);
2534 psf = im->sources;
2535 if (likely(psf != NULL)) {
2536 state->im = im;
2537 state->idev = idev;
2538 break;
2539 }
2540 spin_unlock_bh(&im->lock);
2541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543 return psf;
2544}
2545
2546static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2547{
2548 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2549
2550 psf = psf->sf_next;
2551 while (!psf) {
2552 spin_unlock_bh(&state->im->lock);
2553 state->im = state->im->next;
2554 while (!state->im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002555 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (!state->dev) {
2557 state->idev = NULL;
2558 goto out;
2559 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002560 state->idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 if (!state->idev)
2562 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002563 state->im = rcu_dereference(state->idev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
2565 if (!state->im)
2566 break;
2567 spin_lock_bh(&state->im->lock);
2568 psf = state->im->sources;
2569 }
2570out:
2571 return psf;
2572}
2573
2574static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2575{
2576 struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2577 if (psf)
2578 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2579 --pos;
2580 return pos ? NULL : psf;
2581}
2582
2583static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002584 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
stephen hemminger61fbab72009-11-10 07:54:55 +00002586 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2588}
2589
2590static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2591{
2592 struct ip_sf_list *psf;
2593 if (v == SEQ_START_TOKEN)
2594 psf = igmp_mcf_get_first(seq);
2595 else
2596 psf = igmp_mcf_get_next(seq, v);
2597 ++*pos;
2598 return psf;
2599}
2600
2601static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002602 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
2604 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2605 if (likely(state->im != NULL)) {
2606 spin_unlock_bh(&state->im->lock);
2607 state->im = NULL;
2608 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002609 state->idev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002611 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
2614static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2615{
2616 struct ip_sf_list *psf = (struct ip_sf_list *)v;
2617 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2618
2619 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002620 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 "%3s %6s "
2622 "%10s %10s %6s %6s\n", "Idx",
2623 "Device", "MCA",
2624 "SRC", "INC", "EXC");
2625 } else {
2626 seq_printf(seq,
2627 "%3d %6.6s 0x%08x "
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002628 "0x%08x %6lu %6lu\n",
2629 state->dev->ifindex, state->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 ntohl(state->im->multiaddr),
2631 ntohl(psf->sf_inaddr),
2632 psf->sf_count[MCAST_INCLUDE],
2633 psf->sf_count[MCAST_EXCLUDE]);
2634 }
2635 return 0;
2636}
2637
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002638static const struct seq_operations igmp_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 .start = igmp_mcf_seq_start,
2640 .next = igmp_mcf_seq_next,
2641 .stop = igmp_mcf_seq_stop,
2642 .show = igmp_mcf_seq_show,
2643};
2644
2645static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2646{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002647 return seq_open_net(inode, file, &igmp_mcf_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002648 sizeof(struct igmp_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649}
2650
Arjan van de Ven9a321442007-02-12 00:55:35 -08002651static const struct file_operations igmp_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 .owner = THIS_MODULE,
2653 .open = igmp_mcf_seq_open,
2654 .read = seq_read,
2655 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002656 .release = seq_release_net,
2657};
2658
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002659static int __net_init igmp_net_init(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002660{
2661 struct proc_dir_entry *pde;
2662
2663 pde = proc_net_fops_create(net, "igmp", S_IRUGO, &igmp_mc_seq_fops);
2664 if (!pde)
2665 goto out_igmp;
2666 pde = proc_net_fops_create(net, "mcfilter", S_IRUGO, &igmp_mcf_seq_fops);
2667 if (!pde)
2668 goto out_mcfilter;
2669 return 0;
2670
2671out_mcfilter:
2672 proc_net_remove(net, "igmp");
2673out_igmp:
2674 return -ENOMEM;
2675}
2676
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002677static void __net_exit igmp_net_exit(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002678{
2679 proc_net_remove(net, "mcfilter");
2680 proc_net_remove(net, "igmp");
2681}
2682
2683static struct pernet_operations igmp_net_ops = {
2684 .init = igmp_net_init,
2685 .exit = igmp_net_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686};
2687
2688int __init igmp_mc_proc_init(void)
2689{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002690 return register_pernet_subsys(&igmp_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691}
2692#endif