blob: 9b4ca87f70bab4e0174b804fac30f949b27d7457 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/types.h>
77#include <linux/kernel.h>
78#include <linux/jiffies.h>
79#include <linux/string.h>
80#include <linux/socket.h>
81#include <linux/sockios.h>
82#include <linux/in.h>
83#include <linux/inet.h>
84#include <linux/netdevice.h>
85#include <linux/skbuff.h>
86#include <linux/inetdevice.h>
87#include <linux/igmp.h>
88#include <linux/if_arp.h>
89#include <linux/rtnetlink.h>
90#include <linux/times.h>
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +020091#include <linux/pkt_sched.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>
Madhu Challa93a714d2015-02-25 09:58:35 -0800100#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/netfilter_ipv4.h>
102#ifdef CONFIG_IP_MROUTE
103#include <linux/mroute.h>
104#endif
105#ifdef CONFIG_PROC_FS
106#include <linux/proc_fs.h>
107#include <linux/seq_file.h>
108#endif
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#ifdef CONFIG_IP_MULTICAST
111/* Parameter names and values are taken from igmp-v2-06 draft */
112
Fabian Frederick436f7c22014-11-04 20:52:14 +0100113#define IGMP_V1_ROUTER_PRESENT_TIMEOUT (400*HZ)
114#define IGMP_V2_ROUTER_PRESENT_TIMEOUT (400*HZ)
115#define IGMP_V2_UNSOLICITED_REPORT_INTERVAL (10*HZ)
116#define IGMP_V3_UNSOLICITED_REPORT_INTERVAL (1*HZ)
117#define IGMP_QUERY_RESPONSE_INTERVAL (10*HZ)
118#define IGMP_QUERY_ROBUSTNESS_VARIABLE 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120
Fabian Frederick436f7c22014-11-04 20:52:14 +0100121#define IGMP_INITIAL_REPORT_DELAY (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Fabian Frederick436f7c22014-11-04 20:52:14 +0100123/* IGMP_INITIAL_REPORT_DELAY is not from IGMP specs!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * IGMP specs require to report membership immediately after
125 * joining a group, but we delay the first report by a
126 * small interval. It seems more natural and still does not
127 * contradict to specs provided this delay is small enough.
128 */
129
Herbert Xu42f811b2007-06-04 23:34:44 -0700130#define IGMP_V1_SEEN(in_dev) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900131 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700132 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 1 || \
133 ((in_dev)->mr_v1_seen && \
134 time_before(jiffies, (in_dev)->mr_v1_seen)))
135#define IGMP_V2_SEEN(in_dev) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900136 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700137 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 2 || \
138 ((in_dev)->mr_v2_seen && \
139 time_before(jiffies, (in_dev)->mr_v2_seen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
William Manleycab70042013-08-06 19:03:13 +0100141static int unsolicited_report_interval(struct in_device *in_dev)
142{
William Manley26900482013-08-06 19:03:15 +0100143 int interval_ms, interval_jiffies;
144
William Manleycab70042013-08-06 19:03:13 +0100145 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
William Manley26900482013-08-06 19:03:15 +0100146 interval_ms = IN_DEV_CONF_GET(
147 in_dev,
148 IGMPV2_UNSOLICITED_REPORT_INTERVAL);
William Manleycab70042013-08-06 19:03:13 +0100149 else /* v3 */
William Manley26900482013-08-06 19:03:15 +0100150 interval_ms = IN_DEV_CONF_GET(
151 in_dev,
152 IGMPV3_UNSOLICITED_REPORT_INTERVAL);
153
154 interval_jiffies = msecs_to_jiffies(interval_ms);
155
156 /* _timer functions can't handle a delay of 0 jiffies so ensure
157 * we always return a positive value.
158 */
159 if (interval_jiffies <= 0)
160 interval_jiffies = 1;
161 return interval_jiffies;
William Manleycab70042013-08-06 19:03:13 +0100162}
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im);
Al Viro63007722006-09-27 18:31:32 -0700165static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static void igmpv3_clear_delrec(struct in_device *in_dev);
167static int sf_setstate(struct ip_mc_list *pmc);
168static void sf_markstate(struct ip_mc_list *pmc);
169#endif
170static void ip_mc_clear_src(struct ip_mc_list *pmc);
Al Viro8f935bb2006-09-27 18:30:07 -0700171static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
172 int sfcount, __be32 *psfsrc, int delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174static void ip_ma_put(struct ip_mc_list *im)
175{
176 if (atomic_dec_and_test(&im->refcnt)) {
177 in_dev_put(im->interface);
Lai Jiangshan42ea299d2011-03-18 11:44:08 +0800178 kfree_rcu(im, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180}
181
David S. Millerd9aa9382010-11-15 08:52:02 -0800182#define for_each_pmc_rcu(in_dev, pmc) \
183 for (pmc = rcu_dereference(in_dev->mc_list); \
184 pmc != NULL; \
185 pmc = rcu_dereference(pmc->next_rcu))
186
187#define for_each_pmc_rtnl(in_dev, pmc) \
188 for (pmc = rtnl_dereference(in_dev->mc_list); \
189 pmc != NULL; \
190 pmc = rtnl_dereference(pmc->next_rcu))
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef CONFIG_IP_MULTICAST
193
194/*
195 * Timer management
196 */
197
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000198static void igmp_stop_timer(struct ip_mc_list *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 spin_lock_bh(&im->lock);
201 if (del_timer(&im->timer))
202 atomic_dec(&im->refcnt);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800203 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 im->reporter = 0;
205 im->unsolicit_count = 0;
206 spin_unlock_bh(&im->lock);
207}
208
209/* It must be called with locked im->lock */
210static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
211{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500212 int tv = prandom_u32() % max_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800214 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (!mod_timer(&im->timer, jiffies+tv+2))
216 atomic_inc(&im->refcnt);
217}
218
219static void igmp_gq_start_timer(struct in_device *in_dev)
220{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500221 int tv = prandom_u32() % in_dev->mr_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 in_dev->mr_gq_running = 1;
224 if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2))
225 in_dev_hold(in_dev);
226}
227
228static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
229{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500230 int tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
233 in_dev_hold(in_dev);
234}
235
236static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
237{
238 spin_lock_bh(&im->lock);
239 im->unsolicit_count = 0;
240 if (del_timer(&im->timer)) {
241 if ((long)(im->timer.expires-jiffies) < max_delay) {
242 add_timer(&im->timer);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800243 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spin_unlock_bh(&im->lock);
245 return;
246 }
247 atomic_dec(&im->refcnt);
248 }
249 igmp_start_timer(im, max_delay);
250 spin_unlock_bh(&im->lock);
251}
252
253
254/*
255 * Send an IGMP report.
256 */
257
258#define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
259
260
261static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
262 int gdeleted, int sdeleted)
263{
264 switch (type) {
265 case IGMPV3_MODE_IS_INCLUDE:
266 case IGMPV3_MODE_IS_EXCLUDE:
267 if (gdeleted || sdeleted)
268 return 0;
David L Stevensad125832006-01-18 14:20:56 -0800269 if (!(pmc->gsquery && !psf->sf_gsresp)) {
270 if (pmc->sfmode == MCAST_INCLUDE)
271 return 1;
272 /* don't include if this source is excluded
273 * in all filters
274 */
275 if (psf->sf_count[MCAST_INCLUDE])
276 return type == IGMPV3_MODE_IS_INCLUDE;
277 return pmc->sfcount[MCAST_EXCLUDE] ==
278 psf->sf_count[MCAST_EXCLUDE];
279 }
280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 case IGMPV3_CHANGE_TO_INCLUDE:
282 if (gdeleted || sdeleted)
283 return 0;
284 return psf->sf_count[MCAST_INCLUDE] != 0;
285 case IGMPV3_CHANGE_TO_EXCLUDE:
286 if (gdeleted || sdeleted)
287 return 0;
288 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
289 psf->sf_count[MCAST_INCLUDE])
290 return 0;
291 return pmc->sfcount[MCAST_EXCLUDE] ==
292 psf->sf_count[MCAST_EXCLUDE];
293 case IGMPV3_ALLOW_NEW_SOURCES:
294 if (gdeleted || !psf->sf_crcount)
295 return 0;
296 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
297 case IGMPV3_BLOCK_OLD_SOURCES:
298 if (pmc->sfmode == MCAST_INCLUDE)
299 return gdeleted || (psf->sf_crcount && sdeleted);
300 return psf->sf_crcount && !gdeleted && !sdeleted;
301 }
302 return 0;
303}
304
305static int
306igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
307{
308 struct ip_sf_list *psf;
309 int scount = 0;
310
Weilong Chenc71151f2013-12-23 14:37:29 +0800311 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
313 continue;
314 scount++;
315 }
316 return scount;
317}
318
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100319static struct sk_buff *igmpv3_newpack(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 struct sk_buff *skb;
322 struct rtable *rt;
323 struct iphdr *pip;
324 struct igmpv3_report *pig;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700325 struct net *net = dev_net(dev);
David S. Miller31e45432011-05-03 20:25:42 -0700326 struct flowi4 fl4;
Herbert Xu66088242011-11-18 02:20:04 +0000327 int hlen = LL_RESERVED_SPACE(dev);
328 int tlen = dev->needed_tailroom;
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100329 unsigned int size = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000331 while (1) {
Herbert Xu66088242011-11-18 02:20:04 +0000332 skb = alloc_skb(size + hlen + tlen,
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000333 GFP_ATOMIC | __GFP_NOWARN);
334 if (skb)
335 break;
336 size >>= 1;
337 if (size < 256)
338 return NULL;
339 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +0200340 skb->priority = TC_PRIO_CONTROL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
David S. Miller31e45432011-05-03 20:25:42 -0700342 rt = ip_route_output_ports(net, &fl4, NULL, IGMPV3_ALL_MCR, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -0500343 0, 0,
344 IPPROTO_IGMP, 0, dev->ifindex);
345 if (IS_ERR(rt)) {
346 kfree_skb(skb);
347 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Changli Gaod8d1f302010-06-10 23:31:35 -0700350 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 skb->dev = dev;
352
Herbert Xu66088242011-11-18 02:20:04 +0000353 skb_reserve(skb, hlen);
Benjamin Poirier1837b2e2016-02-29 15:03:33 -0800354 skb_tailroom_reserve(skb, mtu, tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300356 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700357 pip = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300358 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 pip->version = 4;
361 pip->ihl = (sizeof(struct iphdr)+4)>>2;
362 pip->tos = 0xc0;
363 pip->frag_off = htons(IP_DF);
364 pip->ttl = 1;
David S. Miller492f64c2011-05-03 20:53:12 -0700365 pip->daddr = fl4.daddr;
366 pip->saddr = fl4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 pip->protocol = IPPROTO_IGMP;
368 pip->tot_len = 0; /* filled in later */
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100369 ip_select_ident(net, skb, NULL);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000370 ((u8 *)&pip[1])[0] = IPOPT_RA;
371 ((u8 *)&pip[1])[1] = 4;
372 ((u8 *)&pip[1])[2] = 0;
373 ((u8 *)&pip[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700375 skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4;
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -0300376 skb_put(skb, sizeof(*pig));
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300377 pig = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
379 pig->resv1 = 0;
380 pig->csum = 0;
381 pig->resv2 = 0;
382 pig->ngrec = 0;
383 return skb;
384}
385
386static int igmpv3_sendpack(struct sk_buff *skb)
387{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300388 struct igmphdr *pig = igmp_hdr(skb);
Simon Hormanf7c0c2a2013-05-28 20:34:27 +0000389 const int igmplen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300391 pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Eric W. Biederman33224b12015-10-07 16:48:46 -0500393 return ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
397{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800398 return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
402 int type, struct igmpv3_grec **ppgr)
403{
404 struct net_device *dev = pmc->interface->dev;
405 struct igmpv3_report *pih;
406 struct igmpv3_grec *pgr;
407
408 if (!skb)
409 skb = igmpv3_newpack(dev, dev->mtu);
410 if (!skb)
411 return NULL;
412 pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
413 pgr->grec_type = type;
414 pgr->grec_auxwords = 0;
415 pgr->grec_nsrcs = 0;
416 pgr->grec_mca = pmc->multiaddr;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300417 pih = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 pih->ngrec = htons(ntohs(pih->ngrec)+1);
419 *ppgr = pgr;
420 return skb;
421}
422
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100423#define AVAILABLE(skb) ((skb) ? skb_availroom(skb) : 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
426 int type, int gdeleted, int sdeleted)
427{
428 struct net_device *dev = pmc->interface->dev;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200429 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 struct igmpv3_report *pih;
431 struct igmpv3_grec *pgr = NULL;
432 struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevensad125832006-01-18 14:20:56 -0800433 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (pmc->multiaddr == IGMP_ALL_HOSTS)
436 return skb;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200437 if (ipv4_is_local_multicast(pmc->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100438 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 isquery = type == IGMPV3_MODE_IS_INCLUDE ||
441 type == IGMPV3_MODE_IS_EXCLUDE;
442 truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
443 type == IGMPV3_CHANGE_TO_EXCLUDE;
444
David L Stevensad125832006-01-18 14:20:56 -0800445 stotal = scount = 0;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
448
David L Stevensad125832006-01-18 14:20:56 -0800449 if (!*psf_list)
450 goto empty_source;
451
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300452 pih = skb ? igmpv3_report_hdr(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /* EX and TO_EX get a fresh packet, if needed */
455 if (truncate) {
456 if (pih && pih->ngrec &&
457 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
458 if (skb)
459 igmpv3_sendpack(skb);
460 skb = igmpv3_newpack(dev, dev->mtu);
461 }
462 }
463 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800465 for (psf = *psf_list; psf; psf = psf_next) {
Al Viroea4d9e72006-09-27 18:30:52 -0700466 __be32 *psrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 psf_next = psf->sf_next;
469
470 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
471 psf_prev = psf;
472 continue;
473 }
474
475 /* clear marks on query responses */
476 if (isquery)
477 psf->sf_gsresp = 0;
478
Al Viro63007722006-09-27 18:31:32 -0700479 if (AVAILABLE(skb) < sizeof(__be32) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 first*sizeof(struct igmpv3_grec)) {
481 if (truncate && !first)
482 break; /* truncate these */
483 if (pgr)
484 pgr->grec_nsrcs = htons(scount);
485 if (skb)
486 igmpv3_sendpack(skb);
487 skb = igmpv3_newpack(dev, dev->mtu);
488 first = 1;
489 scount = 0;
490 }
491 if (first) {
492 skb = add_grhead(skb, pmc, type, &pgr);
493 first = 0;
494 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -0800495 if (!skb)
496 return NULL;
Al Viro63007722006-09-27 18:31:32 -0700497 psrc = (__be32 *)skb_put(skb, sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 *psrc = psf->sf_inaddr;
David L Stevensad125832006-01-18 14:20:56 -0800499 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
501 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
502 psf->sf_crcount--;
503 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
504 if (psf_prev)
505 psf_prev->sf_next = psf->sf_next;
506 else
507 *psf_list = psf->sf_next;
508 kfree(psf);
509 continue;
510 }
511 }
512 psf_prev = psf;
513 }
David L Stevensad125832006-01-18 14:20:56 -0800514
515empty_source:
516 if (!stotal) {
517 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
518 type == IGMPV3_BLOCK_OLD_SOURCES)
519 return skb;
520 if (pmc->crcount || isquery) {
521 /* make sure we have room for group header */
Weilong Chenc71151f2013-12-23 14:37:29 +0800522 if (skb && AVAILABLE(skb) < sizeof(struct igmpv3_grec)) {
David L Stevensad125832006-01-18 14:20:56 -0800523 igmpv3_sendpack(skb);
524 skb = NULL; /* add_grhead will get a new one */
525 }
526 skb = add_grhead(skb, pmc, type, &pgr);
527 }
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (pgr)
530 pgr->grec_nsrcs = htons(scount);
531
532 if (isquery)
533 pmc->gsquery = 0; /* clear query state on report */
534 return skb;
535}
536
537static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
538{
539 struct sk_buff *skb = NULL;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200540 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int type;
542
543 if (!pmc) {
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000544 rcu_read_lock();
545 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (pmc->multiaddr == IGMP_ALL_HOSTS)
547 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100548 if (ipv4_is_local_multicast(pmc->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200549 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100550 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 spin_lock_bh(&pmc->lock);
552 if (pmc->sfcount[MCAST_EXCLUDE])
553 type = IGMPV3_MODE_IS_EXCLUDE;
554 else
555 type = IGMPV3_MODE_IS_INCLUDE;
556 skb = add_grec(skb, pmc, type, 0, 0);
557 spin_unlock_bh(&pmc->lock);
558 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000559 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 } else {
561 spin_lock_bh(&pmc->lock);
562 if (pmc->sfcount[MCAST_EXCLUDE])
563 type = IGMPV3_MODE_IS_EXCLUDE;
564 else
565 type = IGMPV3_MODE_IS_INCLUDE;
566 skb = add_grec(skb, pmc, type, 0, 0);
567 spin_unlock_bh(&pmc->lock);
568 }
569 if (!skb)
570 return 0;
571 return igmpv3_sendpack(skb);
572}
573
574/*
575 * remove zero-count source records from a source filter list
576 */
577static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
578{
579 struct ip_sf_list *psf_prev, *psf_next, *psf;
580
581 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800582 for (psf = *ppsf; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 psf_next = psf->sf_next;
584 if (psf->sf_crcount == 0) {
585 if (psf_prev)
586 psf_prev->sf_next = psf->sf_next;
587 else
588 *ppsf = psf->sf_next;
589 kfree(psf);
590 } else
591 psf_prev = psf;
592 }
593}
594
595static void igmpv3_send_cr(struct in_device *in_dev)
596{
597 struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
598 struct sk_buff *skb = NULL;
599 int type, dtype;
600
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000601 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 spin_lock_bh(&in_dev->mc_tomb_lock);
603
604 /* deleted MCA's */
605 pmc_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800606 for (pmc = in_dev->mc_tomb; pmc; pmc = pmc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 pmc_next = pmc->next;
608 if (pmc->sfmode == MCAST_INCLUDE) {
609 type = IGMPV3_BLOCK_OLD_SOURCES;
610 dtype = IGMPV3_BLOCK_OLD_SOURCES;
611 skb = add_grec(skb, pmc, type, 1, 0);
612 skb = add_grec(skb, pmc, dtype, 1, 1);
613 }
614 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (pmc->sfmode == MCAST_EXCLUDE) {
616 type = IGMPV3_CHANGE_TO_INCLUDE;
617 skb = add_grec(skb, pmc, type, 1, 0);
618 }
David L Stevensad125832006-01-18 14:20:56 -0800619 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (pmc->crcount == 0) {
621 igmpv3_clear_zeros(&pmc->tomb);
622 igmpv3_clear_zeros(&pmc->sources);
623 }
624 }
625 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
626 if (pmc_prev)
627 pmc_prev->next = pmc_next;
628 else
629 in_dev->mc_tomb = pmc_next;
630 in_dev_put(pmc->interface);
631 kfree(pmc);
632 } else
633 pmc_prev = pmc;
634 }
635 spin_unlock_bh(&in_dev->mc_tomb_lock);
636
637 /* change recs */
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000638 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 spin_lock_bh(&pmc->lock);
640 if (pmc->sfcount[MCAST_EXCLUDE]) {
641 type = IGMPV3_BLOCK_OLD_SOURCES;
642 dtype = IGMPV3_ALLOW_NEW_SOURCES;
643 } else {
644 type = IGMPV3_ALLOW_NEW_SOURCES;
645 dtype = IGMPV3_BLOCK_OLD_SOURCES;
646 }
647 skb = add_grec(skb, pmc, type, 0, 0);
648 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
649
650 /* filter mode changes */
651 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (pmc->sfmode == MCAST_EXCLUDE)
653 type = IGMPV3_CHANGE_TO_EXCLUDE;
654 else
655 type = IGMPV3_CHANGE_TO_INCLUDE;
656 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevensad125832006-01-18 14:20:56 -0800657 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 spin_unlock_bh(&pmc->lock);
660 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000661 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (!skb)
664 return;
665 (void) igmpv3_sendpack(skb);
666}
667
668static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
669 int type)
670{
671 struct sk_buff *skb;
672 struct iphdr *iph;
673 struct igmphdr *ih;
674 struct rtable *rt;
675 struct net_device *dev = in_dev->dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700676 struct net *net = dev_net(dev);
Al Viro63007722006-09-27 18:31:32 -0700677 __be32 group = pmc ? pmc->multiaddr : 0;
David S. Miller31e45432011-05-03 20:25:42 -0700678 struct flowi4 fl4;
Al Viro63007722006-09-27 18:31:32 -0700679 __be32 dst;
Herbert Xu66088242011-11-18 02:20:04 +0000680 int hlen, tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
683 return igmpv3_send_report(in_dev, pmc);
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100684
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200685 if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100686 return 0;
687
688 if (type == IGMP_HOST_LEAVE_MESSAGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 dst = IGMP_ALL_ROUTER;
690 else
691 dst = group;
692
David S. Miller31e45432011-05-03 20:25:42 -0700693 rt = ip_route_output_ports(net, &fl4, NULL, dst, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -0500694 0, 0,
695 IPPROTO_IGMP, 0, dev->ifindex);
696 if (IS_ERR(rt))
697 return -1;
698
Herbert Xu66088242011-11-18 02:20:04 +0000699 hlen = LL_RESERVED_SPACE(dev);
700 tlen = dev->needed_tailroom;
701 skb = alloc_skb(IGMP_SIZE + hlen + tlen, GFP_ATOMIC);
Ian Morris51456b22015-04-03 09:17:26 +0100702 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 ip_rt_put(rt);
704 return -1;
705 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +0200706 skb->priority = TC_PRIO_CONTROL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Changli Gaod8d1f302010-06-10 23:31:35 -0700708 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Herbert Xu66088242011-11-18 02:20:04 +0000710 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300712 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700713 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300714 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 iph->version = 4;
717 iph->ihl = (sizeof(struct iphdr)+4)>>2;
718 iph->tos = 0xc0;
719 iph->frag_off = htons(IP_DF);
720 iph->ttl = 1;
721 iph->daddr = dst;
David S. Miller492f64c2011-05-03 20:53:12 -0700722 iph->saddr = fl4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 iph->protocol = IPPROTO_IGMP;
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100724 ip_select_ident(net, skb, NULL);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000725 ((u8 *)&iph[1])[0] = IPOPT_RA;
726 ((u8 *)&iph[1])[1] = 4;
727 ((u8 *)&iph[1])[2] = 0;
728 ((u8 *)&iph[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800731 ih->type = type;
732 ih->code = 0;
733 ih->csum = 0;
734 ih->group = group;
735 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Eric W. Biederman33224b12015-10-07 16:48:46 -0500737 return ip_local_out(net, skb->sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740static void igmp_gq_timer_expire(unsigned long data)
741{
742 struct in_device *in_dev = (struct in_device *)data;
743
744 in_dev->mr_gq_running = 0;
745 igmpv3_send_report(in_dev, NULL);
Salam Noureddinee2401652013-09-29 13:39:42 -0700746 in_dev_put(in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749static void igmp_ifc_timer_expire(unsigned long data)
750{
751 struct in_device *in_dev = (struct in_device *)data;
752
753 igmpv3_send_cr(in_dev);
754 if (in_dev->mr_ifc_count) {
755 in_dev->mr_ifc_count--;
William Manleycab70042013-08-06 19:03:13 +0100756 igmp_ifc_start_timer(in_dev,
757 unsolicited_report_interval(in_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Salam Noureddinee2401652013-09-29 13:39:42 -0700759 in_dev_put(in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762static void igmp_ifc_event(struct in_device *in_dev)
763{
Nikolay Borisov165094a2016-02-08 23:29:24 +0200764 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
766 return;
Nikolay Borisov165094a2016-02-08 23:29:24 +0200767 in_dev->mr_ifc_count = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 igmp_ifc_start_timer(in_dev, 1);
769}
770
771
772static void igmp_timer_expire(unsigned long data)
773{
Weilong Chenc71151f2013-12-23 14:37:29 +0800774 struct ip_mc_list *im = (struct ip_mc_list *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct in_device *in_dev = im->interface;
776
777 spin_lock(&im->lock);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800778 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 if (im->unsolicit_count) {
781 im->unsolicit_count--;
William Manleycab70042013-08-06 19:03:13 +0100782 igmp_start_timer(im, unsolicited_report_interval(in_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 im->reporter = 1;
785 spin_unlock(&im->lock);
786
787 if (IGMP_V1_SEEN(in_dev))
788 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
789 else if (IGMP_V2_SEEN(in_dev))
790 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
791 else
792 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
793
794 ip_ma_put(im);
795}
796
David L Stevensad125832006-01-18 14:20:56 -0800797/* mark EXCLUDE-mode sources */
Al Viroea4d9e72006-09-27 18:30:52 -0700798static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct ip_sf_list *psf;
801 int i, scount;
802
803 scount = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +0800804 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (scount == nsrcs)
806 break;
Weilong Chenc71151f2013-12-23 14:37:29 +0800807 for (i = 0; i < nsrcs; i++) {
David L Stevensad125832006-01-18 14:20:56 -0800808 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +0000809 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevensad125832006-01-18 14:20:56 -0800810 pmc->sfcount[MCAST_EXCLUDE] !=
811 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +0800812 break;
David L Stevensad125832006-01-18 14:20:56 -0800813 if (srcs[i] == psf->sf_inaddr) {
814 scount++;
815 break;
816 }
817 }
818 }
819 pmc->gsquery = 0;
820 if (scount == nsrcs) /* all sources excluded */
821 return 0;
822 return 1;
823}
824
Al Viroea4d9e72006-09-27 18:30:52 -0700825static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
David L Stevensad125832006-01-18 14:20:56 -0800826{
827 struct ip_sf_list *psf;
828 int i, scount;
829
830 if (pmc->sfmode == MCAST_EXCLUDE)
831 return igmp_xmarksources(pmc, nsrcs, srcs);
832
833 /* mark INCLUDE-mode sources */
834 scount = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +0800835 for (psf = pmc->sources; psf; psf = psf->sf_next) {
David L Stevensad125832006-01-18 14:20:56 -0800836 if (scount == nsrcs)
837 break;
Weilong Chenc71151f2013-12-23 14:37:29 +0800838 for (i = 0; i < nsrcs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (srcs[i] == psf->sf_inaddr) {
840 psf->sf_gsresp = 1;
841 scount++;
842 break;
843 }
844 }
David L Stevensad125832006-01-18 14:20:56 -0800845 if (!scount) {
846 pmc->gsquery = 0;
847 return 0;
848 }
849 pmc->gsquery = 1;
850 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Eric Dumazetd679c532012-09-06 20:37:06 +0000853/* return true if packet was dropped */
854static bool igmp_heard_report(struct in_device *in_dev, __be32 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct ip_mc_list *im;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200857 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /* Timers are only set for non-local groups */
860
861 if (group == IGMP_ALL_HOSTS)
Eric Dumazetd679c532012-09-06 20:37:06 +0000862 return false;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200863 if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100864 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000866 rcu_read_lock();
867 for_each_pmc_rcu(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (im->multiaddr == group) {
869 igmp_stop_timer(im);
870 break;
871 }
872 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000873 rcu_read_unlock();
Eric Dumazetd679c532012-09-06 20:37:06 +0000874 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Eric Dumazetd679c532012-09-06 20:37:06 +0000877/* return true if packet was dropped */
878static bool igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 int len)
880{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300881 struct igmphdr *ih = igmp_hdr(skb);
882 struct igmpv3_query *ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 struct ip_mc_list *im;
Al Viro63007722006-09-27 18:31:32 -0700884 __be32 group = ih->group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 int max_delay;
886 int mark = 0;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200887 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889
David Stevens5b7c8402010-09-30 14:29:40 +0000890 if (len == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (ih->code == 0) {
892 /* Alas, old v1 router presents here. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900893
Fabian Frederick436f7c22014-11-04 20:52:14 +0100894 max_delay = IGMP_QUERY_RESPONSE_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 in_dev->mr_v1_seen = jiffies +
Fabian Frederick436f7c22014-11-04 20:52:14 +0100896 IGMP_V1_ROUTER_PRESENT_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 group = 0;
898 } else {
899 /* v2 router present */
900 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
901 in_dev->mr_v2_seen = jiffies +
Fabian Frederick436f7c22014-11-04 20:52:14 +0100902 IGMP_V2_ROUTER_PRESENT_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904 /* cancel the interface change timer */
905 in_dev->mr_ifc_count = 0;
906 if (del_timer(&in_dev->mr_ifc_timer))
907 __in_dev_put(in_dev);
908 /* clear deleted report items */
909 igmpv3_clear_delrec(in_dev);
910 } else if (len < 12) {
Eric Dumazetd679c532012-09-06 20:37:06 +0000911 return true; /* ignore bogus packet; freed by caller */
David Stevens5b7c8402010-09-30 14:29:40 +0000912 } else if (IGMP_V1_SEEN(in_dev)) {
913 /* This is a v3 query with v1 queriers present */
Fabian Frederick436f7c22014-11-04 20:52:14 +0100914 max_delay = IGMP_QUERY_RESPONSE_INTERVAL;
David Stevens5b7c8402010-09-30 14:29:40 +0000915 group = 0;
916 } else if (IGMP_V2_SEEN(in_dev)) {
917 /* this is a v3 query with v2 queriers present;
918 * Interpretation of the max_delay code is problematic here.
919 * A real v2 host would use ih_code directly, while v3 has a
920 * different encoding. We use the v3 encoding as more likely
921 * to be intended in a v3 query.
922 */
923 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
Ben Hutchingsa8c1f652012-01-09 14:06:46 -0800924 if (!max_delay)
925 max_delay = 1; /* can't mod w/ 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 } else { /* v3 */
927 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
Eric Dumazetd679c532012-09-06 20:37:06 +0000928 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900929
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300930 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (ih3->nsrcs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900932 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)
Al Viro63007722006-09-27 18:31:32 -0700933 + ntohs(ih3->nsrcs)*sizeof(__be32)))
Eric Dumazetd679c532012-09-06 20:37:06 +0000934 return true;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300935 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
939 if (!max_delay)
940 max_delay = 1; /* can't mod w/ 0 */
941 in_dev->mr_maxdelay = max_delay;
942 if (ih3->qrv)
943 in_dev->mr_qrv = ih3->qrv;
944 if (!group) { /* general query */
945 if (ih3->nsrcs)
Daniel Borkmannb47bd8d2014-10-05 17:27:50 +0200946 return true; /* no sources allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 igmp_gq_start_timer(in_dev);
Eric Dumazetd679c532012-09-06 20:37:06 +0000948 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950 /* mark sources to include, if group & source-specific */
951 mark = ih3->nsrcs != 0;
952 }
953
954 /*
955 * - Start the timers in all of our membership records
956 * that the query applies to for the interface on
957 * which the query arrived excl. those that belong
958 * to a "local" group (224.0.0.X)
959 * - For timers already running check if they need to
960 * be reset.
961 * - Use the igmp->igmp_code field as the maximum
962 * delay possible
963 */
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000964 rcu_read_lock();
965 for_each_pmc_rcu(in_dev, im) {
David L Stevensad125832006-01-18 14:20:56 -0800966 int changed;
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (group && group != im->multiaddr)
969 continue;
970 if (im->multiaddr == IGMP_ALL_HOSTS)
971 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100972 if (ipv4_is_local_multicast(im->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200973 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100974 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 spin_lock_bh(&im->lock);
976 if (im->tm_running)
977 im->gsquery = im->gsquery && mark;
978 else
979 im->gsquery = mark;
David L Stevensad125832006-01-18 14:20:56 -0800980 changed = !im->gsquery ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900981 igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 spin_unlock_bh(&im->lock);
David L Stevensad125832006-01-18 14:20:56 -0800983 if (changed)
984 igmp_mod_timer(im, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000986 rcu_read_unlock();
Eric Dumazetd679c532012-09-06 20:37:06 +0000987 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000990/* called in rcu_read_lock() section */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991int igmp_rcv(struct sk_buff *skb)
992{
993 /* This basically follows the spec line by line -- see RFC1112 */
994 struct igmphdr *ih;
Eric Dumazet9a57a9d2010-06-07 03:17:10 +0000995 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 int len = skb->len;
Eric Dumazetd679c532012-09-06 20:37:06 +0000997 bool dropped = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Ian Morris51456b22015-04-03 09:17:26 +0100999 if (!in_dev)
Denis V. Lunevcd557bc2008-02-09 23:22:26 -08001000 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Herbert Xufb286bb2005-11-10 13:01:24 -08001002 if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +00001003 goto drop;
Herbert Xufb286bb2005-11-10 13:01:24 -08001004
Tom Herbertde08dc12014-05-07 16:52:10 -07001005 if (skb_checksum_simple_validate(skb))
1006 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -03001008 ih = igmp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 switch (ih->type) {
1010 case IGMP_HOST_MEMBERSHIP_QUERY:
Eric Dumazetd679c532012-09-06 20:37:06 +00001011 dropped = igmp_heard_query(in_dev, skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
1013 case IGMP_HOST_MEMBERSHIP_REPORT:
1014 case IGMPV2_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /* Is it our report looped back? */
David S. Millerc7537962010-11-11 17:07:48 -08001016 if (rt_is_output_route(skb_rtable(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
David Stevens24c69272005-12-02 20:32:59 -08001018 /* don't rely on MC router hearing unicast reports */
1019 if (skb->pkt_type == PACKET_MULTICAST ||
1020 skb->pkt_type == PACKET_BROADCAST)
Eric Dumazetd679c532012-09-06 20:37:06 +00001021 dropped = igmp_heard_report(in_dev, ih->group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 break;
1023 case IGMP_PIM:
1024#ifdef CONFIG_IP_PIMSM_V1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return pim_rcv_v1(skb);
1026#endif
Herbert Xuc6b471e2010-02-07 17:26:30 +00001027 case IGMPV3_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 case IGMP_DVMRP:
1029 case IGMP_TRACE:
1030 case IGMP_HOST_LEAVE_MESSAGE:
1031 case IGMP_MTRACE:
1032 case IGMP_MTRACE_RESP:
1033 break;
1034 default:
Linus Torvaldsdd1c1852006-01-31 13:11:41 -08001035 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001037
Denis V. Lunevcd557bc2008-02-09 23:22:26 -08001038drop:
Eric Dumazetd679c532012-09-06 20:37:06 +00001039 if (dropped)
1040 kfree_skb(skb);
1041 else
1042 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044}
1045
1046#endif
1047
1048
1049/*
1050 * Add a filter to a device
1051 */
1052
Al Viro63007722006-09-27 18:31:32 -07001053static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
1055 char buf[MAX_ADDR_LEN];
1056 struct net_device *dev = in_dev->dev;
1057
1058 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1059 We will get multicast token leakage, when IFF_MULTICAST
Jiri Pirkob81693d2011-08-16 06:29:02 +00001060 is changed. This check should be done in ndo_set_rx_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 routine. Something sort of:
1062 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1063 --ANK
1064 */
1065 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001066 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069/*
1070 * Remove a filter from a device
1071 */
1072
Al Viro63007722006-09-27 18:31:32 -07001073static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
1075 char buf[MAX_ADDR_LEN];
1076 struct net_device *dev = in_dev->dev;
1077
1078 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001079 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082#ifdef CONFIG_IP_MULTICAST
1083/*
1084 * deleted ip_mc_list manipulation
1085 */
1086static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1087{
1088 struct ip_mc_list *pmc;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001089 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 /* this is an "ip_mc_list" for convenience; only the fields below
1092 * are actually used. In particular, the refcnt and users are not
1093 * used for management of the delete list. Using the same structure
1094 * for deleted items allows change reports to use common code with
1095 * non-deleted or query-response MCA's.
1096 */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001097 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!pmc)
1099 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 spin_lock_bh(&im->lock);
1101 pmc->interface = im->interface;
1102 in_dev_hold(in_dev);
1103 pmc->multiaddr = im->multiaddr;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001104 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 pmc->sfmode = im->sfmode;
1106 if (pmc->sfmode == MCAST_INCLUDE) {
1107 struct ip_sf_list *psf;
1108
1109 pmc->tomb = im->tomb;
1110 pmc->sources = im->sources;
1111 im->tomb = im->sources = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001112 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 psf->sf_crcount = pmc->crcount;
1114 }
1115 spin_unlock_bh(&im->lock);
1116
1117 spin_lock_bh(&in_dev->mc_tomb_lock);
1118 pmc->next = in_dev->mc_tomb;
1119 in_dev->mc_tomb = pmc;
1120 spin_unlock_bh(&in_dev->mc_tomb_lock);
1121}
1122
Al Viro63007722006-09-27 18:31:32 -07001123static void igmpv3_del_delrec(struct in_device *in_dev, __be32 multiaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125 struct ip_mc_list *pmc, *pmc_prev;
1126 struct ip_sf_list *psf, *psf_next;
1127
1128 spin_lock_bh(&in_dev->mc_tomb_lock);
1129 pmc_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001130 for (pmc = in_dev->mc_tomb; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (pmc->multiaddr == multiaddr)
1132 break;
1133 pmc_prev = pmc;
1134 }
1135 if (pmc) {
1136 if (pmc_prev)
1137 pmc_prev->next = pmc->next;
1138 else
1139 in_dev->mc_tomb = pmc->next;
1140 }
1141 spin_unlock_bh(&in_dev->mc_tomb_lock);
1142 if (pmc) {
Weilong Chenc71151f2013-12-23 14:37:29 +08001143 for (psf = pmc->tomb; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 psf_next = psf->sf_next;
1145 kfree(psf);
1146 }
1147 in_dev_put(pmc->interface);
1148 kfree(pmc);
1149 }
1150}
1151
1152static void igmpv3_clear_delrec(struct in_device *in_dev)
1153{
1154 struct ip_mc_list *pmc, *nextpmc;
1155
1156 spin_lock_bh(&in_dev->mc_tomb_lock);
1157 pmc = in_dev->mc_tomb;
1158 in_dev->mc_tomb = NULL;
1159 spin_unlock_bh(&in_dev->mc_tomb_lock);
1160
1161 for (; pmc; pmc = nextpmc) {
1162 nextpmc = pmc->next;
1163 ip_mc_clear_src(pmc);
1164 in_dev_put(pmc->interface);
1165 kfree(pmc);
1166 }
1167 /* clear dead sources, too */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001168 rcu_read_lock();
1169 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 struct ip_sf_list *psf, *psf_next;
1171
1172 spin_lock_bh(&pmc->lock);
1173 psf = pmc->tomb;
1174 pmc->tomb = NULL;
1175 spin_unlock_bh(&pmc->lock);
Weilong Chenc71151f2013-12-23 14:37:29 +08001176 for (; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 psf_next = psf->sf_next;
1178 kfree(psf);
1179 }
1180 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001181 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183#endif
1184
1185static void igmp_group_dropped(struct ip_mc_list *im)
1186{
1187 struct in_device *in_dev = im->interface;
1188#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001189 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int reporter;
1191#endif
1192
1193 if (im->loaded) {
1194 im->loaded = 0;
1195 ip_mc_filter_del(in_dev, im->multiaddr);
1196 }
1197
1198#ifdef CONFIG_IP_MULTICAST
1199 if (im->multiaddr == IGMP_ALL_HOSTS)
1200 return;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001201 if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001202 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 reporter = im->reporter;
1205 igmp_stop_timer(im);
1206
1207 if (!in_dev->dead) {
1208 if (IGMP_V1_SEEN(in_dev))
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001209 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (IGMP_V2_SEEN(in_dev)) {
1211 if (reporter)
1212 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001213 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215 /* IGMPv3 */
1216 igmpv3_add_delrec(in_dev, im);
1217
1218 igmp_ifc_event(in_dev);
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
1223static void igmp_group_added(struct ip_mc_list *im)
1224{
1225 struct in_device *in_dev = im->interface;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001226#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001227 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 if (im->loaded == 0) {
1231 im->loaded = 1;
1232 ip_mc_filter_add(in_dev, im->multiaddr);
1233 }
1234
1235#ifdef CONFIG_IP_MULTICAST
1236 if (im->multiaddr == IGMP_ALL_HOSTS)
1237 return;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001238 if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001239 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (in_dev->dead)
1242 return;
1243 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1244 spin_lock_bh(&im->lock);
Fabian Frederick436f7c22014-11-04 20:52:14 +01001245 igmp_start_timer(im, IGMP_INITIAL_REPORT_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 spin_unlock_bh(&im->lock);
1247 return;
1248 }
1249 /* else, v3 */
1250
Nikolay Borisov165094a2016-02-08 23:29:24 +02001251 im->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 igmp_ifc_event(in_dev);
1253#endif
1254}
1255
1256
1257/*
1258 * Multicast list managers
1259 */
1260
Eric Dumazete9897072013-06-07 08:48:57 -07001261static u32 ip_mc_hash(const struct ip_mc_list *im)
1262{
Eric Dumazetc70eba72013-06-12 14:11:16 -07001263 return hash_32((__force u32)im->multiaddr, MC_HASH_SZ_LOG);
Eric Dumazete9897072013-06-07 08:48:57 -07001264}
1265
1266static void ip_mc_hash_add(struct in_device *in_dev,
1267 struct ip_mc_list *im)
1268{
1269 struct ip_mc_list __rcu **mc_hash;
1270 u32 hash;
1271
1272 mc_hash = rtnl_dereference(in_dev->mc_hash);
1273 if (mc_hash) {
1274 hash = ip_mc_hash(im);
Eric Dumazetc70eba72013-06-12 14:11:16 -07001275 im->next_hash = mc_hash[hash];
Eric Dumazete9897072013-06-07 08:48:57 -07001276 rcu_assign_pointer(mc_hash[hash], im);
1277 return;
1278 }
1279
1280 /* do not use a hash table for small number of items */
1281 if (in_dev->mc_count < 4)
1282 return;
1283
1284 mc_hash = kzalloc(sizeof(struct ip_mc_list *) << MC_HASH_SZ_LOG,
1285 GFP_KERNEL);
1286 if (!mc_hash)
1287 return;
1288
1289 for_each_pmc_rtnl(in_dev, im) {
1290 hash = ip_mc_hash(im);
Eric Dumazetc70eba72013-06-12 14:11:16 -07001291 im->next_hash = mc_hash[hash];
Eric Dumazete9897072013-06-07 08:48:57 -07001292 RCU_INIT_POINTER(mc_hash[hash], im);
1293 }
1294
1295 rcu_assign_pointer(in_dev->mc_hash, mc_hash);
1296}
1297
1298static void ip_mc_hash_remove(struct in_device *in_dev,
1299 struct ip_mc_list *im)
1300{
1301 struct ip_mc_list __rcu **mc_hash = rtnl_dereference(in_dev->mc_hash);
1302 struct ip_mc_list *aux;
1303
1304 if (!mc_hash)
1305 return;
1306 mc_hash += ip_mc_hash(im);
1307 while ((aux = rtnl_dereference(*mc_hash)) != im)
1308 mc_hash = &aux->next_hash;
1309 *mc_hash = im->next_hash;
1310}
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313/*
1314 * A socket has joined a multicast group on device dev.
1315 */
1316
Al Viro8f935bb2006-09-27 18:30:07 -07001317void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct ip_mc_list *im;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001320#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001321 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001322#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 ASSERT_RTNL();
1325
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001326 for_each_pmc_rtnl(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (im->multiaddr == addr) {
1328 im->users++;
1329 ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1330 goto out;
1331 }
1332 }
1333
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001334 im = kzalloc(sizeof(*im), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (!im)
1336 goto out;
1337
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001338 im->users = 1;
1339 im->interface = in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 in_dev_hold(in_dev);
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001341 im->multiaddr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* initial mode is (EX, empty) */
1343 im->sfmode = MCAST_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 im->sfcount[MCAST_EXCLUDE] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 atomic_set(&im->refcnt, 1);
1346 spin_lock_init(&im->lock);
1347#ifdef CONFIG_IP_MULTICAST
Himangi Saraogi179542a2014-07-25 01:48:44 +05301348 setup_timer(&im->timer, igmp_timer_expire, (unsigned long)im);
Nikolay Borisov165094a2016-02-08 23:29:24 +02001349 im->unsolicit_count = net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350#endif
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001351
1352 im->next_rcu = in_dev->mc_list;
Rami Rosenb8bae412008-10-07 15:34:37 -07001353 in_dev->mc_count++;
Eric Dumazetcf778b02012-01-12 04:41:32 +00001354 rcu_assign_pointer(in_dev->mc_list, im);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001355
Eric Dumazete9897072013-06-07 08:48:57 -07001356 ip_mc_hash_add(in_dev, im);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358#ifdef CONFIG_IP_MULTICAST
1359 igmpv3_del_delrec(in_dev, im->multiaddr);
1360#endif
1361 igmp_group_added(im);
1362 if (!in_dev->dead)
1363 ip_rt_multicast_event(in_dev);
1364out:
1365 return;
1366}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001367EXPORT_SYMBOL(ip_mc_inc_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001369static int ip_mc_check_iphdr(struct sk_buff *skb)
1370{
1371 const struct iphdr *iph;
1372 unsigned int len;
1373 unsigned int offset = skb_network_offset(skb) + sizeof(*iph);
1374
1375 if (!pskb_may_pull(skb, offset))
1376 return -EINVAL;
1377
1378 iph = ip_hdr(skb);
1379
1380 if (iph->version != 4 || ip_hdrlen(skb) < sizeof(*iph))
1381 return -EINVAL;
1382
1383 offset += ip_hdrlen(skb) - sizeof(*iph);
1384
1385 if (!pskb_may_pull(skb, offset))
1386 return -EINVAL;
1387
1388 iph = ip_hdr(skb);
1389
1390 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
1391 return -EINVAL;
1392
1393 len = skb_network_offset(skb) + ntohs(iph->tot_len);
1394 if (skb->len < len || len < offset)
1395 return -EINVAL;
1396
1397 skb_set_transport_header(skb, offset);
1398
1399 return 0;
1400}
1401
1402static int ip_mc_check_igmp_reportv3(struct sk_buff *skb)
1403{
1404 unsigned int len = skb_transport_offset(skb);
1405
1406 len += sizeof(struct igmpv3_report);
1407
1408 return pskb_may_pull(skb, len) ? 0 : -EINVAL;
1409}
1410
1411static int ip_mc_check_igmp_query(struct sk_buff *skb)
1412{
1413 unsigned int len = skb_transport_offset(skb);
1414
1415 len += sizeof(struct igmphdr);
1416 if (skb->len < len)
1417 return -EINVAL;
1418
1419 /* IGMPv{1,2}? */
1420 if (skb->len != len) {
1421 /* or IGMPv3? */
1422 len += sizeof(struct igmpv3_query) - sizeof(struct igmphdr);
1423 if (skb->len < len || !pskb_may_pull(skb, len))
1424 return -EINVAL;
1425 }
1426
1427 /* RFC2236+RFC3376 (IGMPv2+IGMPv3) require the multicast link layer
1428 * all-systems destination addresses (224.0.0.1) for general queries
1429 */
1430 if (!igmp_hdr(skb)->group &&
1431 ip_hdr(skb)->daddr != htonl(INADDR_ALLHOSTS_GROUP))
1432 return -EINVAL;
1433
1434 return 0;
1435}
1436
1437static int ip_mc_check_igmp_msg(struct sk_buff *skb)
1438{
1439 switch (igmp_hdr(skb)->type) {
1440 case IGMP_HOST_LEAVE_MESSAGE:
1441 case IGMP_HOST_MEMBERSHIP_REPORT:
1442 case IGMPV2_HOST_MEMBERSHIP_REPORT:
1443 /* fall through */
1444 return 0;
1445 case IGMPV3_HOST_MEMBERSHIP_REPORT:
1446 return ip_mc_check_igmp_reportv3(skb);
1447 case IGMP_HOST_MEMBERSHIP_QUERY:
1448 return ip_mc_check_igmp_query(skb);
1449 default:
1450 return -ENOMSG;
1451 }
1452}
1453
1454static inline __sum16 ip_mc_validate_checksum(struct sk_buff *skb)
1455{
1456 return skb_checksum_simple_validate(skb);
1457}
1458
1459static int __ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed)
1460
1461{
1462 struct sk_buff *skb_chk;
1463 unsigned int transport_len;
1464 unsigned int len = skb_transport_offset(skb) + sizeof(struct igmphdr);
Linus Lüssinga5169932015-08-13 05:54:07 +02001465 int ret = -EINVAL;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001466
1467 transport_len = ntohs(ip_hdr(skb)->tot_len) - ip_hdrlen(skb);
1468
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001469 skb_chk = skb_checksum_trimmed(skb, transport_len,
1470 ip_mc_validate_checksum);
1471 if (!skb_chk)
Linus Lüssinga5169932015-08-13 05:54:07 +02001472 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001473
Linus Lüssinga5169932015-08-13 05:54:07 +02001474 if (!pskb_may_pull(skb_chk, len))
1475 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001476
1477 ret = ip_mc_check_igmp_msg(skb_chk);
Linus Lüssinga5169932015-08-13 05:54:07 +02001478 if (ret)
1479 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001480
1481 if (skb_trimmed)
1482 *skb_trimmed = skb_chk;
Linus Lüssinga5169932015-08-13 05:54:07 +02001483 /* free now unneeded clone */
1484 else if (skb_chk != skb)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001485 kfree_skb(skb_chk);
1486
Linus Lüssinga5169932015-08-13 05:54:07 +02001487 ret = 0;
1488
1489err:
1490 if (ret && skb_chk && skb_chk != skb)
1491 kfree_skb(skb_chk);
1492
1493 return ret;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001494}
1495
1496/**
1497 * ip_mc_check_igmp - checks whether this is a sane IGMP packet
1498 * @skb: the skb to validate
1499 * @skb_trimmed: to store an skb pointer trimmed to IPv4 packet tail (optional)
1500 *
1501 * Checks whether an IPv4 packet is a valid IGMP packet. If so sets
Linus Lüssinga5169932015-08-13 05:54:07 +02001502 * skb transport header accordingly and returns zero.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001503 *
1504 * -EINVAL: A broken packet was detected, i.e. it violates some internet
1505 * standard
1506 * -ENOMSG: IP header validation succeeded but it is not an IGMP packet.
1507 * -ENOMEM: A memory allocation failure happened.
1508 *
1509 * Optionally, an skb pointer might be provided via skb_trimmed (or set it
1510 * to NULL): After parsing an IGMP packet successfully it will point to
1511 * an skb which has its tail aligned to the IP packet end. This might
1512 * either be the originally provided skb or a trimmed, cloned version if
1513 * the skb frame had data beyond the IP packet. A cloned skb allows us
1514 * to leave the original skb and its full frame unchanged (which might be
1515 * desirable for layer 2 frame jugglers).
1516 *
Linus Lüssinga5169932015-08-13 05:54:07 +02001517 * Caller needs to set the skb network header and free any returned skb if it
1518 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001519 */
1520int ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed)
1521{
1522 int ret = ip_mc_check_iphdr(skb);
1523
1524 if (ret < 0)
1525 return ret;
1526
1527 if (ip_hdr(skb)->protocol != IPPROTO_IGMP)
1528 return -ENOMSG;
1529
1530 return __ip_mc_check_igmp(skb, skb_trimmed);
1531}
1532EXPORT_SYMBOL(ip_mc_check_igmp);
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534/*
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001535 * Resend IGMP JOIN report; used by netdev notifier.
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001536 */
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001537static void ip_mc_rejoin_groups(struct in_device *in_dev)
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001538{
Geert Uytterhoeven08882662007-03-12 17:02:37 -07001539#ifdef CONFIG_IP_MULTICAST
Eric Dumazet866f3b22010-11-18 09:33:19 -08001540 struct ip_mc_list *im;
1541 int type;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001542 struct net *net = dev_net(in_dev->dev);
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001543
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001544 ASSERT_RTNL();
1545
1546 for_each_pmc_rtnl(in_dev, im) {
Eric Dumazet866f3b22010-11-18 09:33:19 -08001547 if (im->multiaddr == IGMP_ALL_HOSTS)
1548 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001549 if (ipv4_is_local_multicast(im->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001550 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001551 continue;
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001552
Eric Dumazet866f3b22010-11-18 09:33:19 -08001553 /* a failover is happening and switches
1554 * must be notified immediately
1555 */
1556 if (IGMP_V1_SEEN(in_dev))
1557 type = IGMP_HOST_MEMBERSHIP_REPORT;
1558 else if (IGMP_V2_SEEN(in_dev))
1559 type = IGMPV2_HOST_MEMBERSHIP_REPORT;
1560 else
1561 type = IGMPV3_HOST_MEMBERSHIP_REPORT;
1562 igmp_send_report(in_dev, im, type);
1563 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001564#endif
1565}
1566
1567/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * A socket has left a multicast group on device dev
1569 */
1570
Al Viro8f935bb2006-09-27 18:30:07 -07001571void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001573 struct ip_mc_list *i;
1574 struct ip_mc_list __rcu **ip;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 ASSERT_RTNL();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001577
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001578 for (ip = &in_dev->mc_list;
1579 (i = rtnl_dereference(*ip)) != NULL;
1580 ip = &i->next_rcu) {
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001581 if (i->multiaddr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (--i->users == 0) {
Eric Dumazete9897072013-06-07 08:48:57 -07001583 ip_mc_hash_remove(in_dev, i);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001584 *ip = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001585 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 igmp_group_dropped(i);
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001587 ip_mc_clear_src(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 if (!in_dev->dead)
1590 ip_rt_multicast_event(in_dev);
1591
1592 ip_ma_put(i);
1593 return;
1594 }
1595 break;
1596 }
1597 }
1598}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001599EXPORT_SYMBOL(ip_mc_dec_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Moni Shoua75c78502009-09-15 02:37:40 -07001601/* Device changing type */
1602
1603void ip_mc_unmap(struct in_device *in_dev)
1604{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001605 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001606
1607 ASSERT_RTNL();
1608
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001609 for_each_pmc_rtnl(in_dev, pmc)
1610 igmp_group_dropped(pmc);
Moni Shoua75c78502009-09-15 02:37:40 -07001611}
1612
1613void ip_mc_remap(struct in_device *in_dev)
1614{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001615 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001616
1617 ASSERT_RTNL();
1618
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001619 for_each_pmc_rtnl(in_dev, pmc)
1620 igmp_group_added(pmc);
Moni Shoua75c78502009-09-15 02:37:40 -07001621}
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623/* Device going down */
1624
1625void ip_mc_down(struct in_device *in_dev)
1626{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001627 struct ip_mc_list *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 ASSERT_RTNL();
1630
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001631 for_each_pmc_rtnl(in_dev, pmc)
1632 igmp_group_dropped(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634#ifdef CONFIG_IP_MULTICAST
1635 in_dev->mr_ifc_count = 0;
1636 if (del_timer(&in_dev->mr_ifc_timer))
1637 __in_dev_put(in_dev);
1638 in_dev->mr_gq_running = 0;
1639 if (del_timer(&in_dev->mr_gq_timer))
1640 __in_dev_put(in_dev);
1641 igmpv3_clear_delrec(in_dev);
1642#endif
1643
1644 ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1645}
1646
1647void ip_mc_init_dev(struct in_device *in_dev)
1648{
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001649#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001650 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001651#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ASSERT_RTNL();
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654#ifdef CONFIG_IP_MULTICAST
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001655 setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire,
1656 (unsigned long)in_dev);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001657 setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire,
1658 (unsigned long)in_dev);
Nikolay Borisov165094a2016-02-08 23:29:24 +02001659 in_dev->mr_qrv = net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660#endif
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 spin_lock_init(&in_dev->mc_tomb_lock);
1663}
1664
1665/* Device going up */
1666
1667void ip_mc_up(struct in_device *in_dev)
1668{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001669 struct ip_mc_list *pmc;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001670#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001671 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001672#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 ASSERT_RTNL();
1675
Hannes Frederic Sowaa9fe8e22014-09-02 15:49:26 +02001676#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001677 in_dev->mr_qrv = net->ipv4.sysctl_igmp_qrv;
Hannes Frederic Sowaa9fe8e22014-09-02 15:49:26 +02001678#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1680
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001681 for_each_pmc_rtnl(in_dev, pmc)
1682 igmp_group_added(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
1685/*
1686 * Device is about to be destroyed: clean up.
1687 */
1688
1689void ip_mc_destroy_dev(struct in_device *in_dev)
1690{
1691 struct ip_mc_list *i;
1692
1693 ASSERT_RTNL();
1694
1695 /* Deactivate timers */
1696 ip_mc_down(in_dev);
1697
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001698 while ((i = rtnl_dereference(in_dev->mc_list)) != NULL) {
1699 in_dev->mc_list = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001700 in_dev->mc_count--;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001701
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001702 /* We've dropped the groups in ip_mc_down already */
1703 ip_mc_clear_src(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ip_ma_put(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001708/* RTNL is locked */
Daniel Lezcano877aced2008-08-13 16:15:57 -07001709static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 struct net_device *dev = NULL;
1712 struct in_device *idev = NULL;
1713
1714 if (imr->imr_ifindex) {
Daniel Lezcano877aced2008-08-13 16:15:57 -07001715 idev = inetdev_by_index(net, imr->imr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return idev;
1717 }
1718 if (imr->imr_address.s_addr) {
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001719 dev = __ip_dev_find(net, imr->imr_address.s_addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (!dev)
1721 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723
David S. Millerb23dd4f2011-03-02 14:31:35 -08001724 if (!dev) {
David S. Miller78fbfd82011-03-12 00:00:52 -05001725 struct rtable *rt = ip_route_output(net,
1726 imr->imr_multiaddr.s_addr,
1727 0, 0, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001728 if (!IS_ERR(rt)) {
1729 dev = rt->dst.dev;
1730 ip_rt_put(rt);
1731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733 if (dev) {
1734 imr->imr_ifindex = dev->ifindex;
Herbert Xue5ed6392005-10-03 14:35:55 -07001735 idev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737 return idev;
1738}
1739
1740/*
1741 * Join a socket to a group
1742 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001745 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 struct ip_sf_list *psf, *psf_prev;
1748 int rv = 0;
1749
1750 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001751 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (psf->sf_inaddr == *psfsrc)
1753 break;
1754 psf_prev = psf;
1755 }
1756 if (!psf || psf->sf_count[sfmode] == 0) {
1757 /* source filter not found, or count wrong => bug */
1758 return -ESRCH;
1759 }
1760 psf->sf_count[sfmode]--;
1761 if (psf->sf_count[sfmode] == 0) {
1762 ip_rt_multicast_event(pmc->interface);
1763 }
1764 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1765#ifdef CONFIG_IP_MULTICAST
1766 struct in_device *in_dev = pmc->interface;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001767 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768#endif
1769
1770 /* no more filters for this source */
1771 if (psf_prev)
1772 psf_prev->sf_next = psf->sf_next;
1773 else
1774 pmc->sources = psf->sf_next;
1775#ifdef CONFIG_IP_MULTICAST
1776 if (psf->sf_oldin &&
1777 !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
Nikolay Borisov165094a2016-02-08 23:29:24 +02001778 psf->sf_crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 psf->sf_next = pmc->tomb;
1780 pmc->tomb = psf;
1781 rv = 1;
1782 } else
1783#endif
1784 kfree(psf);
1785 }
1786 return rv;
1787}
1788
1789#ifndef CONFIG_IP_MULTICAST
1790#define igmp_ifc_event(x) do { } while (0)
1791#endif
1792
Al Viro8f935bb2006-09-27 18:30:07 -07001793static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1794 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
1796 struct ip_mc_list *pmc;
1797 int changerec = 0;
1798 int i, err;
1799
1800 if (!in_dev)
1801 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001802 rcu_read_lock();
1803 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (*pmca == pmc->multiaddr)
1805 break;
1806 }
1807 if (!pmc) {
1808 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001809 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return -ESRCH;
1811 }
1812 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001813 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814#ifdef CONFIG_IP_MULTICAST
1815 sf_markstate(pmc);
1816#endif
1817 if (!delta) {
1818 err = -EINVAL;
1819 if (!pmc->sfcount[sfmode])
1820 goto out_unlock;
1821 pmc->sfcount[sfmode]--;
1822 }
1823 err = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08001824 for (i = 0; i < sfcount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1826
1827 changerec |= rv > 0;
1828 if (!err && rv < 0)
1829 err = rv;
1830 }
1831 if (pmc->sfmode == MCAST_EXCLUDE &&
1832 pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1833 pmc->sfcount[MCAST_INCLUDE]) {
1834#ifdef CONFIG_IP_MULTICAST
1835 struct ip_sf_list *psf;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001836 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837#endif
1838
1839 /* filter mode change */
1840 pmc->sfmode = MCAST_INCLUDE;
1841#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001842 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 in_dev->mr_ifc_count = pmc->crcount;
Weilong Chenc71151f2013-12-23 14:37:29 +08001844 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 psf->sf_crcount = 0;
1846 igmp_ifc_event(pmc->interface);
1847 } else if (sf_setstate(pmc) || changerec) {
1848 igmp_ifc_event(pmc->interface);
1849#endif
1850 }
1851out_unlock:
1852 spin_unlock_bh(&pmc->lock);
1853 return err;
1854}
1855
1856/*
1857 * Add multicast single-source filter to the interface list
1858 */
1859static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
Jun Zhao5eb81e892011-11-30 06:21:04 +00001860 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct ip_sf_list *psf, *psf_prev;
1863
1864 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001865 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (psf->sf_inaddr == *psfsrc)
1867 break;
1868 psf_prev = psf;
1869 }
1870 if (!psf) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001871 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (!psf)
1873 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 psf->sf_inaddr = *psfsrc;
1875 if (psf_prev) {
1876 psf_prev->sf_next = psf;
1877 } else
1878 pmc->sources = psf;
1879 }
1880 psf->sf_count[sfmode]++;
1881 if (psf->sf_count[sfmode] == 1) {
1882 ip_rt_multicast_event(pmc->interface);
1883 }
1884 return 0;
1885}
1886
1887#ifdef CONFIG_IP_MULTICAST
1888static void sf_markstate(struct ip_mc_list *pmc)
1889{
1890 struct ip_sf_list *psf;
1891 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1892
Weilong Chenc71151f2013-12-23 14:37:29 +08001893 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (pmc->sfcount[MCAST_EXCLUDE]) {
1895 psf->sf_oldin = mca_xcount ==
1896 psf->sf_count[MCAST_EXCLUDE] &&
1897 !psf->sf_count[MCAST_INCLUDE];
1898 } else
1899 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1900}
1901
1902static int sf_setstate(struct ip_mc_list *pmc)
1903{
David L Stevensad125832006-01-18 14:20:56 -08001904 struct ip_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1906 int qrv = pmc->interface->mr_qrv;
1907 int new_in, rv;
1908
1909 rv = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08001910 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (pmc->sfcount[MCAST_EXCLUDE]) {
1912 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1913 !psf->sf_count[MCAST_INCLUDE];
1914 } else
1915 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevensad125832006-01-18 14:20:56 -08001916 if (new_in) {
1917 if (!psf->sf_oldin) {
Al Viro76edc602006-02-01 05:54:35 -05001918 struct ip_sf_list *prev = NULL;
David L Stevensad125832006-01-18 14:20:56 -08001919
Weilong Chenc71151f2013-12-23 14:37:29 +08001920 for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next) {
David L Stevensad125832006-01-18 14:20:56 -08001921 if (dpsf->sf_inaddr == psf->sf_inaddr)
1922 break;
1923 prev = dpsf;
1924 }
1925 if (dpsf) {
1926 if (prev)
1927 prev->sf_next = dpsf->sf_next;
1928 else
1929 pmc->tomb = dpsf->sf_next;
1930 kfree(dpsf);
1931 }
1932 psf->sf_crcount = qrv;
1933 rv++;
1934 }
1935 } else if (psf->sf_oldin) {
1936
1937 psf->sf_crcount = 0;
1938 /*
1939 * add or update "delete" records if an active filter
1940 * is now inactive
1941 */
Weilong Chenc71151f2013-12-23 14:37:29 +08001942 for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next)
David L Stevensad125832006-01-18 14:20:56 -08001943 if (dpsf->sf_inaddr == psf->sf_inaddr)
1944 break;
1945 if (!dpsf) {
Joe Perches3ed37a62010-05-31 17:23:21 +00001946 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevensad125832006-01-18 14:20:56 -08001947 if (!dpsf)
1948 continue;
1949 *dpsf = *psf;
1950 /* pmc->lock held by callers */
1951 dpsf->sf_next = pmc->tomb;
1952 pmc->tomb = dpsf;
1953 }
1954 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 rv++;
1956 }
1957 }
1958 return rv;
1959}
1960#endif
1961
1962/*
1963 * Add multicast source filter list to the interface list
1964 */
Al Viro8f935bb2006-09-27 18:30:07 -07001965static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1966 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 struct ip_mc_list *pmc;
1969 int isexclude;
1970 int i, err;
1971
1972 if (!in_dev)
1973 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001974 rcu_read_lock();
1975 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (*pmca == pmc->multiaddr)
1977 break;
1978 }
1979 if (!pmc) {
1980 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001981 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return -ESRCH;
1983 }
1984 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001985 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987#ifdef CONFIG_IP_MULTICAST
1988 sf_markstate(pmc);
1989#endif
1990 isexclude = pmc->sfmode == MCAST_EXCLUDE;
1991 if (!delta)
1992 pmc->sfcount[sfmode]++;
1993 err = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08001994 for (i = 0; i < sfcount; i++) {
Jun Zhao5eb81e892011-11-30 06:21:04 +00001995 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (err)
1997 break;
1998 }
1999 if (err) {
2000 int j;
2001
Jun Zhao685f94e62011-11-22 17:19:03 +00002002 if (!delta)
2003 pmc->sfcount[sfmode]--;
Weilong Chenc71151f2013-12-23 14:37:29 +08002004 for (j = 0; j < i; j++)
Julia Lawalla1889c02011-07-28 02:46:01 +00002005 (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
2007#ifdef CONFIG_IP_MULTICAST
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 struct ip_sf_list *psf;
Nikolay Borisov165094a2016-02-08 23:29:24 +02002009 struct net *net = dev_net(pmc->interface->dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002010 in_dev = pmc->interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011#endif
2012
2013 /* filter mode change */
2014 if (pmc->sfcount[MCAST_EXCLUDE])
2015 pmc->sfmode = MCAST_EXCLUDE;
2016 else if (pmc->sfcount[MCAST_INCLUDE])
2017 pmc->sfmode = MCAST_INCLUDE;
2018#ifdef CONFIG_IP_MULTICAST
2019 /* else no filters; keep old mode for reports */
2020
Nikolay Borisov165094a2016-02-08 23:29:24 +02002021 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 in_dev->mr_ifc_count = pmc->crcount;
Weilong Chenc71151f2013-12-23 14:37:29 +08002023 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 psf->sf_crcount = 0;
2025 igmp_ifc_event(in_dev);
2026 } else if (sf_setstate(pmc)) {
2027 igmp_ifc_event(in_dev);
2028#endif
2029 }
2030 spin_unlock_bh(&pmc->lock);
2031 return err;
2032}
2033
2034static void ip_mc_clear_src(struct ip_mc_list *pmc)
2035{
2036 struct ip_sf_list *psf, *nextpsf;
2037
Weilong Chenc71151f2013-12-23 14:37:29 +08002038 for (psf = pmc->tomb; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 nextpsf = psf->sf_next;
2040 kfree(psf);
2041 }
2042 pmc->tomb = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08002043 for (psf = pmc->sources; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 nextpsf = psf->sf_next;
2045 kfree(psf);
2046 }
2047 pmc->sources = NULL;
2048 pmc->sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002049 pmc->sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 pmc->sfcount[MCAST_EXCLUDE] = 1;
2051}
2052
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002053/* Join a multicast group
2054 */
2055
2056int ip_mc_join_group(struct sock *sk, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Al Viro8f935bb2006-09-27 18:30:07 -07002058 __be32 addr = imr->imr_multiaddr.s_addr;
Eric Dumazet959d10f2015-02-17 03:19:24 -08002059 struct ip_mc_socklist *iml, *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 struct in_device *in_dev;
2061 struct inet_sock *inet = inet_sk(sk);
Daniel Lezcano877aced2008-08-13 16:15:57 -07002062 struct net *net = sock_net(sk);
David L Stevensca9b9072005-07-08 17:38:07 -07002063 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 int count = 0;
Eric Dumazet959d10f2015-02-17 03:19:24 -08002065 int err;
2066
2067 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Joe Perchesf97c1e02007-12-16 13:45:43 -08002069 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return -EINVAL;
2071
Daniel Lezcano877aced2008-08-13 16:15:57 -07002072 in_dev = ip_mc_find_dev(net, imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 if (!in_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 err = -ENODEV;
2076 goto done;
2077 }
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 err = -EADDRINUSE;
David L Stevensca9b9072005-07-08 17:38:07 -07002080 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002081 for_each_pmc_rtnl(inet, i) {
David L Stevensca9b9072005-07-08 17:38:07 -07002082 if (i->multi.imr_multiaddr.s_addr == addr &&
2083 i->multi.imr_ifindex == ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 count++;
2086 }
2087 err = -ENOBUFS;
Nikolay Borisov815c5272016-02-08 23:29:21 +02002088 if (count >= net->ipv4.sysctl_igmp_max_memberships)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 goto done;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08002090 iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01002091 if (!iml)
David L Stevensca9b9072005-07-08 17:38:07 -07002092 goto done;
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 memcpy(&iml->multi, imr, sizeof(*imr));
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002095 iml->next_rcu = inet->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 iml->sflist = NULL;
2097 iml->sfmode = MCAST_EXCLUDE;
Eric Dumazetcf778b02012-01-12 04:41:32 +00002098 rcu_assign_pointer(inet->mc_list, iml);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 ip_mc_inc_group(in_dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return err;
2103}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002104EXPORT_SYMBOL(ip_mc_join_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
2107 struct in_device *in_dev)
2108{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002109 struct ip_sf_socklist *psf = rtnl_dereference(iml->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 int err;
2111
Ian Morris51456b22015-04-03 09:17:26 +01002112 if (!psf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 /* any-source empty exclude case */
2114 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
2115 iml->sfmode, 0, NULL, 0);
2116 }
2117 err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002118 iml->sfmode, psf->sl_count, psf->sl_addr, 0);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002119 RCU_INIT_POINTER(iml->sflist, NULL);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002120 /* decrease mem now to avoid the memleak warning */
2121 atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002122 kfree_rcu(psf, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return err;
2124}
2125
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002126int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 struct inet_sock *inet = inet_sk(sk);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002129 struct ip_mc_socklist *iml;
2130 struct ip_mc_socklist __rcu **imlp;
David L Stevens84b42ba2005-07-08 17:48:38 -07002131 struct in_device *in_dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002132 struct net *net = sock_net(sk);
Al Viro8f935bb2006-09-27 18:30:07 -07002133 __be32 group = imr->imr_multiaddr.s_addr;
David L Stevens84b42ba2005-07-08 17:48:38 -07002134 u32 ifindex;
David L Stevensacd6e002006-08-17 16:27:39 -07002135 int ret = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Eric Dumazet959d10f2015-02-17 03:19:24 -08002137 ASSERT_RTNL();
2138
Daniel Lezcano877aced2008-08-13 16:15:57 -07002139 in_dev = ip_mc_find_dev(net, imr);
Andrew Lunn4eba7bb2015-12-01 16:31:08 +01002140 if (!imr->imr_ifindex && !imr->imr_address.s_addr && !in_dev) {
dingtianhong52ad3532014-07-02 13:50:48 +08002141 ret = -ENODEV;
2142 goto out;
2143 }
David L Stevens84b42ba2005-07-08 17:48:38 -07002144 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002145 for (imlp = &inet->mc_list;
2146 (iml = rtnl_dereference(*imlp)) != NULL;
2147 imlp = &iml->next_rcu) {
David L Stevensacd6e002006-08-17 16:27:39 -07002148 if (iml->multi.imr_multiaddr.s_addr != group)
2149 continue;
2150 if (ifindex) {
2151 if (iml->multi.imr_ifindex != ifindex)
2152 continue;
2153 } else if (imr->imr_address.s_addr && imr->imr_address.s_addr !=
2154 iml->multi.imr_address.s_addr)
2155 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
David L Stevensacd6e002006-08-17 16:27:39 -07002157 (void) ip_mc_leave_src(sk, iml, in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002159 *imlp = iml->next_rcu;
David L Stevensacd6e002006-08-17 16:27:39 -07002160
Andrew Lunn4eba7bb2015-12-01 16:31:08 +01002161 if (in_dev)
2162 ip_mc_dec_group(in_dev, group);
Eric Dumazet959d10f2015-02-17 03:19:24 -08002163
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002164 /* decrease mem now to avoid the memleak warning */
2165 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
Lai Jiangshan10d50e72011-03-18 11:45:08 +08002166 kfree_rcu(iml, rcu);
David L Stevensacd6e002006-08-17 16:27:39 -07002167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
dingtianhong52ad3532014-07-02 13:50:48 +08002169out:
Eric Dumazet959d10f2015-02-17 03:19:24 -08002170 return ret;
2171}
stephen hemminger193ba922012-10-01 12:32:34 +00002172EXPORT_SYMBOL(ip_mc_leave_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174int ip_mc_source(int add, int omode, struct sock *sk, struct
2175 ip_mreq_source *mreqs, int ifindex)
2176{
2177 int err;
2178 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002179 __be32 addr = mreqs->imr_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 struct ip_mc_socklist *pmc;
2181 struct in_device *in_dev = NULL;
2182 struct inet_sock *inet = inet_sk(sk);
2183 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002184 struct net *net = sock_net(sk);
David L Stevens8cdaaa12005-07-08 17:39:23 -07002185 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 int i, j, rv;
2187
Joe Perchesf97c1e02007-12-16 13:45:43 -08002188 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return -EINVAL;
2190
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002191 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
2194 imr.imr_address.s_addr = mreqs->imr_interface;
2195 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002196 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 if (!in_dev) {
2199 err = -ENODEV;
2200 goto done;
2201 }
2202 err = -EADDRNOTAVAIL;
2203
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002204 for_each_pmc_rtnl(inet, pmc) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002205 if ((pmc->multi.imr_multiaddr.s_addr ==
2206 imr.imr_multiaddr.s_addr) &&
2207 (pmc->multi.imr_ifindex == imr.imr_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 break;
2209 }
David L Stevens917f2f12005-07-08 17:45:16 -07002210 if (!pmc) { /* must have a prior join */
2211 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /* if a source filter was set, must be the same mode as before */
2215 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -07002216 if (pmc->sfmode != omode) {
2217 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 } else if (pmc->sfmode != omode) {
2221 /* allow mode switches for empty-set filters */
2222 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002223 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 NULL, 0);
2225 pmc->sfmode = omode;
2226 }
2227
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002228 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (!add) {
2230 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -07002231 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 rv = !0;
Weilong Chenc71151f2013-12-23 14:37:29 +08002233 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002235 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (rv == 0)
2237 break;
2238 }
2239 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -07002240 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
David L Stevens8cdaaa12005-07-08 17:39:23 -07002242 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2243 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
2244 leavegroup = 1;
2245 goto done;
2246 }
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 /* update the interface filter */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002249 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 &mreqs->imr_sourceaddr, 1);
2251
Weilong Chenc71151f2013-12-23 14:37:29 +08002252 for (j = i+1; j < psl->sl_count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 psl->sl_addr[j-1] = psl->sl_addr[j];
2254 psl->sl_count--;
2255 err = 0;
2256 goto done;
2257 }
2258 /* else, add a new source to the filter */
2259
Nikolay Borisov166b6b22016-02-08 23:29:22 +02002260 if (psl && psl->sl_count >= net->ipv4.sysctl_igmp_max_msf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 err = -ENOBUFS;
2262 goto done;
2263 }
2264 if (!psl || psl->sl_count == psl->sl_max) {
2265 struct ip_sf_socklist *newpsl;
2266 int count = IP_SFBLOCK;
2267
2268 if (psl)
2269 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002270 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (!newpsl) {
2272 err = -ENOBUFS;
2273 goto done;
2274 }
2275 newpsl->sl_max = count;
2276 newpsl->sl_count = count - IP_SFBLOCK;
2277 if (psl) {
Weilong Chenc71151f2013-12-23 14:37:29 +08002278 for (i = 0; i < psl->sl_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 newpsl->sl_addr[i] = psl->sl_addr[i];
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002280 /* decrease mem now to avoid the memleak warning */
2281 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002282 kfree_rcu(psl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
Eric Dumazetcf778b02012-01-12 04:41:32 +00002284 rcu_assign_pointer(pmc->sflist, newpsl);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002285 psl = newpsl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
Weilong Chenc71151f2013-12-23 14:37:29 +08002288 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002290 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if (rv == 0)
2292 break;
2293 }
2294 if (rv == 0) /* address already there is an error */
2295 goto done;
Weilong Chenc71151f2013-12-23 14:37:29 +08002296 for (j = psl->sl_count-1; j >= i; j--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 psl->sl_addr[j+1] = psl->sl_addr[j];
2298 psl->sl_addr[i] = mreqs->imr_sourceaddr;
2299 psl->sl_count++;
2300 err = 0;
2301 /* update the interface list */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002302 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 &mreqs->imr_sourceaddr, 1);
2304done:
David L Stevens8cdaaa12005-07-08 17:39:23 -07002305 if (leavegroup)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002306 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return err;
2308}
2309
2310int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
2311{
David L Stevens9951f032005-07-08 17:47:28 -07002312 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002314 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 struct ip_mc_socklist *pmc;
2316 struct in_device *in_dev;
2317 struct inet_sock *inet = inet_sk(sk);
2318 struct ip_sf_socklist *newpsl, *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002319 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -07002320 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Joe Perchesf97c1e02007-12-16 13:45:43 -08002322 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return -EINVAL;
2324 if (msf->imsf_fmode != MCAST_INCLUDE &&
2325 msf->imsf_fmode != MCAST_EXCLUDE)
2326 return -EINVAL;
2327
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002328 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2331 imr.imr_address.s_addr = msf->imsf_interface;
2332 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002333 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 if (!in_dev) {
2336 err = -ENODEV;
2337 goto done;
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
David L Stevens9951f032005-07-08 17:47:28 -07002340 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2341 if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
2342 leavegroup = 1;
2343 goto done;
2344 }
2345
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002346 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2348 pmc->multi.imr_ifindex == imr.imr_ifindex)
2349 break;
2350 }
David L Stevens917f2f12005-07-08 17:45:16 -07002351 if (!pmc) { /* must have a prior join */
2352 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (msf->imsf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002356 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
2357 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (!newpsl) {
2359 err = -ENOBUFS;
2360 goto done;
2361 }
2362 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2363 memcpy(newpsl->sl_addr, msf->imsf_slist,
2364 msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2365 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2366 msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2367 if (err) {
2368 sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2369 goto done;
2370 }
Yan Zheng8713dbf2005-10-28 08:02:08 +08002371 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +08002373 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2374 msf->imsf_fmode, 0, NULL, 0);
2375 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002376 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (psl) {
2378 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2379 psl->sl_count, psl->sl_addr, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002380 /* decrease mem now to avoid the memleak warning */
2381 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002382 kfree_rcu(psl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 } else
2384 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2385 0, NULL, 0);
Eric Dumazetcf778b02012-01-12 04:41:32 +00002386 rcu_assign_pointer(pmc->sflist, newpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 pmc->sfmode = msf->imsf_fmode;
David L Stevens917f2f12005-07-08 17:45:16 -07002388 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389done:
David L Stevens9951f032005-07-08 17:47:28 -07002390 if (leavegroup)
2391 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return err;
2393}
2394
2395int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2396 struct ip_msfilter __user *optval, int __user *optlen)
2397{
2398 int err, len, count, copycount;
2399 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002400 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 struct ip_mc_socklist *pmc;
2402 struct in_device *in_dev;
2403 struct inet_sock *inet = inet_sk(sk);
2404 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002405 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
WANG Cong87e9f032015-11-03 15:41:16 -08002407 ASSERT_RTNL();
2408
Joe Perchesf97c1e02007-12-16 13:45:43 -08002409 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return -EINVAL;
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2413 imr.imr_address.s_addr = msf->imsf_interface;
2414 imr.imr_ifindex = 0;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002415 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 if (!in_dev) {
2418 err = -ENODEV;
2419 goto done;
2420 }
2421 err = -EADDRNOTAVAIL;
2422
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002423 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2425 pmc->multi.imr_ifindex == imr.imr_ifindex)
2426 break;
2427 }
2428 if (!pmc) /* must have a prior join */
2429 goto done;
2430 msf->imsf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002431 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 if (!psl) {
2433 len = 0;
2434 count = 0;
2435 } else {
2436 count = psl->sl_count;
2437 }
2438 copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2439 len = copycount * sizeof(psl->sl_addr[0]);
2440 msf->imsf_numsrc = count;
2441 if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2442 copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2443 return -EFAULT;
2444 }
2445 if (len &&
2446 copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2447 return -EFAULT;
2448 return 0;
2449done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return err;
2451}
2452
2453int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2454 struct group_filter __user *optval, int __user *optlen)
2455{
2456 int err, i, count, copycount;
2457 struct sockaddr_in *psin;
Al Viro63007722006-09-27 18:31:32 -07002458 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 struct ip_mc_socklist *pmc;
2460 struct inet_sock *inet = inet_sk(sk);
2461 struct ip_sf_socklist *psl;
2462
WANG Cong87e9f032015-11-03 15:41:16 -08002463 ASSERT_RTNL();
2464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 psin = (struct sockaddr_in *)&gsf->gf_group;
2466 if (psin->sin_family != AF_INET)
2467 return -EINVAL;
2468 addr = psin->sin_addr.s_addr;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002469 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 return -EINVAL;
2471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 err = -EADDRNOTAVAIL;
2473
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002474 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2476 pmc->multi.imr_ifindex == gsf->gf_interface)
2477 break;
2478 }
2479 if (!pmc) /* must have a prior join */
2480 goto done;
2481 gsf->gf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002482 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 count = psl ? psl->sl_count : 0;
2484 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2485 gsf->gf_numsrc = count;
2486 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2487 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2488 return -EFAULT;
2489 }
Weilong Chenc71151f2013-12-23 14:37:29 +08002490 for (i = 0; i < copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 struct sockaddr_storage ss;
2492
2493 psin = (struct sockaddr_in *)&ss;
2494 memset(&ss, 0, sizeof(ss));
2495 psin->sin_family = AF_INET;
2496 psin->sin_addr.s_addr = psl->sl_addr[i];
2497 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2498 return -EFAULT;
2499 }
2500 return 0;
2501done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return err;
2503}
2504
2505/*
2506 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2507 */
Al Viroc0cda062006-09-27 18:31:10 -07002508int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 struct inet_sock *inet = inet_sk(sk);
2511 struct ip_mc_socklist *pmc;
2512 struct ip_sf_socklist *psl;
2513 int i;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002514 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002516 ret = 1;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002517 if (!ipv4_is_multicast(loc_addr))
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002518 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002520 rcu_read_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002521 for_each_pmc_rcu(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2523 pmc->multi.imr_ifindex == dif)
2524 break;
2525 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002526 ret = inet->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 if (!pmc)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002528 goto unlock;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002529 psl = rcu_dereference(pmc->sflist);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002530 ret = (pmc->sfmode == MCAST_EXCLUDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (!psl)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002532 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Weilong Chenc71151f2013-12-23 14:37:29 +08002534 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 if (psl->sl_addr[i] == rmt_addr)
2536 break;
2537 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002538 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002540 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002542 goto unlock;
2543 ret = 1;
2544unlock:
2545 rcu_read_unlock();
2546out:
2547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
2550/*
2551 * A socket is closing.
2552 */
2553
2554void ip_mc_drop_socket(struct sock *sk)
2555{
2556 struct inet_sock *inet = inet_sk(sk);
2557 struct ip_mc_socklist *iml;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002558 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Ian Morris51456b22015-04-03 09:17:26 +01002560 if (!inet->mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 return;
2562
2563 rtnl_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002564 while ((iml = rtnl_dereference(inet->mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002567 inet->mc_list = iml->next_rcu;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002568 in_dev = inetdev_by_index(net, iml->multi.imr_ifindex);
Michal Ruzickabb699cbc2006-08-15 00:20:17 -07002569 (void) ip_mc_leave_src(sk, iml, in_dev);
Ian Morris00db4122015-04-03 09:17:27 +01002570 if (in_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002572 /* decrease mem now to avoid the memleak warning */
2573 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
Lai Jiangshan10d50e72011-03-18 11:45:08 +08002574 kfree_rcu(iml, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 }
2576 rtnl_unlock();
2577}
2578
David S. Millerdbdd9a52011-03-10 16:34:38 -08002579/* called with rcu_read_lock() */
Alexander Duyck2094acb2015-09-28 11:10:31 -07002580int ip_check_mc_rcu(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u8 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
2582 struct ip_mc_list *im;
Eric Dumazete9897072013-06-07 08:48:57 -07002583 struct ip_mc_list __rcu **mc_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 struct ip_sf_list *psf;
2585 int rv = 0;
2586
Eric Dumazete9897072013-06-07 08:48:57 -07002587 mc_hash = rcu_dereference(in_dev->mc_hash);
2588 if (mc_hash) {
Eric Dumazetc70eba72013-06-12 14:11:16 -07002589 u32 hash = hash_32((__force u32)mc_addr, MC_HASH_SZ_LOG);
Eric Dumazete9897072013-06-07 08:48:57 -07002590
2591 for (im = rcu_dereference(mc_hash[hash]);
2592 im != NULL;
2593 im = rcu_dereference(im->next_hash)) {
2594 if (im->multiaddr == mc_addr)
2595 break;
2596 }
2597 } else {
2598 for_each_pmc_rcu(in_dev, im) {
2599 if (im->multiaddr == mc_addr)
2600 break;
2601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
2603 if (im && proto == IPPROTO_IGMP) {
2604 rv = 1;
2605 } else if (im) {
2606 if (src_addr) {
Weilong Chenc71151f2013-12-23 14:37:29 +08002607 for (psf = im->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (psf->sf_inaddr == src_addr)
2609 break;
2610 }
2611 if (psf)
2612 rv = psf->sf_count[MCAST_INCLUDE] ||
2613 psf->sf_count[MCAST_EXCLUDE] !=
2614 im->sfcount[MCAST_EXCLUDE];
2615 else
2616 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2617 } else
2618 rv = 1; /* unspecified source; tentatively allow */
2619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 return rv;
2621}
2622
2623#if defined(CONFIG_PROC_FS)
2624struct igmp_mc_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002625 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 struct net_device *dev;
2627 struct in_device *in_dev;
2628};
2629
2630#define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2631
2632static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2633{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002634 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 struct ip_mc_list *im = NULL;
2636 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2637
Pavel Emelianov7562f872007-05-03 15:13:45 -07002638 state->in_dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002639 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 struct in_device *in_dev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002641
2642 in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 if (!in_dev)
2644 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002645 im = rcu_dereference(in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (im) {
2647 state->in_dev = in_dev;
2648 break;
2649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 }
2651 return im;
2652}
2653
2654static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2655{
2656 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet6baff152009-11-11 17:48:52 +00002657
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002658 im = rcu_dereference(im->next_rcu);
2659 while (!im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002660 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 if (!state->dev) {
2662 state->in_dev = NULL;
2663 break;
2664 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002665 state->in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if (!state->in_dev)
2667 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002668 im = rcu_dereference(state->in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
2670 return im;
2671}
2672
2673static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2674{
2675 struct ip_mc_list *im = igmp_mc_get_first(seq);
2676 if (im)
2677 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2678 --pos;
2679 return pos ? NULL : im;
2680}
2681
2682static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002683 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684{
stephen hemminger61fbab72009-11-10 07:54:55 +00002685 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2687}
2688
2689static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2690{
2691 struct ip_mc_list *im;
2692 if (v == SEQ_START_TOKEN)
2693 im = igmp_mc_get_first(seq);
2694 else
2695 im = igmp_mc_get_next(seq, v);
2696 ++*pos;
2697 return im;
2698}
2699
2700static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002701 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002704
2705 state->in_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002707 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
2710static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2711{
2712 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002713 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2715 else {
2716 struct ip_mc_list *im = (struct ip_mc_list *)v;
2717 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2718 char *querier;
Eric Dumazeta399a802012-08-08 21:13:53 +00002719 long delta;
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721#ifdef CONFIG_IP_MULTICAST
2722 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2723 IGMP_V2_SEEN(state->in_dev) ? "V2" :
2724 "V3";
2725#else
2726 querier = "NONE";
2727#endif
2728
Andreea-Cristina Bernate6b68882014-08-17 15:49:41 +03002729 if (rcu_access_pointer(state->in_dev->mc_list) == im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 seq_printf(seq, "%d\t%-10s: %5d %7s\n",
Rami Rosenb8bae412008-10-07 15:34:37 -07002731 state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
2733
Eric Dumazeta399a802012-08-08 21:13:53 +00002734 delta = im->timer.expires - jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 seq_printf(seq,
Alexey Dobriyan338fcf92006-06-05 21:04:39 -07002736 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 im->multiaddr, im->users,
Eric Dumazeta399a802012-08-08 21:13:53 +00002738 im->tm_running,
2739 im->tm_running ? jiffies_delta_to_clock_t(delta) : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 im->reporter);
2741 }
2742 return 0;
2743}
2744
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002745static const struct seq_operations igmp_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 .start = igmp_mc_seq_start,
2747 .next = igmp_mc_seq_next,
2748 .stop = igmp_mc_seq_stop,
2749 .show = igmp_mc_seq_show,
2750};
2751
2752static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2753{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002754 return seq_open_net(inode, file, &igmp_mc_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002755 sizeof(struct igmp_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
Arjan van de Ven9a321442007-02-12 00:55:35 -08002758static const struct file_operations igmp_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 .owner = THIS_MODULE,
2760 .open = igmp_mc_seq_open,
2761 .read = seq_read,
2762 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002763 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764};
2765
2766struct igmp_mcf_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002767 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 struct net_device *dev;
2769 struct in_device *idev;
2770 struct ip_mc_list *im;
2771};
2772
2773#define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2774
2775static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2776{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002777 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 struct ip_sf_list *psf = NULL;
2779 struct ip_mc_list *im = NULL;
2780 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2781
Pavel Emelianov7562f872007-05-03 15:13:45 -07002782 state->idev = NULL;
2783 state->im = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002784 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 struct in_device *idev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002786 idev = __in_dev_get_rcu(state->dev);
Ian Morris51456b22015-04-03 09:17:26 +01002787 if (unlikely(!idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002789 im = rcu_dereference(idev->mc_list);
Ian Morris00db4122015-04-03 09:17:27 +01002790 if (likely(im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 spin_lock_bh(&im->lock);
2792 psf = im->sources;
Ian Morris00db4122015-04-03 09:17:27 +01002793 if (likely(psf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 state->im = im;
2795 state->idev = idev;
2796 break;
2797 }
2798 spin_unlock_bh(&im->lock);
2799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
2801 return psf;
2802}
2803
2804static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2805{
2806 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2807
2808 psf = psf->sf_next;
2809 while (!psf) {
2810 spin_unlock_bh(&state->im->lock);
2811 state->im = state->im->next;
2812 while (!state->im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002813 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (!state->dev) {
2815 state->idev = NULL;
2816 goto out;
2817 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002818 state->idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (!state->idev)
2820 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002821 state->im = rcu_dereference(state->idev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823 if (!state->im)
2824 break;
2825 spin_lock_bh(&state->im->lock);
2826 psf = state->im->sources;
2827 }
2828out:
2829 return psf;
2830}
2831
2832static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2833{
2834 struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2835 if (psf)
2836 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2837 --pos;
2838 return pos ? NULL : psf;
2839}
2840
2841static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002842 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
stephen hemminger61fbab72009-11-10 07:54:55 +00002844 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2846}
2847
2848static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2849{
2850 struct ip_sf_list *psf;
2851 if (v == SEQ_START_TOKEN)
2852 psf = igmp_mcf_get_first(seq);
2853 else
2854 psf = igmp_mcf_get_next(seq, v);
2855 ++*pos;
2856 return psf;
2857}
2858
2859static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002860 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
2862 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
Ian Morris00db4122015-04-03 09:17:27 +01002863 if (likely(state->im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 spin_unlock_bh(&state->im->lock);
2865 state->im = NULL;
2866 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002867 state->idev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002869 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870}
2871
2872static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2873{
2874 struct ip_sf_list *psf = (struct ip_sf_list *)v;
2875 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2876
2877 if (v == SEQ_START_TOKEN) {
Joe Perches1744bea2014-11-04 15:37:03 -08002878 seq_puts(seq, "Idx Device MCA SRC INC EXC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 } else {
2880 seq_printf(seq,
2881 "%3d %6.6s 0x%08x "
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002882 "0x%08x %6lu %6lu\n",
2883 state->dev->ifindex, state->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 ntohl(state->im->multiaddr),
2885 ntohl(psf->sf_inaddr),
2886 psf->sf_count[MCAST_INCLUDE],
2887 psf->sf_count[MCAST_EXCLUDE]);
2888 }
2889 return 0;
2890}
2891
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002892static const struct seq_operations igmp_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 .start = igmp_mcf_seq_start,
2894 .next = igmp_mcf_seq_next,
2895 .stop = igmp_mcf_seq_stop,
2896 .show = igmp_mcf_seq_show,
2897};
2898
2899static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2900{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002901 return seq_open_net(inode, file, &igmp_mcf_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002902 sizeof(struct igmp_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
2904
Arjan van de Ven9a321442007-02-12 00:55:35 -08002905static const struct file_operations igmp_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 .owner = THIS_MODULE,
2907 .open = igmp_mcf_seq_open,
2908 .read = seq_read,
2909 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002910 .release = seq_release_net,
2911};
2912
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002913static int __net_init igmp_net_init(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002914{
2915 struct proc_dir_entry *pde;
Madhu Challa93a714d2015-02-25 09:58:35 -08002916 int err;
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002917
Gao fengd4beaa62013-02-18 01:34:54 +00002918 pde = proc_create("igmp", S_IRUGO, net->proc_net, &igmp_mc_seq_fops);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002919 if (!pde)
2920 goto out_igmp;
Gao fengd4beaa62013-02-18 01:34:54 +00002921 pde = proc_create("mcfilter", S_IRUGO, net->proc_net,
2922 &igmp_mcf_seq_fops);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002923 if (!pde)
2924 goto out_mcfilter;
Madhu Challa93a714d2015-02-25 09:58:35 -08002925 err = inet_ctl_sock_create(&net->ipv4.mc_autojoin_sk, AF_INET,
2926 SOCK_DGRAM, 0, net);
2927 if (err < 0) {
2928 pr_err("Failed to initialize the IGMP autojoin socket (err %d)\n",
2929 err);
2930 goto out_sock;
2931 }
2932
Nikolay Borisovdcd87992016-02-15 12:11:28 +02002933 /* Sysctl initialization */
2934 net->ipv4.sysctl_igmp_max_memberships = 20;
2935 net->ipv4.sysctl_igmp_max_msf = 10;
2936 /* IGMP reports for link-local multicast groups are enabled by default */
2937 net->ipv4.sysctl_igmp_llm_reports = 1;
2938 net->ipv4.sysctl_igmp_qrv = 2;
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002939 return 0;
2940
Madhu Challa93a714d2015-02-25 09:58:35 -08002941out_sock:
2942 remove_proc_entry("mcfilter", net->proc_net);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002943out_mcfilter:
Gao fengece31ff2013-02-18 01:34:56 +00002944 remove_proc_entry("igmp", net->proc_net);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002945out_igmp:
2946 return -ENOMEM;
2947}
2948
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002949static void __net_exit igmp_net_exit(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002950{
Gao fengece31ff2013-02-18 01:34:56 +00002951 remove_proc_entry("mcfilter", net->proc_net);
2952 remove_proc_entry("igmp", net->proc_net);
Madhu Challa93a714d2015-02-25 09:58:35 -08002953 inet_ctl_sock_destroy(net->ipv4.mc_autojoin_sk);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002954}
2955
2956static struct pernet_operations igmp_net_ops = {
2957 .init = igmp_net_init,
2958 .exit = igmp_net_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959};
WANG Cong72c1d3b2014-01-10 16:09:45 -08002960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02002962static int igmp_netdev_event(struct notifier_block *this,
2963 unsigned long event, void *ptr)
2964{
2965 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2966 struct in_device *in_dev;
2967
2968 switch (event) {
2969 case NETDEV_RESEND_IGMP:
2970 in_dev = __in_dev_get_rtnl(dev);
2971 if (in_dev)
2972 ip_mc_rejoin_groups(in_dev);
2973 break;
2974 default:
2975 break;
2976 }
2977 return NOTIFY_DONE;
2978}
2979
2980static struct notifier_block igmp_notifier = {
2981 .notifier_call = igmp_netdev_event,
2982};
2983
WANG Cong72c1d3b2014-01-10 16:09:45 -08002984int __init igmp_mc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
WANG Cong72c1d3b2014-01-10 16:09:45 -08002986#if defined(CONFIG_PROC_FS)
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02002987 int err;
2988
2989 err = register_pernet_subsys(&igmp_net_ops);
2990 if (err)
2991 return err;
2992 err = register_netdevice_notifier(&igmp_notifier);
2993 if (err)
2994 goto reg_notif_fail;
2995 return 0;
2996
2997reg_notif_fail:
2998 unregister_pernet_subsys(&igmp_net_ops);
2999 return err;
WANG Cong72c1d3b2014-01-10 16:09:45 -08003000#else
3001 return register_netdevice_notifier(&igmp_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002#endif
WANG Cong72c1d3b2014-01-10 16:09:45 -08003003}