blob: 780dc6fe899da9c1d008d7369300d7d39fa21ee1 [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>
Kevin Cernekee2c1a0b22017-12-11 11:13:45 -080092#include <linux/byteorder/generic.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020093
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020094#include <net/net_namespace.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020095#include <net/arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <net/ip.h>
97#include <net/protocol.h>
98#include <net/route.h>
99#include <net/sock.h>
100#include <net/checksum.h>
Madhu Challa93a714d2015-02-25 09:58:35 -0800101#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <linux/netfilter_ipv4.h>
103#ifdef CONFIG_IP_MROUTE
104#include <linux/mroute.h>
105#endif
106#ifdef CONFIG_PROC_FS
107#include <linux/proc_fs.h>
108#include <linux/seq_file.h>
109#endif
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#ifdef CONFIG_IP_MULTICAST
112/* Parameter names and values are taken from igmp-v2-06 draft */
113
Fabian Frederick436f7c22014-11-04 20:52:14 +0100114#define IGMP_V1_ROUTER_PRESENT_TIMEOUT (400*HZ)
115#define IGMP_V2_ROUTER_PRESENT_TIMEOUT (400*HZ)
116#define IGMP_V2_UNSOLICITED_REPORT_INTERVAL (10*HZ)
117#define IGMP_V3_UNSOLICITED_REPORT_INTERVAL (1*HZ)
118#define IGMP_QUERY_RESPONSE_INTERVAL (10*HZ)
119#define IGMP_QUERY_ROBUSTNESS_VARIABLE 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121
Fabian Frederick436f7c22014-11-04 20:52:14 +0100122#define IGMP_INITIAL_REPORT_DELAY (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Fabian Frederick436f7c22014-11-04 20:52:14 +0100124/* IGMP_INITIAL_REPORT_DELAY is not from IGMP specs!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * IGMP specs require to report membership immediately after
126 * joining a group, but we delay the first report by a
127 * small interval. It seems more natural and still does not
128 * contradict to specs provided this delay is small enough.
129 */
130
Herbert Xu42f811b2007-06-04 23:34:44 -0700131#define IGMP_V1_SEEN(in_dev) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900132 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 1 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700133 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 1 || \
134 ((in_dev)->mr_v1_seen && \
135 time_before(jiffies, (in_dev)->mr_v1_seen)))
136#define IGMP_V2_SEEN(in_dev) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900137 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), FORCE_IGMP_VERSION) == 2 || \
Herbert Xu42f811b2007-06-04 23:34:44 -0700138 IN_DEV_CONF_GET((in_dev), FORCE_IGMP_VERSION) == 2 || \
139 ((in_dev)->mr_v2_seen && \
140 time_before(jiffies, (in_dev)->mr_v2_seen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
William Manleycab70042013-08-06 19:03:13 +0100142static int unsolicited_report_interval(struct in_device *in_dev)
143{
William Manley26900482013-08-06 19:03:15 +0100144 int interval_ms, interval_jiffies;
145
William Manleycab70042013-08-06 19:03:13 +0100146 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
William Manley26900482013-08-06 19:03:15 +0100147 interval_ms = IN_DEV_CONF_GET(
148 in_dev,
149 IGMPV2_UNSOLICITED_REPORT_INTERVAL);
William Manleycab70042013-08-06 19:03:13 +0100150 else /* v3 */
William Manley26900482013-08-06 19:03:15 +0100151 interval_ms = IN_DEV_CONF_GET(
152 in_dev,
153 IGMPV3_UNSOLICITED_REPORT_INTERVAL);
154
155 interval_jiffies = msecs_to_jiffies(interval_ms);
156
157 /* _timer functions can't handle a delay of 0 jiffies so ensure
158 * we always return a positive value.
159 */
160 if (interval_jiffies <= 0)
161 interval_jiffies = 1;
162 return interval_jiffies;
William Manleycab70042013-08-06 19:03:13 +0100163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im);
Hangbin Liu24803f32016-11-14 16:16:28 +0800166static void igmpv3_del_delrec(struct in_device *in_dev, struct ip_mc_list *im);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static void igmpv3_clear_delrec(struct in_device *in_dev);
168static int sf_setstate(struct ip_mc_list *pmc);
169static void sf_markstate(struct ip_mc_list *pmc);
170#endif
171static void ip_mc_clear_src(struct ip_mc_list *pmc);
Al Viro8f935bb2006-09-27 18:30:07 -0700172static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
173 int sfcount, __be32 *psfsrc, int delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175static void ip_ma_put(struct ip_mc_list *im)
176{
177 if (atomic_dec_and_test(&im->refcnt)) {
178 in_dev_put(im->interface);
Lai Jiangshan42ea299d2011-03-18 11:44:08 +0800179 kfree_rcu(im, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181}
182
David S. Millerd9aa9382010-11-15 08:52:02 -0800183#define for_each_pmc_rcu(in_dev, pmc) \
184 for (pmc = rcu_dereference(in_dev->mc_list); \
185 pmc != NULL; \
186 pmc = rcu_dereference(pmc->next_rcu))
187
188#define for_each_pmc_rtnl(in_dev, pmc) \
189 for (pmc = rtnl_dereference(in_dev->mc_list); \
190 pmc != NULL; \
191 pmc = rtnl_dereference(pmc->next_rcu))
192
Eric Dumazet2113c722019-05-22 18:35:16 -0700193static void ip_sf_list_clear_all(struct ip_sf_list *psf)
194{
195 struct ip_sf_list *next;
196
197 while (psf) {
198 next = psf->sf_next;
199 kfree(psf);
200 psf = next;
201 }
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#ifdef CONFIG_IP_MULTICAST
205
206/*
207 * Timer management
208 */
209
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000210static void igmp_stop_timer(struct ip_mc_list *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 spin_lock_bh(&im->lock);
213 if (del_timer(&im->timer))
214 atomic_dec(&im->refcnt);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800215 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 im->reporter = 0;
217 im->unsolicit_count = 0;
218 spin_unlock_bh(&im->lock);
219}
220
221/* It must be called with locked im->lock */
222static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
223{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500224 int tv = prandom_u32() % max_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800226 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!mod_timer(&im->timer, jiffies+tv+2))
228 atomic_inc(&im->refcnt);
229}
230
231static void igmp_gq_start_timer(struct in_device *in_dev)
232{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500233 int tv = prandom_u32() % in_dev->mr_maxdelay;
Michal Tesarfe1e13c2017-01-02 14:38:36 +0100234 unsigned long exp = jiffies + tv + 2;
235
236 if (in_dev->mr_gq_running &&
237 time_after_eq(exp, (in_dev->mr_gq_timer).expires))
238 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 in_dev->mr_gq_running = 1;
Michal Tesarfe1e13c2017-01-02 14:38:36 +0100241 if (!mod_timer(&in_dev->mr_gq_timer, exp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 in_dev_hold(in_dev);
243}
244
245static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
246{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500247 int tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
250 in_dev_hold(in_dev);
251}
252
253static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
254{
255 spin_lock_bh(&im->lock);
256 im->unsolicit_count = 0;
257 if (del_timer(&im->timer)) {
258 if ((long)(im->timer.expires-jiffies) < max_delay) {
259 add_timer(&im->timer);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800260 im->tm_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_unlock_bh(&im->lock);
262 return;
263 }
264 atomic_dec(&im->refcnt);
265 }
266 igmp_start_timer(im, max_delay);
267 spin_unlock_bh(&im->lock);
268}
269
270
271/*
272 * Send an IGMP report.
273 */
274
275#define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
276
277
278static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
279 int gdeleted, int sdeleted)
280{
281 switch (type) {
282 case IGMPV3_MODE_IS_INCLUDE:
283 case IGMPV3_MODE_IS_EXCLUDE:
284 if (gdeleted || sdeleted)
285 return 0;
David L Stevensad125832006-01-18 14:20:56 -0800286 if (!(pmc->gsquery && !psf->sf_gsresp)) {
287 if (pmc->sfmode == MCAST_INCLUDE)
288 return 1;
289 /* don't include if this source is excluded
290 * in all filters
291 */
292 if (psf->sf_count[MCAST_INCLUDE])
293 return type == IGMPV3_MODE_IS_INCLUDE;
294 return pmc->sfcount[MCAST_EXCLUDE] ==
295 psf->sf_count[MCAST_EXCLUDE];
296 }
297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 case IGMPV3_CHANGE_TO_INCLUDE:
299 if (gdeleted || sdeleted)
300 return 0;
301 return psf->sf_count[MCAST_INCLUDE] != 0;
302 case IGMPV3_CHANGE_TO_EXCLUDE:
303 if (gdeleted || sdeleted)
304 return 0;
305 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
306 psf->sf_count[MCAST_INCLUDE])
307 return 0;
308 return pmc->sfcount[MCAST_EXCLUDE] ==
309 psf->sf_count[MCAST_EXCLUDE];
310 case IGMPV3_ALLOW_NEW_SOURCES:
311 if (gdeleted || !psf->sf_crcount)
312 return 0;
313 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
314 case IGMPV3_BLOCK_OLD_SOURCES:
315 if (pmc->sfmode == MCAST_INCLUDE)
316 return gdeleted || (psf->sf_crcount && sdeleted);
317 return psf->sf_crcount && !gdeleted && !sdeleted;
318 }
319 return 0;
320}
321
322static int
323igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
324{
325 struct ip_sf_list *psf;
326 int scount = 0;
327
Weilong Chenc71151f2013-12-23 14:37:29 +0800328 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
330 continue;
331 scount++;
332 }
333 return scount;
334}
335
Kevin Cernekee2c1a0b22017-12-11 11:13:45 -0800336/* source address selection per RFC 3376 section 4.2.13 */
337static __be32 igmpv3_get_srcaddr(struct net_device *dev,
338 const struct flowi4 *fl4)
339{
340 struct in_device *in_dev = __in_dev_get_rcu(dev);
341
342 if (!in_dev)
343 return htonl(INADDR_ANY);
344
345 for_ifa(in_dev) {
Felix Fietkau0ae16962018-01-19 11:50:46 +0100346 if (fl4->saddr == ifa->ifa_local)
Kevin Cernekee2c1a0b22017-12-11 11:13:45 -0800347 return fl4->saddr;
348 } endfor_ifa(in_dev);
349
350 return htonl(INADDR_ANY);
351}
352
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100353static struct sk_buff *igmpv3_newpack(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct sk_buff *skb;
356 struct rtable *rt;
357 struct iphdr *pip;
358 struct igmpv3_report *pig;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700359 struct net *net = dev_net(dev);
David S. Miller31e45432011-05-03 20:25:42 -0700360 struct flowi4 fl4;
Herbert Xu66088242011-11-18 02:20:04 +0000361 int hlen = LL_RESERVED_SPACE(dev);
362 int tlen = dev->needed_tailroom;
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100363 unsigned int size = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000365 while (1) {
Herbert Xu66088242011-11-18 02:20:04 +0000366 skb = alloc_skb(size + hlen + tlen,
Eric Dumazet57e1ab62010-11-16 20:36:42 +0000367 GFP_ATOMIC | __GFP_NOWARN);
368 if (skb)
369 break;
370 size >>= 1;
371 if (size < 256)
372 return NULL;
373 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +0200374 skb->priority = TC_PRIO_CONTROL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
David S. Miller31e45432011-05-03 20:25:42 -0700376 rt = ip_route_output_ports(net, &fl4, NULL, IGMPV3_ALL_MCR, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -0500377 0, 0,
378 IPPROTO_IGMP, 0, dev->ifindex);
379 if (IS_ERR(rt)) {
380 kfree_skb(skb);
381 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Changli Gaod8d1f302010-06-10 23:31:35 -0700384 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 skb->dev = dev;
386
Herbert Xu66088242011-11-18 02:20:04 +0000387 skb_reserve(skb, hlen);
Benjamin Poirier1837b2e2016-02-29 15:03:33 -0800388 skb_tailroom_reserve(skb, mtu, tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300390 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700391 pip = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300392 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 pip->version = 4;
395 pip->ihl = (sizeof(struct iphdr)+4)>>2;
396 pip->tos = 0xc0;
397 pip->frag_off = htons(IP_DF);
398 pip->ttl = 1;
David S. Miller492f64c2011-05-03 20:53:12 -0700399 pip->daddr = fl4.daddr;
Eric Dumazetce43c072018-02-01 10:26:57 -0800400
401 rcu_read_lock();
Kevin Cernekee2c1a0b22017-12-11 11:13:45 -0800402 pip->saddr = igmpv3_get_srcaddr(dev, &fl4);
Eric Dumazetce43c072018-02-01 10:26:57 -0800403 rcu_read_unlock();
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 pip->protocol = IPPROTO_IGMP;
406 pip->tot_len = 0; /* filled in later */
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100407 ip_select_ident(net, skb, NULL);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000408 ((u8 *)&pip[1])[0] = IPOPT_RA;
409 ((u8 *)&pip[1])[1] = 4;
410 ((u8 *)&pip[1])[2] = 0;
411 ((u8 *)&pip[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700413 skb->transport_header = skb->network_header + sizeof(struct iphdr) + 4;
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -0300414 skb_put(skb, sizeof(*pig));
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300415 pig = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
417 pig->resv1 = 0;
418 pig->csum = 0;
419 pig->resv2 = 0;
420 pig->ngrec = 0;
421 return skb;
422}
423
424static int igmpv3_sendpack(struct sk_buff *skb)
425{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300426 struct igmphdr *pig = igmp_hdr(skb);
Simon Hormanf7c0c2a2013-05-28 20:34:27 +0000427 const int igmplen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300429 pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Eric W. Biederman33224b12015-10-07 16:48:46 -0500431 return ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
435{
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800436 return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc, type, gdel, sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800440 int type, struct igmpv3_grec **ppgr, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct net_device *dev = pmc->interface->dev;
443 struct igmpv3_report *pih;
444 struct igmpv3_grec *pgr;
445
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800446 if (!skb) {
447 skb = igmpv3_newpack(dev, mtu);
448 if (!skb)
449 return NULL;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
452 pgr->grec_type = type;
453 pgr->grec_auxwords = 0;
454 pgr->grec_nsrcs = 0;
455 pgr->grec_mca = pmc->multiaddr;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300456 pih = igmpv3_report_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 pih->ngrec = htons(ntohs(pih->ngrec)+1);
458 *ppgr = pgr;
459 return skb;
460}
461
Daniel Borkmann4c672e42014-11-05 20:27:38 +0100462#define AVAILABLE(skb) ((skb) ? skb_availroom(skb) : 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
465 int type, int gdeleted, int sdeleted)
466{
467 struct net_device *dev = pmc->interface->dev;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200468 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct igmpv3_report *pih;
470 struct igmpv3_grec *pgr = NULL;
471 struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevensad125832006-01-18 14:20:56 -0800472 int scount, stotal, first, isquery, truncate;
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800473 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 if (pmc->multiaddr == IGMP_ALL_HOSTS)
476 return skb;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200477 if (ipv4_is_local_multicast(pmc->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100478 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800480 mtu = READ_ONCE(dev->mtu);
481 if (mtu < IPV4_MIN_MTU)
482 return skb;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 isquery = type == IGMPV3_MODE_IS_INCLUDE ||
485 type == IGMPV3_MODE_IS_EXCLUDE;
486 truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
487 type == IGMPV3_CHANGE_TO_EXCLUDE;
488
David L Stevensad125832006-01-18 14:20:56 -0800489 stotal = scount = 0;
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
492
David L Stevensad125832006-01-18 14:20:56 -0800493 if (!*psf_list)
494 goto empty_source;
495
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300496 pih = skb ? igmpv3_report_hdr(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* EX and TO_EX get a fresh packet, if needed */
499 if (truncate) {
500 if (pih && pih->ngrec &&
501 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
502 if (skb)
503 igmpv3_sendpack(skb);
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800504 skb = igmpv3_newpack(dev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 }
507 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800509 for (psf = *psf_list; psf; psf = psf_next) {
Al Viroea4d9e72006-09-27 18:30:52 -0700510 __be32 *psrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 psf_next = psf->sf_next;
513
514 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
515 psf_prev = psf;
516 continue;
517 }
518
Hangbin Liua0525172016-08-02 18:02:57 +0800519 /* Based on RFC3376 5.1. Should not send source-list change
520 * records when there is a filter mode change.
521 */
522 if (((gdeleted && pmc->sfmode == MCAST_EXCLUDE) ||
523 (!gdeleted && pmc->crcount)) &&
524 (type == IGMPV3_ALLOW_NEW_SOURCES ||
525 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount)
526 goto decrease_sf_crcount;
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* clear marks on query responses */
529 if (isquery)
530 psf->sf_gsresp = 0;
531
Al Viro63007722006-09-27 18:31:32 -0700532 if (AVAILABLE(skb) < sizeof(__be32) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 first*sizeof(struct igmpv3_grec)) {
534 if (truncate && !first)
535 break; /* truncate these */
536 if (pgr)
537 pgr->grec_nsrcs = htons(scount);
538 if (skb)
539 igmpv3_sendpack(skb);
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800540 skb = igmpv3_newpack(dev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 first = 1;
542 scount = 0;
543 }
544 if (first) {
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800545 skb = add_grhead(skb, pmc, type, &pgr, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 first = 0;
547 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -0800548 if (!skb)
549 return NULL;
Al Viro63007722006-09-27 18:31:32 -0700550 psrc = (__be32 *)skb_put(skb, sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 *psrc = psf->sf_inaddr;
David L Stevensad125832006-01-18 14:20:56 -0800552 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
554 type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
Hangbin Liua0525172016-08-02 18:02:57 +0800555decrease_sf_crcount:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 psf->sf_crcount--;
557 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
558 if (psf_prev)
559 psf_prev->sf_next = psf->sf_next;
560 else
561 *psf_list = psf->sf_next;
562 kfree(psf);
563 continue;
564 }
565 }
566 psf_prev = psf;
567 }
David L Stevensad125832006-01-18 14:20:56 -0800568
569empty_source:
570 if (!stotal) {
571 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
572 type == IGMPV3_BLOCK_OLD_SOURCES)
573 return skb;
574 if (pmc->crcount || isquery) {
575 /* make sure we have room for group header */
Weilong Chenc71151f2013-12-23 14:37:29 +0800576 if (skb && AVAILABLE(skb) < sizeof(struct igmpv3_grec)) {
David L Stevensad125832006-01-18 14:20:56 -0800577 igmpv3_sendpack(skb);
578 skb = NULL; /* add_grhead will get a new one */
579 }
Eric Dumazetc2f78bf2017-12-11 07:17:39 -0800580 skb = add_grhead(skb, pmc, type, &pgr, mtu);
David L Stevensad125832006-01-18 14:20:56 -0800581 }
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (pgr)
584 pgr->grec_nsrcs = htons(scount);
585
586 if (isquery)
587 pmc->gsquery = 0; /* clear query state on report */
588 return skb;
589}
590
591static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
592{
593 struct sk_buff *skb = NULL;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200594 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 int type;
596
597 if (!pmc) {
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000598 rcu_read_lock();
599 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (pmc->multiaddr == IGMP_ALL_HOSTS)
601 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100602 if (ipv4_is_local_multicast(pmc->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200603 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100604 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 spin_lock_bh(&pmc->lock);
606 if (pmc->sfcount[MCAST_EXCLUDE])
607 type = IGMPV3_MODE_IS_EXCLUDE;
608 else
609 type = IGMPV3_MODE_IS_INCLUDE;
610 skb = add_grec(skb, pmc, type, 0, 0);
611 spin_unlock_bh(&pmc->lock);
612 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000613 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 } else {
615 spin_lock_bh(&pmc->lock);
616 if (pmc->sfcount[MCAST_EXCLUDE])
617 type = IGMPV3_MODE_IS_EXCLUDE;
618 else
619 type = IGMPV3_MODE_IS_INCLUDE;
620 skb = add_grec(skb, pmc, type, 0, 0);
621 spin_unlock_bh(&pmc->lock);
622 }
623 if (!skb)
624 return 0;
625 return igmpv3_sendpack(skb);
626}
627
628/*
629 * remove zero-count source records from a source filter list
630 */
631static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
632{
633 struct ip_sf_list *psf_prev, *psf_next, *psf;
634
635 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800636 for (psf = *ppsf; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 psf_next = psf->sf_next;
638 if (psf->sf_crcount == 0) {
639 if (psf_prev)
640 psf_prev->sf_next = psf->sf_next;
641 else
642 *ppsf = psf->sf_next;
643 kfree(psf);
644 } else
645 psf_prev = psf;
646 }
647}
648
Eric Dumazet405d3bb2019-05-22 16:51:22 -0700649static void kfree_pmc(struct ip_mc_list *pmc)
650{
651 ip_sf_list_clear_all(pmc->sources);
652 ip_sf_list_clear_all(pmc->tomb);
653 kfree(pmc);
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656static void igmpv3_send_cr(struct in_device *in_dev)
657{
658 struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
659 struct sk_buff *skb = NULL;
660 int type, dtype;
661
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000662 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 spin_lock_bh(&in_dev->mc_tomb_lock);
664
665 /* deleted MCA's */
666 pmc_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +0800667 for (pmc = in_dev->mc_tomb; pmc; pmc = pmc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 pmc_next = pmc->next;
669 if (pmc->sfmode == MCAST_INCLUDE) {
670 type = IGMPV3_BLOCK_OLD_SOURCES;
671 dtype = IGMPV3_BLOCK_OLD_SOURCES;
672 skb = add_grec(skb, pmc, type, 1, 0);
673 skb = add_grec(skb, pmc, dtype, 1, 1);
674 }
675 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (pmc->sfmode == MCAST_EXCLUDE) {
677 type = IGMPV3_CHANGE_TO_INCLUDE;
678 skb = add_grec(skb, pmc, type, 1, 0);
679 }
David L Stevensad125832006-01-18 14:20:56 -0800680 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (pmc->crcount == 0) {
682 igmpv3_clear_zeros(&pmc->tomb);
683 igmpv3_clear_zeros(&pmc->sources);
684 }
685 }
686 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
687 if (pmc_prev)
688 pmc_prev->next = pmc_next;
689 else
690 in_dev->mc_tomb = pmc_next;
691 in_dev_put(pmc->interface);
Eric Dumazet405d3bb2019-05-22 16:51:22 -0700692 kfree_pmc(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 } else
694 pmc_prev = pmc;
695 }
696 spin_unlock_bh(&in_dev->mc_tomb_lock);
697
698 /* change recs */
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000699 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 spin_lock_bh(&pmc->lock);
701 if (pmc->sfcount[MCAST_EXCLUDE]) {
702 type = IGMPV3_BLOCK_OLD_SOURCES;
703 dtype = IGMPV3_ALLOW_NEW_SOURCES;
704 } else {
705 type = IGMPV3_ALLOW_NEW_SOURCES;
706 dtype = IGMPV3_BLOCK_OLD_SOURCES;
707 }
708 skb = add_grec(skb, pmc, type, 0, 0);
709 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
710
711 /* filter mode changes */
712 if (pmc->crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (pmc->sfmode == MCAST_EXCLUDE)
714 type = IGMPV3_CHANGE_TO_EXCLUDE;
715 else
716 type = IGMPV3_CHANGE_TO_INCLUDE;
717 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevensad125832006-01-18 14:20:56 -0800718 pmc->crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 spin_unlock_bh(&pmc->lock);
721 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000722 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (!skb)
725 return;
726 (void) igmpv3_sendpack(skb);
727}
728
729static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
730 int type)
731{
732 struct sk_buff *skb;
733 struct iphdr *iph;
734 struct igmphdr *ih;
735 struct rtable *rt;
736 struct net_device *dev = in_dev->dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -0700737 struct net *net = dev_net(dev);
Al Viro63007722006-09-27 18:31:32 -0700738 __be32 group = pmc ? pmc->multiaddr : 0;
David S. Miller31e45432011-05-03 20:25:42 -0700739 struct flowi4 fl4;
Al Viro63007722006-09-27 18:31:32 -0700740 __be32 dst;
Herbert Xu66088242011-11-18 02:20:04 +0000741 int hlen, tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
744 return igmpv3_send_report(in_dev, pmc);
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100745
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200746 if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100747 return 0;
748
749 if (type == IGMP_HOST_LEAVE_MESSAGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 dst = IGMP_ALL_ROUTER;
751 else
752 dst = group;
753
David S. Miller31e45432011-05-03 20:25:42 -0700754 rt = ip_route_output_ports(net, &fl4, NULL, dst, 0,
David S. Miller78fbfd82011-03-12 00:00:52 -0500755 0, 0,
756 IPPROTO_IGMP, 0, dev->ifindex);
757 if (IS_ERR(rt))
758 return -1;
759
Herbert Xu66088242011-11-18 02:20:04 +0000760 hlen = LL_RESERVED_SPACE(dev);
761 tlen = dev->needed_tailroom;
762 skb = alloc_skb(IGMP_SIZE + hlen + tlen, GFP_ATOMIC);
Ian Morris51456b22015-04-03 09:17:26 +0100763 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 ip_rt_put(rt);
765 return -1;
766 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +0200767 skb->priority = TC_PRIO_CONTROL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Changli Gaod8d1f302010-06-10 23:31:35 -0700769 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Herbert Xu66088242011-11-18 02:20:04 +0000771 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300773 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700774 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300775 skb_put(skb, sizeof(struct iphdr) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 iph->version = 4;
778 iph->ihl = (sizeof(struct iphdr)+4)>>2;
779 iph->tos = 0xc0;
780 iph->frag_off = htons(IP_DF);
781 iph->ttl = 1;
782 iph->daddr = dst;
David S. Miller492f64c2011-05-03 20:53:12 -0700783 iph->saddr = fl4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 iph->protocol = IPPROTO_IGMP;
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100785 ip_select_ident(net, skb, NULL);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000786 ((u8 *)&iph[1])[0] = IPOPT_RA;
787 ((u8 *)&iph[1])[1] = 4;
788 ((u8 *)&iph[1])[2] = 0;
789 ((u8 *)&iph[1])[3] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800792 ih->type = type;
793 ih->code = 0;
794 ih->csum = 0;
795 ih->group = group;
796 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Eric W. Biederman33224b12015-10-07 16:48:46 -0500798 return ip_local_out(net, skb->sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801static void igmp_gq_timer_expire(unsigned long data)
802{
803 struct in_device *in_dev = (struct in_device *)data;
804
805 in_dev->mr_gq_running = 0;
806 igmpv3_send_report(in_dev, NULL);
Salam Noureddinee2401652013-09-29 13:39:42 -0700807 in_dev_put(in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810static void igmp_ifc_timer_expire(unsigned long data)
811{
812 struct in_device *in_dev = (struct in_device *)data;
813
814 igmpv3_send_cr(in_dev);
815 if (in_dev->mr_ifc_count) {
816 in_dev->mr_ifc_count--;
William Manleycab70042013-08-06 19:03:13 +0100817 igmp_ifc_start_timer(in_dev,
818 unsolicited_report_interval(in_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Salam Noureddinee2401652013-09-29 13:39:42 -0700820 in_dev_put(in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823static void igmp_ifc_event(struct in_device *in_dev)
824{
Nikolay Borisov165094a2016-02-08 23:29:24 +0200825 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
827 return;
Nikolay Borisov165094a2016-02-08 23:29:24 +0200828 in_dev->mr_ifc_count = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 igmp_ifc_start_timer(in_dev, 1);
830}
831
832
833static void igmp_timer_expire(unsigned long data)
834{
Weilong Chenc71151f2013-12-23 14:37:29 +0800835 struct ip_mc_list *im = (struct ip_mc_list *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct in_device *in_dev = im->interface;
837
838 spin_lock(&im->lock);
Jianjun Konga7e9ff72008-11-03 00:26:09 -0800839 im->tm_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (im->unsolicit_count) {
842 im->unsolicit_count--;
William Manleycab70042013-08-06 19:03:13 +0100843 igmp_start_timer(im, unsolicited_report_interval(in_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 im->reporter = 1;
846 spin_unlock(&im->lock);
847
848 if (IGMP_V1_SEEN(in_dev))
849 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
850 else if (IGMP_V2_SEEN(in_dev))
851 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
852 else
853 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
854
855 ip_ma_put(im);
856}
857
David L Stevensad125832006-01-18 14:20:56 -0800858/* mark EXCLUDE-mode sources */
Al Viroea4d9e72006-09-27 18:30:52 -0700859static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct ip_sf_list *psf;
862 int i, scount;
863
864 scount = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +0800865 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (scount == nsrcs)
867 break;
Weilong Chenc71151f2013-12-23 14:37:29 +0800868 for (i = 0; i < nsrcs; i++) {
David L Stevensad125832006-01-18 14:20:56 -0800869 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +0000870 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevensad125832006-01-18 14:20:56 -0800871 pmc->sfcount[MCAST_EXCLUDE] !=
872 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +0800873 break;
David L Stevensad125832006-01-18 14:20:56 -0800874 if (srcs[i] == psf->sf_inaddr) {
875 scount++;
876 break;
877 }
878 }
879 }
880 pmc->gsquery = 0;
881 if (scount == nsrcs) /* all sources excluded */
882 return 0;
883 return 1;
884}
885
Al Viroea4d9e72006-09-27 18:30:52 -0700886static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
David L Stevensad125832006-01-18 14:20:56 -0800887{
888 struct ip_sf_list *psf;
889 int i, scount;
890
891 if (pmc->sfmode == MCAST_EXCLUDE)
892 return igmp_xmarksources(pmc, nsrcs, srcs);
893
894 /* mark INCLUDE-mode sources */
895 scount = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +0800896 for (psf = pmc->sources; psf; psf = psf->sf_next) {
David L Stevensad125832006-01-18 14:20:56 -0800897 if (scount == nsrcs)
898 break;
Weilong Chenc71151f2013-12-23 14:37:29 +0800899 for (i = 0; i < nsrcs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (srcs[i] == psf->sf_inaddr) {
901 psf->sf_gsresp = 1;
902 scount++;
903 break;
904 }
905 }
David L Stevensad125832006-01-18 14:20:56 -0800906 if (!scount) {
907 pmc->gsquery = 0;
908 return 0;
909 }
910 pmc->gsquery = 1;
911 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Eric Dumazetd679c532012-09-06 20:37:06 +0000914/* return true if packet was dropped */
915static bool igmp_heard_report(struct in_device *in_dev, __be32 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct ip_mc_list *im;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200918 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 /* Timers are only set for non-local groups */
921
922 if (group == IGMP_ALL_HOSTS)
Eric Dumazetd679c532012-09-06 20:37:06 +0000923 return false;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200924 if (ipv4_is_local_multicast(group) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100925 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000927 rcu_read_lock();
928 for_each_pmc_rcu(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (im->multiaddr == group) {
930 igmp_stop_timer(im);
931 break;
932 }
933 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000934 rcu_read_unlock();
Eric Dumazetd679c532012-09-06 20:37:06 +0000935 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Eric Dumazetd679c532012-09-06 20:37:06 +0000938/* return true if packet was dropped */
939static bool igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 int len)
941{
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300942 struct igmphdr *ih = igmp_hdr(skb);
943 struct igmpv3_query *ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 struct ip_mc_list *im;
Al Viro63007722006-09-27 18:31:32 -0700945 __be32 group = ih->group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 int max_delay;
947 int mark = 0;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200948 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950
David Stevens5b7c8402010-09-30 14:29:40 +0000951 if (len == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (ih->code == 0) {
953 /* Alas, old v1 router presents here. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900954
Fabian Frederick436f7c22014-11-04 20:52:14 +0100955 max_delay = IGMP_QUERY_RESPONSE_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 in_dev->mr_v1_seen = jiffies +
Fabian Frederick436f7c22014-11-04 20:52:14 +0100957 IGMP_V1_ROUTER_PRESENT_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 group = 0;
959 } else {
960 /* v2 router present */
961 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
962 in_dev->mr_v2_seen = jiffies +
Fabian Frederick436f7c22014-11-04 20:52:14 +0100963 IGMP_V2_ROUTER_PRESENT_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965 /* cancel the interface change timer */
966 in_dev->mr_ifc_count = 0;
967 if (del_timer(&in_dev->mr_ifc_timer))
968 __in_dev_put(in_dev);
969 /* clear deleted report items */
970 igmpv3_clear_delrec(in_dev);
971 } else if (len < 12) {
Eric Dumazetd679c532012-09-06 20:37:06 +0000972 return true; /* ignore bogus packet; freed by caller */
David Stevens5b7c8402010-09-30 14:29:40 +0000973 } else if (IGMP_V1_SEEN(in_dev)) {
974 /* This is a v3 query with v1 queriers present */
Fabian Frederick436f7c22014-11-04 20:52:14 +0100975 max_delay = IGMP_QUERY_RESPONSE_INTERVAL;
David Stevens5b7c8402010-09-30 14:29:40 +0000976 group = 0;
977 } else if (IGMP_V2_SEEN(in_dev)) {
978 /* this is a v3 query with v2 queriers present;
979 * Interpretation of the max_delay code is problematic here.
980 * A real v2 host would use ih_code directly, while v3 has a
981 * different encoding. We use the v3 encoding as more likely
982 * to be intended in a v3 query.
983 */
984 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
Ben Hutchingsa8c1f652012-01-09 14:06:46 -0800985 if (!max_delay)
986 max_delay = 1; /* can't mod w/ 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 } else { /* v3 */
988 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
Eric Dumazetd679c532012-09-06 20:37:06 +0000989 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900990
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300991 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (ih3->nsrcs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900993 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)
Al Viro63007722006-09-27 18:31:32 -0700994 + ntohs(ih3->nsrcs)*sizeof(__be32)))
Eric Dumazetd679c532012-09-06 20:37:06 +0000995 return true;
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -0300996 ih3 = igmpv3_query_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
999 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
1000 if (!max_delay)
1001 max_delay = 1; /* can't mod w/ 0 */
1002 in_dev->mr_maxdelay = max_delay;
1003 if (ih3->qrv)
1004 in_dev->mr_qrv = ih3->qrv;
1005 if (!group) { /* general query */
1006 if (ih3->nsrcs)
Daniel Borkmannb47bd8d2014-10-05 17:27:50 +02001007 return true; /* no sources allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 igmp_gq_start_timer(in_dev);
Eric Dumazetd679c532012-09-06 20:37:06 +00001009 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 /* mark sources to include, if group & source-specific */
1012 mark = ih3->nsrcs != 0;
1013 }
1014
1015 /*
1016 * - Start the timers in all of our membership records
1017 * that the query applies to for the interface on
1018 * which the query arrived excl. those that belong
1019 * to a "local" group (224.0.0.X)
1020 * - For timers already running check if they need to
1021 * be reset.
1022 * - Use the igmp->igmp_code field as the maximum
1023 * delay possible
1024 */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001025 rcu_read_lock();
1026 for_each_pmc_rcu(in_dev, im) {
David L Stevensad125832006-01-18 14:20:56 -08001027 int changed;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (group && group != im->multiaddr)
1030 continue;
1031 if (im->multiaddr == IGMP_ALL_HOSTS)
1032 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001033 if (ipv4_is_local_multicast(im->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001034 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001035 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 spin_lock_bh(&im->lock);
1037 if (im->tm_running)
1038 im->gsquery = im->gsquery && mark;
1039 else
1040 im->gsquery = mark;
David L Stevensad125832006-01-18 14:20:56 -08001041 changed = !im->gsquery ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001042 igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 spin_unlock_bh(&im->lock);
David L Stevensad125832006-01-18 14:20:56 -08001044 if (changed)
1045 igmp_mod_timer(im, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001047 rcu_read_unlock();
Eric Dumazetd679c532012-09-06 20:37:06 +00001048 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
Eric Dumazet9a57a9d2010-06-07 03:17:10 +00001051/* called in rcu_read_lock() section */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052int igmp_rcv(struct sk_buff *skb)
1053{
1054 /* This basically follows the spec line by line -- see RFC1112 */
1055 struct igmphdr *ih;
Eric Dumazet9a57a9d2010-06-07 03:17:10 +00001056 struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 int len = skb->len;
Eric Dumazetd679c532012-09-06 20:37:06 +00001058 bool dropped = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Ian Morris51456b22015-04-03 09:17:26 +01001060 if (!in_dev)
Denis V. Lunevcd557bc2008-02-09 23:22:26 -08001061 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Herbert Xufb286bb2005-11-10 13:01:24 -08001063 if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
Eric Dumazet9a57a9d2010-06-07 03:17:10 +00001064 goto drop;
Herbert Xufb286bb2005-11-10 13:01:24 -08001065
Tom Herbertde08dc12014-05-07 16:52:10 -07001066 if (skb_checksum_simple_validate(skb))
1067 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -03001069 ih = igmp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 switch (ih->type) {
1071 case IGMP_HOST_MEMBERSHIP_QUERY:
Eric Dumazetd679c532012-09-06 20:37:06 +00001072 dropped = igmp_heard_query(in_dev, skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074 case IGMP_HOST_MEMBERSHIP_REPORT:
1075 case IGMPV2_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* Is it our report looped back? */
David S. Millerc7537962010-11-11 17:07:48 -08001077 if (rt_is_output_route(skb_rtable(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
David Stevens24c69272005-12-02 20:32:59 -08001079 /* don't rely on MC router hearing unicast reports */
1080 if (skb->pkt_type == PACKET_MULTICAST ||
1081 skb->pkt_type == PACKET_BROADCAST)
Eric Dumazetd679c532012-09-06 20:37:06 +00001082 dropped = igmp_heard_report(in_dev, ih->group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 break;
1084 case IGMP_PIM:
1085#ifdef CONFIG_IP_PIMSM_V1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return pim_rcv_v1(skb);
1087#endif
Herbert Xuc6b471e2010-02-07 17:26:30 +00001088 case IGMPV3_HOST_MEMBERSHIP_REPORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 case IGMP_DVMRP:
1090 case IGMP_TRACE:
1091 case IGMP_HOST_LEAVE_MESSAGE:
1092 case IGMP_MTRACE:
1093 case IGMP_MTRACE_RESP:
1094 break;
1095 default:
Linus Torvaldsdd1c1852006-01-31 13:11:41 -08001096 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001098
Denis V. Lunevcd557bc2008-02-09 23:22:26 -08001099drop:
Eric Dumazetd679c532012-09-06 20:37:06 +00001100 if (dropped)
1101 kfree_skb(skb);
1102 else
1103 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return 0;
1105}
1106
1107#endif
1108
1109
1110/*
1111 * Add a filter to a device
1112 */
1113
Al Viro63007722006-09-27 18:31:32 -07001114static void ip_mc_filter_add(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 char buf[MAX_ADDR_LEN];
1117 struct net_device *dev = in_dev->dev;
1118
1119 /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
1120 We will get multicast token leakage, when IFF_MULTICAST
Jiri Pirkob81693d2011-08-16 06:29:02 +00001121 is changed. This check should be done in ndo_set_rx_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 routine. Something sort of:
1123 if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
1124 --ANK
1125 */
1126 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001127 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/*
1131 * Remove a filter from a device
1132 */
1133
Al Viro63007722006-09-27 18:31:32 -07001134static void ip_mc_filter_del(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 char buf[MAX_ADDR_LEN];
1137 struct net_device *dev = in_dev->dev;
1138
1139 if (arp_mc_map(addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001140 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143#ifdef CONFIG_IP_MULTICAST
1144/*
1145 * deleted ip_mc_list manipulation
1146 */
1147static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1148{
1149 struct ip_mc_list *pmc;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001150 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 /* this is an "ip_mc_list" for convenience; only the fields below
1153 * are actually used. In particular, the refcnt and users are not
1154 * used for management of the delete list. Using the same structure
1155 * for deleted items allows change reports to use common code with
1156 * non-deleted or query-response MCA's.
1157 */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001158 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (!pmc)
1160 return;
WANG Congcac2a9b2017-06-20 10:46:27 -07001161 spin_lock_init(&pmc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 spin_lock_bh(&im->lock);
1163 pmc->interface = im->interface;
1164 in_dev_hold(in_dev);
1165 pmc->multiaddr = im->multiaddr;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001166 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 pmc->sfmode = im->sfmode;
1168 if (pmc->sfmode == MCAST_INCLUDE) {
1169 struct ip_sf_list *psf;
1170
1171 pmc->tomb = im->tomb;
1172 pmc->sources = im->sources;
1173 im->tomb = im->sources = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001174 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 psf->sf_crcount = pmc->crcount;
1176 }
1177 spin_unlock_bh(&im->lock);
1178
1179 spin_lock_bh(&in_dev->mc_tomb_lock);
1180 pmc->next = in_dev->mc_tomb;
1181 in_dev->mc_tomb = pmc;
1182 spin_unlock_bh(&in_dev->mc_tomb_lock);
1183}
1184
Hangbin Liu24803f32016-11-14 16:16:28 +08001185/*
1186 * restore ip_mc_list deleted records
1187 */
1188static void igmpv3_del_delrec(struct in_device *in_dev, struct ip_mc_list *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 struct ip_mc_list *pmc, *pmc_prev;
Hangbin Liu24803f32016-11-14 16:16:28 +08001191 struct ip_sf_list *psf;
1192 struct net *net = dev_net(in_dev->dev);
1193 __be32 multiaddr = im->multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 spin_lock_bh(&in_dev->mc_tomb_lock);
1196 pmc_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001197 for (pmc = in_dev->mc_tomb; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (pmc->multiaddr == multiaddr)
1199 break;
1200 pmc_prev = pmc;
1201 }
1202 if (pmc) {
1203 if (pmc_prev)
1204 pmc_prev->next = pmc->next;
1205 else
1206 in_dev->mc_tomb = pmc->next;
1207 }
1208 spin_unlock_bh(&in_dev->mc_tomb_lock);
Hangbin Liu24803f32016-11-14 16:16:28 +08001209
1210 spin_lock_bh(&im->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (pmc) {
Hangbin Liu24803f32016-11-14 16:16:28 +08001212 im->interface = pmc->interface;
1213 im->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Hangbin Liucc403d52018-07-20 14:04:27 +08001214 if (im->sfmode == MCAST_INCLUDE) {
Hangbin Liu24803f32016-11-14 16:16:28 +08001215 im->tomb = pmc->tomb;
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001216 pmc->tomb = NULL;
1217
Hangbin Liu24803f32016-11-14 16:16:28 +08001218 im->sources = pmc->sources;
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001219 pmc->sources = NULL;
1220
Hangbin Liu24803f32016-11-14 16:16:28 +08001221 for (psf = im->sources; psf; psf = psf->sf_next)
1222 psf->sf_crcount = im->crcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 in_dev_put(pmc->interface);
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001225 kfree_pmc(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
Hangbin Liu24803f32016-11-14 16:16:28 +08001227 spin_unlock_bh(&im->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Hangbin Liu24803f32016-11-14 16:16:28 +08001230/*
1231 * flush ip_mc_list deleted records
1232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233static void igmpv3_clear_delrec(struct in_device *in_dev)
1234{
1235 struct ip_mc_list *pmc, *nextpmc;
1236
1237 spin_lock_bh(&in_dev->mc_tomb_lock);
1238 pmc = in_dev->mc_tomb;
1239 in_dev->mc_tomb = NULL;
1240 spin_unlock_bh(&in_dev->mc_tomb_lock);
1241
1242 for (; pmc; pmc = nextpmc) {
1243 nextpmc = pmc->next;
1244 ip_mc_clear_src(pmc);
1245 in_dev_put(pmc->interface);
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001246 kfree_pmc(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248 /* clear dead sources, too */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001249 rcu_read_lock();
1250 for_each_pmc_rcu(in_dev, pmc) {
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001251 struct ip_sf_list *psf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 spin_lock_bh(&pmc->lock);
1254 psf = pmc->tomb;
1255 pmc->tomb = NULL;
1256 spin_unlock_bh(&pmc->lock);
Eric Dumazet405d3bb2019-05-22 16:51:22 -07001257 ip_sf_list_clear_all(psf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001259 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261#endif
1262
1263static void igmp_group_dropped(struct ip_mc_list *im)
1264{
1265 struct in_device *in_dev = im->interface;
1266#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001267 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int reporter;
1269#endif
1270
1271 if (im->loaded) {
1272 im->loaded = 0;
1273 ip_mc_filter_del(in_dev, im->multiaddr);
1274 }
1275
1276#ifdef CONFIG_IP_MULTICAST
1277 if (im->multiaddr == IGMP_ALL_HOSTS)
1278 return;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001279 if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001280 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 reporter = im->reporter;
1283 igmp_stop_timer(im);
1284
1285 if (!in_dev->dead) {
1286 if (IGMP_V1_SEEN(in_dev))
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001287 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (IGMP_V2_SEEN(in_dev)) {
1289 if (reporter)
1290 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001291 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 /* IGMPv3 */
1294 igmpv3_add_delrec(in_dev, im);
1295
1296 igmp_ifc_event(in_dev);
1297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301static void igmp_group_added(struct ip_mc_list *im)
1302{
1303 struct in_device *in_dev = im->interface;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001304#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001305 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001306#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (im->loaded == 0) {
1309 im->loaded = 1;
1310 ip_mc_filter_add(in_dev, im->multiaddr);
1311 }
1312
1313#ifdef CONFIG_IP_MULTICAST
1314 if (im->multiaddr == IGMP_ALL_HOSTS)
1315 return;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001316 if (ipv4_is_local_multicast(im->multiaddr) && !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001317 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 if (in_dev->dead)
1320 return;
1321 if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1322 spin_lock_bh(&im->lock);
Fabian Frederick436f7c22014-11-04 20:52:14 +01001323 igmp_start_timer(im, IGMP_INITIAL_REPORT_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 spin_unlock_bh(&im->lock);
1325 return;
1326 }
1327 /* else, v3 */
1328
Nikolay Borisov165094a2016-02-08 23:29:24 +02001329 im->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 igmp_ifc_event(in_dev);
1331#endif
1332}
1333
1334
1335/*
1336 * Multicast list managers
1337 */
1338
Eric Dumazete9897072013-06-07 08:48:57 -07001339static u32 ip_mc_hash(const struct ip_mc_list *im)
1340{
Eric Dumazetc70eba72013-06-12 14:11:16 -07001341 return hash_32((__force u32)im->multiaddr, MC_HASH_SZ_LOG);
Eric Dumazete9897072013-06-07 08:48:57 -07001342}
1343
1344static void ip_mc_hash_add(struct in_device *in_dev,
1345 struct ip_mc_list *im)
1346{
1347 struct ip_mc_list __rcu **mc_hash;
1348 u32 hash;
1349
1350 mc_hash = rtnl_dereference(in_dev->mc_hash);
1351 if (mc_hash) {
1352 hash = ip_mc_hash(im);
Eric Dumazetc70eba72013-06-12 14:11:16 -07001353 im->next_hash = mc_hash[hash];
Eric Dumazete9897072013-06-07 08:48:57 -07001354 rcu_assign_pointer(mc_hash[hash], im);
1355 return;
1356 }
1357
1358 /* do not use a hash table for small number of items */
1359 if (in_dev->mc_count < 4)
1360 return;
1361
1362 mc_hash = kzalloc(sizeof(struct ip_mc_list *) << MC_HASH_SZ_LOG,
1363 GFP_KERNEL);
1364 if (!mc_hash)
1365 return;
1366
1367 for_each_pmc_rtnl(in_dev, im) {
1368 hash = ip_mc_hash(im);
Eric Dumazetc70eba72013-06-12 14:11:16 -07001369 im->next_hash = mc_hash[hash];
Eric Dumazete9897072013-06-07 08:48:57 -07001370 RCU_INIT_POINTER(mc_hash[hash], im);
1371 }
1372
1373 rcu_assign_pointer(in_dev->mc_hash, mc_hash);
1374}
1375
1376static void ip_mc_hash_remove(struct in_device *in_dev,
1377 struct ip_mc_list *im)
1378{
1379 struct ip_mc_list __rcu **mc_hash = rtnl_dereference(in_dev->mc_hash);
1380 struct ip_mc_list *aux;
1381
1382 if (!mc_hash)
1383 return;
1384 mc_hash += ip_mc_hash(im);
1385 while ((aux = rtnl_dereference(*mc_hash)) != im)
1386 mc_hash = &aux->next_hash;
1387 *mc_hash = im->next_hash;
1388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391/*
1392 * A socket has joined a multicast group on device dev.
1393 */
1394
Al Viro8f935bb2006-09-27 18:30:07 -07001395void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct ip_mc_list *im;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001398#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001399 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 ASSERT_RTNL();
1403
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001404 for_each_pmc_rtnl(in_dev, im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (im->multiaddr == addr) {
1406 im->users++;
1407 ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1408 goto out;
1409 }
1410 }
1411
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001412 im = kzalloc(sizeof(*im), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!im)
1414 goto out;
1415
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001416 im->users = 1;
1417 im->interface = in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 in_dev_hold(in_dev);
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001419 im->multiaddr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 /* initial mode is (EX, empty) */
1421 im->sfmode = MCAST_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 im->sfcount[MCAST_EXCLUDE] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 atomic_set(&im->refcnt, 1);
1424 spin_lock_init(&im->lock);
1425#ifdef CONFIG_IP_MULTICAST
Himangi Saraogi179542a2014-07-25 01:48:44 +05301426 setup_timer(&im->timer, igmp_timer_expire, (unsigned long)im);
Nikolay Borisov165094a2016-02-08 23:29:24 +02001427 im->unsolicit_count = net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428#endif
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001429
1430 im->next_rcu = in_dev->mc_list;
Rami Rosenb8bae412008-10-07 15:34:37 -07001431 in_dev->mc_count++;
Eric Dumazetcf778b02012-01-12 04:41:32 +00001432 rcu_assign_pointer(in_dev->mc_list, im);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001433
Eric Dumazete9897072013-06-07 08:48:57 -07001434 ip_mc_hash_add(in_dev, im);
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436#ifdef CONFIG_IP_MULTICAST
Hangbin Liu24803f32016-11-14 16:16:28 +08001437 igmpv3_del_delrec(in_dev, im);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438#endif
1439 igmp_group_added(im);
1440 if (!in_dev->dead)
1441 ip_rt_multicast_event(in_dev);
1442out:
1443 return;
1444}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001445EXPORT_SYMBOL(ip_mc_inc_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001447static int ip_mc_check_iphdr(struct sk_buff *skb)
1448{
1449 const struct iphdr *iph;
1450 unsigned int len;
1451 unsigned int offset = skb_network_offset(skb) + sizeof(*iph);
1452
1453 if (!pskb_may_pull(skb, offset))
1454 return -EINVAL;
1455
1456 iph = ip_hdr(skb);
1457
1458 if (iph->version != 4 || ip_hdrlen(skb) < sizeof(*iph))
1459 return -EINVAL;
1460
1461 offset += ip_hdrlen(skb) - sizeof(*iph);
1462
1463 if (!pskb_may_pull(skb, offset))
1464 return -EINVAL;
1465
1466 iph = ip_hdr(skb);
1467
1468 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
1469 return -EINVAL;
1470
1471 len = skb_network_offset(skb) + ntohs(iph->tot_len);
1472 if (skb->len < len || len < offset)
1473 return -EINVAL;
1474
1475 skb_set_transport_header(skb, offset);
1476
1477 return 0;
1478}
1479
1480static int ip_mc_check_igmp_reportv3(struct sk_buff *skb)
1481{
1482 unsigned int len = skb_transport_offset(skb);
1483
1484 len += sizeof(struct igmpv3_report);
1485
1486 return pskb_may_pull(skb, len) ? 0 : -EINVAL;
1487}
1488
1489static int ip_mc_check_igmp_query(struct sk_buff *skb)
1490{
1491 unsigned int len = skb_transport_offset(skb);
1492
1493 len += sizeof(struct igmphdr);
1494 if (skb->len < len)
1495 return -EINVAL;
1496
1497 /* IGMPv{1,2}? */
1498 if (skb->len != len) {
1499 /* or IGMPv3? */
1500 len += sizeof(struct igmpv3_query) - sizeof(struct igmphdr);
1501 if (skb->len < len || !pskb_may_pull(skb, len))
1502 return -EINVAL;
1503 }
1504
1505 /* RFC2236+RFC3376 (IGMPv2+IGMPv3) require the multicast link layer
1506 * all-systems destination addresses (224.0.0.1) for general queries
1507 */
1508 if (!igmp_hdr(skb)->group &&
1509 ip_hdr(skb)->daddr != htonl(INADDR_ALLHOSTS_GROUP))
1510 return -EINVAL;
1511
1512 return 0;
1513}
1514
1515static int ip_mc_check_igmp_msg(struct sk_buff *skb)
1516{
1517 switch (igmp_hdr(skb)->type) {
1518 case IGMP_HOST_LEAVE_MESSAGE:
1519 case IGMP_HOST_MEMBERSHIP_REPORT:
1520 case IGMPV2_HOST_MEMBERSHIP_REPORT:
1521 /* fall through */
1522 return 0;
1523 case IGMPV3_HOST_MEMBERSHIP_REPORT:
1524 return ip_mc_check_igmp_reportv3(skb);
1525 case IGMP_HOST_MEMBERSHIP_QUERY:
1526 return ip_mc_check_igmp_query(skb);
1527 default:
1528 return -ENOMSG;
1529 }
1530}
1531
1532static inline __sum16 ip_mc_validate_checksum(struct sk_buff *skb)
1533{
1534 return skb_checksum_simple_validate(skb);
1535}
1536
1537static int __ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed)
1538
1539{
1540 struct sk_buff *skb_chk;
1541 unsigned int transport_len;
1542 unsigned int len = skb_transport_offset(skb) + sizeof(struct igmphdr);
Linus Lüssinga5169932015-08-13 05:54:07 +02001543 int ret = -EINVAL;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001544
1545 transport_len = ntohs(ip_hdr(skb)->tot_len) - ip_hdrlen(skb);
1546
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001547 skb_chk = skb_checksum_trimmed(skb, transport_len,
1548 ip_mc_validate_checksum);
1549 if (!skb_chk)
Linus Lüssinga5169932015-08-13 05:54:07 +02001550 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001551
Linus Lüssinga5169932015-08-13 05:54:07 +02001552 if (!pskb_may_pull(skb_chk, len))
1553 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001554
1555 ret = ip_mc_check_igmp_msg(skb_chk);
Linus Lüssinga5169932015-08-13 05:54:07 +02001556 if (ret)
1557 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001558
1559 if (skb_trimmed)
1560 *skb_trimmed = skb_chk;
Linus Lüssinga5169932015-08-13 05:54:07 +02001561 /* free now unneeded clone */
1562 else if (skb_chk != skb)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001563 kfree_skb(skb_chk);
1564
Linus Lüssinga5169932015-08-13 05:54:07 +02001565 ret = 0;
1566
1567err:
1568 if (ret && skb_chk && skb_chk != skb)
1569 kfree_skb(skb_chk);
1570
1571 return ret;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001572}
1573
1574/**
1575 * ip_mc_check_igmp - checks whether this is a sane IGMP packet
1576 * @skb: the skb to validate
1577 * @skb_trimmed: to store an skb pointer trimmed to IPv4 packet tail (optional)
1578 *
1579 * Checks whether an IPv4 packet is a valid IGMP packet. If so sets
Linus Lüssinga5169932015-08-13 05:54:07 +02001580 * skb transport header accordingly and returns zero.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001581 *
1582 * -EINVAL: A broken packet was detected, i.e. it violates some internet
1583 * standard
1584 * -ENOMSG: IP header validation succeeded but it is not an IGMP packet.
1585 * -ENOMEM: A memory allocation failure happened.
1586 *
1587 * Optionally, an skb pointer might be provided via skb_trimmed (or set it
1588 * to NULL): After parsing an IGMP packet successfully it will point to
1589 * an skb which has its tail aligned to the IP packet end. This might
1590 * either be the originally provided skb or a trimmed, cloned version if
1591 * the skb frame had data beyond the IP packet. A cloned skb allows us
1592 * to leave the original skb and its full frame unchanged (which might be
1593 * desirable for layer 2 frame jugglers).
1594 *
Linus Lüssinga5169932015-08-13 05:54:07 +02001595 * Caller needs to set the skb network header and free any returned skb if it
1596 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02001597 */
1598int ip_mc_check_igmp(struct sk_buff *skb, struct sk_buff **skb_trimmed)
1599{
1600 int ret = ip_mc_check_iphdr(skb);
1601
1602 if (ret < 0)
1603 return ret;
1604
1605 if (ip_hdr(skb)->protocol != IPPROTO_IGMP)
1606 return -ENOMSG;
1607
1608 return __ip_mc_check_igmp(skb, skb_trimmed);
1609}
1610EXPORT_SYMBOL(ip_mc_check_igmp);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612/*
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001613 * Resend IGMP JOIN report; used by netdev notifier.
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001614 */
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001615static void ip_mc_rejoin_groups(struct in_device *in_dev)
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001616{
Geert Uytterhoeven08882662007-03-12 17:02:37 -07001617#ifdef CONFIG_IP_MULTICAST
Eric Dumazet866f3b22010-11-18 09:33:19 -08001618 struct ip_mc_list *im;
1619 int type;
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001620 struct net *net = dev_net(in_dev->dev);
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001621
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02001622 ASSERT_RTNL();
1623
1624 for_each_pmc_rtnl(in_dev, im) {
Eric Dumazet866f3b22010-11-18 09:33:19 -08001625 if (im->multiaddr == IGMP_ALL_HOSTS)
1626 continue;
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001627 if (ipv4_is_local_multicast(im->multiaddr) &&
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +02001628 !net->ipv4.sysctl_igmp_llm_reports)
Philip Downeydf2cf4a2015-08-27 16:46:26 +01001629 continue;
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001630
Eric Dumazet866f3b22010-11-18 09:33:19 -08001631 /* a failover is happening and switches
1632 * must be notified immediately
1633 */
1634 if (IGMP_V1_SEEN(in_dev))
1635 type = IGMP_HOST_MEMBERSHIP_REPORT;
1636 else if (IGMP_V2_SEEN(in_dev))
1637 type = IGMPV2_HOST_MEMBERSHIP_REPORT;
1638 else
1639 type = IGMPV3_HOST_MEMBERSHIP_REPORT;
1640 igmp_send_report(in_dev, im, type);
1641 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001642#endif
1643}
1644
1645/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 * A socket has left a multicast group on device dev
1647 */
1648
Al Viro8f935bb2006-09-27 18:30:07 -07001649void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001651 struct ip_mc_list *i;
1652 struct ip_mc_list __rcu **ip;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 ASSERT_RTNL();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001655
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001656 for (ip = &in_dev->mc_list;
1657 (i = rtnl_dereference(*ip)) != NULL;
1658 ip = &i->next_rcu) {
Jianjun Konga7e9ff72008-11-03 00:26:09 -08001659 if (i->multiaddr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (--i->users == 0) {
Eric Dumazete9897072013-06-07 08:48:57 -07001661 ip_mc_hash_remove(in_dev, i);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001662 *ip = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001663 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 igmp_group_dropped(i);
Veaceslav Falico24cf3af2011-05-23 23:15:05 +00001665 ip_mc_clear_src(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 if (!in_dev->dead)
1668 ip_rt_multicast_event(in_dev);
1669
1670 ip_ma_put(i);
1671 return;
1672 }
1673 break;
1674 }
1675 }
1676}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001677EXPORT_SYMBOL(ip_mc_dec_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Moni Shoua75c78502009-09-15 02:37:40 -07001679/* Device changing type */
1680
1681void ip_mc_unmap(struct in_device *in_dev)
1682{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001683 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001684
1685 ASSERT_RTNL();
1686
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001687 for_each_pmc_rtnl(in_dev, pmc)
1688 igmp_group_dropped(pmc);
Moni Shoua75c78502009-09-15 02:37:40 -07001689}
1690
1691void ip_mc_remap(struct in_device *in_dev)
1692{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001693 struct ip_mc_list *pmc;
Moni Shoua75c78502009-09-15 02:37:40 -07001694
1695 ASSERT_RTNL();
1696
Hangbin Liu24803f32016-11-14 16:16:28 +08001697 for_each_pmc_rtnl(in_dev, pmc) {
1698#ifdef CONFIG_IP_MULTICAST
1699 igmpv3_del_delrec(in_dev, pmc);
1700#endif
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001701 igmp_group_added(pmc);
Hangbin Liu24803f32016-11-14 16:16:28 +08001702 }
Moni Shoua75c78502009-09-15 02:37:40 -07001703}
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705/* Device going down */
1706
1707void ip_mc_down(struct in_device *in_dev)
1708{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001709 struct ip_mc_list *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 ASSERT_RTNL();
1712
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001713 for_each_pmc_rtnl(in_dev, pmc)
1714 igmp_group_dropped(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716#ifdef CONFIG_IP_MULTICAST
1717 in_dev->mr_ifc_count = 0;
1718 if (del_timer(&in_dev->mr_ifc_timer))
1719 __in_dev_put(in_dev);
1720 in_dev->mr_gq_running = 0;
1721 if (del_timer(&in_dev->mr_gq_timer))
1722 __in_dev_put(in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723#endif
1724
1725 ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1726}
1727
1728void ip_mc_init_dev(struct in_device *in_dev)
1729{
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001730#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001731 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001732#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 ASSERT_RTNL();
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735#ifdef CONFIG_IP_MULTICAST
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001736 setup_timer(&in_dev->mr_gq_timer, igmp_gq_timer_expire,
1737 (unsigned long)in_dev);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001738 setup_timer(&in_dev->mr_ifc_timer, igmp_ifc_timer_expire,
1739 (unsigned long)in_dev);
Nikolay Borisov165094a2016-02-08 23:29:24 +02001740 in_dev->mr_qrv = net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741#endif
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 spin_lock_init(&in_dev->mc_tomb_lock);
1744}
1745
1746/* Device going up */
1747
1748void ip_mc_up(struct in_device *in_dev)
1749{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001750 struct ip_mc_list *pmc;
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001751#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001752 struct net *net = dev_net(in_dev->dev);
Nikolay Borisovdcd87992016-02-15 12:11:28 +02001753#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 ASSERT_RTNL();
1756
Hannes Frederic Sowaa9fe8e22014-09-02 15:49:26 +02001757#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001758 in_dev->mr_qrv = net->ipv4.sysctl_igmp_qrv;
Hannes Frederic Sowaa9fe8e22014-09-02 15:49:26 +02001759#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1761
Hangbin Liu24803f32016-11-14 16:16:28 +08001762 for_each_pmc_rtnl(in_dev, pmc) {
1763#ifdef CONFIG_IP_MULTICAST
1764 igmpv3_del_delrec(in_dev, pmc);
1765#endif
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001766 igmp_group_added(pmc);
Hangbin Liu24803f32016-11-14 16:16:28 +08001767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
1770/*
1771 * Device is about to be destroyed: clean up.
1772 */
1773
1774void ip_mc_destroy_dev(struct in_device *in_dev)
1775{
1776 struct ip_mc_list *i;
1777
1778 ASSERT_RTNL();
1779
1780 /* Deactivate timers */
1781 ip_mc_down(in_dev);
Hangbin Liu24803f32016-11-14 16:16:28 +08001782#ifdef CONFIG_IP_MULTICAST
1783 igmpv3_clear_delrec(in_dev);
1784#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001786 while ((i = rtnl_dereference(in_dev->mc_list)) != NULL) {
1787 in_dev->mc_list = i->next_rcu;
Rami Rosenb8bae412008-10-07 15:34:37 -07001788 in_dev->mc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 ip_ma_put(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001793/* RTNL is locked */
Daniel Lezcano877aced2008-08-13 16:15:57 -07001794static struct in_device *ip_mc_find_dev(struct net *net, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct net_device *dev = NULL;
1797 struct in_device *idev = NULL;
1798
1799 if (imr->imr_ifindex) {
Daniel Lezcano877aced2008-08-13 16:15:57 -07001800 idev = inetdev_by_index(net, imr->imr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return idev;
1802 }
1803 if (imr->imr_address.s_addr) {
Eric Dumazet9e917dc2010-10-19 00:39:18 +00001804 dev = __ip_dev_find(net, imr->imr_address.s_addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (!dev)
1806 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
1808
David S. Millerb23dd4f2011-03-02 14:31:35 -08001809 if (!dev) {
David S. Miller78fbfd82011-03-12 00:00:52 -05001810 struct rtable *rt = ip_route_output(net,
1811 imr->imr_multiaddr.s_addr,
1812 0, 0, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001813 if (!IS_ERR(rt)) {
1814 dev = rt->dst.dev;
1815 ip_rt_put(rt);
1816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818 if (dev) {
1819 imr->imr_ifindex = dev->ifindex;
Herbert Xue5ed6392005-10-03 14:35:55 -07001820 idev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
1822 return idev;
1823}
1824
1825/*
1826 * Join a socket to a group
1827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
Al Viro8f935bb2006-09-27 18:30:07 -07001830 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 struct ip_sf_list *psf, *psf_prev;
1833 int rv = 0;
1834
1835 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001836 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (psf->sf_inaddr == *psfsrc)
1838 break;
1839 psf_prev = psf;
1840 }
1841 if (!psf || psf->sf_count[sfmode] == 0) {
1842 /* source filter not found, or count wrong => bug */
1843 return -ESRCH;
1844 }
1845 psf->sf_count[sfmode]--;
1846 if (psf->sf_count[sfmode] == 0) {
1847 ip_rt_multicast_event(pmc->interface);
1848 }
1849 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1850#ifdef CONFIG_IP_MULTICAST
1851 struct in_device *in_dev = pmc->interface;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001852 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853#endif
1854
1855 /* no more filters for this source */
1856 if (psf_prev)
1857 psf_prev->sf_next = psf->sf_next;
1858 else
1859 pmc->sources = psf->sf_next;
1860#ifdef CONFIG_IP_MULTICAST
1861 if (psf->sf_oldin &&
1862 !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
Nikolay Borisov165094a2016-02-08 23:29:24 +02001863 psf->sf_crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 psf->sf_next = pmc->tomb;
1865 pmc->tomb = psf;
1866 rv = 1;
1867 } else
1868#endif
1869 kfree(psf);
1870 }
1871 return rv;
1872}
1873
1874#ifndef CONFIG_IP_MULTICAST
1875#define igmp_ifc_event(x) do { } while (0)
1876#endif
1877
Al Viro8f935bb2006-09-27 18:30:07 -07001878static int ip_mc_del_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
1879 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 struct ip_mc_list *pmc;
1882 int changerec = 0;
1883 int i, err;
1884
1885 if (!in_dev)
1886 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001887 rcu_read_lock();
1888 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (*pmca == pmc->multiaddr)
1890 break;
1891 }
1892 if (!pmc) {
1893 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001894 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return -ESRCH;
1896 }
1897 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00001898 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899#ifdef CONFIG_IP_MULTICAST
1900 sf_markstate(pmc);
1901#endif
1902 if (!delta) {
1903 err = -EINVAL;
1904 if (!pmc->sfcount[sfmode])
1905 goto out_unlock;
1906 pmc->sfcount[sfmode]--;
1907 }
1908 err = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08001909 for (i = 0; i < sfcount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1911
1912 changerec |= rv > 0;
1913 if (!err && rv < 0)
1914 err = rv;
1915 }
1916 if (pmc->sfmode == MCAST_EXCLUDE &&
1917 pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1918 pmc->sfcount[MCAST_INCLUDE]) {
1919#ifdef CONFIG_IP_MULTICAST
1920 struct ip_sf_list *psf;
Nikolay Borisov165094a2016-02-08 23:29:24 +02001921 struct net *net = dev_net(in_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922#endif
1923
1924 /* filter mode change */
1925 pmc->sfmode = MCAST_INCLUDE;
1926#ifdef CONFIG_IP_MULTICAST
Nikolay Borisov165094a2016-02-08 23:29:24 +02001927 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 in_dev->mr_ifc_count = pmc->crcount;
Weilong Chenc71151f2013-12-23 14:37:29 +08001929 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 psf->sf_crcount = 0;
1931 igmp_ifc_event(pmc->interface);
1932 } else if (sf_setstate(pmc) || changerec) {
1933 igmp_ifc_event(pmc->interface);
1934#endif
1935 }
1936out_unlock:
1937 spin_unlock_bh(&pmc->lock);
1938 return err;
1939}
1940
1941/*
1942 * Add multicast single-source filter to the interface list
1943 */
1944static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
Jun Zhao5eb81e892011-11-30 06:21:04 +00001945 __be32 *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
1947 struct ip_sf_list *psf, *psf_prev;
1948
1949 psf_prev = NULL;
Weilong Chenc71151f2013-12-23 14:37:29 +08001950 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (psf->sf_inaddr == *psfsrc)
1952 break;
1953 psf_prev = psf;
1954 }
1955 if (!psf) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001956 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (!psf)
1958 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 psf->sf_inaddr = *psfsrc;
1960 if (psf_prev) {
1961 psf_prev->sf_next = psf;
1962 } else
1963 pmc->sources = psf;
1964 }
1965 psf->sf_count[sfmode]++;
1966 if (psf->sf_count[sfmode] == 1) {
1967 ip_rt_multicast_event(pmc->interface);
1968 }
1969 return 0;
1970}
1971
1972#ifdef CONFIG_IP_MULTICAST
1973static void sf_markstate(struct ip_mc_list *pmc)
1974{
1975 struct ip_sf_list *psf;
1976 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1977
Weilong Chenc71151f2013-12-23 14:37:29 +08001978 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 if (pmc->sfcount[MCAST_EXCLUDE]) {
1980 psf->sf_oldin = mca_xcount ==
1981 psf->sf_count[MCAST_EXCLUDE] &&
1982 !psf->sf_count[MCAST_INCLUDE];
1983 } else
1984 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1985}
1986
1987static int sf_setstate(struct ip_mc_list *pmc)
1988{
David L Stevensad125832006-01-18 14:20:56 -08001989 struct ip_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1991 int qrv = pmc->interface->mr_qrv;
1992 int new_in, rv;
1993
1994 rv = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08001995 for (psf = pmc->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (pmc->sfcount[MCAST_EXCLUDE]) {
1997 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1998 !psf->sf_count[MCAST_INCLUDE];
1999 } else
2000 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevensad125832006-01-18 14:20:56 -08002001 if (new_in) {
2002 if (!psf->sf_oldin) {
Al Viro76edc602006-02-01 05:54:35 -05002003 struct ip_sf_list *prev = NULL;
David L Stevensad125832006-01-18 14:20:56 -08002004
Weilong Chenc71151f2013-12-23 14:37:29 +08002005 for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next) {
David L Stevensad125832006-01-18 14:20:56 -08002006 if (dpsf->sf_inaddr == psf->sf_inaddr)
2007 break;
2008 prev = dpsf;
2009 }
2010 if (dpsf) {
2011 if (prev)
2012 prev->sf_next = dpsf->sf_next;
2013 else
2014 pmc->tomb = dpsf->sf_next;
2015 kfree(dpsf);
2016 }
2017 psf->sf_crcount = qrv;
2018 rv++;
2019 }
2020 } else if (psf->sf_oldin) {
2021
2022 psf->sf_crcount = 0;
2023 /*
2024 * add or update "delete" records if an active filter
2025 * is now inactive
2026 */
Weilong Chenc71151f2013-12-23 14:37:29 +08002027 for (dpsf = pmc->tomb; dpsf; dpsf = dpsf->sf_next)
David L Stevensad125832006-01-18 14:20:56 -08002028 if (dpsf->sf_inaddr == psf->sf_inaddr)
2029 break;
2030 if (!dpsf) {
Joe Perches3ed37a62010-05-31 17:23:21 +00002031 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevensad125832006-01-18 14:20:56 -08002032 if (!dpsf)
2033 continue;
2034 *dpsf = *psf;
2035 /* pmc->lock held by callers */
2036 dpsf->sf_next = pmc->tomb;
2037 pmc->tomb = dpsf;
2038 }
2039 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 rv++;
2041 }
2042 }
2043 return rv;
2044}
2045#endif
2046
2047/*
2048 * Add multicast source filter list to the interface list
2049 */
Al Viro8f935bb2006-09-27 18:30:07 -07002050static int ip_mc_add_src(struct in_device *in_dev, __be32 *pmca, int sfmode,
2051 int sfcount, __be32 *psfsrc, int delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
2053 struct ip_mc_list *pmc;
2054 int isexclude;
2055 int i, err;
2056
2057 if (!in_dev)
2058 return -ENODEV;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002059 rcu_read_lock();
2060 for_each_pmc_rcu(in_dev, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (*pmca == pmc->multiaddr)
2062 break;
2063 }
2064 if (!pmc) {
2065 /* MCA not found?? bug */
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002066 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return -ESRCH;
2068 }
2069 spin_lock_bh(&pmc->lock);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002070 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072#ifdef CONFIG_IP_MULTICAST
2073 sf_markstate(pmc);
2074#endif
2075 isexclude = pmc->sfmode == MCAST_EXCLUDE;
2076 if (!delta)
2077 pmc->sfcount[sfmode]++;
2078 err = 0;
Weilong Chenc71151f2013-12-23 14:37:29 +08002079 for (i = 0; i < sfcount; i++) {
Jun Zhao5eb81e892011-11-30 06:21:04 +00002080 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (err)
2082 break;
2083 }
2084 if (err) {
2085 int j;
2086
Jun Zhao685f94e62011-11-22 17:19:03 +00002087 if (!delta)
2088 pmc->sfcount[sfmode]--;
Weilong Chenc71151f2013-12-23 14:37:29 +08002089 for (j = 0; j < i; j++)
Julia Lawalla1889c02011-07-28 02:46:01 +00002090 (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
2092#ifdef CONFIG_IP_MULTICAST
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct ip_sf_list *psf;
Nikolay Borisov165094a2016-02-08 23:29:24 +02002094 struct net *net = dev_net(pmc->interface->dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002095 in_dev = pmc->interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096#endif
2097
2098 /* filter mode change */
2099 if (pmc->sfcount[MCAST_EXCLUDE])
2100 pmc->sfmode = MCAST_EXCLUDE;
2101 else if (pmc->sfcount[MCAST_INCLUDE])
2102 pmc->sfmode = MCAST_INCLUDE;
2103#ifdef CONFIG_IP_MULTICAST
2104 /* else no filters; keep old mode for reports */
2105
Nikolay Borisov165094a2016-02-08 23:29:24 +02002106 pmc->crcount = in_dev->mr_qrv ?: net->ipv4.sysctl_igmp_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 in_dev->mr_ifc_count = pmc->crcount;
Weilong Chenc71151f2013-12-23 14:37:29 +08002108 for (psf = pmc->sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 psf->sf_crcount = 0;
2110 igmp_ifc_event(in_dev);
2111 } else if (sf_setstate(pmc)) {
2112 igmp_ifc_event(in_dev);
2113#endif
2114 }
2115 spin_unlock_bh(&pmc->lock);
2116 return err;
2117}
2118
2119static void ip_mc_clear_src(struct ip_mc_list *pmc)
2120{
Eric Dumazet405d3bb2019-05-22 16:51:22 -07002121 struct ip_sf_list *tomb, *sources;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
WANG Congecd66272017-06-12 09:52:26 -07002123 spin_lock_bh(&pmc->lock);
2124 tomb = pmc->tomb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 pmc->tomb = NULL;
WANG Congecd66272017-06-12 09:52:26 -07002126 sources = pmc->sources;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 pmc->sources = NULL;
2128 pmc->sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002129 pmc->sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 pmc->sfcount[MCAST_EXCLUDE] = 1;
WANG Congecd66272017-06-12 09:52:26 -07002131 spin_unlock_bh(&pmc->lock);
2132
Eric Dumazet405d3bb2019-05-22 16:51:22 -07002133 ip_sf_list_clear_all(tomb);
2134 ip_sf_list_clear_all(sources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002137/* Join a multicast group
2138 */
2139
2140int ip_mc_join_group(struct sock *sk, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Al Viro8f935bb2006-09-27 18:30:07 -07002142 __be32 addr = imr->imr_multiaddr.s_addr;
Eric Dumazet959d10f2015-02-17 03:19:24 -08002143 struct ip_mc_socklist *iml, *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 struct in_device *in_dev;
2145 struct inet_sock *inet = inet_sk(sk);
Daniel Lezcano877aced2008-08-13 16:15:57 -07002146 struct net *net = sock_net(sk);
David L Stevensca9b9072005-07-08 17:38:07 -07002147 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 int count = 0;
Eric Dumazet959d10f2015-02-17 03:19:24 -08002149 int err;
2150
2151 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Joe Perchesf97c1e02007-12-16 13:45:43 -08002153 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return -EINVAL;
2155
Daniel Lezcano877aced2008-08-13 16:15:57 -07002156 in_dev = ip_mc_find_dev(net, imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 if (!in_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 err = -ENODEV;
2160 goto done;
2161 }
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 err = -EADDRINUSE;
David L Stevensca9b9072005-07-08 17:38:07 -07002164 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002165 for_each_pmc_rtnl(inet, i) {
David L Stevensca9b9072005-07-08 17:38:07 -07002166 if (i->multi.imr_multiaddr.s_addr == addr &&
2167 i->multi.imr_ifindex == ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 count++;
2170 }
2171 err = -ENOBUFS;
Nikolay Borisov815c5272016-02-08 23:29:21 +02002172 if (count >= net->ipv4.sysctl_igmp_max_memberships)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 goto done;
Jianjun Konga7e9ff72008-11-03 00:26:09 -08002174 iml = sock_kmalloc(sk, sizeof(*iml), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01002175 if (!iml)
David L Stevensca9b9072005-07-08 17:38:07 -07002176 goto done;
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 memcpy(&iml->multi, imr, sizeof(*imr));
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002179 iml->next_rcu = inet->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 iml->sflist = NULL;
2181 iml->sfmode = MCAST_EXCLUDE;
Eric Dumazetcf778b02012-01-12 04:41:32 +00002182 rcu_assign_pointer(inet->mc_list, iml);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 ip_mc_inc_group(in_dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return err;
2187}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002188EXPORT_SYMBOL(ip_mc_join_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
2191 struct in_device *in_dev)
2192{
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002193 struct ip_sf_socklist *psf = rtnl_dereference(iml->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 int err;
2195
Ian Morris51456b22015-04-03 09:17:26 +01002196 if (!psf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 /* any-source empty exclude case */
2198 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
2199 iml->sfmode, 0, NULL, 0);
2200 }
2201 err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002202 iml->sfmode, psf->sl_count, psf->sl_addr, 0);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002203 RCU_INIT_POINTER(iml->sflist, NULL);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002204 /* decrease mem now to avoid the memleak warning */
2205 atomic_sub(IP_SFLSIZE(psf->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002206 kfree_rcu(psf, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return err;
2208}
2209
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002210int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 struct inet_sock *inet = inet_sk(sk);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002213 struct ip_mc_socklist *iml;
2214 struct ip_mc_socklist __rcu **imlp;
David L Stevens84b42ba2005-07-08 17:48:38 -07002215 struct in_device *in_dev;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002216 struct net *net = sock_net(sk);
Al Viro8f935bb2006-09-27 18:30:07 -07002217 __be32 group = imr->imr_multiaddr.s_addr;
David L Stevens84b42ba2005-07-08 17:48:38 -07002218 u32 ifindex;
David L Stevensacd6e002006-08-17 16:27:39 -07002219 int ret = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Eric Dumazet959d10f2015-02-17 03:19:24 -08002221 ASSERT_RTNL();
2222
Daniel Lezcano877aced2008-08-13 16:15:57 -07002223 in_dev = ip_mc_find_dev(net, imr);
Andrew Lunn4eba7bb2015-12-01 16:31:08 +01002224 if (!imr->imr_ifindex && !imr->imr_address.s_addr && !in_dev) {
dingtianhong52ad3532014-07-02 13:50:48 +08002225 ret = -ENODEV;
2226 goto out;
2227 }
David L Stevens84b42ba2005-07-08 17:48:38 -07002228 ifindex = imr->imr_ifindex;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002229 for (imlp = &inet->mc_list;
2230 (iml = rtnl_dereference(*imlp)) != NULL;
2231 imlp = &iml->next_rcu) {
David L Stevensacd6e002006-08-17 16:27:39 -07002232 if (iml->multi.imr_multiaddr.s_addr != group)
2233 continue;
2234 if (ifindex) {
2235 if (iml->multi.imr_ifindex != ifindex)
2236 continue;
2237 } else if (imr->imr_address.s_addr && imr->imr_address.s_addr !=
2238 iml->multi.imr_address.s_addr)
2239 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
David L Stevensacd6e002006-08-17 16:27:39 -07002241 (void) ip_mc_leave_src(sk, iml, in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002243 *imlp = iml->next_rcu;
David L Stevensacd6e002006-08-17 16:27:39 -07002244
Andrew Lunn4eba7bb2015-12-01 16:31:08 +01002245 if (in_dev)
2246 ip_mc_dec_group(in_dev, group);
Eric Dumazet959d10f2015-02-17 03:19:24 -08002247
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002248 /* decrease mem now to avoid the memleak warning */
2249 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
Lai Jiangshan10d50e72011-03-18 11:45:08 +08002250 kfree_rcu(iml, rcu);
David L Stevensacd6e002006-08-17 16:27:39 -07002251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
dingtianhong52ad3532014-07-02 13:50:48 +08002253out:
Eric Dumazet959d10f2015-02-17 03:19:24 -08002254 return ret;
2255}
stephen hemminger193ba922012-10-01 12:32:34 +00002256EXPORT_SYMBOL(ip_mc_leave_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258int ip_mc_source(int add, int omode, struct sock *sk, struct
2259 ip_mreq_source *mreqs, int ifindex)
2260{
2261 int err;
2262 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002263 __be32 addr = mreqs->imr_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 struct ip_mc_socklist *pmc;
2265 struct in_device *in_dev = NULL;
2266 struct inet_sock *inet = inet_sk(sk);
2267 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002268 struct net *net = sock_net(sk);
David L Stevens8cdaaa12005-07-08 17:39:23 -07002269 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 int i, j, rv;
2271
Joe Perchesf97c1e02007-12-16 13:45:43 -08002272 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return -EINVAL;
2274
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002275 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
2278 imr.imr_address.s_addr = mreqs->imr_interface;
2279 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002280 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 if (!in_dev) {
2283 err = -ENODEV;
2284 goto done;
2285 }
2286 err = -EADDRNOTAVAIL;
2287
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002288 for_each_pmc_rtnl(inet, pmc) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002289 if ((pmc->multi.imr_multiaddr.s_addr ==
2290 imr.imr_multiaddr.s_addr) &&
2291 (pmc->multi.imr_ifindex == imr.imr_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 break;
2293 }
David L Stevens917f2f12005-07-08 17:45:16 -07002294 if (!pmc) { /* must have a prior join */
2295 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 /* if a source filter was set, must be the same mode as before */
2299 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -07002300 if (pmc->sfmode != omode) {
2301 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 } else if (pmc->sfmode != omode) {
2305 /* allow mode switches for empty-set filters */
2306 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002307 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 NULL, 0);
2309 pmc->sfmode = omode;
2310 }
2311
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002312 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (!add) {
2314 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -07002315 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 rv = !0;
Weilong Chenc71151f2013-12-23 14:37:29 +08002317 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002319 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (rv == 0)
2321 break;
2322 }
2323 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -07002324 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
David L Stevens8cdaaa12005-07-08 17:39:23 -07002326 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2327 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
2328 leavegroup = 1;
2329 goto done;
2330 }
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /* update the interface filter */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002333 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 &mreqs->imr_sourceaddr, 1);
2335
Weilong Chenc71151f2013-12-23 14:37:29 +08002336 for (j = i+1; j < psl->sl_count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 psl->sl_addr[j-1] = psl->sl_addr[j];
2338 psl->sl_count--;
2339 err = 0;
2340 goto done;
2341 }
2342 /* else, add a new source to the filter */
2343
Nikolay Borisov166b6b22016-02-08 23:29:22 +02002344 if (psl && psl->sl_count >= net->ipv4.sysctl_igmp_max_msf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 err = -ENOBUFS;
2346 goto done;
2347 }
2348 if (!psl || psl->sl_count == psl->sl_max) {
2349 struct ip_sf_socklist *newpsl;
2350 int count = IP_SFBLOCK;
2351
2352 if (psl)
2353 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002354 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (!newpsl) {
2356 err = -ENOBUFS;
2357 goto done;
2358 }
2359 newpsl->sl_max = count;
2360 newpsl->sl_count = count - IP_SFBLOCK;
2361 if (psl) {
Weilong Chenc71151f2013-12-23 14:37:29 +08002362 for (i = 0; i < psl->sl_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 newpsl->sl_addr[i] = psl->sl_addr[i];
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002364 /* decrease mem now to avoid the memleak warning */
2365 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002366 kfree_rcu(psl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
Eric Dumazetcf778b02012-01-12 04:41:32 +00002368 rcu_assign_pointer(pmc->sflist, newpsl);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002369 psl = newpsl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
2371 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
Weilong Chenc71151f2013-12-23 14:37:29 +08002372 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
Al Viro63007722006-09-27 18:31:32 -07002374 sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (rv == 0)
2376 break;
2377 }
2378 if (rv == 0) /* address already there is an error */
2379 goto done;
Weilong Chenc71151f2013-12-23 14:37:29 +08002380 for (j = psl->sl_count-1; j >= i; j--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 psl->sl_addr[j+1] = psl->sl_addr[j];
2382 psl->sl_addr[i] = mreqs->imr_sourceaddr;
2383 psl->sl_count++;
2384 err = 0;
2385 /* update the interface list */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002386 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 &mreqs->imr_sourceaddr, 1);
2388done:
David L Stevens8cdaaa12005-07-08 17:39:23 -07002389 if (leavegroup)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002390 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 return err;
2392}
2393
2394int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
2395{
David L Stevens9951f032005-07-08 17:47:28 -07002396 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002398 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 struct ip_mc_socklist *pmc;
2400 struct in_device *in_dev;
2401 struct inet_sock *inet = inet_sk(sk);
2402 struct ip_sf_socklist *newpsl, *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002403 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -07002404 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Joe Perchesf97c1e02007-12-16 13:45:43 -08002406 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 return -EINVAL;
2408 if (msf->imsf_fmode != MCAST_INCLUDE &&
2409 msf->imsf_fmode != MCAST_EXCLUDE)
2410 return -EINVAL;
2411
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -03002412 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2415 imr.imr_address.s_addr = msf->imsf_interface;
2416 imr.imr_ifindex = ifindex;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002417 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 if (!in_dev) {
2420 err = -ENODEV;
2421 goto done;
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
David L Stevens9951f032005-07-08 17:47:28 -07002424 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
2425 if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
2426 leavegroup = 1;
2427 goto done;
2428 }
2429
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002430 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2432 pmc->multi.imr_ifindex == imr.imr_ifindex)
2433 break;
2434 }
David L Stevens917f2f12005-07-08 17:45:16 -07002435 if (!pmc) { /* must have a prior join */
2436 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -07002438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (msf->imsf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002440 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
2441 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (!newpsl) {
2443 err = -ENOBUFS;
2444 goto done;
2445 }
2446 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2447 memcpy(newpsl->sl_addr, msf->imsf_slist,
2448 msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2449 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2450 msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2451 if (err) {
2452 sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2453 goto done;
2454 }
Yan Zheng8713dbf2005-10-28 08:02:08 +08002455 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +08002457 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2458 msf->imsf_fmode, 0, NULL, 0);
2459 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002460 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (psl) {
2462 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2463 psl->sl_count, psl->sl_addr, 0);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002464 /* decrease mem now to avoid the memleak warning */
2465 atomic_sub(IP_SFLSIZE(psl->sl_max), &sk->sk_omem_alloc);
Lai Jiangshan7519cce2011-03-18 11:44:46 +08002466 kfree_rcu(psl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 } else
2468 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2469 0, NULL, 0);
Eric Dumazetcf778b02012-01-12 04:41:32 +00002470 rcu_assign_pointer(pmc->sflist, newpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 pmc->sfmode = msf->imsf_fmode;
David L Stevens917f2f12005-07-08 17:45:16 -07002472 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473done:
David L Stevens9951f032005-07-08 17:47:28 -07002474 if (leavegroup)
2475 err = ip_mc_leave_group(sk, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return err;
2477}
2478
2479int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2480 struct ip_msfilter __user *optval, int __user *optlen)
2481{
2482 int err, len, count, copycount;
2483 struct ip_mreqn imr;
Al Viro63007722006-09-27 18:31:32 -07002484 __be32 addr = msf->imsf_multiaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 struct ip_mc_socklist *pmc;
2486 struct in_device *in_dev;
2487 struct inet_sock *inet = inet_sk(sk);
2488 struct ip_sf_socklist *psl;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002489 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
WANG Cong87e9f032015-11-03 15:41:16 -08002491 ASSERT_RTNL();
2492
Joe Perchesf97c1e02007-12-16 13:45:43 -08002493 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 return -EINVAL;
2495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2497 imr.imr_address.s_addr = msf->imsf_interface;
2498 imr.imr_ifindex = 0;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002499 in_dev = ip_mc_find_dev(net, &imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 if (!in_dev) {
2502 err = -ENODEV;
2503 goto done;
2504 }
2505 err = -EADDRNOTAVAIL;
2506
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002507 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2509 pmc->multi.imr_ifindex == imr.imr_ifindex)
2510 break;
2511 }
2512 if (!pmc) /* must have a prior join */
2513 goto done;
2514 msf->imsf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002515 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 if (!psl) {
2517 len = 0;
2518 count = 0;
2519 } else {
2520 count = psl->sl_count;
2521 }
2522 copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2523 len = copycount * sizeof(psl->sl_addr[0]);
2524 msf->imsf_numsrc = count;
2525 if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2526 copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2527 return -EFAULT;
2528 }
2529 if (len &&
2530 copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2531 return -EFAULT;
2532 return 0;
2533done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 return err;
2535}
2536
2537int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2538 struct group_filter __user *optval, int __user *optlen)
2539{
2540 int err, i, count, copycount;
2541 struct sockaddr_in *psin;
Al Viro63007722006-09-27 18:31:32 -07002542 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 struct ip_mc_socklist *pmc;
2544 struct inet_sock *inet = inet_sk(sk);
2545 struct ip_sf_socklist *psl;
2546
WANG Cong87e9f032015-11-03 15:41:16 -08002547 ASSERT_RTNL();
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 psin = (struct sockaddr_in *)&gsf->gf_group;
2550 if (psin->sin_family != AF_INET)
2551 return -EINVAL;
2552 addr = psin->sin_addr.s_addr;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002553 if (!ipv4_is_multicast(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 return -EINVAL;
2555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 err = -EADDRNOTAVAIL;
2557
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002558 for_each_pmc_rtnl(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2560 pmc->multi.imr_ifindex == gsf->gf_interface)
2561 break;
2562 }
2563 if (!pmc) /* must have a prior join */
2564 goto done;
2565 gsf->gf_fmode = pmc->sfmode;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002566 psl = rtnl_dereference(pmc->sflist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 count = psl ? psl->sl_count : 0;
2568 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2569 gsf->gf_numsrc = count;
2570 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2571 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2572 return -EFAULT;
2573 }
Weilong Chenc71151f2013-12-23 14:37:29 +08002574 for (i = 0; i < copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 struct sockaddr_storage ss;
2576
2577 psin = (struct sockaddr_in *)&ss;
2578 memset(&ss, 0, sizeof(ss));
2579 psin->sin_family = AF_INET;
2580 psin->sin_addr.s_addr = psl->sl_addr[i];
2581 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2582 return -EFAULT;
2583 }
2584 return 0;
2585done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return err;
2587}
2588
2589/*
2590 * check if a multicast source filter allows delivery for a given <src,dst,intf>
2591 */
Al Viroc0cda062006-09-27 18:31:10 -07002592int ip_mc_sf_allow(struct sock *sk, __be32 loc_addr, __be32 rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
2594 struct inet_sock *inet = inet_sk(sk);
2595 struct ip_mc_socklist *pmc;
2596 struct ip_sf_socklist *psl;
2597 int i;
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002598 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002600 ret = 1;
Joe Perchesf97c1e02007-12-16 13:45:43 -08002601 if (!ipv4_is_multicast(loc_addr))
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002604 rcu_read_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002605 for_each_pmc_rcu(inet, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2607 pmc->multi.imr_ifindex == dif)
2608 break;
2609 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002610 ret = inet->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (!pmc)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002612 goto unlock;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002613 psl = rcu_dereference(pmc->sflist);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002614 ret = (pmc->sfmode == MCAST_EXCLUDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (!psl)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002616 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Weilong Chenc71151f2013-12-23 14:37:29 +08002618 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 if (psl->sl_addr[i] == rmt_addr)
2620 break;
2621 }
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002622 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002624 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002626 goto unlock;
2627 ret = 1;
2628unlock:
2629 rcu_read_unlock();
2630out:
2631 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
2633
2634/*
2635 * A socket is closing.
2636 */
2637
2638void ip_mc_drop_socket(struct sock *sk)
2639{
2640 struct inet_sock *inet = inet_sk(sk);
2641 struct ip_mc_socklist *iml;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002642 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Ian Morris51456b22015-04-03 09:17:26 +01002644 if (!inet->mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return;
2646
2647 rtnl_lock();
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002648 while ((iml = rtnl_dereference(inet->mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002651 inet->mc_list = iml->next_rcu;
Daniel Lezcano877aced2008-08-13 16:15:57 -07002652 in_dev = inetdev_by_index(net, iml->multi.imr_ifindex);
Michal Ruzickabb699cbc2006-08-15 00:20:17 -07002653 (void) ip_mc_leave_src(sk, iml, in_dev);
Ian Morris00db4122015-04-03 09:17:27 +01002654 if (in_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
Flavio Leitnerc85bb412010-02-02 07:32:29 -08002656 /* decrease mem now to avoid the memleak warning */
2657 atomic_sub(sizeof(*iml), &sk->sk_omem_alloc);
Lai Jiangshan10d50e72011-03-18 11:45:08 +08002658 kfree_rcu(iml, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 }
2660 rtnl_unlock();
2661}
2662
David S. Millerdbdd9a52011-03-10 16:34:38 -08002663/* called with rcu_read_lock() */
Alexander Duyck2094acb2015-09-28 11:10:31 -07002664int ip_check_mc_rcu(struct in_device *in_dev, __be32 mc_addr, __be32 src_addr, u8 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 struct ip_mc_list *im;
Eric Dumazete9897072013-06-07 08:48:57 -07002667 struct ip_mc_list __rcu **mc_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 struct ip_sf_list *psf;
2669 int rv = 0;
2670
Eric Dumazete9897072013-06-07 08:48:57 -07002671 mc_hash = rcu_dereference(in_dev->mc_hash);
2672 if (mc_hash) {
Eric Dumazetc70eba72013-06-12 14:11:16 -07002673 u32 hash = hash_32((__force u32)mc_addr, MC_HASH_SZ_LOG);
Eric Dumazete9897072013-06-07 08:48:57 -07002674
2675 for (im = rcu_dereference(mc_hash[hash]);
2676 im != NULL;
2677 im = rcu_dereference(im->next_hash)) {
2678 if (im->multiaddr == mc_addr)
2679 break;
2680 }
2681 } else {
2682 for_each_pmc_rcu(in_dev, im) {
2683 if (im->multiaddr == mc_addr)
2684 break;
2685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
2687 if (im && proto == IPPROTO_IGMP) {
2688 rv = 1;
2689 } else if (im) {
2690 if (src_addr) {
Weilong Chenc71151f2013-12-23 14:37:29 +08002691 for (psf = im->sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 if (psf->sf_inaddr == src_addr)
2693 break;
2694 }
2695 if (psf)
2696 rv = psf->sf_count[MCAST_INCLUDE] ||
2697 psf->sf_count[MCAST_EXCLUDE] !=
2698 im->sfcount[MCAST_EXCLUDE];
2699 else
2700 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2701 } else
2702 rv = 1; /* unspecified source; tentatively allow */
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 return rv;
2705}
2706
2707#if defined(CONFIG_PROC_FS)
2708struct igmp_mc_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002709 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 struct net_device *dev;
2711 struct in_device *in_dev;
2712};
2713
2714#define igmp_mc_seq_private(seq) ((struct igmp_mc_iter_state *)(seq)->private)
2715
2716static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2717{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002718 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 struct ip_mc_list *im = NULL;
2720 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2721
Pavel Emelianov7562f872007-05-03 15:13:45 -07002722 state->in_dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002723 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct in_device *in_dev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002725
2726 in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 if (!in_dev)
2728 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002729 im = rcu_dereference(in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 if (im) {
2731 state->in_dev = in_dev;
2732 break;
2733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 }
2735 return im;
2736}
2737
2738static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2739{
2740 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet6baff152009-11-11 17:48:52 +00002741
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002742 im = rcu_dereference(im->next_rcu);
2743 while (!im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002744 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (!state->dev) {
2746 state->in_dev = NULL;
2747 break;
2748 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002749 state->in_dev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (!state->in_dev)
2751 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002752 im = rcu_dereference(state->in_dev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
2754 return im;
2755}
2756
2757static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2758{
2759 struct ip_mc_list *im = igmp_mc_get_first(seq);
2760 if (im)
2761 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2762 --pos;
2763 return pos ? NULL : im;
2764}
2765
2766static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002767 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
stephen hemminger61fbab72009-11-10 07:54:55 +00002769 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2771}
2772
2773static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2774{
2775 struct ip_mc_list *im;
2776 if (v == SEQ_START_TOKEN)
2777 im = igmp_mc_get_first(seq);
2778 else
2779 im = igmp_mc_get_next(seq, v);
2780 ++*pos;
2781 return im;
2782}
2783
2784static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002785 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
2787 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002788
2789 state->in_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002791 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2795{
2796 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002797 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
2799 else {
2800 struct ip_mc_list *im = (struct ip_mc_list *)v;
2801 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2802 char *querier;
Eric Dumazeta399a802012-08-08 21:13:53 +00002803 long delta;
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805#ifdef CONFIG_IP_MULTICAST
2806 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2807 IGMP_V2_SEEN(state->in_dev) ? "V2" :
2808 "V3";
2809#else
2810 querier = "NONE";
2811#endif
2812
Andreea-Cristina Bernate6b68882014-08-17 15:49:41 +03002813 if (rcu_access_pointer(state->in_dev->mc_list) == im) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 seq_printf(seq, "%d\t%-10s: %5d %7s\n",
Rami Rosenb8bae412008-10-07 15:34:37 -07002815 state->dev->ifindex, state->dev->name, state->in_dev->mc_count, querier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
2817
Eric Dumazeta399a802012-08-08 21:13:53 +00002818 delta = im->timer.expires - jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 seq_printf(seq,
Alexey Dobriyan338fcf92006-06-05 21:04:39 -07002820 "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 im->multiaddr, im->users,
Eric Dumazeta399a802012-08-08 21:13:53 +00002822 im->tm_running,
2823 im->tm_running ? jiffies_delta_to_clock_t(delta) : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 im->reporter);
2825 }
2826 return 0;
2827}
2828
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002829static const struct seq_operations igmp_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 .start = igmp_mc_seq_start,
2831 .next = igmp_mc_seq_next,
2832 .stop = igmp_mc_seq_stop,
2833 .show = igmp_mc_seq_show,
2834};
2835
2836static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2837{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002838 return seq_open_net(inode, file, &igmp_mc_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002839 sizeof(struct igmp_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840}
2841
Arjan van de Ven9a321442007-02-12 00:55:35 -08002842static const struct file_operations igmp_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 .owner = THIS_MODULE,
2844 .open = igmp_mc_seq_open,
2845 .read = seq_read,
2846 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002847 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848};
2849
2850struct igmp_mcf_iter_state {
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002851 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 struct net_device *dev;
2853 struct in_device *idev;
2854 struct ip_mc_list *im;
2855};
2856
2857#define igmp_mcf_seq_private(seq) ((struct igmp_mcf_iter_state *)(seq)->private)
2858
2859static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2860{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002861 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 struct ip_sf_list *psf = NULL;
2863 struct ip_mc_list *im = NULL;
2864 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2865
Pavel Emelianov7562f872007-05-03 15:13:45 -07002866 state->idev = NULL;
2867 state->im = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002868 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct in_device *idev;
Eric Dumazet6baff152009-11-11 17:48:52 +00002870 idev = __in_dev_get_rcu(state->dev);
Ian Morris51456b22015-04-03 09:17:26 +01002871 if (unlikely(!idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002873 im = rcu_dereference(idev->mc_list);
Ian Morris00db4122015-04-03 09:17:27 +01002874 if (likely(im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 spin_lock_bh(&im->lock);
2876 psf = im->sources;
Ian Morris00db4122015-04-03 09:17:27 +01002877 if (likely(psf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 state->im = im;
2879 state->idev = idev;
2880 break;
2881 }
2882 spin_unlock_bh(&im->lock);
2883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 }
2885 return psf;
2886}
2887
2888static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2889{
2890 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2891
2892 psf = psf->sf_next;
2893 while (!psf) {
2894 spin_unlock_bh(&state->im->lock);
2895 state->im = state->im->next;
2896 while (!state->im) {
Eric Dumazet6baff152009-11-11 17:48:52 +00002897 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (!state->dev) {
2899 state->idev = NULL;
2900 goto out;
2901 }
Eric Dumazet6baff152009-11-11 17:48:52 +00002902 state->idev = __in_dev_get_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (!state->idev)
2904 continue;
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002905 state->im = rcu_dereference(state->idev->mc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907 if (!state->im)
2908 break;
2909 spin_lock_bh(&state->im->lock);
2910 psf = state->im->sources;
2911 }
2912out:
2913 return psf;
2914}
2915
2916static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2917{
2918 struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2919 if (psf)
2920 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2921 --pos;
2922 return pos ? NULL : psf;
2923}
2924
2925static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger61fbab72009-11-10 07:54:55 +00002926 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
stephen hemminger61fbab72009-11-10 07:54:55 +00002928 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2930}
2931
2932static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2933{
2934 struct ip_sf_list *psf;
2935 if (v == SEQ_START_TOKEN)
2936 psf = igmp_mcf_get_first(seq);
2937 else
2938 psf = igmp_mcf_get_next(seq, v);
2939 ++*pos;
2940 return psf;
2941}
2942
2943static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
stephen hemminger61fbab72009-11-10 07:54:55 +00002944 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
Ian Morris00db4122015-04-03 09:17:27 +01002947 if (likely(state->im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 spin_unlock_bh(&state->im->lock);
2949 state->im = NULL;
2950 }
Eric Dumazet1d7138d2010-11-12 05:46:50 +00002951 state->idev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 state->dev = NULL;
stephen hemminger61fbab72009-11-10 07:54:55 +00002953 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
2956static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2957{
2958 struct ip_sf_list *psf = (struct ip_sf_list *)v;
2959 struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2960
2961 if (v == SEQ_START_TOKEN) {
Joe Perches1744bea2014-11-04 15:37:03 -08002962 seq_puts(seq, "Idx Device MCA SRC INC EXC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 } else {
2964 seq_printf(seq,
2965 "%3d %6.6s 0x%08x "
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002966 "0x%08x %6lu %6lu\n",
2967 state->dev->ifindex, state->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 ntohl(state->im->multiaddr),
2969 ntohl(psf->sf_inaddr),
2970 psf->sf_count[MCAST_INCLUDE],
2971 psf->sf_count[MCAST_EXCLUDE]);
2972 }
2973 return 0;
2974}
2975
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002976static const struct seq_operations igmp_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 .start = igmp_mcf_seq_start,
2978 .next = igmp_mcf_seq_next,
2979 .stop = igmp_mcf_seq_stop,
2980 .show = igmp_mcf_seq_show,
2981};
2982
2983static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2984{
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002985 return seq_open_net(inode, file, &igmp_mcf_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002986 sizeof(struct igmp_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987}
2988
Arjan van de Ven9a321442007-02-12 00:55:35 -08002989static const struct file_operations igmp_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 .owner = THIS_MODULE,
2991 .open = igmp_mcf_seq_open,
2992 .read = seq_read,
2993 .llseek = seq_lseek,
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002994 .release = seq_release_net,
2995};
2996
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002997static int __net_init igmp_net_init(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08002998{
2999 struct proc_dir_entry *pde;
Madhu Challa93a714d2015-02-25 09:58:35 -08003000 int err;
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003001
Gao fengd4beaa62013-02-18 01:34:54 +00003002 pde = proc_create("igmp", S_IRUGO, net->proc_net, &igmp_mc_seq_fops);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003003 if (!pde)
3004 goto out_igmp;
Gao fengd4beaa62013-02-18 01:34:54 +00003005 pde = proc_create("mcfilter", S_IRUGO, net->proc_net,
3006 &igmp_mcf_seq_fops);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003007 if (!pde)
3008 goto out_mcfilter;
Madhu Challa93a714d2015-02-25 09:58:35 -08003009 err = inet_ctl_sock_create(&net->ipv4.mc_autojoin_sk, AF_INET,
3010 SOCK_DGRAM, 0, net);
3011 if (err < 0) {
3012 pr_err("Failed to initialize the IGMP autojoin socket (err %d)\n",
3013 err);
3014 goto out_sock;
3015 }
3016
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003017 return 0;
3018
Madhu Challa93a714d2015-02-25 09:58:35 -08003019out_sock:
3020 remove_proc_entry("mcfilter", net->proc_net);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003021out_mcfilter:
Gao fengece31ff2013-02-18 01:34:56 +00003022 remove_proc_entry("igmp", net->proc_net);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003023out_igmp:
3024 return -ENOMEM;
3025}
3026
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003027static void __net_exit igmp_net_exit(struct net *net)
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003028{
Gao fengece31ff2013-02-18 01:34:56 +00003029 remove_proc_entry("mcfilter", net->proc_net);
3030 remove_proc_entry("igmp", net->proc_net);
Madhu Challa93a714d2015-02-25 09:58:35 -08003031 inet_ctl_sock_destroy(net->ipv4.mc_autojoin_sk);
Alexey Dobriyan7091e722008-12-25 16:42:51 -08003032}
3033
3034static struct pernet_operations igmp_net_ops = {
3035 .init = igmp_net_init,
3036 .exit = igmp_net_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037};
WANG Cong72c1d3b2014-01-10 16:09:45 -08003038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02003040static int igmp_netdev_event(struct notifier_block *this,
3041 unsigned long event, void *ptr)
3042{
3043 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3044 struct in_device *in_dev;
3045
3046 switch (event) {
3047 case NETDEV_RESEND_IGMP:
3048 in_dev = __in_dev_get_rtnl(dev);
3049 if (in_dev)
3050 ip_mc_rejoin_groups(in_dev);
3051 break;
3052 default:
3053 break;
3054 }
3055 return NOTIFY_DONE;
3056}
3057
3058static struct notifier_block igmp_notifier = {
3059 .notifier_call = igmp_netdev_event,
3060};
3061
WANG Cong72c1d3b2014-01-10 16:09:45 -08003062int __init igmp_mc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
WANG Cong72c1d3b2014-01-10 16:09:45 -08003064#if defined(CONFIG_PROC_FS)
Jiri Pirko4aa5dee2013-07-20 12:13:53 +02003065 int err;
3066
3067 err = register_pernet_subsys(&igmp_net_ops);
3068 if (err)
3069 return err;
3070 err = register_netdevice_notifier(&igmp_notifier);
3071 if (err)
3072 goto reg_notif_fail;
3073 return 0;
3074
3075reg_notif_fail:
3076 unregister_pernet_subsys(&igmp_net_ops);
3077 return err;
WANG Cong72c1d3b2014-01-10 16:09:45 -08003078#else
3079 return register_netdevice_notifier(&igmp_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080#endif
WANG Cong72c1d3b2014-01-10 16:09:45 -08003081}