blob: 7e12d211415889d86aa8d8ff2a3043377691a605 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Multicast support for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09009 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12/* Changes:
13 *
14 * yoshfuji : fix format of router-alert option
15 * YOSHIFUJI Hideaki @USAGI:
16 * Fixed source address for MLD message based on
17 * <draft-ietf-magma-mld-source-05.txt>.
18 * YOSHIFUJI Hideaki @USAGI:
19 * - Ignore Queries for invalid addresses.
20 * - MLD for link-local addresses.
21 * David L Stevens <dlstevens@us.ibm.com>:
22 * - MLDv2 support
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/errno.h>
27#include <linux/types.h>
28#include <linux/string.h>
29#include <linux/socket.h>
30#include <linux/sockios.h>
31#include <linux/jiffies.h>
32#include <linux/times.h>
33#include <linux/net.h>
34#include <linux/in.h>
35#include <linux/in6.h>
36#include <linux/netdevice.h>
37#include <linux/if_arp.h>
38#include <linux/route.h>
39#include <linux/init.h>
40#include <linux/proc_fs.h>
41#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +020043#include <linux/pkt_sched.h>
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090044#include <net/mld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/netfilter.h>
47#include <linux/netfilter_ipv6.h>
48
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020049#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <net/sock.h>
51#include <net/snmp.h>
52
53#include <net/ipv6.h>
54#include <net/protocol.h>
55#include <net/if_inet6.h>
56#include <net/ndisc.h>
57#include <net/addrconf.h>
58#include <net/ip6_route.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070059#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#include <net/ip6_checksum.h>
62
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090063/* Ensure that we have struct in6_addr aligned on 32bit word. */
Masahiro Yamada32b395a2018-02-06 15:40:35 -080064static int __mld2_query_bugs[] __attribute__((__unused__)) = {
65 BUILD_BUG_ON_ZERO(offsetof(struct mld2_query, mld2q_srcs) % 4),
66 BUILD_BUG_ON_ZERO(offsetof(struct mld2_report, mld2r_grec) % 4),
67 BUILD_BUG_ON_ZERO(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void igmp6_join_group(struct ifmcaddr6 *ma);
73static void igmp6_leave_group(struct ifmcaddr6 *ma);
Kees Cooke99e88a2017-10-16 14:43:17 -070074static void igmp6_timer_handler(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Kees Cooke99e88a2017-10-16 14:43:17 -070076static void mld_gq_timer_expire(struct timer_list *t);
77static void mld_ifc_timer_expire(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static void mld_ifc_event(struct inet6_dev *idev);
79static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Hangbin Liu1666d492017-01-12 21:19:37 +080080static void mld_del_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static void mld_clear_delrec(struct inet6_dev *idev);
Daniel Borkmann6c567b72013-09-04 00:19:38 +020082static bool mld_in_v1_mode(const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int sf_setstate(struct ifmcaddr6 *pmc);
84static void sf_markstate(struct ifmcaddr6 *pmc);
85static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000086static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
87 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000089static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
90 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int delta);
92static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
93 struct inet6_dev *idev);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +080094static int __ipv6_dev_mc_inc(struct net_device *dev,
95 const struct in6_addr *addr, unsigned int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define MLD_QRV_DEFAULT 2
Daniel Borkmann89225d12013-09-04 00:19:37 +020098/* RFC3810, 9.2. Query Interval */
99#define MLD_QI_DEFAULT (125 * HZ)
100/* RFC3810, 9.3. Query Response Interval */
101#define MLD_QRI_DEFAULT (10 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Daniel Borkmann9fd07842013-08-20 12:22:02 +0200103/* RFC3810, 8.1 Query Version Distinctions */
104#define MLD_V1_QUERY_LEN 24
105#define MLD_V2_QUERY_LEN_MIN 28
106
David L Stevens6f4353d2005-12-26 17:03:46 -0800107#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Brian Haleyab32ea52006-09-22 14:15:41 -0700109int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200110int sysctl_mld_qrv __read_mostly = MLD_QRV_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/*
113 * socket join on multicast group
114 */
115
Eric Dumazet456b61b2010-11-23 13:12:15 +0000116#define for_each_pmc_rcu(np, pmc) \
117 for (pmc = rcu_dereference(np->ipv6_mc_list); \
118 pmc != NULL; \
119 pmc = rcu_dereference(pmc->next))
120
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200121static int unsolicited_report_interval(struct inet6_dev *idev)
122{
123 int iv;
124
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200125 if (mld_in_v1_mode(idev))
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200126 iv = idev->cnf.mldv1_unsolicited_report_interval;
127 else
128 iv = idev->cnf.mldv2_unsolicited_report_interval;
129
130 return iv > 0 ? iv : 1;
131}
132
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800133static int __ipv6_sock_mc_join(struct sock *sk, int ifindex,
134 const struct in6_addr *addr, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct net_device *dev = NULL;
137 struct ipv6_mc_socklist *mc_lst;
138 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900139 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int err;
141
Madhu Challa46a4dee2015-02-25 09:58:34 -0800142 ASSERT_RTNL();
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!ipv6_addr_is_multicast(addr))
145 return -EINVAL;
146
Eric Dumazet456b61b2010-11-23 13:12:15 +0000147 rcu_read_lock();
148 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700149 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
150 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000151 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700152 return -EADDRINUSE;
153 }
154 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000155 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
158
Ian Morris63159f22015-03-29 14:00:04 +0100159 if (!mc_lst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -ENOMEM;
161
162 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000163 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 if (ifindex == 0) {
166 struct rt6_info *rt;
David Ahernb75cc8f2018-03-02 08:32:17 -0800167 rt = rt6_lookup(net, addr, NULL, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500169 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000170 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 } else
WANG Cong414b6c92014-09-11 15:35:14 -0700173 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Ian Morris63159f22015-03-29 14:00:04 +0100175 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
177 return -ENODEV;
178 }
179
180 mc_lst->ifindex = dev->ifindex;
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800181 mc_lst->sfmode = mode;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800182 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 mc_lst->sflist = NULL;
184
185 /*
186 * now add/increase the group membership on the device
187 */
188
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800189 err = __ipv6_dev_mc_inc(dev, addr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (err) {
192 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return err;
194 }
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000197 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
200}
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800201
202int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
203{
204 return __ipv6_sock_mc_join(sk, ifindex, addr, MCAST_EXCLUDE);
205}
Madhu Challa46a4dee2015-02-25 09:58:34 -0800206EXPORT_SYMBOL(ipv6_sock_mc_join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800208int ipv6_sock_mc_join_ssm(struct sock *sk, int ifindex,
209 const struct in6_addr *addr, unsigned int mode)
210{
211 return __ipv6_sock_mc_join(sk, ifindex, addr, mode);
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
215 * socket leave on multicast group
216 */
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -0300217int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000220 struct ipv6_mc_socklist *mc_lst;
221 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900222 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Madhu Challa46a4dee2015-02-25 09:58:34 -0800224 ASSERT_RTNL();
225
Li Weia858d642012-07-17 15:28:59 +0800226 if (!ipv6_addr_is_multicast(addr))
227 return -EINVAL;
228
Eric Dumazet456b61b2010-11-23 13:12:15 +0000229 for (lnk = &np->ipv6_mc_list;
WANG Congb5350912014-09-11 15:35:13 -0700230 (mc_lst = rtnl_dereference(*lnk)) != NULL;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000231 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
233 ipv6_addr_equal(&mc_lst->addr, addr)) {
234 struct net_device *dev;
235
236 *lnk = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
WANG Cong414b6c92014-09-11 15:35:14 -0700238 dev = __dev_get_by_index(net, mc_lst->ifindex);
Ian Morris53b24b82015-03-29 14:00:05 +0100239 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000240 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
David L Stevensacd6e002006-08-17 16:27:39 -0700242 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000243 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700245 } else
246 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200247
Eric Dumazet456b61b2010-11-23 13:12:15 +0000248 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800249 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return 0;
251 }
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
David L Stevens9951f032005-07-08 17:47:28 -0700254 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
Madhu Challa46a4dee2015-02-25 09:58:34 -0800256EXPORT_SYMBOL(ipv6_sock_mc_drop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Eric Dumazet96b52e62010-06-07 21:05:02 +0000258/* called with rcu_read_lock() */
259static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000260 const struct in6_addr *group,
Eric Dumazet96b52e62010-06-07 21:05:02 +0000261 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 struct net_device *dev = NULL;
264 struct inet6_dev *idev = NULL;
265
266 if (ifindex == 0) {
David Ahernb75cc8f2018-03-02 08:32:17 -0800267 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500270 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000271 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000274 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000277 return NULL;
278 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800279 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000280 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000282 if (idev->dead) {
283 read_unlock_bh(&idev->lock);
284 return NULL;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return idev;
287}
288
WANG Cong8651be82016-10-19 23:35:12 -0700289void __ipv6_sock_mc_close(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct ipv6_pinfo *np = inet6_sk(sk);
292 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900293 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
WANG Cong8651be82016-10-19 23:35:12 -0700295 ASSERT_RTNL();
Eric Dumazet0e1efe92012-12-05 09:18:10 +0000296
WANG Congb5350912014-09-11 15:35:13 -0700297 while ((mc_lst = rtnl_dereference(np->ipv6_mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct net_device *dev;
299
300 np->ipv6_mc_list = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
WANG Cong414b6c92014-09-11 15:35:14 -0700302 dev = __dev_get_by_index(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000304 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
David L Stevensacd6e002006-08-17 16:27:39 -0700306 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000307 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700309 } else
310 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Eric Dumazet456b61b2010-11-23 13:12:15 +0000312 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800313 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
WANG Cong8651be82016-10-19 23:35:12 -0700315}
316
317void ipv6_sock_mc_close(struct sock *sk)
318{
319 struct ipv6_pinfo *np = inet6_sk(sk);
320
321 if (!rcu_access_pointer(np->ipv6_mc_list))
322 return;
323 rtnl_lock();
324 __ipv6_sock_mc_close(sk);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200325 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328int ip6_mc_source(int add, int omode, struct sock *sk,
329 struct group_source_req *pgsr)
330{
331 struct in6_addr *source, *group;
332 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct inet6_dev *idev;
334 struct ipv6_pinfo *inet6 = inet6_sk(sk);
335 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900336 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700338 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800339 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int err;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
343 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
344
345 if (!ipv6_addr_is_multicast(group))
346 return -EINVAL;
347
Eric Dumazet96b52e62010-06-07 21:05:02 +0000348 rcu_read_lock();
349 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
350 if (!idev) {
351 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 err = -EADDRNOTAVAIL;
356
Eric Dumazet456b61b2010-11-23 13:12:15 +0000357 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
359 continue;
360 if (ipv6_addr_equal(&pmc->addr, group))
361 break;
362 }
David L Stevens917f2f12005-07-08 17:45:16 -0700363 if (!pmc) { /* must have a prior join */
364 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* if a source filter was set, must be the same mode as before */
368 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700369 if (pmc->sfmode != omode) {
370 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 } else if (pmc->sfmode != omode) {
374 /* allow mode switches for empty-set filters */
375 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
376 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
377 pmc->sfmode = omode;
378 }
379
Eric Dumazet96b52e62010-06-07 21:05:02 +0000380 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800381 pmclocked = 1;
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 psl = pmc->sflist;
384 if (!add) {
385 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700386 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 rv = !0;
Ian Morris67ba4152014-08-24 21:53:10 +0100388 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000389 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (rv == 0)
391 break;
392 }
393 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700394 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700396 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
397 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
398 leavegroup = 1;
399 goto done;
400 }
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* update the interface filter */
403 ip6_mc_del_src(idev, group, omode, 1, source, 1);
404
Ian Morris67ba4152014-08-24 21:53:10 +0100405 for (j = i+1; j < psl->sl_count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 psl->sl_addr[j-1] = psl->sl_addr[j];
407 psl->sl_count--;
408 err = 0;
409 goto done;
410 }
411 /* else, add a new source to the filter */
412
413 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
414 err = -ENOBUFS;
415 goto done;
416 }
417 if (!psl || psl->sl_count == psl->sl_max) {
418 struct ip6_sf_socklist *newpsl;
419 int count = IP6_SFBLOCK;
420
421 if (psl)
422 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800423 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (!newpsl) {
425 err = -ENOBUFS;
426 goto done;
427 }
428 newpsl->sl_max = count;
429 newpsl->sl_count = count - IP6_SFBLOCK;
430 if (psl) {
Ian Morris67ba4152014-08-24 21:53:10 +0100431 for (i = 0; i < psl->sl_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 newpsl->sl_addr[i] = psl->sl_addr[i];
433 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
434 }
435 pmc->sflist = psl = newpsl;
436 }
437 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
Ian Morris67ba4152014-08-24 21:53:10 +0100438 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000439 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Jean Sacren56db1c52013-02-03 21:34:10 +0000440 if (rv == 0) /* There is an error in the address. */
441 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Ian Morris67ba4152014-08-24 21:53:10 +0100443 for (j = psl->sl_count-1; j >= i; j--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 psl->sl_addr[j+1] = psl->sl_addr[j];
445 psl->sl_addr[i] = *source;
446 psl->sl_count++;
447 err = 0;
448 /* update the interface list */
449 ip6_mc_add_src(idev, group, omode, 1, source, 1);
450done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800451 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000452 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000454 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700455 if (leavegroup)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -0300456 err = ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return err;
458}
459
Al Virod59eb172020-03-30 15:43:10 -0400460int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf,
461 struct sockaddr_storage *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000463 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct inet6_dev *idev;
466 struct ipv6_pinfo *inet6 = inet6_sk(sk);
467 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900468 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700469 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int i, err;
471
472 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
473
474 if (!ipv6_addr_is_multicast(group))
475 return -EINVAL;
476 if (gsf->gf_fmode != MCAST_INCLUDE &&
477 gsf->gf_fmode != MCAST_EXCLUDE)
478 return -EINVAL;
479
Eric Dumazet96b52e62010-06-07 21:05:02 +0000480 rcu_read_lock();
481 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Eric Dumazet96b52e62010-06-07 21:05:02 +0000483 if (!idev) {
484 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
David S. Miller9c059892005-07-08 21:44:39 -0700488 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800489
David L Stevens9951f032005-07-08 17:47:28 -0700490 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
491 leavegroup = 1;
492 goto done;
493 }
494
Eric Dumazet456b61b2010-11-23 13:12:15 +0000495 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (pmc->ifindex != gsf->gf_interface)
497 continue;
498 if (ipv6_addr_equal(&pmc->addr, group))
499 break;
500 }
David L Stevens917f2f12005-07-08 17:45:16 -0700501 if (!pmc) { /* must have a prior join */
502 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800506 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
507 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!newpsl) {
509 err = -ENOBUFS;
510 goto done;
511 }
512 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
Al Virod59eb172020-03-30 15:43:10 -0400513 for (i = 0; i < newpsl->sl_count; ++i, ++list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct sockaddr_in6 *psin6;
515
Al Virod59eb172020-03-30 15:43:10 -0400516 psin6 = (struct sockaddr_in6 *)list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 newpsl->sl_addr[i] = psin6->sin6_addr;
518 }
519 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
520 newpsl->sl_count, newpsl->sl_addr, 0);
521 if (err) {
522 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
523 goto done;
524 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800525 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800527 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
528 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800529
Eric Dumazet96b52e62010-06-07 21:05:02 +0000530 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 psl = pmc->sflist;
532 if (psl) {
533 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
534 psl->sl_count, psl->sl_addr, 0);
535 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
536 } else
537 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
538 pmc->sflist = newpsl;
539 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000540 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700541 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542done:
543 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000544 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700545 if (leavegroup)
546 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return err;
548}
549
550int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
Al Viro931ca7a2020-03-29 17:18:30 -0400551 struct sockaddr_storage *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000554 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct ipv6_mc_socklist *pmc;
556 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct ipv6_pinfo *inet6 = inet6_sk(sk);
558 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900559 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
562
563 if (!ipv6_addr_is_multicast(group))
564 return -EINVAL;
565
Eric Dumazet96b52e62010-06-07 21:05:02 +0000566 rcu_read_lock();
567 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Eric Dumazet96b52e62010-06-07 21:05:02 +0000569 if (!idev) {
570 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 err = -EADDRNOTAVAIL;
WANG Congf7ed9252014-09-11 15:35:15 -0700575 /* changes to the ipv6_mc_list require the socket lock and
576 * rtnl lock. We have the socket lock and rcu read lock,
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800577 * so reading the list is safe.
578 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Eric Dumazet456b61b2010-11-23 13:12:15 +0000580 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (pmc->ifindex != gsf->gf_interface)
582 continue;
583 if (ipv6_addr_equal(group, &pmc->addr))
584 break;
585 }
586 if (!pmc) /* must have a prior join */
587 goto done;
588 gsf->gf_fmode = pmc->sfmode;
589 psl = pmc->sflist;
590 count = psl ? psl->sl_count : 0;
591 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000592 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
595 gsf->gf_numsrc = count;
WANG Congf7ed9252014-09-11 15:35:15 -0700596 /* changes to psl require the socket lock, and a write lock
597 * on pmc->sflock. We have the socket lock so reading here is safe.
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800598 */
Al Viro931ca7a2020-03-29 17:18:30 -0400599 for (i = 0; i < copycount; i++, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct sockaddr_in6 *psin6;
601 struct sockaddr_storage ss;
602
603 psin6 = (struct sockaddr_in6 *)&ss;
604 memset(&ss, 0, sizeof(ss));
605 psin6->sin6_family = AF_INET6;
606 psin6->sin6_addr = psl->sl_addr[i];
Al Viro931ca7a2020-03-29 17:18:30 -0400607 if (copy_to_user(p, &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return -EFAULT;
609 }
610 return 0;
611done:
612 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000613 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return err;
615}
616
Eric Dumazeta50feda2012-05-18 18:57:34 +0000617bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
618 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct ipv6_pinfo *np = inet6_sk(sk);
621 struct ipv6_mc_socklist *mc;
622 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000623 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Eric Dumazet456b61b2010-11-23 13:12:15 +0000625 rcu_read_lock();
626 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (ipv6_addr_equal(&mc->addr, mc_addr))
628 break;
629 }
630 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000631 rcu_read_unlock();
Andre Naujoks15033f02018-09-10 10:27:15 +0200632 return np->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800634 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 psl = mc->sflist;
636 if (!psl) {
637 rv = mc->sfmode == MCAST_EXCLUDE;
638 } else {
639 int i;
640
Ian Morris67ba4152014-08-24 21:53:10 +0100641 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
643 break;
644 }
645 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000646 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000648 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800650 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000651 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 return rv;
654}
655
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800656static void igmp6_group_added(struct ifmcaddr6 *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 struct net_device *dev = mc->idev->dev;
659 char buf[MAX_ADDR_LEN];
660
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000661 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
662 IPV6_ADDR_SCOPE_LINKLOCAL)
663 return;
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 spin_lock_bh(&mc->mca_lock);
666 if (!(mc->mca_flags&MAF_LOADED)) {
667 mc->mca_flags |= MAF_LOADED;
668 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000669 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671 spin_unlock_bh(&mc->mca_lock);
672
673 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
674 return;
675
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200676 if (mld_in_v1_mode(mc->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 igmp6_join_group(mc);
678 return;
679 }
680 /* else v2 */
681
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800682 /* Based on RFC3810 6.1, for newly added INCLUDE SSM, we
683 * should not send filter-mode change record as the mode
684 * should be from IN() to IN(A).
685 */
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800686 if (mc->mca_sfmode == MCAST_EXCLUDE)
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800687 mc->mca_crcount = mc->idev->mc_qrv;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 mld_ifc_event(mc->idev);
690}
691
692static void igmp6_group_dropped(struct ifmcaddr6 *mc)
693{
694 struct net_device *dev = mc->idev->dev;
695 char buf[MAX_ADDR_LEN];
696
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000697 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
698 IPV6_ADDR_SCOPE_LINKLOCAL)
699 return;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 spin_lock_bh(&mc->mca_lock);
702 if (mc->mca_flags&MAF_LOADED) {
703 mc->mca_flags &= ~MAF_LOADED;
704 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000705 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 spin_unlock_bh(&mc->mca_lock);
Hangbin Liu1666d492017-01-12 21:19:37 +0800709 if (mc->mca_flags & MAF_NOREPORT)
710 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 if (!mc->idev->dead)
713 igmp6_leave_group(mc);
714
715 spin_lock_bh(&mc->mca_lock);
716 if (del_timer(&mc->mca_timer))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300717 refcount_dec(&mc->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 spin_unlock_bh(&mc->mca_lock);
719}
720
721/*
722 * deleted ifmcaddr6 manipulation
723 */
724static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
725{
726 struct ifmcaddr6 *pmc;
727
728 /* this is an "ifmcaddr6" for convenience; only the fields below
729 * are actually used. In particular, the refcnt and users are not
730 * used for management of the delete list. Using the same structure
731 * for deleted items allows change reports to use common code with
732 * non-deleted or query-response MCA's.
733 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800734 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!pmc)
736 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_lock_bh(&im->mca_lock);
739 spin_lock_init(&pmc->mca_lock);
740 pmc->idev = im->idev;
741 in6_dev_hold(idev);
742 pmc->mca_addr = im->mca_addr;
743 pmc->mca_crcount = idev->mc_qrv;
744 pmc->mca_sfmode = im->mca_sfmode;
745 if (pmc->mca_sfmode == MCAST_INCLUDE) {
746 struct ip6_sf_list *psf;
747
748 pmc->mca_tomb = im->mca_tomb;
749 pmc->mca_sources = im->mca_sources;
750 im->mca_tomb = im->mca_sources = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100751 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 psf->sf_crcount = pmc->mca_crcount;
753 }
754 spin_unlock_bh(&im->mca_lock);
755
Stephen Hemminger6457d262010-02-17 18:48:44 -0800756 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 pmc->next = idev->mc_tomb;
758 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800759 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Hangbin Liu1666d492017-01-12 21:19:37 +0800762static void mld_del_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 struct ifmcaddr6 *pmc, *pmc_prev;
Hangbin Liu1666d492017-01-12 21:19:37 +0800765 struct ip6_sf_list *psf;
766 struct in6_addr *pmca = &im->mca_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Stephen Hemminger6457d262010-02-17 18:48:44 -0800768 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100770 for (pmc = idev->mc_tomb; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
772 break;
773 pmc_prev = pmc;
774 }
775 if (pmc) {
776 if (pmc_prev)
777 pmc_prev->next = pmc->next;
778 else
779 idev->mc_tomb = pmc->next;
780 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800781 spin_unlock_bh(&idev->mc_lock);
782
Hangbin Liu1666d492017-01-12 21:19:37 +0800783 spin_lock_bh(&im->mca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (pmc) {
Hangbin Liu1666d492017-01-12 21:19:37 +0800785 im->idev = pmc->idev;
Hangbin Liu08d3ffc2018-07-20 14:04:27 +0800786 if (im->mca_sfmode == MCAST_INCLUDE) {
Eric Dumazeta84d0162019-08-27 03:33:12 -0700787 swap(im->mca_tomb, pmc->mca_tomb);
788 swap(im->mca_sources, pmc->mca_sources);
Hangbin Liu1666d492017-01-12 21:19:37 +0800789 for (psf = im->mca_sources; psf; psf = psf->sf_next)
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800790 psf->sf_crcount = idev->mc_qrv;
791 } else {
792 im->mca_crcount = idev->mc_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 in6_dev_put(pmc->idev);
Eric Dumazeta84d0162019-08-27 03:33:12 -0700795 ip6_mc_clear_src(pmc);
Hangbin Liu9c8bb162017-02-08 21:16:45 +0800796 kfree(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Hangbin Liu1666d492017-01-12 21:19:37 +0800798 spin_unlock_bh(&im->mca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801static void mld_clear_delrec(struct inet6_dev *idev)
802{
803 struct ifmcaddr6 *pmc, *nextpmc;
804
Stephen Hemminger6457d262010-02-17 18:48:44 -0800805 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 pmc = idev->mc_tomb;
807 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800808 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 for (; pmc; pmc = nextpmc) {
811 nextpmc = pmc->next;
812 ip6_mc_clear_src(pmc);
813 in6_dev_put(pmc->idev);
814 kfree(pmc);
815 }
816
817 /* clear dead sources, too */
818 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100819 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 struct ip6_sf_list *psf, *psf_next;
821
822 spin_lock_bh(&pmc->mca_lock);
823 psf = pmc->mca_tomb;
824 pmc->mca_tomb = NULL;
825 spin_unlock_bh(&pmc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100826 for (; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 psf_next = psf->sf_next;
828 kfree(psf);
829 }
830 }
831 read_unlock_bh(&idev->lock);
832}
833
WANG Cong1691c632014-09-11 15:35:16 -0700834static void mca_get(struct ifmcaddr6 *mc)
835{
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300836 refcount_inc(&mc->mca_refcnt);
WANG Cong1691c632014-09-11 15:35:16 -0700837}
838
839static void ma_put(struct ifmcaddr6 *mc)
840{
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300841 if (refcount_dec_and_test(&mc->mca_refcnt)) {
WANG Cong1691c632014-09-11 15:35:16 -0700842 in6_dev_put(mc->idev);
843 kfree(mc);
844 }
845}
846
847static struct ifmcaddr6 *mca_alloc(struct inet6_dev *idev,
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800848 const struct in6_addr *addr,
849 unsigned int mode)
WANG Cong1691c632014-09-11 15:35:16 -0700850{
851 struct ifmcaddr6 *mc;
852
853 mc = kzalloc(sizeof(*mc), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +0100854 if (!mc)
WANG Cong1691c632014-09-11 15:35:16 -0700855 return NULL;
856
Kees Cooke99e88a2017-10-16 14:43:17 -0700857 timer_setup(&mc->mca_timer, igmp6_timer_handler, 0);
WANG Cong1691c632014-09-11 15:35:16 -0700858
859 mc->mca_addr = *addr;
860 mc->idev = idev; /* reference taken by caller */
861 mc->mca_users = 1;
862 /* mca_stamp should be updated upon changes */
863 mc->mca_cstamp = mc->mca_tstamp = jiffies;
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300864 refcount_set(&mc->mca_refcnt, 1);
WANG Cong1691c632014-09-11 15:35:16 -0700865 spin_lock_init(&mc->mca_lock);
866
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800867 mc->mca_sfmode = mode;
868 mc->mca_sfcount[mode] = 1;
WANG Cong1691c632014-09-11 15:35:16 -0700869
870 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
871 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
872 mc->mca_flags |= MAF_NOREPORT;
873
874 return mc;
875}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877/*
878 * device multicast group inc (add if not found)
879 */
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800880static int __ipv6_dev_mc_inc(struct net_device *dev,
881 const struct in6_addr *addr, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 struct ifmcaddr6 *mc;
884 struct inet6_dev *idev;
885
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200886 ASSERT_RTNL();
887
Eric Dumazet96b52e62010-06-07 21:05:02 +0000888 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 idev = in6_dev_get(dev);
890
Ian Morris63159f22015-03-29 14:00:04 +0100891 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return -EINVAL;
893
894 write_lock_bh(&idev->lock);
895 if (idev->dead) {
896 write_unlock_bh(&idev->lock);
897 in6_dev_put(idev);
898 return -ENODEV;
899 }
900
901 for (mc = idev->mc_list; mc; mc = mc->next) {
902 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
903 mc->mca_users++;
904 write_unlock_bh(&idev->lock);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800905 ip6_mc_add_src(idev, &mc->mca_addr, mode, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 in6_dev_put(idev);
907 return 0;
908 }
909 }
910
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800911 mc = mca_alloc(idev, addr, mode);
WANG Cong1691c632014-09-11 15:35:16 -0700912 if (!mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 write_unlock_bh(&idev->lock);
914 in6_dev_put(idev);
915 return -ENOMEM;
916 }
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 mc->next = idev->mc_list;
919 idev->mc_list = mc;
WANG Cong1691c632014-09-11 15:35:16 -0700920
921 /* Hold this for the code below before we unlock,
922 * it is already exposed via idev->mc_list.
923 */
924 mca_get(mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 write_unlock_bh(&idev->lock);
926
Hangbin Liu1666d492017-01-12 21:19:37 +0800927 mld_del_delrec(idev, mc);
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800928 igmp6_group_added(mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 ma_put(mc);
930 return 0;
931}
932
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800933int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
934{
935 return __ipv6_dev_mc_inc(dev, addr, MCAST_EXCLUDE);
936}
Linus Lüssing4effd282019-01-21 07:26:27 +0100937EXPORT_SYMBOL(ipv6_dev_mc_inc);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * device multicast group del
941 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900942int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 struct ifmcaddr6 *ma, **map;
945
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200946 ASSERT_RTNL();
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 write_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100949 for (map = &idev->mc_list; (ma = *map) != NULL; map = &ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
951 if (--ma->mca_users == 0) {
952 *map = ma->next;
953 write_unlock_bh(&idev->lock);
954
955 igmp6_group_dropped(ma);
Hangbin Liu1666d492017-01-12 21:19:37 +0800956 ip6_mc_clear_src(ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 ma_put(ma);
959 return 0;
960 }
961 write_unlock_bh(&idev->lock);
962 return 0;
963 }
964 }
965 write_unlock_bh(&idev->lock);
966
967 return -ENOENT;
968}
969
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900970int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000972 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 int err;
974
WANG Cong414b6c92014-09-11 15:35:14 -0700975 ASSERT_RTNL();
Eric Dumazet96b52e62010-06-07 21:05:02 +0000976
977 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000979 err = -ENODEV;
980 else
981 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return err;
984}
Linus Lüssing4effd282019-01-21 07:26:27 +0100985EXPORT_SYMBOL(ipv6_dev_mc_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 * check if the interface/address pair is valid
989 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000990bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
991 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 struct inet6_dev *idev;
994 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000995 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Eric Dumazet96b52e62010-06-07 21:05:02 +0000997 rcu_read_lock();
998 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (idev) {
1000 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001001 for (mc = idev->mc_list; mc; mc = mc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (ipv6_addr_equal(&mc->mca_addr, group))
1003 break;
1004 }
1005 if (mc) {
1006 if (src_addr && !ipv6_addr_any(src_addr)) {
1007 struct ip6_sf_list *psf;
1008
1009 spin_lock_bh(&mc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001010 for (psf = mc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
1012 break;
1013 }
1014 if (psf)
1015 rv = psf->sf_count[MCAST_INCLUDE] ||
1016 psf->sf_count[MCAST_EXCLUDE] !=
1017 mc->mca_sfcount[MCAST_EXCLUDE];
1018 else
Ian Morris67ba4152014-08-24 21:53:10 +01001019 rv = mc->mca_sfcount[MCAST_EXCLUDE] != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 spin_unlock_bh(&mc->mca_lock);
1021 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +00001022 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001026 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return rv;
1028}
1029
1030static void mld_gq_start_timer(struct inet6_dev *idev)
1031{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001032 unsigned long tv = prandom_u32() % idev->mc_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 idev->mc_gq_running = 1;
1035 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1036 in6_dev_hold(idev);
1037}
1038
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001039static void mld_gq_stop_timer(struct inet6_dev *idev)
1040{
1041 idev->mc_gq_running = 0;
1042 if (del_timer(&idev->mc_gq_timer))
1043 __in6_dev_put(idev);
1044}
1045
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001046static void mld_ifc_start_timer(struct inet6_dev *idev, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001048 unsigned long tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1051 in6_dev_hold(idev);
1052}
1053
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001054static void mld_ifc_stop_timer(struct inet6_dev *idev)
1055{
1056 idev->mc_ifc_count = 0;
1057 if (del_timer(&idev->mc_ifc_timer))
1058 __in6_dev_put(idev);
1059}
1060
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001061static void mld_dad_start_timer(struct inet6_dev *idev, unsigned long delay)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001062{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001063 unsigned long tv = prandom_u32() % delay;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001064
1065 if (!mod_timer(&idev->mc_dad_timer, jiffies+tv+2))
1066 in6_dev_hold(idev);
1067}
1068
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001069static void mld_dad_stop_timer(struct inet6_dev *idev)
1070{
1071 if (del_timer(&idev->mc_dad_timer))
1072 __in6_dev_put(idev);
1073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075/*
1076 * IGMP handling (alias multicast ICMPv6 messages)
1077 */
1078
1079static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1080{
1081 unsigned long delay = resptime;
1082
1083 /* Do not start timer for these addresses */
1084 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1085 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1086 return;
1087
1088 if (del_timer(&ma->mca_timer)) {
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001089 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 delay = ma->mca_timer.expires - jiffies;
1091 }
1092
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001093 if (delay >= resptime)
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001094 delay = prandom_u32() % resptime;
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 ma->mca_timer.expires = jiffies + delay;
1097 if (!mod_timer(&ma->mca_timer, jiffies + delay))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001098 refcount_inc(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ma->mca_flags |= MAF_TIMER_RUNNING;
1100}
1101
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001102/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001103static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1104 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 struct ip6_sf_list *psf;
1107 int i, scount;
1108
1109 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001110 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (scount == nsrcs)
1112 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001113 for (i = 0; i < nsrcs; i++) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001114 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001115 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001116 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1117 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001118 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001119 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1120 scount++;
1121 break;
1122 }
1123 }
1124 }
1125 pmc->mca_flags &= ~MAF_GSQUERY;
1126 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001127 return false;
1128 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001129}
1130
Eric Dumazeta50feda2012-05-18 18:57:34 +00001131static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1132 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001133{
1134 struct ip6_sf_list *psf;
1135 int i, scount;
1136
1137 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1138 return mld_xmarksources(pmc, nsrcs, srcs);
1139
1140 /* mark INCLUDE-mode sources */
1141
1142 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001143 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001144 if (scount == nsrcs)
1145 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001146 for (i = 0; i < nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1148 psf->sf_gsresp = 1;
1149 scount++;
1150 break;
1151 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001154 if (!scount) {
1155 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001156 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001157 }
1158 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001159 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001162static int mld_force_mld_version(const struct inet6_dev *idev)
1163{
1164 /* Normally, both are 0 here. If enforcement to a particular is
1165 * being used, individual device enforcement will have a lower
1166 * precedence over 'all' device (.../conf/all/force_mld_version).
1167 */
1168
1169 if (dev_net(idev->dev)->ipv6.devconf_all->force_mld_version != 0)
1170 return dev_net(idev->dev)->ipv6.devconf_all->force_mld_version;
1171 else
1172 return idev->cnf.force_mld_version;
1173}
1174
1175static bool mld_in_v2_mode_only(const struct inet6_dev *idev)
1176{
1177 return mld_force_mld_version(idev) == 2;
1178}
1179
1180static bool mld_in_v1_mode_only(const struct inet6_dev *idev)
1181{
1182 return mld_force_mld_version(idev) == 1;
1183}
1184
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001185static bool mld_in_v1_mode(const struct inet6_dev *idev)
1186{
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001187 if (mld_in_v2_mode_only(idev))
1188 return false;
1189 if (mld_in_v1_mode_only(idev))
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001190 return true;
1191 if (idev->mc_v1_seen && time_before(jiffies, idev->mc_v1_seen))
1192 return true;
1193
1194 return false;
1195}
1196
Daniel Borkmann89225d12013-09-04 00:19:37 +02001197static void mld_set_v1_mode(struct inet6_dev *idev)
1198{
1199 /* RFC3810, relevant sections:
1200 * - 9.1. Robustness Variable
1201 * - 9.2. Query Interval
1202 * - 9.3. Query Response Interval
1203 * - 9.12. Older Version Querier Present Timeout
1204 */
1205 unsigned long switchback;
1206
1207 switchback = (idev->mc_qrv * idev->mc_qi) + idev->mc_qri;
1208
1209 idev->mc_v1_seen = jiffies + switchback;
1210}
1211
1212static void mld_update_qrv(struct inet6_dev *idev,
1213 const struct mld2_query *mlh2)
1214{
1215 /* RFC3810, relevant sections:
1216 * - 5.1.8. QRV (Querier's Robustness Variable)
1217 * - 9.1. Robustness Variable
1218 */
1219
1220 /* The value of the Robustness Variable MUST NOT be zero,
1221 * and SHOULD NOT be one. Catch this here if we ever run
1222 * into such a case in future.
1223 */
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001224 const int min_qrv = min(MLD_QRV_DEFAULT, sysctl_mld_qrv);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001225 WARN_ON(idev->mc_qrv == 0);
1226
1227 if (mlh2->mld2q_qrv > 0)
1228 idev->mc_qrv = mlh2->mld2q_qrv;
1229
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001230 if (unlikely(idev->mc_qrv < min_qrv)) {
Daniel Borkmann89225d12013-09-04 00:19:37 +02001231 net_warn_ratelimited("IPv6: MLD: clamping QRV from %u to %u!\n",
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001232 idev->mc_qrv, min_qrv);
1233 idev->mc_qrv = min_qrv;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001234 }
1235}
1236
1237static void mld_update_qi(struct inet6_dev *idev,
1238 const struct mld2_query *mlh2)
1239{
1240 /* RFC3810, relevant sections:
1241 * - 5.1.9. QQIC (Querier's Query Interval Code)
1242 * - 9.2. Query Interval
1243 * - 9.12. Older Version Querier Present Timeout
1244 * (the [Query Interval] in the last Query received)
1245 */
1246 unsigned long mc_qqi;
1247
1248 if (mlh2->mld2q_qqic < 128) {
1249 mc_qqi = mlh2->mld2q_qqic;
1250 } else {
1251 unsigned long mc_man, mc_exp;
1252
1253 mc_exp = MLDV2_QQIC_EXP(mlh2->mld2q_qqic);
1254 mc_man = MLDV2_QQIC_MAN(mlh2->mld2q_qqic);
1255
1256 mc_qqi = (mc_man | 0x10) << (mc_exp + 3);
1257 }
1258
1259 idev->mc_qi = mc_qqi * HZ;
1260}
1261
1262static void mld_update_qri(struct inet6_dev *idev,
1263 const struct mld2_query *mlh2)
1264{
1265 /* RFC3810, relevant sections:
1266 * - 5.1.3. Maximum Response Code
1267 * - 9.3. Query Response Interval
1268 */
Daniel Borkmanne3f5b172013-09-04 00:19:39 +02001269 idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2));
Daniel Borkmann89225d12013-09-04 00:19:37 +02001270}
1271
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001272static int mld_process_v1(struct inet6_dev *idev, struct mld_msg *mld,
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001273 unsigned long *max_delay, bool v1_query)
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001274{
1275 unsigned long mldv1_md;
1276
1277 /* Ignore v1 queries */
1278 if (mld_in_v2_mode_only(idev))
1279 return -EINVAL;
1280
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001281 mldv1_md = ntohs(mld->mld_maxdelay);
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001282
1283 /* When in MLDv1 fallback and a MLDv2 router start-up being
1284 * unaware of current MLDv1 operation, the MRC == MRD mapping
1285 * only works when the exponential algorithm is not being
1286 * used (as MLDv1 is unaware of such things).
1287 *
1288 * According to the RFC author, the MLDv2 implementations
1289 * he's aware of all use a MRC < 32768 on start up queries.
1290 *
1291 * Thus, should we *ever* encounter something else larger
1292 * than that, just assume the maximum possible within our
1293 * reach.
1294 */
1295 if (!v1_query)
1296 mldv1_md = min(mldv1_md, MLDV1_MRD_MAX_COMPAT);
1297
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001298 *max_delay = max(msecs_to_jiffies(mldv1_md), 1UL);
1299
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001300 /* MLDv1 router present: we need to go into v1 mode *only*
1301 * when an MLDv1 query is received as per section 9.12. of
1302 * RFC3810! And we know from RFC2710 section 3.7 that MLDv1
1303 * queries MUST be of exactly 24 octets.
1304 */
1305 if (v1_query)
1306 mld_set_v1_mode(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001307
1308 /* cancel MLDv2 report timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001309 mld_gq_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001310 /* cancel the interface change timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001311 mld_ifc_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001312 /* clear deleted report items */
1313 mld_clear_delrec(idev);
1314
1315 return 0;
1316}
1317
1318static int mld_process_v2(struct inet6_dev *idev, struct mld2_query *mld,
1319 unsigned long *max_delay)
1320{
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001321 *max_delay = max(msecs_to_jiffies(mldv2_mrc(mld)), 1UL);
1322
1323 mld_update_qrv(idev, mld);
1324 mld_update_qi(idev, mld);
1325 mld_update_qri(idev, mld);
1326
1327 idev->mc_maxdelay = *max_delay;
1328
1329 return 0;
1330}
1331
Eric Dumazet96b52e62010-06-07 21:05:02 +00001332/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333int igmp6_event_query(struct sk_buff *skb)
1334{
Yan Zheng97300b52005-10-31 20:09:45 +08001335 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001337 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 unsigned long max_delay;
1339 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001340 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 int group_type;
1342 int mark = 0;
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001343 int len, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1346 return -EINVAL;
1347
1348 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001349 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001350 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Hangbin Liue940f5d2014-06-27 09:57:53 +08001352 /* RFC3810 6.2
1353 * Upon reception of an MLD message that contains a Query, the node
1354 * checks if the source address of the message is a valid link-local
1355 * address, if the Hop Limit is set to 1, and if the Router Alert
1356 * option is present in the Hop-By-Hop Options header of the IPv6
1357 * packet. If any of these checks fails, the packet is dropped.
1358 */
1359 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL) ||
1360 ipv6_hdr(skb)->hop_limit != 1 ||
1361 !(IP6CB(skb)->flags & IP6SKB_ROUTERALERT) ||
1362 IP6CB(skb)->ra != htons(IPV6_OPT_ROUTERALERT_MLD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return -EINVAL;
1364
Eric Dumazet96b52e62010-06-07 21:05:02 +00001365 idev = __in6_dev_get(skb->dev);
Ian Morris63159f22015-03-29 14:00:04 +01001366 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return 0;
1368
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001369 mld = (struct mld_msg *)icmp6_hdr(skb);
1370 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 group_type = ipv6_addr_type(group);
1372
1373 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001374 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001377 if (len < MLD_V1_QUERY_LEN) {
1378 return -EINVAL;
1379 } else if (len == MLD_V1_QUERY_LEN || mld_in_v1_mode(idev)) {
1380 err = mld_process_v1(idev, mld, &max_delay,
1381 len == MLD_V1_QUERY_LEN);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001382 if (err < 0)
1383 return err;
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001384 } else if (len >= MLD_V2_QUERY_LEN_MIN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001385 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001386 sizeof(struct icmp6hdr);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001387
Eric Dumazet96b52e62010-06-07 21:05:02 +00001388 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001389 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001390
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001391 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Daniel Borkmann84698962013-08-20 12:22:00 +02001392
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001393 err = mld_process_v2(idev, mlh2, &max_delay);
1394 if (err < 0)
1395 return err;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001398 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return 0;
1403 }
1404 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001405 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001406 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001407 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001408 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001409
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001410 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001411 mark = 1;
1412 }
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001413 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EINVAL;
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 read_lock_bh(&idev->lock);
1418 if (group_type == IPV6_ADDR_ANY) {
Ian Morris67ba4152014-08-24 21:53:10 +01001419 for (ma = idev->mc_list; ma; ma = ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 spin_lock_bh(&ma->mca_lock);
1421 igmp6_group_queried(ma, max_delay);
1422 spin_unlock_bh(&ma->mca_lock);
1423 }
1424 } else {
Ian Morris67ba4152014-08-24 21:53:10 +01001425 for (ma = idev->mc_list; ma; ma = ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001426 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 continue;
1428 spin_lock_bh(&ma->mca_lock);
1429 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1430 /* gsquery <- gsquery && mark */
1431 if (!mark)
1432 ma->mca_flags &= ~MAF_GSQUERY;
1433 } else {
1434 /* gsquery <- mark */
1435 if (mark)
1436 ma->mca_flags |= MAF_GSQUERY;
1437 else
1438 ma->mca_flags &= ~MAF_GSQUERY;
1439 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001440 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001441 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001442 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001444 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446 }
1447 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 return 0;
1450}
1451
Eric Dumazet96b52e62010-06-07 21:05:02 +00001452/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453int igmp6_event_report(struct sk_buff *skb)
1454{
1455 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001457 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int addr_type;
1459
1460 /* Our own report looped back. Ignore it. */
1461 if (skb->pkt_type == PACKET_LOOPBACK)
1462 return 0;
1463
David Stevens24c69272005-12-02 20:32:59 -08001464 /* send our report if the MC router may not have heard this report */
1465 if (skb->pkt_type != PACKET_MULTICAST &&
1466 skb->pkt_type != PACKET_BROADCAST)
1467 return 0;
1468
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001469 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return -EINVAL;
1471
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001472 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001475 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001476 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 !(addr_type&IPV6_ADDR_LINKLOCAL))
1478 return -EINVAL;
1479
Eric Dumazet96b52e62010-06-07 21:05:02 +00001480 idev = __in6_dev_get(skb->dev);
Ian Morris63159f22015-03-29 14:00:04 +01001481 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return -ENODEV;
1483
1484 /*
1485 * Cancel the timer for this group
1486 */
1487
1488 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001489 for (ma = idev->mc_list; ma; ma = ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001490 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 spin_lock(&ma->mca_lock);
1492 if (del_timer(&ma->mca_timer))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001493 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1495 spin_unlock(&ma->mca_lock);
1496 break;
1497 }
1498 }
1499 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return 0;
1501}
1502
Eric Dumazeta50feda2012-05-18 18:57:34 +00001503static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1504 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 switch (type) {
1507 case MLD2_MODE_IS_INCLUDE:
1508 case MLD2_MODE_IS_EXCLUDE:
1509 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001510 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001511 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1512 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001513 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001514 /* don't include if this source is excluded
1515 * in all filters
1516 */
1517 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001518 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001519 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1520 psf->sf_count[MCAST_EXCLUDE];
1521 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001522 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 case MLD2_CHANGE_TO_INCLUDE:
1524 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001525 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return psf->sf_count[MCAST_INCLUDE] != 0;
1527 case MLD2_CHANGE_TO_EXCLUDE:
1528 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001529 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1531 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001532 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1534 psf->sf_count[MCAST_EXCLUDE];
1535 case MLD2_ALLOW_NEW_SOURCES:
1536 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001537 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1539 case MLD2_BLOCK_OLD_SOURCES:
1540 if (pmc->mca_sfmode == MCAST_INCLUDE)
1541 return gdeleted || (psf->sf_crcount && sdeleted);
1542 return psf->sf_crcount && !gdeleted && !sdeleted;
1543 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001544 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547static int
1548mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1549{
1550 struct ip6_sf_list *psf;
1551 int scount = 0;
1552
Ian Morris67ba4152014-08-24 21:53:10 +01001553 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1555 continue;
1556 scount++;
1557 }
1558 return scount;
1559}
1560
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001561static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1562 struct net_device *dev,
1563 const struct in6_addr *saddr,
1564 const struct in6_addr *daddr,
1565 int proto, int len)
1566{
1567 struct ipv6hdr *hdr;
1568
1569 skb->protocol = htons(ETH_P_IPV6);
1570 skb->dev = dev;
1571
1572 skb_reset_network_header(skb);
1573 skb_put(skb, sizeof(struct ipv6hdr));
1574 hdr = ipv6_hdr(skb);
1575
1576 ip6_flow_hdr(hdr, 0, 0);
1577
1578 hdr->payload_len = htons(len);
1579 hdr->nexthdr = proto;
1580 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1581
1582 hdr->saddr = *saddr;
1583 hdr->daddr = *daddr;
1584}
1585
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001586static struct sk_buff *mld_newpack(struct inet6_dev *idev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Amerigo Wang89657792013-06-29 21:30:49 +08001588 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001589 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001590 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 struct sk_buff *skb;
1592 struct mld2_report *pmr;
1593 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001594 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001595 int hlen = LL_RESERVED_SPACE(dev);
1596 int tlen = dev->needed_tailroom;
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001597 unsigned int size = mtu + hlen + tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 int err;
1599 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1600 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1601 IPV6_TLV_PADN, 0 };
1602
1603 /* we assume size > sizeof(ra) here */
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001604 /* limit our allocations to order-0 page */
1605 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1606 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001608 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return NULL;
1610
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001611 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001612 skb_reserve(skb, hlen);
Benjamin Poirier1837b2e2016-02-29 15:03:33 -08001613 skb_tailroom_reserve(skb, mtu, tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Amerigo Wang89657792013-06-29 21:30:49 +08001615 if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001617 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 * when a valid link-local address is not available.
1619 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001620 saddr = &in6addr_any;
1621 } else
1622 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001624 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Johannes Berg59ae1d12017-06-16 14:29:20 +02001626 skb_put_data(skb, ra, sizeof(ra));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001628 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001629 skb_put(skb, sizeof(*pmr));
1630 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001631 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1632 pmr->mld2r_resv1 = 0;
1633 pmr->mld2r_cksum = 0;
1634 pmr->mld2r_resv2 = 0;
1635 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return skb;
1637}
1638
1639static void mld_sendpack(struct sk_buff *skb)
1640{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001641 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001642 struct mld2_report *pmr =
1643 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001645 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001646 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001648 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001649 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Eric Dumazet96b52e62010-06-07 21:05:02 +00001651 rcu_read_lock();
1652 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001653 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1654
Simon Horman29a3cad2013-05-28 20:34:26 +00001655 payload_len = (skb_tail_pointer(skb) - skb_network_header(skb)) -
1656 sizeof(*pip6);
1657 mldlen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 pip6->payload_len = htons(payload_len);
1659
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001660 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1661 IPPROTO_ICMPV6,
1662 csum_partial(skb_transport_header(skb),
1663 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001664
David S. Miller4c9483b2011-03-12 16:22:43 -05001665 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001666 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1667 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001668 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001669
David S. Miller452edd52011-03-02 13:27:41 -08001670 err = 0;
1671 if (IS_ERR(dst)) {
1672 err = PTR_ERR(dst);
1673 dst = NULL;
1674 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001675 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001676 if (err)
1677 goto err_out;
1678
David Miller7026b1d2015-04-05 22:19:04 -04001679 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
Eric W. Biederman29a26a52015-09-15 20:04:16 -05001680 net, net->ipv6.igmp_sk, skb, NULL, skb->dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -05001681 dst_output);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001682out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (!err) {
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001684 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1685 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001686 } else {
1687 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Eric Dumazet96b52e62010-06-07 21:05:02 +00001690 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001691 return;
1692
1693err_out:
1694 kfree_skb(skb);
1695 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
1698static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1699{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001700 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
1702
1703static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001704 int type, struct mld2_grec **ppgr, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct mld2_report *pmr;
1707 struct mld2_grec *pgr;
1708
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001709 if (!skb) {
1710 skb = mld_newpack(pmc->idev, mtu);
1711 if (!skb)
1712 return NULL;
1713 }
Johannes Berg4df864c2017-06-16 14:29:21 +02001714 pgr = skb_put(skb, sizeof(struct mld2_grec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 pgr->grec_type = type;
1716 pgr->grec_auxwords = 0;
1717 pgr->grec_nsrcs = 0;
1718 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001719 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001720 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 *ppgr = pgr;
1722 return skb;
1723}
1724
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001725#define AVAILABLE(skb) ((skb) ? skb_availroom(skb) : 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001728 int type, int gdeleted, int sdeleted, int crsend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Amerigo Wang89657792013-06-29 21:30:49 +08001730 struct inet6_dev *idev = pmc->idev;
1731 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct mld2_report *pmr;
1733 struct mld2_grec *pgr = NULL;
1734 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001735 int scount, stotal, first, isquery, truncate;
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001736 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 if (pmc->mca_flags & MAF_NOREPORT)
1739 return skb;
1740
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001741 mtu = READ_ONCE(dev->mtu);
1742 if (mtu < IPV6_MIN_MTU)
1743 return skb;
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 isquery = type == MLD2_MODE_IS_INCLUDE ||
1746 type == MLD2_MODE_IS_EXCLUDE;
1747 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1748 type == MLD2_CHANGE_TO_EXCLUDE;
1749
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001750 stotal = scount = 0;
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1753
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001754 if (!*psf_list)
1755 goto empty_source;
1756
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001757 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 /* EX and TO_EX get a fresh packet, if needed */
1760 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001761 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1763 if (skb)
1764 mld_sendpack(skb);
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001765 skb = mld_newpack(idev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767 }
1768 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001770 for (psf = *psf_list; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct in6_addr *psrc;
1772
1773 psf_next = psf->sf_next;
1774
Hangbin Liuc7ea20c2018-07-10 22:41:27 +08001775 if (!is_in(pmc, psf, type, gdeleted, sdeleted) && !crsend) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 psf_prev = psf;
1777 continue;
1778 }
1779
Hangbin Liua0525172016-08-02 18:02:57 +08001780 /* Based on RFC3810 6.1. Should not send source-list change
1781 * records when there is a filter mode change.
1782 */
1783 if (((gdeleted && pmc->mca_sfmode == MCAST_EXCLUDE) ||
1784 (!gdeleted && pmc->mca_crcount)) &&
1785 (type == MLD2_ALLOW_NEW_SOURCES ||
1786 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount)
1787 goto decrease_sf_crcount;
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /* clear marks on query responses */
1790 if (isquery)
1791 psf->sf_gsresp = 0;
1792
1793 if (AVAILABLE(skb) < sizeof(*psrc) +
1794 first*sizeof(struct mld2_grec)) {
1795 if (truncate && !first)
1796 break; /* truncate these */
1797 if (pgr)
1798 pgr->grec_nsrcs = htons(scount);
1799 if (skb)
1800 mld_sendpack(skb);
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001801 skb = mld_newpack(idev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 first = 1;
1803 scount = 0;
1804 }
1805 if (first) {
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001806 skb = add_grhead(skb, pmc, type, &pgr, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 first = 0;
1808 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001809 if (!skb)
1810 return NULL;
Johannes Berg4df864c2017-06-16 14:29:21 +02001811 psrc = skb_put(skb, sizeof(*psrc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001813 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1815 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
Hangbin Liua0525172016-08-02 18:02:57 +08001816decrease_sf_crcount:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 psf->sf_crcount--;
1818 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1819 if (psf_prev)
1820 psf_prev->sf_next = psf->sf_next;
1821 else
1822 *psf_list = psf->sf_next;
1823 kfree(psf);
1824 continue;
1825 }
1826 }
1827 psf_prev = psf;
1828 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001829
1830empty_source:
1831 if (!stotal) {
1832 if (type == MLD2_ALLOW_NEW_SOURCES ||
1833 type == MLD2_BLOCK_OLD_SOURCES)
1834 return skb;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001835 if (pmc->mca_crcount || isquery || crsend) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001836 /* make sure we have room for group header */
1837 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1838 mld_sendpack(skb);
1839 skb = NULL; /* add_grhead will get a new one */
1840 }
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001841 skb = add_grhead(skb, pmc, type, &pgr, mtu);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001842 }
1843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (pgr)
1845 pgr->grec_nsrcs = htons(scount);
1846
1847 if (isquery)
1848 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1849 return skb;
1850}
1851
1852static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1853{
1854 struct sk_buff *skb = NULL;
1855 int type;
1856
Amerigo Wang89657792013-06-29 21:30:49 +08001857 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (!pmc) {
Ian Morris67ba4152014-08-24 21:53:10 +01001859 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (pmc->mca_flags & MAF_NOREPORT)
1861 continue;
1862 spin_lock_bh(&pmc->mca_lock);
1863 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1864 type = MLD2_MODE_IS_EXCLUDE;
1865 else
1866 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001867 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 spin_unlock_bh(&pmc->mca_lock);
1869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 } else {
1871 spin_lock_bh(&pmc->mca_lock);
1872 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1873 type = MLD2_MODE_IS_EXCLUDE;
1874 else
1875 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001876 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 spin_unlock_bh(&pmc->mca_lock);
1878 }
Amerigo Wang89657792013-06-29 21:30:49 +08001879 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (skb)
1881 mld_sendpack(skb);
1882}
1883
1884/*
1885 * remove zero-count source records from a source filter list
1886 */
1887static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1888{
1889 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1890
1891 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001892 for (psf = *ppsf; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 psf_next = psf->sf_next;
1894 if (psf->sf_crcount == 0) {
1895 if (psf_prev)
1896 psf_prev->sf_next = psf->sf_next;
1897 else
1898 *ppsf = psf->sf_next;
1899 kfree(psf);
1900 } else
1901 psf_prev = psf;
1902 }
1903}
1904
1905static void mld_send_cr(struct inet6_dev *idev)
1906{
1907 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1908 struct sk_buff *skb = NULL;
1909 int type, dtype;
1910
1911 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001912 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 /* deleted MCA's */
1915 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001916 for (pmc = idev->mc_tomb; pmc; pmc = pmc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 pmc_next = pmc->next;
1918 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1919 type = MLD2_BLOCK_OLD_SOURCES;
1920 dtype = MLD2_BLOCK_OLD_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001921 skb = add_grec(skb, pmc, type, 1, 0, 0);
1922 skb = add_grec(skb, pmc, dtype, 1, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1926 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001927 skb = add_grec(skb, pmc, type, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001929 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (pmc->mca_crcount == 0) {
1931 mld_clear_zeros(&pmc->mca_tomb);
1932 mld_clear_zeros(&pmc->mca_sources);
1933 }
1934 }
1935 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1936 !pmc->mca_sources) {
1937 if (pmc_prev)
1938 pmc_prev->next = pmc_next;
1939 else
1940 idev->mc_tomb = pmc_next;
1941 in6_dev_put(pmc->idev);
1942 kfree(pmc);
1943 } else
1944 pmc_prev = pmc;
1945 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001946 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 /* change recs */
Ian Morris67ba4152014-08-24 21:53:10 +01001949 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 spin_lock_bh(&pmc->mca_lock);
1951 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1952 type = MLD2_BLOCK_OLD_SOURCES;
1953 dtype = MLD2_ALLOW_NEW_SOURCES;
1954 } else {
1955 type = MLD2_ALLOW_NEW_SOURCES;
1956 dtype = MLD2_BLOCK_OLD_SOURCES;
1957 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001958 skb = add_grec(skb, pmc, type, 0, 0, 0);
1959 skb = add_grec(skb, pmc, dtype, 0, 1, 0); /* deleted sources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 /* filter mode changes */
1962 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1964 type = MLD2_CHANGE_TO_EXCLUDE;
1965 else
1966 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001967 skb = add_grec(skb, pmc, type, 0, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001968 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970 spin_unlock_bh(&pmc->mca_lock);
1971 }
1972 read_unlock_bh(&idev->lock);
1973 if (!skb)
1974 return;
1975 (void) mld_sendpack(skb);
1976}
1977
1978static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1979{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001980 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001981 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001983 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001984 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001985 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001987 int hlen = LL_RESERVED_SPACE(dev);
1988 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 int err, len, payload_len, full_len;
1990 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1991 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1992 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001993 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001994 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001996 if (type == ICMPV6_MGM_REDUCTION)
1997 snd_addr = &in6addr_linklocal_allrouters;
1998 else
1999 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
2002 payload_len = len + sizeof(ra);
2003 full_len = sizeof(struct ipv6hdr) + payload_len;
2004
Neil Hormanedf391f2009-04-27 02:45:02 -07002005 rcu_read_lock();
2006 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
2007 IPSTATS_MIB_OUT, full_len);
2008 rcu_read_unlock();
2009
Herbert Xua7ae1992011-11-18 02:20:04 +00002010 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Ian Morris63159f22015-03-29 14:00:04 +01002012 if (!skb) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09002013 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002014 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09002015 IPSTATS_MIB_OUTDISCARDS);
2016 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return;
2018 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02002019 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00002020 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Neil Horman95c385b2007-04-25 17:08:10 -07002022 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002024 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 * when a valid link-local address is not available.
2026 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09002027 saddr = &in6addr_any;
2028 } else
2029 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00002031 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Johannes Berg59ae1d12017-06-16 14:29:20 +02002033 skb_put_data(skb, ra, sizeof(ra));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Johannes Bergb080db52017-06-16 14:29:19 +02002035 hdr = skb_put_zero(skb, sizeof(struct mld_msg));
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09002036 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002037 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09002039 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
2040 IPPROTO_ICMPV6,
2041 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Eric Dumazet96b52e62010-06-07 21:05:02 +00002043 rcu_read_lock();
2044 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
David S. Miller4c9483b2011-03-12 16:22:43 -05002046 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002047 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
2048 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00002049 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08002050 if (IS_ERR(dst)) {
2051 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002052 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08002053 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002054
Eric Dumazetadf30902009-06-02 05:19:30 +00002055 skb_dst_set(skb, dst);
Eric W. Biederman29a26a52015-09-15 20:04:16 -05002056 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
2057 net, sk, skb, NULL, skb->dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -05002058 dst_output);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002059out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07002061 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07002062 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002064 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Eric Dumazet96b52e62010-06-07 21:05:02 +00002066 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002068
2069err_out:
2070 kfree_skb(skb);
2071 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002074static void mld_send_initial_cr(struct inet6_dev *idev)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002075{
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002076 struct sk_buff *skb;
2077 struct ifmcaddr6 *pmc;
2078 int type;
2079
2080 if (mld_in_v1_mode(idev))
2081 return;
2082
2083 skb = NULL;
2084 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002085 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002086 spin_lock_bh(&pmc->mca_lock);
2087 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2088 type = MLD2_CHANGE_TO_EXCLUDE;
2089 else
Hangbin Liuc7ea20c2018-07-10 22:41:27 +08002090 type = MLD2_ALLOW_NEW_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002091 skb = add_grec(skb, pmc, type, 0, 0, 1);
2092 spin_unlock_bh(&pmc->mca_lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002093 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002094 read_unlock_bh(&idev->lock);
2095 if (skb)
2096 mld_sendpack(skb);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002097}
2098
2099void ipv6_mc_dad_complete(struct inet6_dev *idev)
2100{
2101 idev->mc_dad_count = idev->mc_qrv;
2102 if (idev->mc_dad_count) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002103 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002104 idev->mc_dad_count--;
2105 if (idev->mc_dad_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002106 mld_dad_start_timer(idev,
2107 unsolicited_report_interval(idev));
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002108 }
2109}
2110
Kees Cooke99e88a2017-10-16 14:43:17 -07002111static void mld_dad_timer_expire(struct timer_list *t)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002112{
Kees Cooke99e88a2017-10-16 14:43:17 -07002113 struct inet6_dev *idev = from_timer(idev, t, mc_dad_timer);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002114
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002115 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002116 if (idev->mc_dad_count) {
2117 idev->mc_dad_count--;
2118 if (idev->mc_dad_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002119 mld_dad_start_timer(idev,
2120 unsolicited_report_interval(idev));
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002121 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002122 in6_dev_put(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002123}
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002126 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 struct ip6_sf_list *psf, *psf_prev;
2129 int rv = 0;
2130
2131 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002132 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2134 break;
2135 psf_prev = psf;
2136 }
2137 if (!psf || psf->sf_count[sfmode] == 0) {
2138 /* source filter not found, or count wrong => bug */
2139 return -ESRCH;
2140 }
2141 psf->sf_count[sfmode]--;
2142 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
2143 struct inet6_dev *idev = pmc->idev;
2144
2145 /* no more filters for this source */
2146 if (psf_prev)
2147 psf_prev->sf_next = psf->sf_next;
2148 else
2149 pmc->mca_sources = psf->sf_next;
2150 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002151 !mld_in_v1_mode(idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 psf->sf_crcount = idev->mc_qrv;
2153 psf->sf_next = pmc->mca_tomb;
2154 pmc->mca_tomb = psf;
2155 rv = 1;
2156 } else
2157 kfree(psf);
2158 }
2159 return rv;
2160}
2161
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002162static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2163 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 int delta)
2165{
2166 struct ifmcaddr6 *pmc;
2167 int changerec = 0;
2168 int i, err;
2169
2170 if (!idev)
2171 return -ENODEV;
2172 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002173 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2175 break;
2176 }
2177 if (!pmc) {
2178 /* MCA not found?? bug */
2179 read_unlock_bh(&idev->lock);
2180 return -ESRCH;
2181 }
2182 spin_lock_bh(&pmc->mca_lock);
2183 sf_markstate(pmc);
2184 if (!delta) {
2185 if (!pmc->mca_sfcount[sfmode]) {
2186 spin_unlock_bh(&pmc->mca_lock);
2187 read_unlock_bh(&idev->lock);
2188 return -EINVAL;
2189 }
2190 pmc->mca_sfcount[sfmode]--;
2191 }
2192 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002193 for (i = 0; i < sfcount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2195
2196 changerec |= rv > 0;
2197 if (!err && rv < 0)
2198 err = rv;
2199 }
2200 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
2201 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
2202 pmc->mca_sfcount[MCAST_INCLUDE]) {
2203 struct ip6_sf_list *psf;
2204
2205 /* filter mode change */
2206 pmc->mca_sfmode = MCAST_INCLUDE;
2207 pmc->mca_crcount = idev->mc_qrv;
2208 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002209 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 psf->sf_crcount = 0;
2211 mld_ifc_event(pmc->idev);
2212 } else if (sf_setstate(pmc) || changerec)
2213 mld_ifc_event(pmc->idev);
2214 spin_unlock_bh(&pmc->mca_lock);
2215 read_unlock_bh(&idev->lock);
2216 return err;
2217}
2218
2219/*
2220 * Add multicast single-source filter to the interface list
2221 */
2222static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00002223 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
2225 struct ip6_sf_list *psf, *psf_prev;
2226
2227 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002228 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2230 break;
2231 psf_prev = psf;
2232 }
2233 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002234 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (!psf)
2236 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 psf->sf_addr = *psfsrc;
2239 if (psf_prev) {
2240 psf_prev->sf_next = psf;
2241 } else
2242 pmc->mca_sources = psf;
2243 }
2244 psf->sf_count[sfmode]++;
2245 return 0;
2246}
2247
2248static void sf_markstate(struct ifmcaddr6 *pmc)
2249{
2250 struct ip6_sf_list *psf;
2251 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2252
Ian Morris67ba4152014-08-24 21:53:10 +01002253 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2255 psf->sf_oldin = mca_xcount ==
2256 psf->sf_count[MCAST_EXCLUDE] &&
2257 !psf->sf_count[MCAST_INCLUDE];
2258 } else
2259 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2260}
2261
2262static int sf_setstate(struct ifmcaddr6 *pmc)
2263{
David L Stevens7add2a42006-01-24 13:06:39 -08002264 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2266 int qrv = pmc->idev->mc_qrv;
2267 int new_in, rv;
2268
2269 rv = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002270 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2272 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2273 !psf->sf_count[MCAST_INCLUDE];
2274 } else
2275 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08002276 if (new_in) {
2277 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05002278 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08002279
Ian Morris67ba4152014-08-24 21:53:10 +01002280 for (dpsf = pmc->mca_tomb; dpsf;
2281 dpsf = dpsf->sf_next) {
David L Stevens7add2a42006-01-24 13:06:39 -08002282 if (ipv6_addr_equal(&dpsf->sf_addr,
2283 &psf->sf_addr))
2284 break;
2285 prev = dpsf;
2286 }
2287 if (dpsf) {
2288 if (prev)
2289 prev->sf_next = dpsf->sf_next;
2290 else
2291 pmc->mca_tomb = dpsf->sf_next;
2292 kfree(dpsf);
2293 }
2294 psf->sf_crcount = qrv;
2295 rv++;
2296 }
2297 } else if (psf->sf_oldin) {
2298 psf->sf_crcount = 0;
2299 /*
2300 * add or update "delete" records if an active filter
2301 * is now inactive
2302 */
Ian Morris67ba4152014-08-24 21:53:10 +01002303 for (dpsf = pmc->mca_tomb; dpsf; dpsf = dpsf->sf_next)
David L Stevens7add2a42006-01-24 13:06:39 -08002304 if (ipv6_addr_equal(&dpsf->sf_addr,
2305 &psf->sf_addr))
2306 break;
2307 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002308 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002309 if (!dpsf)
2310 continue;
2311 *dpsf = *psf;
2312 /* pmc->mca_lock held by callers */
2313 dpsf->sf_next = pmc->mca_tomb;
2314 pmc->mca_tomb = dpsf;
2315 }
2316 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 rv++;
2318 }
2319 }
2320 return rv;
2321}
2322
2323/*
2324 * Add multicast source filter list to the interface list
2325 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002326static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2327 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 int delta)
2329{
2330 struct ifmcaddr6 *pmc;
2331 int isexclude;
2332 int i, err;
2333
2334 if (!idev)
2335 return -ENODEV;
2336 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002337 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2339 break;
2340 }
2341 if (!pmc) {
2342 /* MCA not found?? bug */
2343 read_unlock_bh(&idev->lock);
2344 return -ESRCH;
2345 }
2346 spin_lock_bh(&pmc->mca_lock);
2347
2348 sf_markstate(pmc);
2349 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2350 if (!delta)
2351 pmc->mca_sfcount[sfmode]++;
2352 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002353 for (i = 0; i < sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002354 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (err)
2356 break;
2357 }
2358 if (err) {
2359 int j;
2360
2361 if (!delta)
2362 pmc->mca_sfcount[sfmode]--;
Ian Morris67ba4152014-08-24 21:53:10 +01002363 for (j = 0; j < i; j++)
RongQing.Li78d50212012-04-04 16:47:04 +00002364 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 struct ip6_sf_list *psf;
2367
2368 /* filter mode change */
2369 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2370 pmc->mca_sfmode = MCAST_EXCLUDE;
2371 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2372 pmc->mca_sfmode = MCAST_INCLUDE;
2373 /* else no filters; keep old mode for reports */
2374
2375 pmc->mca_crcount = idev->mc_qrv;
2376 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002377 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 psf->sf_crcount = 0;
2379 mld_ifc_event(idev);
2380 } else if (sf_setstate(pmc))
2381 mld_ifc_event(idev);
2382 spin_unlock_bh(&pmc->mca_lock);
2383 read_unlock_bh(&idev->lock);
2384 return err;
2385}
2386
2387static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2388{
2389 struct ip6_sf_list *psf, *nextpsf;
2390
Ian Morris67ba4152014-08-24 21:53:10 +01002391 for (psf = pmc->mca_tomb; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 nextpsf = psf->sf_next;
2393 kfree(psf);
2394 }
2395 pmc->mca_tomb = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002396 for (psf = pmc->mca_sources; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 nextpsf = psf->sf_next;
2398 kfree(psf);
2399 }
2400 pmc->mca_sources = NULL;
2401 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002402 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2404}
2405
2406
2407static void igmp6_join_group(struct ifmcaddr6 *ma)
2408{
2409 unsigned long delay;
2410
2411 if (ma->mca_flags & MAF_NOREPORT)
2412 return;
2413
2414 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2415
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05002416 delay = prandom_u32() % unsolicited_report_interval(ma->idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 spin_lock_bh(&ma->mca_lock);
2419 if (del_timer(&ma->mca_timer)) {
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03002420 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 delay = ma->mca_timer.expires - jiffies;
2422 }
2423
2424 if (!mod_timer(&ma->mca_timer, jiffies + delay))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03002425 refcount_inc(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2427 spin_unlock_bh(&ma->mca_lock);
2428}
2429
2430static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2431 struct inet6_dev *idev)
2432{
2433 int err;
2434
Eric Dumazetdc012f32018-10-12 18:58:53 -07002435 write_lock_bh(&iml->sflock);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002436 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 /* any-source empty exclude case */
Eric Dumazetdc012f32018-10-12 18:58:53 -07002438 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2439 } else {
2440 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2441 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2442 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2443 iml->sflist = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
Eric Dumazetdc012f32018-10-12 18:58:53 -07002445 write_unlock_bh(&iml->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return err;
2447}
2448
2449static void igmp6_leave_group(struct ifmcaddr6 *ma)
2450{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002451 if (mld_in_v1_mode(ma->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (ma->mca_flags & MAF_LAST_REPORTER)
2453 igmp6_send(&ma->mca_addr, ma->idev->dev,
2454 ICMPV6_MGM_REDUCTION);
2455 } else {
2456 mld_add_delrec(ma->idev, ma);
2457 mld_ifc_event(ma->idev);
2458 }
2459}
2460
Kees Cooke99e88a2017-10-16 14:43:17 -07002461static void mld_gq_timer_expire(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Kees Cooke99e88a2017-10-16 14:43:17 -07002463 struct inet6_dev *idev = from_timer(idev, t, mc_gq_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 idev->mc_gq_running = 0;
2466 mld_send_report(idev, NULL);
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002467 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
Kees Cooke99e88a2017-10-16 14:43:17 -07002470static void mld_ifc_timer_expire(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
Kees Cooke99e88a2017-10-16 14:43:17 -07002472 struct inet6_dev *idev = from_timer(idev, t, mc_ifc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 mld_send_cr(idev);
2475 if (idev->mc_ifc_count) {
2476 idev->mc_ifc_count--;
2477 if (idev->mc_ifc_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002478 mld_ifc_start_timer(idev,
2479 unsolicited_report_interval(idev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002481 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
2483
2484static void mld_ifc_event(struct inet6_dev *idev)
2485{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002486 if (mld_in_v1_mode(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return;
2488 idev->mc_ifc_count = idev->mc_qrv;
2489 mld_ifc_start_timer(idev, 1);
2490}
2491
Kees Cooke99e88a2017-10-16 14:43:17 -07002492static void igmp6_timer_handler(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Kees Cooke99e88a2017-10-16 14:43:17 -07002494 struct ifmcaddr6 *ma = from_timer(ma, t, mca_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002496 if (mld_in_v1_mode(ma->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2498 else
2499 mld_send_report(ma->idev, ma);
2500
2501 spin_lock(&ma->mca_lock);
2502 ma->mca_flags |= MAF_LAST_REPORTER;
2503 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2504 spin_unlock(&ma->mca_lock);
2505 ma_put(ma);
2506}
2507
Moni Shoua75c78502009-09-15 02:37:40 -07002508/* Device changing type */
2509
2510void ipv6_mc_unmap(struct inet6_dev *idev)
2511{
2512 struct ifmcaddr6 *i;
2513
2514 /* Install multicast list, except for all-nodes (already installed) */
2515
2516 read_lock_bh(&idev->lock);
2517 for (i = idev->mc_list; i; i = i->next)
2518 igmp6_group_dropped(i);
2519 read_unlock_bh(&idev->lock);
2520}
2521
2522void ipv6_mc_remap(struct inet6_dev *idev)
2523{
2524 ipv6_mc_up(idev);
2525}
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527/* Device going down */
2528
2529void ipv6_mc_down(struct inet6_dev *idev)
2530{
2531 struct ifmcaddr6 *i;
2532
2533 /* Withdraw multicast list */
2534
2535 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Ian Morris67ba4152014-08-24 21:53:10 +01002537 for (i = idev->mc_list; i; i = i->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 igmp6_group_dropped(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Hangbin Liu1666d492017-01-12 21:19:37 +08002540 /* Should stop timer after group drop. or we will
2541 * start timer again in mld_ifc_event()
2542 */
2543 mld_ifc_stop_timer(idev);
2544 mld_gq_stop_timer(idev);
2545 mld_dad_stop_timer(idev);
2546 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
2548
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002549static void ipv6_mc_reset(struct inet6_dev *idev)
2550{
2551 idev->mc_qrv = sysctl_mld_qrv;
2552 idev->mc_qi = MLD_QI_DEFAULT;
2553 idev->mc_qri = MLD_QRI_DEFAULT;
2554 idev->mc_v1_seen = 0;
2555 idev->mc_maxdelay = unsolicited_report_interval(idev);
2556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558/* Device going up */
2559
2560void ipv6_mc_up(struct inet6_dev *idev)
2561{
2562 struct ifmcaddr6 *i;
2563
2564 /* Install multicast list, except for all-nodes (already installed) */
2565
2566 read_lock_bh(&idev->lock);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002567 ipv6_mc_reset(idev);
Hangbin Liu1666d492017-01-12 21:19:37 +08002568 for (i = idev->mc_list; i; i = i->next) {
2569 mld_del_delrec(idev, i);
Hangbin Liu0ae0d602018-07-20 14:07:42 +08002570 igmp6_group_added(i);
Hangbin Liu1666d492017-01-12 21:19:37 +08002571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 read_unlock_bh(&idev->lock);
2573}
2574
2575/* IPv6 device initialization. */
2576
2577void ipv6_mc_init_dev(struct inet6_dev *idev)
2578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002580 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 idev->mc_gq_running = 0;
Kees Cooke99e88a2017-10-16 14:43:17 -07002582 timer_setup(&idev->mc_gq_timer, mld_gq_timer_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 idev->mc_tomb = NULL;
2584 idev->mc_ifc_count = 0;
Kees Cooke99e88a2017-10-16 14:43:17 -07002585 timer_setup(&idev->mc_ifc_timer, mld_ifc_timer_expire, 0);
2586 timer_setup(&idev->mc_dad_timer, mld_dad_timer_expire, 0);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002587 ipv6_mc_reset(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
2591/*
2592 * Device is about to be destroyed: clean up.
2593 */
2594
2595void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2596{
2597 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 /* Deactivate timers */
2600 ipv6_mc_down(idev);
Hangbin Liu1666d492017-01-12 21:19:37 +08002601 mld_clear_delrec(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2605 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2606 * fail.
2607 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002608 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002610 if (idev->cnf.forwarding)
2611 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
2613 write_lock_bh(&idev->lock);
2614 while ((i = idev->mc_list) != NULL) {
2615 idev->mc_list = i->next;
Hangbin Liu1666d492017-01-12 21:19:37 +08002616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 ma_put(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 write_lock_bh(&idev->lock);
2620 }
2621 write_unlock_bh(&idev->lock);
2622}
2623
Vlad Yasevich382ed722017-03-28 14:49:16 -04002624static void ipv6_mc_rejoin_groups(struct inet6_dev *idev)
2625{
2626 struct ifmcaddr6 *pmc;
2627
2628 ASSERT_RTNL();
2629
2630 if (mld_in_v1_mode(idev)) {
2631 read_lock_bh(&idev->lock);
2632 for (pmc = idev->mc_list; pmc; pmc = pmc->next)
2633 igmp6_join_group(pmc);
2634 read_unlock_bh(&idev->lock);
2635 } else
2636 mld_send_report(idev, NULL);
2637}
2638
2639static int ipv6_mc_netdev_event(struct notifier_block *this,
2640 unsigned long event,
2641 void *ptr)
2642{
2643 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2644 struct inet6_dev *idev = __in6_dev_get(dev);
2645
2646 switch (event) {
2647 case NETDEV_RESEND_IGMP:
2648 if (idev)
2649 ipv6_mc_rejoin_groups(idev);
2650 break;
2651 default:
2652 break;
2653 }
2654
2655 return NOTIFY_DONE;
2656}
2657
2658static struct notifier_block igmp6_netdev_notifier = {
2659 .notifier_call = ipv6_mc_netdev_event,
2660};
2661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662#ifdef CONFIG_PROC_FS
2663struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002664 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 struct net_device *dev;
2666 struct inet6_dev *idev;
2667};
2668
2669#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2670
2671static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2672{
2673 struct ifmcaddr6 *im = NULL;
2674 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002675 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Pavel Emelianov7562f872007-05-03 15:13:45 -07002677 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002678 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002680 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (!idev)
2682 continue;
2683 read_lock_bh(&idev->lock);
2684 im = idev->mc_list;
2685 if (im) {
2686 state->idev = idev;
2687 break;
2688 }
2689 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
2691 return im;
2692}
2693
2694static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2695{
2696 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2697
2698 im = im->next;
2699 while (!im) {
Ian Morris53b24b82015-03-29 14:00:05 +01002700 if (likely(state->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002702
2703 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 if (!state->dev) {
2705 state->idev = NULL;
2706 break;
2707 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002708 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (!state->idev)
2710 continue;
2711 read_lock_bh(&state->idev->lock);
2712 im = state->idev->mc_list;
2713 }
2714 return im;
2715}
2716
2717static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2718{
2719 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2720 if (im)
2721 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2722 --pos;
2723 return pos ? NULL : im;
2724}
2725
2726static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002727 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728{
Eric Dumazetce81b762009-11-11 17:34:30 +00002729 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 return igmp6_mc_get_idx(seq, *pos);
2731}
2732
2733static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2734{
Eric Dumazetce81b762009-11-11 17:34:30 +00002735 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 ++*pos;
2738 return im;
2739}
2740
2741static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002742 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002745
Ian Morris53b24b82015-03-29 14:00:05 +01002746 if (likely(state->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 state->idev = NULL;
2749 }
2750 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002751 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
2753
2754static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2755{
2756 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2757 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2758
2759 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002760 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002762 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 im->mca_users, im->mca_flags,
2764 (im->mca_flags&MAF_TIMER_RUNNING) ?
2765 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2766 return 0;
2767}
2768
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002769static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 .start = igmp6_mc_seq_start,
2771 .next = igmp6_mc_seq_next,
2772 .stop = igmp6_mc_seq_stop,
2773 .show = igmp6_mc_seq_show,
2774};
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002777 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 struct net_device *dev;
2779 struct inet6_dev *idev;
2780 struct ifmcaddr6 *im;
2781};
2782
2783#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2784
2785static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2786{
2787 struct ip6_sf_list *psf = NULL;
2788 struct ifmcaddr6 *im = NULL;
2789 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002790 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Pavel Emelianov7562f872007-05-03 15:13:45 -07002792 state->idev = NULL;
2793 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002794 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002796 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 if (unlikely(idev == NULL))
2798 continue;
2799 read_lock_bh(&idev->lock);
2800 im = idev->mc_list;
Ian Morris53b24b82015-03-29 14:00:05 +01002801 if (likely(im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 spin_lock_bh(&im->mca_lock);
2803 psf = im->mca_sources;
Ian Morris53b24b82015-03-29 14:00:05 +01002804 if (likely(psf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 state->im = im;
2806 state->idev = idev;
2807 break;
2808 }
2809 spin_unlock_bh(&im->mca_lock);
2810 }
2811 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 }
2813 return psf;
2814}
2815
2816static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2817{
2818 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2819
2820 psf = psf->sf_next;
2821 while (!psf) {
2822 spin_unlock_bh(&state->im->mca_lock);
2823 state->im = state->im->next;
2824 while (!state->im) {
Ian Morris53b24b82015-03-29 14:00:05 +01002825 if (likely(state->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002827
2828 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (!state->dev) {
2830 state->idev = NULL;
2831 goto out;
2832 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002833 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 if (!state->idev)
2835 continue;
2836 read_lock_bh(&state->idev->lock);
2837 state->im = state->idev->mc_list;
2838 }
2839 if (!state->im)
2840 break;
2841 spin_lock_bh(&state->im->mca_lock);
2842 psf = state->im->mca_sources;
2843 }
2844out:
2845 return psf;
2846}
2847
2848static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2849{
2850 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2851 if (psf)
2852 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2853 --pos;
2854 return pos ? NULL : psf;
2855}
2856
2857static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002858 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
Eric Dumazetce81b762009-11-11 17:34:30 +00002860 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2862}
2863
2864static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2865{
2866 struct ip6_sf_list *psf;
2867 if (v == SEQ_START_TOKEN)
2868 psf = igmp6_mcf_get_first(seq);
2869 else
2870 psf = igmp6_mcf_get_next(seq, v);
2871 ++*pos;
2872 return psf;
2873}
2874
2875static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002876 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
Ian Morris53b24b82015-03-29 14:00:05 +01002879 if (likely(state->im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 spin_unlock_bh(&state->im->mca_lock);
2881 state->im = NULL;
2882 }
Ian Morris53b24b82015-03-29 14:00:05 +01002883 if (likely(state->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 state->idev = NULL;
2886 }
2887 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002888 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889}
2890
2891static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2892{
2893 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2894 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2895
2896 if (v == SEQ_START_TOKEN) {
Joe Perches1744bea2014-11-04 15:37:03 -08002897 seq_puts(seq, "Idx Device Multicast Address Source Address INC EXC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 } else {
2899 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002900 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002902 &state->im->mca_addr,
2903 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 psf->sf_count[MCAST_INCLUDE],
2905 psf->sf_count[MCAST_EXCLUDE]);
2906 }
2907 return 0;
2908}
2909
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002910static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 .start = igmp6_mcf_seq_start,
2912 .next = igmp6_mcf_seq_next,
2913 .stop = igmp6_mcf_seq_stop,
2914 .show = igmp6_mcf_seq_show,
2915};
2916
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002917static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002918{
2919 int err;
2920
2921 err = -ENOMEM;
Christoph Hellwigc3506372018-04-10 19:42:55 +02002922 if (!proc_create_net("igmp6", 0444, net->proc_net, &igmp6_mc_seq_ops,
2923 sizeof(struct igmp6_mc_iter_state)))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002924 goto out;
Christoph Hellwigc3506372018-04-10 19:42:55 +02002925 if (!proc_create_net("mcfilter6", 0444, net->proc_net,
2926 &igmp6_mcf_seq_ops,
2927 sizeof(struct igmp6_mcf_iter_state)))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002928 goto out_proc_net_igmp6;
2929
2930 err = 0;
2931out:
2932 return err;
2933
2934out_proc_net_igmp6:
Gao fengece31ff2013-02-18 01:34:56 +00002935 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002936 goto out;
2937}
2938
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002939static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002940{
Gao fengece31ff2013-02-18 01:34:56 +00002941 remove_proc_entry("mcfilter6", net->proc_net);
2942 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002943}
2944#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002945static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002946{
2947 return 0;
2948}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002949static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002950{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002951}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952#endif
2953
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002954static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 int err;
2957
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002958 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2959 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002961 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002963 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 }
2965
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002966 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Madhu Challa93a714d2015-02-25 09:58:35 -08002968 err = inet_ctl_sock_create(&net->ipv6.mc_autojoin_sk, PF_INET6,
2969 SOCK_RAW, IPPROTO_ICMPV6, net);
2970 if (err < 0) {
2971 pr_err("Failed to initialize the IGMP6 autojoin socket (err %d)\n",
2972 err);
2973 goto out_sock_create;
2974 }
2975
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002976 err = igmp6_proc_init(net);
2977 if (err)
Madhu Challa93a714d2015-02-25 09:58:35 -08002978 goto out_sock_create_autojoin;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002979
Madhu Challa93a714d2015-02-25 09:58:35 -08002980 return 0;
2981
2982out_sock_create_autojoin:
2983 inet_ctl_sock_destroy(net->ipv6.mc_autojoin_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002984out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002985 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Madhu Challa93a714d2015-02-25 09:58:35 -08002986out:
2987 return err;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002988}
2989
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002990static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002991{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002992 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Madhu Challa93a714d2015-02-25 09:58:35 -08002993 inet_ctl_sock_destroy(net->ipv6.mc_autojoin_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002994 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002995}
2996
2997static struct pernet_operations igmp6_net_ops = {
2998 .init = igmp6_net_init,
2999 .exit = igmp6_net_exit,
3000};
3001
3002int __init igmp6_init(void)
3003{
3004 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
3006
Vlad Yasevich382ed722017-03-28 14:49:16 -04003007int __init igmp6_late_init(void)
3008{
3009 return register_netdevice_notifier(&igmp6_netdev_notifier);
3010}
3011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012void igmp6_cleanup(void)
3013{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08003014 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
Vlad Yasevich382ed722017-03-28 14:49:16 -04003016
3017void igmp6_late_cleanup(void)
3018{
3019 unregister_netdevice_notifier(&igmp6_netdev_notifier);
3020}