blob: 42f3f5cd349fce18dee01bbb0c8e774f9573e8f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Multicast support for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09008 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/* Changes:
17 *
18 * yoshfuji : fix format of router-alert option
19 * YOSHIFUJI Hideaki @USAGI:
20 * Fixed source address for MLD message based on
21 * <draft-ietf-magma-mld-source-05.txt>.
22 * YOSHIFUJI Hideaki @USAGI:
23 * - Ignore Queries for invalid addresses.
24 * - MLD for link-local addresses.
25 * David L Stevens <dlstevens@us.ibm.com>:
26 * - MLDv2 support
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/errno.h>
31#include <linux/types.h>
32#include <linux/string.h>
33#include <linux/socket.h>
34#include <linux/sockios.h>
35#include <linux/jiffies.h>
36#include <linux/times.h>
37#include <linux/net.h>
38#include <linux/in.h>
39#include <linux/in6.h>
40#include <linux/netdevice.h>
41#include <linux/if_arp.h>
42#include <linux/route.h>
43#include <linux/init.h>
44#include <linux/proc_fs.h>
45#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +020047#include <linux/pkt_sched.h>
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090048#include <net/mld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <linux/netfilter.h>
51#include <linux/netfilter_ipv6.h>
52
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020053#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/sock.h>
55#include <net/snmp.h>
56
57#include <net/ipv6.h>
58#include <net/protocol.h>
59#include <net/if_inet6.h>
60#include <net/ndisc.h>
61#include <net/addrconf.h>
62#include <net/ip6_route.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070063#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <net/ip6_checksum.h>
66
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090067/* Ensure that we have struct in6_addr aligned on 32bit word. */
Masahiro Yamada32b395a2018-02-06 15:40:35 -080068static int __mld2_query_bugs[] __attribute__((__unused__)) = {
69 BUILD_BUG_ON_ZERO(offsetof(struct mld2_query, mld2q_srcs) % 4),
70 BUILD_BUG_ON_ZERO(offsetof(struct mld2_report, mld2r_grec) % 4),
71 BUILD_BUG_ON_ZERO(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static void igmp6_join_group(struct ifmcaddr6 *ma);
77static void igmp6_leave_group(struct ifmcaddr6 *ma);
Kees Cooke99e88a2017-10-16 14:43:17 -070078static void igmp6_timer_handler(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Kees Cooke99e88a2017-10-16 14:43:17 -070080static void mld_gq_timer_expire(struct timer_list *t);
81static void mld_ifc_timer_expire(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static void mld_ifc_event(struct inet6_dev *idev);
83static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Hangbin Liu1666d492017-01-12 21:19:37 +080084static void mld_del_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void mld_clear_delrec(struct inet6_dev *idev);
Daniel Borkmann6c567b72013-09-04 00:19:38 +020086static bool mld_in_v1_mode(const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int sf_setstate(struct ifmcaddr6 *pmc);
88static void sf_markstate(struct ifmcaddr6 *pmc);
89static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000090static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
91 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000093static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
94 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int delta);
96static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
97 struct inet6_dev *idev);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +080098static int __ipv6_dev_mc_inc(struct net_device *dev,
99 const struct in6_addr *addr, unsigned int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define MLD_QRV_DEFAULT 2
Daniel Borkmann89225d12013-09-04 00:19:37 +0200102/* RFC3810, 9.2. Query Interval */
103#define MLD_QI_DEFAULT (125 * HZ)
104/* RFC3810, 9.3. Query Response Interval */
105#define MLD_QRI_DEFAULT (10 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Daniel Borkmann9fd07842013-08-20 12:22:02 +0200107/* RFC3810, 8.1 Query Version Distinctions */
108#define MLD_V1_QUERY_LEN 24
109#define MLD_V2_QUERY_LEN_MIN 28
110
David L Stevens6f4353d2005-12-26 17:03:46 -0800111#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Brian Haleyab32ea52006-09-22 14:15:41 -0700113int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200114int sysctl_mld_qrv __read_mostly = MLD_QRV_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
117 * socket join on multicast group
118 */
119
Eric Dumazet456b61b2010-11-23 13:12:15 +0000120#define for_each_pmc_rcu(np, pmc) \
121 for (pmc = rcu_dereference(np->ipv6_mc_list); \
122 pmc != NULL; \
123 pmc = rcu_dereference(pmc->next))
124
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200125static int unsolicited_report_interval(struct inet6_dev *idev)
126{
127 int iv;
128
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200129 if (mld_in_v1_mode(idev))
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200130 iv = idev->cnf.mldv1_unsolicited_report_interval;
131 else
132 iv = idev->cnf.mldv2_unsolicited_report_interval;
133
134 return iv > 0 ? iv : 1;
135}
136
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800137static int __ipv6_sock_mc_join(struct sock *sk, int ifindex,
138 const struct in6_addr *addr, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct net_device *dev = NULL;
141 struct ipv6_mc_socklist *mc_lst;
142 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900143 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 int err;
145
Madhu Challa46a4dee2015-02-25 09:58:34 -0800146 ASSERT_RTNL();
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!ipv6_addr_is_multicast(addr))
149 return -EINVAL;
150
Eric Dumazet456b61b2010-11-23 13:12:15 +0000151 rcu_read_lock();
152 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700153 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
154 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000155 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700156 return -EADDRINUSE;
157 }
158 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000159 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
162
Ian Morris63159f22015-03-29 14:00:04 +0100163 if (!mc_lst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -ENOMEM;
165
166 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000167 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (ifindex == 0) {
170 struct rt6_info *rt;
David Ahernb75cc8f2018-03-02 08:32:17 -0800171 rt = rt6_lookup(net, addr, NULL, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500173 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000174 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176 } else
WANG Cong414b6c92014-09-11 15:35:14 -0700177 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Ian Morris63159f22015-03-29 14:00:04 +0100179 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
181 return -ENODEV;
182 }
183
184 mc_lst->ifindex = dev->ifindex;
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800185 mc_lst->sfmode = mode;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800186 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 mc_lst->sflist = NULL;
188
189 /*
190 * now add/increase the group membership on the device
191 */
192
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800193 err = __ipv6_dev_mc_inc(dev, addr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 if (err) {
196 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return err;
198 }
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000201 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204}
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800205
206int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
207{
208 return __ipv6_sock_mc_join(sk, ifindex, addr, MCAST_EXCLUDE);
209}
Madhu Challa46a4dee2015-02-25 09:58:34 -0800210EXPORT_SYMBOL(ipv6_sock_mc_join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800212int ipv6_sock_mc_join_ssm(struct sock *sk, int ifindex,
213 const struct in6_addr *addr, unsigned int mode)
214{
215 return __ipv6_sock_mc_join(sk, ifindex, addr, mode);
216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
219 * socket leave on multicast group
220 */
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -0300221int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000224 struct ipv6_mc_socklist *mc_lst;
225 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900226 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Madhu Challa46a4dee2015-02-25 09:58:34 -0800228 ASSERT_RTNL();
229
Li Weia858d642012-07-17 15:28:59 +0800230 if (!ipv6_addr_is_multicast(addr))
231 return -EINVAL;
232
Eric Dumazet456b61b2010-11-23 13:12:15 +0000233 for (lnk = &np->ipv6_mc_list;
WANG Congb5350912014-09-11 15:35:13 -0700234 (mc_lst = rtnl_dereference(*lnk)) != NULL;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000235 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
237 ipv6_addr_equal(&mc_lst->addr, addr)) {
238 struct net_device *dev;
239
240 *lnk = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
WANG Cong414b6c92014-09-11 15:35:14 -0700242 dev = __dev_get_by_index(net, mc_lst->ifindex);
Ian Morris53b24b82015-03-29 14:00:05 +0100243 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000244 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
David L Stevensacd6e002006-08-17 16:27:39 -0700246 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000247 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700249 } else
250 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200251
Eric Dumazet456b61b2010-11-23 13:12:15 +0000252 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800253 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255 }
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
David L Stevens9951f032005-07-08 17:47:28 -0700258 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
Madhu Challa46a4dee2015-02-25 09:58:34 -0800260EXPORT_SYMBOL(ipv6_sock_mc_drop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Eric Dumazet96b52e62010-06-07 21:05:02 +0000262/* called with rcu_read_lock() */
263static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000264 const struct in6_addr *group,
Eric Dumazet96b52e62010-06-07 21:05:02 +0000265 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct net_device *dev = NULL;
268 struct inet6_dev *idev = NULL;
269
270 if (ifindex == 0) {
David Ahernb75cc8f2018-03-02 08:32:17 -0800271 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500274 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000275 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000278 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000281 return NULL;
282 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800283 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000284 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000286 if (idev->dead) {
287 read_unlock_bh(&idev->lock);
288 return NULL;
289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return idev;
291}
292
WANG Cong8651be82016-10-19 23:35:12 -0700293void __ipv6_sock_mc_close(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 struct ipv6_pinfo *np = inet6_sk(sk);
296 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900297 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
WANG Cong8651be82016-10-19 23:35:12 -0700299 ASSERT_RTNL();
Eric Dumazet0e1efe92012-12-05 09:18:10 +0000300
WANG Congb5350912014-09-11 15:35:13 -0700301 while ((mc_lst = rtnl_dereference(np->ipv6_mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct net_device *dev;
303
304 np->ipv6_mc_list = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
WANG Cong414b6c92014-09-11 15:35:14 -0700306 dev = __dev_get_by_index(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000308 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
David L Stevensacd6e002006-08-17 16:27:39 -0700310 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000311 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700313 } else
314 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Eric Dumazet456b61b2010-11-23 13:12:15 +0000316 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800317 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
WANG Cong8651be82016-10-19 23:35:12 -0700319}
320
321void ipv6_sock_mc_close(struct sock *sk)
322{
323 struct ipv6_pinfo *np = inet6_sk(sk);
324
325 if (!rcu_access_pointer(np->ipv6_mc_list))
326 return;
327 rtnl_lock();
328 __ipv6_sock_mc_close(sk);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200329 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332int ip6_mc_source(int add, int omode, struct sock *sk,
333 struct group_source_req *pgsr)
334{
335 struct in6_addr *source, *group;
336 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct inet6_dev *idev;
338 struct ipv6_pinfo *inet6 = inet6_sk(sk);
339 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900340 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700342 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800343 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int err;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
347 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
348
349 if (!ipv6_addr_is_multicast(group))
350 return -EINVAL;
351
Eric Dumazet96b52e62010-06-07 21:05:02 +0000352 rcu_read_lock();
353 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
354 if (!idev) {
355 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 err = -EADDRNOTAVAIL;
360
Eric Dumazet456b61b2010-11-23 13:12:15 +0000361 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
363 continue;
364 if (ipv6_addr_equal(&pmc->addr, group))
365 break;
366 }
David L Stevens917f2f12005-07-08 17:45:16 -0700367 if (!pmc) { /* must have a prior join */
368 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* if a source filter was set, must be the same mode as before */
372 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700373 if (pmc->sfmode != omode) {
374 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 } else if (pmc->sfmode != omode) {
378 /* allow mode switches for empty-set filters */
379 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
380 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
381 pmc->sfmode = omode;
382 }
383
Eric Dumazet96b52e62010-06-07 21:05:02 +0000384 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800385 pmclocked = 1;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 psl = pmc->sflist;
388 if (!add) {
389 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700390 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 rv = !0;
Ian Morris67ba4152014-08-24 21:53:10 +0100392 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000393 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (rv == 0)
395 break;
396 }
397 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700398 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700400 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
401 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
402 leavegroup = 1;
403 goto done;
404 }
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* update the interface filter */
407 ip6_mc_del_src(idev, group, omode, 1, source, 1);
408
Ian Morris67ba4152014-08-24 21:53:10 +0100409 for (j = i+1; j < psl->sl_count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 psl->sl_addr[j-1] = psl->sl_addr[j];
411 psl->sl_count--;
412 err = 0;
413 goto done;
414 }
415 /* else, add a new source to the filter */
416
417 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
418 err = -ENOBUFS;
419 goto done;
420 }
421 if (!psl || psl->sl_count == psl->sl_max) {
422 struct ip6_sf_socklist *newpsl;
423 int count = IP6_SFBLOCK;
424
425 if (psl)
426 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800427 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!newpsl) {
429 err = -ENOBUFS;
430 goto done;
431 }
432 newpsl->sl_max = count;
433 newpsl->sl_count = count - IP6_SFBLOCK;
434 if (psl) {
Ian Morris67ba4152014-08-24 21:53:10 +0100435 for (i = 0; i < psl->sl_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 newpsl->sl_addr[i] = psl->sl_addr[i];
437 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
438 }
439 pmc->sflist = psl = newpsl;
440 }
441 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
Ian Morris67ba4152014-08-24 21:53:10 +0100442 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000443 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Jean Sacren56db1c52013-02-03 21:34:10 +0000444 if (rv == 0) /* There is an error in the address. */
445 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Ian Morris67ba4152014-08-24 21:53:10 +0100447 for (j = psl->sl_count-1; j >= i; j--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 psl->sl_addr[j+1] = psl->sl_addr[j];
449 psl->sl_addr[i] = *source;
450 psl->sl_count++;
451 err = 0;
452 /* update the interface list */
453 ip6_mc_add_src(idev, group, omode, 1, source, 1);
454done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800455 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000456 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000458 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700459 if (leavegroup)
Marcelo Ricardo Leitner54ff9ef2015-03-18 14:50:43 -0300460 err = ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return err;
462}
463
464int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
465{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000466 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct inet6_dev *idev;
469 struct ipv6_pinfo *inet6 = inet6_sk(sk);
470 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900471 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700472 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int i, err;
474
475 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
476
477 if (!ipv6_addr_is_multicast(group))
478 return -EINVAL;
479 if (gsf->gf_fmode != MCAST_INCLUDE &&
480 gsf->gf_fmode != MCAST_EXCLUDE)
481 return -EINVAL;
482
Eric Dumazet96b52e62010-06-07 21:05:02 +0000483 rcu_read_lock();
484 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Eric Dumazet96b52e62010-06-07 21:05:02 +0000486 if (!idev) {
487 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
David S. Miller9c059892005-07-08 21:44:39 -0700491 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800492
David L Stevens9951f032005-07-08 17:47:28 -0700493 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
494 leavegroup = 1;
495 goto done;
496 }
497
Eric Dumazet456b61b2010-11-23 13:12:15 +0000498 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (pmc->ifindex != gsf->gf_interface)
500 continue;
501 if (ipv6_addr_equal(&pmc->addr, group))
502 break;
503 }
David L Stevens917f2f12005-07-08 17:45:16 -0700504 if (!pmc) { /* must have a prior join */
505 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800509 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
510 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (!newpsl) {
512 err = -ENOBUFS;
513 goto done;
514 }
515 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
Ian Morris67ba4152014-08-24 21:53:10 +0100516 for (i = 0; i < newpsl->sl_count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct sockaddr_in6 *psin6;
518
519 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
520 newpsl->sl_addr[i] = psin6->sin6_addr;
521 }
522 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
523 newpsl->sl_count, newpsl->sl_addr, 0);
524 if (err) {
525 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
526 goto done;
527 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800528 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800530 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
531 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800532
Eric Dumazet96b52e62010-06-07 21:05:02 +0000533 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 psl = pmc->sflist;
535 if (psl) {
536 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
537 psl->sl_count, psl->sl_addr, 0);
538 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
539 } else
540 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
541 pmc->sflist = newpsl;
542 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000543 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700544 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545done:
546 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000547 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700548 if (leavegroup)
549 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return err;
551}
552
553int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
554 struct group_filter __user *optval, int __user *optlen)
555{
556 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000557 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct ipv6_mc_socklist *pmc;
559 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct ipv6_pinfo *inet6 = inet6_sk(sk);
561 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900562 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
565
566 if (!ipv6_addr_is_multicast(group))
567 return -EINVAL;
568
Eric Dumazet96b52e62010-06-07 21:05:02 +0000569 rcu_read_lock();
570 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Eric Dumazet96b52e62010-06-07 21:05:02 +0000572 if (!idev) {
573 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 err = -EADDRNOTAVAIL;
WANG Congf7ed9252014-09-11 15:35:15 -0700578 /* changes to the ipv6_mc_list require the socket lock and
579 * rtnl lock. We have the socket lock and rcu read lock,
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800580 * so reading the list is safe.
581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Eric Dumazet456b61b2010-11-23 13:12:15 +0000583 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (pmc->ifindex != gsf->gf_interface)
585 continue;
586 if (ipv6_addr_equal(group, &pmc->addr))
587 break;
588 }
589 if (!pmc) /* must have a prior join */
590 goto done;
591 gsf->gf_fmode = pmc->sfmode;
592 psl = pmc->sflist;
593 count = psl ? psl->sl_count : 0;
594 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000595 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
598 gsf->gf_numsrc = count;
599 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
600 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
601 return -EFAULT;
602 }
WANG Congf7ed9252014-09-11 15:35:15 -0700603 /* changes to psl require the socket lock, and a write lock
604 * on pmc->sflock. We have the socket lock so reading here is safe.
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800605 */
Ian Morris67ba4152014-08-24 21:53:10 +0100606 for (i = 0; i < copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct sockaddr_in6 *psin6;
608 struct sockaddr_storage ss;
609
610 psin6 = (struct sockaddr_in6 *)&ss;
611 memset(&ss, 0, sizeof(ss));
612 psin6->sin6_family = AF_INET6;
613 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900614 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return -EFAULT;
616 }
617 return 0;
618done:
619 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000620 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return err;
622}
623
Eric Dumazeta50feda2012-05-18 18:57:34 +0000624bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
625 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct ipv6_pinfo *np = inet6_sk(sk);
628 struct ipv6_mc_socklist *mc;
629 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000630 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Eric Dumazet456b61b2010-11-23 13:12:15 +0000632 rcu_read_lock();
633 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (ipv6_addr_equal(&mc->addr, mc_addr))
635 break;
636 }
637 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000638 rcu_read_unlock();
Andre Naujoks15033f02018-09-10 10:27:15 +0200639 return np->mc_all;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800641 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 psl = mc->sflist;
643 if (!psl) {
644 rv = mc->sfmode == MCAST_EXCLUDE;
645 } else {
646 int i;
647
Ian Morris67ba4152014-08-24 21:53:10 +0100648 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
650 break;
651 }
652 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000653 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000655 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800657 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000658 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 return rv;
661}
662
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800663static void igmp6_group_added(struct ifmcaddr6 *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct net_device *dev = mc->idev->dev;
666 char buf[MAX_ADDR_LEN];
667
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000668 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
669 IPV6_ADDR_SCOPE_LINKLOCAL)
670 return;
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 spin_lock_bh(&mc->mca_lock);
673 if (!(mc->mca_flags&MAF_LOADED)) {
674 mc->mca_flags |= MAF_LOADED;
675 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000676 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 spin_unlock_bh(&mc->mca_lock);
679
680 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
681 return;
682
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200683 if (mld_in_v1_mode(mc->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 igmp6_join_group(mc);
685 return;
686 }
687 /* else v2 */
688
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800689 /* Based on RFC3810 6.1, for newly added INCLUDE SSM, we
690 * should not send filter-mode change record as the mode
691 * should be from IN() to IN(A).
692 */
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800693 if (mc->mca_sfmode == MCAST_EXCLUDE)
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800694 mc->mca_crcount = mc->idev->mc_qrv;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 mld_ifc_event(mc->idev);
697}
698
699static void igmp6_group_dropped(struct ifmcaddr6 *mc)
700{
701 struct net_device *dev = mc->idev->dev;
702 char buf[MAX_ADDR_LEN];
703
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000704 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
705 IPV6_ADDR_SCOPE_LINKLOCAL)
706 return;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 spin_lock_bh(&mc->mca_lock);
709 if (mc->mca_flags&MAF_LOADED) {
710 mc->mca_flags &= ~MAF_LOADED;
711 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000712 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 spin_unlock_bh(&mc->mca_lock);
Hangbin Liu1666d492017-01-12 21:19:37 +0800716 if (mc->mca_flags & MAF_NOREPORT)
717 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (!mc->idev->dead)
720 igmp6_leave_group(mc);
721
722 spin_lock_bh(&mc->mca_lock);
723 if (del_timer(&mc->mca_timer))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300724 refcount_dec(&mc->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 spin_unlock_bh(&mc->mca_lock);
726}
727
728/*
729 * deleted ifmcaddr6 manipulation
730 */
731static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
732{
733 struct ifmcaddr6 *pmc;
734
735 /* this is an "ifmcaddr6" for convenience; only the fields below
736 * are actually used. In particular, the refcnt and users are not
737 * used for management of the delete list. Using the same structure
738 * for deleted items allows change reports to use common code with
739 * non-deleted or query-response MCA's.
740 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800741 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!pmc)
743 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 spin_lock_bh(&im->mca_lock);
746 spin_lock_init(&pmc->mca_lock);
747 pmc->idev = im->idev;
748 in6_dev_hold(idev);
749 pmc->mca_addr = im->mca_addr;
750 pmc->mca_crcount = idev->mc_qrv;
751 pmc->mca_sfmode = im->mca_sfmode;
752 if (pmc->mca_sfmode == MCAST_INCLUDE) {
753 struct ip6_sf_list *psf;
754
755 pmc->mca_tomb = im->mca_tomb;
756 pmc->mca_sources = im->mca_sources;
757 im->mca_tomb = im->mca_sources = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100758 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 psf->sf_crcount = pmc->mca_crcount;
760 }
761 spin_unlock_bh(&im->mca_lock);
762
Stephen Hemminger6457d262010-02-17 18:48:44 -0800763 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 pmc->next = idev->mc_tomb;
765 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800766 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Hangbin Liu1666d492017-01-12 21:19:37 +0800769static void mld_del_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct ifmcaddr6 *pmc, *pmc_prev;
Hangbin Liu1666d492017-01-12 21:19:37 +0800772 struct ip6_sf_list *psf;
773 struct in6_addr *pmca = &im->mca_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Stephen Hemminger6457d262010-02-17 18:48:44 -0800775 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100777 for (pmc = idev->mc_tomb; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
779 break;
780 pmc_prev = pmc;
781 }
782 if (pmc) {
783 if (pmc_prev)
784 pmc_prev->next = pmc->next;
785 else
786 idev->mc_tomb = pmc->next;
787 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800788 spin_unlock_bh(&idev->mc_lock);
789
Hangbin Liu1666d492017-01-12 21:19:37 +0800790 spin_lock_bh(&im->mca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (pmc) {
Hangbin Liu1666d492017-01-12 21:19:37 +0800792 im->idev = pmc->idev;
Hangbin Liu08d3ffc2018-07-20 14:04:27 +0800793 if (im->mca_sfmode == MCAST_INCLUDE) {
Hangbin Liu1666d492017-01-12 21:19:37 +0800794 im->mca_tomb = pmc->mca_tomb;
795 im->mca_sources = pmc->mca_sources;
796 for (psf = im->mca_sources; psf; psf = psf->sf_next)
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800797 psf->sf_crcount = idev->mc_qrv;
798 } else {
799 im->mca_crcount = idev->mc_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 in6_dev_put(pmc->idev);
Hangbin Liu9c8bb162017-02-08 21:16:45 +0800802 kfree(pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Hangbin Liu1666d492017-01-12 21:19:37 +0800804 spin_unlock_bh(&im->mca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807static void mld_clear_delrec(struct inet6_dev *idev)
808{
809 struct ifmcaddr6 *pmc, *nextpmc;
810
Stephen Hemminger6457d262010-02-17 18:48:44 -0800811 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 pmc = idev->mc_tomb;
813 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800814 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 for (; pmc; pmc = nextpmc) {
817 nextpmc = pmc->next;
818 ip6_mc_clear_src(pmc);
819 in6_dev_put(pmc->idev);
820 kfree(pmc);
821 }
822
823 /* clear dead sources, too */
824 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100825 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 struct ip6_sf_list *psf, *psf_next;
827
828 spin_lock_bh(&pmc->mca_lock);
829 psf = pmc->mca_tomb;
830 pmc->mca_tomb = NULL;
831 spin_unlock_bh(&pmc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100832 for (; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 psf_next = psf->sf_next;
834 kfree(psf);
835 }
836 }
837 read_unlock_bh(&idev->lock);
838}
839
WANG Cong1691c632014-09-11 15:35:16 -0700840static void mca_get(struct ifmcaddr6 *mc)
841{
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300842 refcount_inc(&mc->mca_refcnt);
WANG Cong1691c632014-09-11 15:35:16 -0700843}
844
845static void ma_put(struct ifmcaddr6 *mc)
846{
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300847 if (refcount_dec_and_test(&mc->mca_refcnt)) {
WANG Cong1691c632014-09-11 15:35:16 -0700848 in6_dev_put(mc->idev);
849 kfree(mc);
850 }
851}
852
853static struct ifmcaddr6 *mca_alloc(struct inet6_dev *idev,
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800854 const struct in6_addr *addr,
855 unsigned int mode)
WANG Cong1691c632014-09-11 15:35:16 -0700856{
857 struct ifmcaddr6 *mc;
858
859 mc = kzalloc(sizeof(*mc), GFP_ATOMIC);
Ian Morris63159f22015-03-29 14:00:04 +0100860 if (!mc)
WANG Cong1691c632014-09-11 15:35:16 -0700861 return NULL;
862
Kees Cooke99e88a2017-10-16 14:43:17 -0700863 timer_setup(&mc->mca_timer, igmp6_timer_handler, 0);
WANG Cong1691c632014-09-11 15:35:16 -0700864
865 mc->mca_addr = *addr;
866 mc->idev = idev; /* reference taken by caller */
867 mc->mca_users = 1;
868 /* mca_stamp should be updated upon changes */
869 mc->mca_cstamp = mc->mca_tstamp = jiffies;
Reshetova, Elenad3981bc2017-07-04 09:34:57 +0300870 refcount_set(&mc->mca_refcnt, 1);
WANG Cong1691c632014-09-11 15:35:16 -0700871 spin_lock_init(&mc->mca_lock);
872
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800873 mc->mca_sfmode = mode;
874 mc->mca_sfcount[mode] = 1;
WANG Cong1691c632014-09-11 15:35:16 -0700875
876 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
877 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
878 mc->mca_flags |= MAF_NOREPORT;
879
880 return mc;
881}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883/*
884 * device multicast group inc (add if not found)
885 */
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800886static int __ipv6_dev_mc_inc(struct net_device *dev,
887 const struct in6_addr *addr, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct ifmcaddr6 *mc;
890 struct inet6_dev *idev;
891
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200892 ASSERT_RTNL();
893
Eric Dumazet96b52e62010-06-07 21:05:02 +0000894 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 idev = in6_dev_get(dev);
896
Ian Morris63159f22015-03-29 14:00:04 +0100897 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EINVAL;
899
900 write_lock_bh(&idev->lock);
901 if (idev->dead) {
902 write_unlock_bh(&idev->lock);
903 in6_dev_put(idev);
904 return -ENODEV;
905 }
906
907 for (mc = idev->mc_list; mc; mc = mc->next) {
908 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
909 mc->mca_users++;
910 write_unlock_bh(&idev->lock);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800911 ip6_mc_add_src(idev, &mc->mca_addr, mode, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 in6_dev_put(idev);
913 return 0;
914 }
915 }
916
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800917 mc = mca_alloc(idev, addr, mode);
WANG Cong1691c632014-09-11 15:35:16 -0700918 if (!mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 write_unlock_bh(&idev->lock);
920 in6_dev_put(idev);
921 return -ENOMEM;
922 }
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 mc->next = idev->mc_list;
925 idev->mc_list = mc;
WANG Cong1691c632014-09-11 15:35:16 -0700926
927 /* Hold this for the code below before we unlock,
928 * it is already exposed via idev->mc_list.
929 */
930 mca_get(mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 write_unlock_bh(&idev->lock);
932
Hangbin Liu1666d492017-01-12 21:19:37 +0800933 mld_del_delrec(idev, mc);
Hangbin Liu0ae0d602018-07-20 14:07:42 +0800934 igmp6_group_added(mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 ma_put(mc);
936 return 0;
937}
938
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800939int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
940{
941 return __ipv6_dev_mc_inc(dev, addr, MCAST_EXCLUDE);
942}
Linus Lüssing4effd282019-01-21 07:26:27 +0100943EXPORT_SYMBOL(ipv6_dev_mc_inc);
Hangbin Liuc7ea20c2018-07-10 22:41:27 +0800944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945/*
946 * device multicast group del
947 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900948int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 struct ifmcaddr6 *ma, **map;
951
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200952 ASSERT_RTNL();
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 write_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100955 for (map = &idev->mc_list; (ma = *map) != NULL; map = &ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
957 if (--ma->mca_users == 0) {
958 *map = ma->next;
959 write_unlock_bh(&idev->lock);
960
961 igmp6_group_dropped(ma);
Hangbin Liu1666d492017-01-12 21:19:37 +0800962 ip6_mc_clear_src(ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 ma_put(ma);
965 return 0;
966 }
967 write_unlock_bh(&idev->lock);
968 return 0;
969 }
970 }
971 write_unlock_bh(&idev->lock);
972
973 return -ENOENT;
974}
975
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900976int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000978 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int err;
980
WANG Cong414b6c92014-09-11 15:35:14 -0700981 ASSERT_RTNL();
Eric Dumazet96b52e62010-06-07 21:05:02 +0000982
983 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000985 err = -ENODEV;
986 else
987 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return err;
990}
Linus Lüssing4effd282019-01-21 07:26:27 +0100991EXPORT_SYMBOL(ipv6_dev_mc_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * check if the interface/address pair is valid
995 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000996bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
997 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 struct inet6_dev *idev;
1000 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001001 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Eric Dumazet96b52e62010-06-07 21:05:02 +00001003 rcu_read_lock();
1004 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (idev) {
1006 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001007 for (mc = idev->mc_list; mc; mc = mc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (ipv6_addr_equal(&mc->mca_addr, group))
1009 break;
1010 }
1011 if (mc) {
1012 if (src_addr && !ipv6_addr_any(src_addr)) {
1013 struct ip6_sf_list *psf;
1014
1015 spin_lock_bh(&mc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001016 for (psf = mc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
1018 break;
1019 }
1020 if (psf)
1021 rv = psf->sf_count[MCAST_INCLUDE] ||
1022 psf->sf_count[MCAST_EXCLUDE] !=
1023 mc->mca_sfcount[MCAST_EXCLUDE];
1024 else
Ian Morris67ba4152014-08-24 21:53:10 +01001025 rv = mc->mca_sfcount[MCAST_EXCLUDE] != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 spin_unlock_bh(&mc->mca_lock);
1027 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +00001028 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001032 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return rv;
1034}
1035
1036static void mld_gq_start_timer(struct inet6_dev *idev)
1037{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001038 unsigned long tv = prandom_u32() % idev->mc_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 idev->mc_gq_running = 1;
1041 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1042 in6_dev_hold(idev);
1043}
1044
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001045static void mld_gq_stop_timer(struct inet6_dev *idev)
1046{
1047 idev->mc_gq_running = 0;
1048 if (del_timer(&idev->mc_gq_timer))
1049 __in6_dev_put(idev);
1050}
1051
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001052static void mld_ifc_start_timer(struct inet6_dev *idev, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001054 unsigned long tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1057 in6_dev_hold(idev);
1058}
1059
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001060static void mld_ifc_stop_timer(struct inet6_dev *idev)
1061{
1062 idev->mc_ifc_count = 0;
1063 if (del_timer(&idev->mc_ifc_timer))
1064 __in6_dev_put(idev);
1065}
1066
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001067static void mld_dad_start_timer(struct inet6_dev *idev, unsigned long delay)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001068{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001069 unsigned long tv = prandom_u32() % delay;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001070
1071 if (!mod_timer(&idev->mc_dad_timer, jiffies+tv+2))
1072 in6_dev_hold(idev);
1073}
1074
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001075static void mld_dad_stop_timer(struct inet6_dev *idev)
1076{
1077 if (del_timer(&idev->mc_dad_timer))
1078 __in6_dev_put(idev);
1079}
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081/*
1082 * IGMP handling (alias multicast ICMPv6 messages)
1083 */
1084
1085static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1086{
1087 unsigned long delay = resptime;
1088
1089 /* Do not start timer for these addresses */
1090 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1091 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1092 return;
1093
1094 if (del_timer(&ma->mca_timer)) {
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001095 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 delay = ma->mca_timer.expires - jiffies;
1097 }
1098
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001099 if (delay >= resptime)
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001100 delay = prandom_u32() % resptime;
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 ma->mca_timer.expires = jiffies + delay;
1103 if (!mod_timer(&ma->mca_timer, jiffies + delay))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001104 refcount_inc(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 ma->mca_flags |= MAF_TIMER_RUNNING;
1106}
1107
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001108/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001109static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1110 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 struct ip6_sf_list *psf;
1113 int i, scount;
1114
1115 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001116 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (scount == nsrcs)
1118 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001119 for (i = 0; i < nsrcs; i++) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001120 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001121 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001122 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1123 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001124 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001125 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1126 scount++;
1127 break;
1128 }
1129 }
1130 }
1131 pmc->mca_flags &= ~MAF_GSQUERY;
1132 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001133 return false;
1134 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001135}
1136
Eric Dumazeta50feda2012-05-18 18:57:34 +00001137static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1138 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001139{
1140 struct ip6_sf_list *psf;
1141 int i, scount;
1142
1143 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1144 return mld_xmarksources(pmc, nsrcs, srcs);
1145
1146 /* mark INCLUDE-mode sources */
1147
1148 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001149 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001150 if (scount == nsrcs)
1151 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001152 for (i = 0; i < nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1154 psf->sf_gsresp = 1;
1155 scount++;
1156 break;
1157 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001160 if (!scount) {
1161 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001162 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001163 }
1164 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001165 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001168static int mld_force_mld_version(const struct inet6_dev *idev)
1169{
1170 /* Normally, both are 0 here. If enforcement to a particular is
1171 * being used, individual device enforcement will have a lower
1172 * precedence over 'all' device (.../conf/all/force_mld_version).
1173 */
1174
1175 if (dev_net(idev->dev)->ipv6.devconf_all->force_mld_version != 0)
1176 return dev_net(idev->dev)->ipv6.devconf_all->force_mld_version;
1177 else
1178 return idev->cnf.force_mld_version;
1179}
1180
1181static bool mld_in_v2_mode_only(const struct inet6_dev *idev)
1182{
1183 return mld_force_mld_version(idev) == 2;
1184}
1185
1186static bool mld_in_v1_mode_only(const struct inet6_dev *idev)
1187{
1188 return mld_force_mld_version(idev) == 1;
1189}
1190
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001191static bool mld_in_v1_mode(const struct inet6_dev *idev)
1192{
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001193 if (mld_in_v2_mode_only(idev))
1194 return false;
1195 if (mld_in_v1_mode_only(idev))
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001196 return true;
1197 if (idev->mc_v1_seen && time_before(jiffies, idev->mc_v1_seen))
1198 return true;
1199
1200 return false;
1201}
1202
Daniel Borkmann89225d12013-09-04 00:19:37 +02001203static void mld_set_v1_mode(struct inet6_dev *idev)
1204{
1205 /* RFC3810, relevant sections:
1206 * - 9.1. Robustness Variable
1207 * - 9.2. Query Interval
1208 * - 9.3. Query Response Interval
1209 * - 9.12. Older Version Querier Present Timeout
1210 */
1211 unsigned long switchback;
1212
1213 switchback = (idev->mc_qrv * idev->mc_qi) + idev->mc_qri;
1214
1215 idev->mc_v1_seen = jiffies + switchback;
1216}
1217
1218static void mld_update_qrv(struct inet6_dev *idev,
1219 const struct mld2_query *mlh2)
1220{
1221 /* RFC3810, relevant sections:
1222 * - 5.1.8. QRV (Querier's Robustness Variable)
1223 * - 9.1. Robustness Variable
1224 */
1225
1226 /* The value of the Robustness Variable MUST NOT be zero,
1227 * and SHOULD NOT be one. Catch this here if we ever run
1228 * into such a case in future.
1229 */
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001230 const int min_qrv = min(MLD_QRV_DEFAULT, sysctl_mld_qrv);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001231 WARN_ON(idev->mc_qrv == 0);
1232
1233 if (mlh2->mld2q_qrv > 0)
1234 idev->mc_qrv = mlh2->mld2q_qrv;
1235
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001236 if (unlikely(idev->mc_qrv < min_qrv)) {
Daniel Borkmann89225d12013-09-04 00:19:37 +02001237 net_warn_ratelimited("IPv6: MLD: clamping QRV from %u to %u!\n",
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001238 idev->mc_qrv, min_qrv);
1239 idev->mc_qrv = min_qrv;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001240 }
1241}
1242
1243static void mld_update_qi(struct inet6_dev *idev,
1244 const struct mld2_query *mlh2)
1245{
1246 /* RFC3810, relevant sections:
1247 * - 5.1.9. QQIC (Querier's Query Interval Code)
1248 * - 9.2. Query Interval
1249 * - 9.12. Older Version Querier Present Timeout
1250 * (the [Query Interval] in the last Query received)
1251 */
1252 unsigned long mc_qqi;
1253
1254 if (mlh2->mld2q_qqic < 128) {
1255 mc_qqi = mlh2->mld2q_qqic;
1256 } else {
1257 unsigned long mc_man, mc_exp;
1258
1259 mc_exp = MLDV2_QQIC_EXP(mlh2->mld2q_qqic);
1260 mc_man = MLDV2_QQIC_MAN(mlh2->mld2q_qqic);
1261
1262 mc_qqi = (mc_man | 0x10) << (mc_exp + 3);
1263 }
1264
1265 idev->mc_qi = mc_qqi * HZ;
1266}
1267
1268static void mld_update_qri(struct inet6_dev *idev,
1269 const struct mld2_query *mlh2)
1270{
1271 /* RFC3810, relevant sections:
1272 * - 5.1.3. Maximum Response Code
1273 * - 9.3. Query Response Interval
1274 */
Daniel Borkmanne3f5b172013-09-04 00:19:39 +02001275 idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2));
Daniel Borkmann89225d12013-09-04 00:19:37 +02001276}
1277
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001278static int mld_process_v1(struct inet6_dev *idev, struct mld_msg *mld,
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001279 unsigned long *max_delay, bool v1_query)
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001280{
1281 unsigned long mldv1_md;
1282
1283 /* Ignore v1 queries */
1284 if (mld_in_v2_mode_only(idev))
1285 return -EINVAL;
1286
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001287 mldv1_md = ntohs(mld->mld_maxdelay);
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001288
1289 /* When in MLDv1 fallback and a MLDv2 router start-up being
1290 * unaware of current MLDv1 operation, the MRC == MRD mapping
1291 * only works when the exponential algorithm is not being
1292 * used (as MLDv1 is unaware of such things).
1293 *
1294 * According to the RFC author, the MLDv2 implementations
1295 * he's aware of all use a MRC < 32768 on start up queries.
1296 *
1297 * Thus, should we *ever* encounter something else larger
1298 * than that, just assume the maximum possible within our
1299 * reach.
1300 */
1301 if (!v1_query)
1302 mldv1_md = min(mldv1_md, MLDV1_MRD_MAX_COMPAT);
1303
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001304 *max_delay = max(msecs_to_jiffies(mldv1_md), 1UL);
1305
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001306 /* MLDv1 router present: we need to go into v1 mode *only*
1307 * when an MLDv1 query is received as per section 9.12. of
1308 * RFC3810! And we know from RFC2710 section 3.7 that MLDv1
1309 * queries MUST be of exactly 24 octets.
1310 */
1311 if (v1_query)
1312 mld_set_v1_mode(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001313
1314 /* cancel MLDv2 report timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001315 mld_gq_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001316 /* cancel the interface change timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001317 mld_ifc_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001318 /* clear deleted report items */
1319 mld_clear_delrec(idev);
1320
1321 return 0;
1322}
1323
1324static int mld_process_v2(struct inet6_dev *idev, struct mld2_query *mld,
1325 unsigned long *max_delay)
1326{
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001327 *max_delay = max(msecs_to_jiffies(mldv2_mrc(mld)), 1UL);
1328
1329 mld_update_qrv(idev, mld);
1330 mld_update_qi(idev, mld);
1331 mld_update_qri(idev, mld);
1332
1333 idev->mc_maxdelay = *max_delay;
1334
1335 return 0;
1336}
1337
Eric Dumazet96b52e62010-06-07 21:05:02 +00001338/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339int igmp6_event_query(struct sk_buff *skb)
1340{
Yan Zheng97300b52005-10-31 20:09:45 +08001341 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001343 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 unsigned long max_delay;
1345 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001346 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 int group_type;
1348 int mark = 0;
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001349 int len, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1352 return -EINVAL;
1353
1354 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001355 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001356 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Hangbin Liue940f5d2014-06-27 09:57:53 +08001358 /* RFC3810 6.2
1359 * Upon reception of an MLD message that contains a Query, the node
1360 * checks if the source address of the message is a valid link-local
1361 * address, if the Hop Limit is set to 1, and if the Router Alert
1362 * option is present in the Hop-By-Hop Options header of the IPv6
1363 * packet. If any of these checks fails, the packet is dropped.
1364 */
1365 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL) ||
1366 ipv6_hdr(skb)->hop_limit != 1 ||
1367 !(IP6CB(skb)->flags & IP6SKB_ROUTERALERT) ||
1368 IP6CB(skb)->ra != htons(IPV6_OPT_ROUTERALERT_MLD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return -EINVAL;
1370
Eric Dumazet96b52e62010-06-07 21:05:02 +00001371 idev = __in6_dev_get(skb->dev);
Ian Morris63159f22015-03-29 14:00:04 +01001372 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return 0;
1374
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001375 mld = (struct mld_msg *)icmp6_hdr(skb);
1376 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 group_type = ipv6_addr_type(group);
1378
1379 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001380 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001383 if (len < MLD_V1_QUERY_LEN) {
1384 return -EINVAL;
1385 } else if (len == MLD_V1_QUERY_LEN || mld_in_v1_mode(idev)) {
1386 err = mld_process_v1(idev, mld, &max_delay,
1387 len == MLD_V1_QUERY_LEN);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001388 if (err < 0)
1389 return err;
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001390 } else if (len >= MLD_V2_QUERY_LEN_MIN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001391 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001392 sizeof(struct icmp6hdr);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001393
Eric Dumazet96b52e62010-06-07 21:05:02 +00001394 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001395 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001396
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001397 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Daniel Borkmann84698962013-08-20 12:22:00 +02001398
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001399 err = mld_process_v2(idev, mlh2, &max_delay);
1400 if (err < 0)
1401 return err;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001404 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 0;
1409 }
1410 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001411 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001412 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001413 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001414 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001415
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001416 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001417 mark = 1;
1418 }
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001419 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -EINVAL;
Daniel Borkmann35f7aa52014-09-20 14:03:55 +02001421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 read_lock_bh(&idev->lock);
1424 if (group_type == IPV6_ADDR_ANY) {
Ian Morris67ba4152014-08-24 21:53:10 +01001425 for (ma = idev->mc_list; ma; ma = ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 spin_lock_bh(&ma->mca_lock);
1427 igmp6_group_queried(ma, max_delay);
1428 spin_unlock_bh(&ma->mca_lock);
1429 }
1430 } else {
Ian Morris67ba4152014-08-24 21:53:10 +01001431 for (ma = idev->mc_list; ma; ma = ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001432 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 continue;
1434 spin_lock_bh(&ma->mca_lock);
1435 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1436 /* gsquery <- gsquery && mark */
1437 if (!mark)
1438 ma->mca_flags &= ~MAF_GSQUERY;
1439 } else {
1440 /* gsquery <- mark */
1441 if (mark)
1442 ma->mca_flags |= MAF_GSQUERY;
1443 else
1444 ma->mca_flags &= ~MAF_GSQUERY;
1445 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001446 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001447 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001448 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452 }
1453 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 return 0;
1456}
1457
Eric Dumazet96b52e62010-06-07 21:05:02 +00001458/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459int igmp6_event_report(struct sk_buff *skb)
1460{
1461 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001463 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 int addr_type;
1465
1466 /* Our own report looped back. Ignore it. */
1467 if (skb->pkt_type == PACKET_LOOPBACK)
1468 return 0;
1469
David Stevens24c69272005-12-02 20:32:59 -08001470 /* send our report if the MC router may not have heard this report */
1471 if (skb->pkt_type != PACKET_MULTICAST &&
1472 skb->pkt_type != PACKET_BROADCAST)
1473 return 0;
1474
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001475 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return -EINVAL;
1477
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001478 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001481 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001482 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 !(addr_type&IPV6_ADDR_LINKLOCAL))
1484 return -EINVAL;
1485
Eric Dumazet96b52e62010-06-07 21:05:02 +00001486 idev = __in6_dev_get(skb->dev);
Ian Morris63159f22015-03-29 14:00:04 +01001487 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return -ENODEV;
1489
1490 /*
1491 * Cancel the timer for this group
1492 */
1493
1494 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001495 for (ma = idev->mc_list; ma; ma = ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001496 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 spin_lock(&ma->mca_lock);
1498 if (del_timer(&ma->mca_timer))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03001499 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1501 spin_unlock(&ma->mca_lock);
1502 break;
1503 }
1504 }
1505 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return 0;
1507}
1508
Eric Dumazeta50feda2012-05-18 18:57:34 +00001509static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1510 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 switch (type) {
1513 case MLD2_MODE_IS_INCLUDE:
1514 case MLD2_MODE_IS_EXCLUDE:
1515 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001516 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001517 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1518 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001519 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001520 /* don't include if this source is excluded
1521 * in all filters
1522 */
1523 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001524 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001525 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1526 psf->sf_count[MCAST_EXCLUDE];
1527 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001528 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 case MLD2_CHANGE_TO_INCLUDE:
1530 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001531 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return psf->sf_count[MCAST_INCLUDE] != 0;
1533 case MLD2_CHANGE_TO_EXCLUDE:
1534 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001535 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1537 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001538 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1540 psf->sf_count[MCAST_EXCLUDE];
1541 case MLD2_ALLOW_NEW_SOURCES:
1542 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001543 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1545 case MLD2_BLOCK_OLD_SOURCES:
1546 if (pmc->mca_sfmode == MCAST_INCLUDE)
1547 return gdeleted || (psf->sf_crcount && sdeleted);
1548 return psf->sf_crcount && !gdeleted && !sdeleted;
1549 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001550 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553static int
1554mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1555{
1556 struct ip6_sf_list *psf;
1557 int scount = 0;
1558
Ian Morris67ba4152014-08-24 21:53:10 +01001559 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1561 continue;
1562 scount++;
1563 }
1564 return scount;
1565}
1566
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001567static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1568 struct net_device *dev,
1569 const struct in6_addr *saddr,
1570 const struct in6_addr *daddr,
1571 int proto, int len)
1572{
1573 struct ipv6hdr *hdr;
1574
1575 skb->protocol = htons(ETH_P_IPV6);
1576 skb->dev = dev;
1577
1578 skb_reset_network_header(skb);
1579 skb_put(skb, sizeof(struct ipv6hdr));
1580 hdr = ipv6_hdr(skb);
1581
1582 ip6_flow_hdr(hdr, 0, 0);
1583
1584 hdr->payload_len = htons(len);
1585 hdr->nexthdr = proto;
1586 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1587
1588 hdr->saddr = *saddr;
1589 hdr->daddr = *daddr;
1590}
1591
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001592static struct sk_buff *mld_newpack(struct inet6_dev *idev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Amerigo Wang89657792013-06-29 21:30:49 +08001594 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001595 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001596 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 struct sk_buff *skb;
1598 struct mld2_report *pmr;
1599 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001600 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001601 int hlen = LL_RESERVED_SPACE(dev);
1602 int tlen = dev->needed_tailroom;
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001603 unsigned int size = mtu + hlen + tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int err;
1605 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1606 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1607 IPV6_TLV_PADN, 0 };
1608
1609 /* we assume size > sizeof(ra) here */
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001610 /* limit our allocations to order-0 page */
1611 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1612 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001614 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return NULL;
1616
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001617 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001618 skb_reserve(skb, hlen);
Benjamin Poirier1837b2e2016-02-29 15:03:33 -08001619 skb_tailroom_reserve(skb, mtu, tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Amerigo Wang89657792013-06-29 21:30:49 +08001621 if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001623 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * when a valid link-local address is not available.
1625 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001626 saddr = &in6addr_any;
1627 } else
1628 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001630 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Johannes Berg59ae1d12017-06-16 14:29:20 +02001632 skb_put_data(skb, ra, sizeof(ra));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001634 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001635 skb_put(skb, sizeof(*pmr));
1636 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001637 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1638 pmr->mld2r_resv1 = 0;
1639 pmr->mld2r_cksum = 0;
1640 pmr->mld2r_resv2 = 0;
1641 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return skb;
1643}
1644
1645static void mld_sendpack(struct sk_buff *skb)
1646{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001647 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001648 struct mld2_report *pmr =
1649 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001651 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001652 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001654 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001655 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Eric Dumazet96b52e62010-06-07 21:05:02 +00001657 rcu_read_lock();
1658 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001659 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1660
Simon Horman29a3cad2013-05-28 20:34:26 +00001661 payload_len = (skb_tail_pointer(skb) - skb_network_header(skb)) -
1662 sizeof(*pip6);
1663 mldlen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 pip6->payload_len = htons(payload_len);
1665
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001666 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1667 IPPROTO_ICMPV6,
1668 csum_partial(skb_transport_header(skb),
1669 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001670
David S. Miller4c9483b2011-03-12 16:22:43 -05001671 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001672 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1673 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001674 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001675
David S. Miller452edd52011-03-02 13:27:41 -08001676 err = 0;
1677 if (IS_ERR(dst)) {
1678 err = PTR_ERR(dst);
1679 dst = NULL;
1680 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001681 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001682 if (err)
1683 goto err_out;
1684
David Miller7026b1d2015-04-05 22:19:04 -04001685 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
Eric W. Biederman29a26a52015-09-15 20:04:16 -05001686 net, net->ipv6.igmp_sk, skb, NULL, skb->dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -05001687 dst_output);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001688out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (!err) {
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001690 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1691 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001692 } else {
1693 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Eric Dumazet96b52e62010-06-07 21:05:02 +00001696 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001697 return;
1698
1699err_out:
1700 kfree_skb(skb);
1701 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1705{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001706 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001710 int type, struct mld2_grec **ppgr, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct mld2_report *pmr;
1713 struct mld2_grec *pgr;
1714
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001715 if (!skb) {
1716 skb = mld_newpack(pmc->idev, mtu);
1717 if (!skb)
1718 return NULL;
1719 }
Johannes Berg4df864c2017-06-16 14:29:21 +02001720 pgr = skb_put(skb, sizeof(struct mld2_grec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 pgr->grec_type = type;
1722 pgr->grec_auxwords = 0;
1723 pgr->grec_nsrcs = 0;
1724 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001725 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001726 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 *ppgr = pgr;
1728 return skb;
1729}
1730
Daniel Borkmann4c672e42014-11-05 20:27:38 +01001731#define AVAILABLE(skb) ((skb) ? skb_availroom(skb) : 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001734 int type, int gdeleted, int sdeleted, int crsend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Amerigo Wang89657792013-06-29 21:30:49 +08001736 struct inet6_dev *idev = pmc->idev;
1737 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 struct mld2_report *pmr;
1739 struct mld2_grec *pgr = NULL;
1740 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001741 int scount, stotal, first, isquery, truncate;
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001742 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 if (pmc->mca_flags & MAF_NOREPORT)
1745 return skb;
1746
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001747 mtu = READ_ONCE(dev->mtu);
1748 if (mtu < IPV6_MIN_MTU)
1749 return skb;
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 isquery = type == MLD2_MODE_IS_INCLUDE ||
1752 type == MLD2_MODE_IS_EXCLUDE;
1753 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1754 type == MLD2_CHANGE_TO_EXCLUDE;
1755
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001756 stotal = scount = 0;
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1759
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001760 if (!*psf_list)
1761 goto empty_source;
1762
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001763 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 /* EX and TO_EX get a fresh packet, if needed */
1766 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001767 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1769 if (skb)
1770 mld_sendpack(skb);
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001771 skb = mld_newpack(idev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773 }
1774 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001776 for (psf = *psf_list; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 struct in6_addr *psrc;
1778
1779 psf_next = psf->sf_next;
1780
Hangbin Liuc7ea20c2018-07-10 22:41:27 +08001781 if (!is_in(pmc, psf, type, gdeleted, sdeleted) && !crsend) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 psf_prev = psf;
1783 continue;
1784 }
1785
Hangbin Liua0525172016-08-02 18:02:57 +08001786 /* Based on RFC3810 6.1. Should not send source-list change
1787 * records when there is a filter mode change.
1788 */
1789 if (((gdeleted && pmc->mca_sfmode == MCAST_EXCLUDE) ||
1790 (!gdeleted && pmc->mca_crcount)) &&
1791 (type == MLD2_ALLOW_NEW_SOURCES ||
1792 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount)
1793 goto decrease_sf_crcount;
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 /* clear marks on query responses */
1796 if (isquery)
1797 psf->sf_gsresp = 0;
1798
1799 if (AVAILABLE(skb) < sizeof(*psrc) +
1800 first*sizeof(struct mld2_grec)) {
1801 if (truncate && !first)
1802 break; /* truncate these */
1803 if (pgr)
1804 pgr->grec_nsrcs = htons(scount);
1805 if (skb)
1806 mld_sendpack(skb);
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001807 skb = mld_newpack(idev, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 first = 1;
1809 scount = 0;
1810 }
1811 if (first) {
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001812 skb = add_grhead(skb, pmc, type, &pgr, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 first = 0;
1814 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001815 if (!skb)
1816 return NULL;
Johannes Berg4df864c2017-06-16 14:29:21 +02001817 psrc = skb_put(skb, sizeof(*psrc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001819 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1821 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
Hangbin Liua0525172016-08-02 18:02:57 +08001822decrease_sf_crcount:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 psf->sf_crcount--;
1824 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1825 if (psf_prev)
1826 psf_prev->sf_next = psf->sf_next;
1827 else
1828 *psf_list = psf->sf_next;
1829 kfree(psf);
1830 continue;
1831 }
1832 }
1833 psf_prev = psf;
1834 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001835
1836empty_source:
1837 if (!stotal) {
1838 if (type == MLD2_ALLOW_NEW_SOURCES ||
1839 type == MLD2_BLOCK_OLD_SOURCES)
1840 return skb;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001841 if (pmc->mca_crcount || isquery || crsend) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001842 /* make sure we have room for group header */
1843 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1844 mld_sendpack(skb);
1845 skb = NULL; /* add_grhead will get a new one */
1846 }
Eric Dumazetb9b312a2017-12-11 07:03:38 -08001847 skb = add_grhead(skb, pmc, type, &pgr, mtu);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001848 }
1849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (pgr)
1851 pgr->grec_nsrcs = htons(scount);
1852
1853 if (isquery)
1854 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1855 return skb;
1856}
1857
1858static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1859{
1860 struct sk_buff *skb = NULL;
1861 int type;
1862
Amerigo Wang89657792013-06-29 21:30:49 +08001863 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (!pmc) {
Ian Morris67ba4152014-08-24 21:53:10 +01001865 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (pmc->mca_flags & MAF_NOREPORT)
1867 continue;
1868 spin_lock_bh(&pmc->mca_lock);
1869 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1870 type = MLD2_MODE_IS_EXCLUDE;
1871 else
1872 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001873 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 spin_unlock_bh(&pmc->mca_lock);
1875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 } else {
1877 spin_lock_bh(&pmc->mca_lock);
1878 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1879 type = MLD2_MODE_IS_EXCLUDE;
1880 else
1881 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001882 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 spin_unlock_bh(&pmc->mca_lock);
1884 }
Amerigo Wang89657792013-06-29 21:30:49 +08001885 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (skb)
1887 mld_sendpack(skb);
1888}
1889
1890/*
1891 * remove zero-count source records from a source filter list
1892 */
1893static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1894{
1895 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1896
1897 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001898 for (psf = *ppsf; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 psf_next = psf->sf_next;
1900 if (psf->sf_crcount == 0) {
1901 if (psf_prev)
1902 psf_prev->sf_next = psf->sf_next;
1903 else
1904 *ppsf = psf->sf_next;
1905 kfree(psf);
1906 } else
1907 psf_prev = psf;
1908 }
1909}
1910
1911static void mld_send_cr(struct inet6_dev *idev)
1912{
1913 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1914 struct sk_buff *skb = NULL;
1915 int type, dtype;
1916
1917 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001918 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 /* deleted MCA's */
1921 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001922 for (pmc = idev->mc_tomb; pmc; pmc = pmc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 pmc_next = pmc->next;
1924 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1925 type = MLD2_BLOCK_OLD_SOURCES;
1926 dtype = MLD2_BLOCK_OLD_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001927 skb = add_grec(skb, pmc, type, 1, 0, 0);
1928 skb = add_grec(skb, pmc, dtype, 1, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1932 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001933 skb = add_grec(skb, pmc, type, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001935 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 if (pmc->mca_crcount == 0) {
1937 mld_clear_zeros(&pmc->mca_tomb);
1938 mld_clear_zeros(&pmc->mca_sources);
1939 }
1940 }
1941 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1942 !pmc->mca_sources) {
1943 if (pmc_prev)
1944 pmc_prev->next = pmc_next;
1945 else
1946 idev->mc_tomb = pmc_next;
1947 in6_dev_put(pmc->idev);
1948 kfree(pmc);
1949 } else
1950 pmc_prev = pmc;
1951 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001952 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 /* change recs */
Ian Morris67ba4152014-08-24 21:53:10 +01001955 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 spin_lock_bh(&pmc->mca_lock);
1957 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1958 type = MLD2_BLOCK_OLD_SOURCES;
1959 dtype = MLD2_ALLOW_NEW_SOURCES;
1960 } else {
1961 type = MLD2_ALLOW_NEW_SOURCES;
1962 dtype = MLD2_BLOCK_OLD_SOURCES;
1963 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001964 skb = add_grec(skb, pmc, type, 0, 0, 0);
1965 skb = add_grec(skb, pmc, dtype, 0, 1, 0); /* deleted sources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 /* filter mode changes */
1968 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1970 type = MLD2_CHANGE_TO_EXCLUDE;
1971 else
1972 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001973 skb = add_grec(skb, pmc, type, 0, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001974 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976 spin_unlock_bh(&pmc->mca_lock);
1977 }
1978 read_unlock_bh(&idev->lock);
1979 if (!skb)
1980 return;
1981 (void) mld_sendpack(skb);
1982}
1983
1984static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1985{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001986 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001987 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001989 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001990 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001991 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001993 int hlen = LL_RESERVED_SPACE(dev);
1994 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 int err, len, payload_len, full_len;
1996 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1997 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1998 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001999 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00002000 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002002 if (type == ICMPV6_MGM_REDUCTION)
2003 snd_addr = &in6addr_linklocal_allrouters;
2004 else
2005 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
2008 payload_len = len + sizeof(ra);
2009 full_len = sizeof(struct ipv6hdr) + payload_len;
2010
Neil Hormanedf391f2009-04-27 02:45:02 -07002011 rcu_read_lock();
2012 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
2013 IPSTATS_MIB_OUT, full_len);
2014 rcu_read_unlock();
2015
Herbert Xua7ae1992011-11-18 02:20:04 +00002016 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Ian Morris63159f22015-03-29 14:00:04 +01002018 if (!skb) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09002019 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002020 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09002021 IPSTATS_MIB_OUTDISCARDS);
2022 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return;
2024 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02002025 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00002026 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Neil Horman95c385b2007-04-25 17:08:10 -07002028 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002030 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 * when a valid link-local address is not available.
2032 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09002033 saddr = &in6addr_any;
2034 } else
2035 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00002037 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Johannes Berg59ae1d12017-06-16 14:29:20 +02002039 skb_put_data(skb, ra, sizeof(ra));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Johannes Bergb080db52017-06-16 14:29:19 +02002041 hdr = skb_put_zero(skb, sizeof(struct mld_msg));
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09002042 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002043 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09002045 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
2046 IPPROTO_ICMPV6,
2047 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Eric Dumazet96b52e62010-06-07 21:05:02 +00002049 rcu_read_lock();
2050 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
David S. Miller4c9483b2011-03-12 16:22:43 -05002052 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002053 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
2054 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00002055 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08002056 if (IS_ERR(dst)) {
2057 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002058 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08002059 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002060
Eric Dumazetadf30902009-06-02 05:19:30 +00002061 skb_dst_set(skb, dst);
Eric W. Biederman29a26a52015-09-15 20:04:16 -05002062 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
2063 net, sk, skb, NULL, skb->dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -05002064 dst_output);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002065out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07002067 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07002068 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002070 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Eric Dumazet96b52e62010-06-07 21:05:02 +00002072 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002074
2075err_out:
2076 kfree_skb(skb);
2077 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002080static void mld_send_initial_cr(struct inet6_dev *idev)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002081{
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002082 struct sk_buff *skb;
2083 struct ifmcaddr6 *pmc;
2084 int type;
2085
2086 if (mld_in_v1_mode(idev))
2087 return;
2088
2089 skb = NULL;
2090 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002091 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002092 spin_lock_bh(&pmc->mca_lock);
2093 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2094 type = MLD2_CHANGE_TO_EXCLUDE;
2095 else
Hangbin Liuc7ea20c2018-07-10 22:41:27 +08002096 type = MLD2_ALLOW_NEW_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002097 skb = add_grec(skb, pmc, type, 0, 0, 1);
2098 spin_unlock_bh(&pmc->mca_lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002099 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002100 read_unlock_bh(&idev->lock);
2101 if (skb)
2102 mld_sendpack(skb);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002103}
2104
2105void ipv6_mc_dad_complete(struct inet6_dev *idev)
2106{
2107 idev->mc_dad_count = idev->mc_qrv;
2108 if (idev->mc_dad_count) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002109 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002110 idev->mc_dad_count--;
2111 if (idev->mc_dad_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002112 mld_dad_start_timer(idev,
2113 unsolicited_report_interval(idev));
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002114 }
2115}
2116
Kees Cooke99e88a2017-10-16 14:43:17 -07002117static void mld_dad_timer_expire(struct timer_list *t)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002118{
Kees Cooke99e88a2017-10-16 14:43:17 -07002119 struct inet6_dev *idev = from_timer(idev, t, mc_dad_timer);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002120
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002121 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002122 if (idev->mc_dad_count) {
2123 idev->mc_dad_count--;
2124 if (idev->mc_dad_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002125 mld_dad_start_timer(idev,
2126 unsolicited_report_interval(idev));
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002127 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002128 in6_dev_put(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002129}
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002132 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 struct ip6_sf_list *psf, *psf_prev;
2135 int rv = 0;
2136
2137 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002138 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2140 break;
2141 psf_prev = psf;
2142 }
2143 if (!psf || psf->sf_count[sfmode] == 0) {
2144 /* source filter not found, or count wrong => bug */
2145 return -ESRCH;
2146 }
2147 psf->sf_count[sfmode]--;
2148 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
2149 struct inet6_dev *idev = pmc->idev;
2150
2151 /* no more filters for this source */
2152 if (psf_prev)
2153 psf_prev->sf_next = psf->sf_next;
2154 else
2155 pmc->mca_sources = psf->sf_next;
2156 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002157 !mld_in_v1_mode(idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 psf->sf_crcount = idev->mc_qrv;
2159 psf->sf_next = pmc->mca_tomb;
2160 pmc->mca_tomb = psf;
2161 rv = 1;
2162 } else
2163 kfree(psf);
2164 }
2165 return rv;
2166}
2167
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002168static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2169 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 int delta)
2171{
2172 struct ifmcaddr6 *pmc;
2173 int changerec = 0;
2174 int i, err;
2175
2176 if (!idev)
2177 return -ENODEV;
2178 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002179 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2181 break;
2182 }
2183 if (!pmc) {
2184 /* MCA not found?? bug */
2185 read_unlock_bh(&idev->lock);
2186 return -ESRCH;
2187 }
2188 spin_lock_bh(&pmc->mca_lock);
2189 sf_markstate(pmc);
2190 if (!delta) {
2191 if (!pmc->mca_sfcount[sfmode]) {
2192 spin_unlock_bh(&pmc->mca_lock);
2193 read_unlock_bh(&idev->lock);
2194 return -EINVAL;
2195 }
2196 pmc->mca_sfcount[sfmode]--;
2197 }
2198 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002199 for (i = 0; i < sfcount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2201
2202 changerec |= rv > 0;
2203 if (!err && rv < 0)
2204 err = rv;
2205 }
2206 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
2207 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
2208 pmc->mca_sfcount[MCAST_INCLUDE]) {
2209 struct ip6_sf_list *psf;
2210
2211 /* filter mode change */
2212 pmc->mca_sfmode = MCAST_INCLUDE;
2213 pmc->mca_crcount = idev->mc_qrv;
2214 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002215 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 psf->sf_crcount = 0;
2217 mld_ifc_event(pmc->idev);
2218 } else if (sf_setstate(pmc) || changerec)
2219 mld_ifc_event(pmc->idev);
2220 spin_unlock_bh(&pmc->mca_lock);
2221 read_unlock_bh(&idev->lock);
2222 return err;
2223}
2224
2225/*
2226 * Add multicast single-source filter to the interface list
2227 */
2228static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00002229 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
2231 struct ip6_sf_list *psf, *psf_prev;
2232
2233 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002234 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2236 break;
2237 psf_prev = psf;
2238 }
2239 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002240 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (!psf)
2242 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 psf->sf_addr = *psfsrc;
2245 if (psf_prev) {
2246 psf_prev->sf_next = psf;
2247 } else
2248 pmc->mca_sources = psf;
2249 }
2250 psf->sf_count[sfmode]++;
2251 return 0;
2252}
2253
2254static void sf_markstate(struct ifmcaddr6 *pmc)
2255{
2256 struct ip6_sf_list *psf;
2257 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2258
Ian Morris67ba4152014-08-24 21:53:10 +01002259 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2261 psf->sf_oldin = mca_xcount ==
2262 psf->sf_count[MCAST_EXCLUDE] &&
2263 !psf->sf_count[MCAST_INCLUDE];
2264 } else
2265 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2266}
2267
2268static int sf_setstate(struct ifmcaddr6 *pmc)
2269{
David L Stevens7add2a42006-01-24 13:06:39 -08002270 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2272 int qrv = pmc->idev->mc_qrv;
2273 int new_in, rv;
2274
2275 rv = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002276 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2278 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2279 !psf->sf_count[MCAST_INCLUDE];
2280 } else
2281 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08002282 if (new_in) {
2283 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05002284 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08002285
Ian Morris67ba4152014-08-24 21:53:10 +01002286 for (dpsf = pmc->mca_tomb; dpsf;
2287 dpsf = dpsf->sf_next) {
David L Stevens7add2a42006-01-24 13:06:39 -08002288 if (ipv6_addr_equal(&dpsf->sf_addr,
2289 &psf->sf_addr))
2290 break;
2291 prev = dpsf;
2292 }
2293 if (dpsf) {
2294 if (prev)
2295 prev->sf_next = dpsf->sf_next;
2296 else
2297 pmc->mca_tomb = dpsf->sf_next;
2298 kfree(dpsf);
2299 }
2300 psf->sf_crcount = qrv;
2301 rv++;
2302 }
2303 } else if (psf->sf_oldin) {
2304 psf->sf_crcount = 0;
2305 /*
2306 * add or update "delete" records if an active filter
2307 * is now inactive
2308 */
Ian Morris67ba4152014-08-24 21:53:10 +01002309 for (dpsf = pmc->mca_tomb; dpsf; dpsf = dpsf->sf_next)
David L Stevens7add2a42006-01-24 13:06:39 -08002310 if (ipv6_addr_equal(&dpsf->sf_addr,
2311 &psf->sf_addr))
2312 break;
2313 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002314 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002315 if (!dpsf)
2316 continue;
2317 *dpsf = *psf;
2318 /* pmc->mca_lock held by callers */
2319 dpsf->sf_next = pmc->mca_tomb;
2320 pmc->mca_tomb = dpsf;
2321 }
2322 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 rv++;
2324 }
2325 }
2326 return rv;
2327}
2328
2329/*
2330 * Add multicast source filter list to the interface list
2331 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002332static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2333 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 int delta)
2335{
2336 struct ifmcaddr6 *pmc;
2337 int isexclude;
2338 int i, err;
2339
2340 if (!idev)
2341 return -ENODEV;
2342 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002343 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2345 break;
2346 }
2347 if (!pmc) {
2348 /* MCA not found?? bug */
2349 read_unlock_bh(&idev->lock);
2350 return -ESRCH;
2351 }
2352 spin_lock_bh(&pmc->mca_lock);
2353
2354 sf_markstate(pmc);
2355 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2356 if (!delta)
2357 pmc->mca_sfcount[sfmode]++;
2358 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002359 for (i = 0; i < sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002360 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (err)
2362 break;
2363 }
2364 if (err) {
2365 int j;
2366
2367 if (!delta)
2368 pmc->mca_sfcount[sfmode]--;
Ian Morris67ba4152014-08-24 21:53:10 +01002369 for (j = 0; j < i; j++)
RongQing.Li78d50212012-04-04 16:47:04 +00002370 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct ip6_sf_list *psf;
2373
2374 /* filter mode change */
2375 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2376 pmc->mca_sfmode = MCAST_EXCLUDE;
2377 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2378 pmc->mca_sfmode = MCAST_INCLUDE;
2379 /* else no filters; keep old mode for reports */
2380
2381 pmc->mca_crcount = idev->mc_qrv;
2382 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002383 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 psf->sf_crcount = 0;
2385 mld_ifc_event(idev);
2386 } else if (sf_setstate(pmc))
2387 mld_ifc_event(idev);
2388 spin_unlock_bh(&pmc->mca_lock);
2389 read_unlock_bh(&idev->lock);
2390 return err;
2391}
2392
2393static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2394{
2395 struct ip6_sf_list *psf, *nextpsf;
2396
Ian Morris67ba4152014-08-24 21:53:10 +01002397 for (psf = pmc->mca_tomb; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 nextpsf = psf->sf_next;
2399 kfree(psf);
2400 }
2401 pmc->mca_tomb = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002402 for (psf = pmc->mca_sources; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 nextpsf = psf->sf_next;
2404 kfree(psf);
2405 }
2406 pmc->mca_sources = NULL;
2407 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002408 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2410}
2411
2412
2413static void igmp6_join_group(struct ifmcaddr6 *ma)
2414{
2415 unsigned long delay;
2416
2417 if (ma->mca_flags & MAF_NOREPORT)
2418 return;
2419
2420 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2421
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05002422 delay = prandom_u32() % unsolicited_report_interval(ma->idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 spin_lock_bh(&ma->mca_lock);
2425 if (del_timer(&ma->mca_timer)) {
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03002426 refcount_dec(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 delay = ma->mca_timer.expires - jiffies;
2428 }
2429
2430 if (!mod_timer(&ma->mca_timer, jiffies + delay))
Reshetova, Elenad3981bc2017-07-04 09:34:57 +03002431 refcount_inc(&ma->mca_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2433 spin_unlock_bh(&ma->mca_lock);
2434}
2435
2436static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2437 struct inet6_dev *idev)
2438{
2439 int err;
2440
Eric Dumazetdc012f32018-10-12 18:58:53 -07002441 write_lock_bh(&iml->sflock);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002442 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 /* any-source empty exclude case */
Eric Dumazetdc012f32018-10-12 18:58:53 -07002444 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2445 } else {
2446 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2447 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2448 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2449 iml->sflist = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
Eric Dumazetdc012f32018-10-12 18:58:53 -07002451 write_unlock_bh(&iml->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return err;
2453}
2454
2455static void igmp6_leave_group(struct ifmcaddr6 *ma)
2456{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002457 if (mld_in_v1_mode(ma->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 if (ma->mca_flags & MAF_LAST_REPORTER)
2459 igmp6_send(&ma->mca_addr, ma->idev->dev,
2460 ICMPV6_MGM_REDUCTION);
2461 } else {
2462 mld_add_delrec(ma->idev, ma);
2463 mld_ifc_event(ma->idev);
2464 }
2465}
2466
Kees Cooke99e88a2017-10-16 14:43:17 -07002467static void mld_gq_timer_expire(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Kees Cooke99e88a2017-10-16 14:43:17 -07002469 struct inet6_dev *idev = from_timer(idev, t, mc_gq_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 idev->mc_gq_running = 0;
2472 mld_send_report(idev, NULL);
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002473 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
Kees Cooke99e88a2017-10-16 14:43:17 -07002476static void mld_ifc_timer_expire(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Kees Cooke99e88a2017-10-16 14:43:17 -07002478 struct inet6_dev *idev = from_timer(idev, t, mc_ifc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 mld_send_cr(idev);
2481 if (idev->mc_ifc_count) {
2482 idev->mc_ifc_count--;
2483 if (idev->mc_ifc_count)
Hangbin Liu6c6da922018-06-21 19:49:36 +08002484 mld_ifc_start_timer(idev,
2485 unsolicited_report_interval(idev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002487 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490static void mld_ifc_event(struct inet6_dev *idev)
2491{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002492 if (mld_in_v1_mode(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return;
2494 idev->mc_ifc_count = idev->mc_qrv;
2495 mld_ifc_start_timer(idev, 1);
2496}
2497
Kees Cooke99e88a2017-10-16 14:43:17 -07002498static void igmp6_timer_handler(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Kees Cooke99e88a2017-10-16 14:43:17 -07002500 struct ifmcaddr6 *ma = from_timer(ma, t, mca_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002502 if (mld_in_v1_mode(ma->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2504 else
2505 mld_send_report(ma->idev, ma);
2506
2507 spin_lock(&ma->mca_lock);
2508 ma->mca_flags |= MAF_LAST_REPORTER;
2509 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2510 spin_unlock(&ma->mca_lock);
2511 ma_put(ma);
2512}
2513
Moni Shoua75c78502009-09-15 02:37:40 -07002514/* Device changing type */
2515
2516void ipv6_mc_unmap(struct inet6_dev *idev)
2517{
2518 struct ifmcaddr6 *i;
2519
2520 /* Install multicast list, except for all-nodes (already installed) */
2521
2522 read_lock_bh(&idev->lock);
2523 for (i = idev->mc_list; i; i = i->next)
2524 igmp6_group_dropped(i);
2525 read_unlock_bh(&idev->lock);
2526}
2527
2528void ipv6_mc_remap(struct inet6_dev *idev)
2529{
2530 ipv6_mc_up(idev);
2531}
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533/* Device going down */
2534
2535void ipv6_mc_down(struct inet6_dev *idev)
2536{
2537 struct ifmcaddr6 *i;
2538
2539 /* Withdraw multicast list */
2540
2541 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Ian Morris67ba4152014-08-24 21:53:10 +01002543 for (i = idev->mc_list; i; i = i->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 igmp6_group_dropped(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Hangbin Liu1666d492017-01-12 21:19:37 +08002546 /* Should stop timer after group drop. or we will
2547 * start timer again in mld_ifc_event()
2548 */
2549 mld_ifc_stop_timer(idev);
2550 mld_gq_stop_timer(idev);
2551 mld_dad_stop_timer(idev);
2552 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002555static void ipv6_mc_reset(struct inet6_dev *idev)
2556{
2557 idev->mc_qrv = sysctl_mld_qrv;
2558 idev->mc_qi = MLD_QI_DEFAULT;
2559 idev->mc_qri = MLD_QRI_DEFAULT;
2560 idev->mc_v1_seen = 0;
2561 idev->mc_maxdelay = unsolicited_report_interval(idev);
2562}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564/* Device going up */
2565
2566void ipv6_mc_up(struct inet6_dev *idev)
2567{
2568 struct ifmcaddr6 *i;
2569
2570 /* Install multicast list, except for all-nodes (already installed) */
2571
2572 read_lock_bh(&idev->lock);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002573 ipv6_mc_reset(idev);
Hangbin Liu1666d492017-01-12 21:19:37 +08002574 for (i = idev->mc_list; i; i = i->next) {
2575 mld_del_delrec(idev, i);
Hangbin Liu0ae0d602018-07-20 14:07:42 +08002576 igmp6_group_added(i);
Hangbin Liu1666d492017-01-12 21:19:37 +08002577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 read_unlock_bh(&idev->lock);
2579}
2580
2581/* IPv6 device initialization. */
2582
2583void ipv6_mc_init_dev(struct inet6_dev *idev)
2584{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002586 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 idev->mc_gq_running = 0;
Kees Cooke99e88a2017-10-16 14:43:17 -07002588 timer_setup(&idev->mc_gq_timer, mld_gq_timer_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 idev->mc_tomb = NULL;
2590 idev->mc_ifc_count = 0;
Kees Cooke99e88a2017-10-16 14:43:17 -07002591 timer_setup(&idev->mc_ifc_timer, mld_ifc_timer_expire, 0);
2592 timer_setup(&idev->mc_dad_timer, mld_dad_timer_expire, 0);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002593 ipv6_mc_reset(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}
2596
2597/*
2598 * Device is about to be destroyed: clean up.
2599 */
2600
2601void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2602{
2603 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 /* Deactivate timers */
2606 ipv6_mc_down(idev);
Hangbin Liu1666d492017-01-12 21:19:37 +08002607 mld_clear_delrec(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2611 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2612 * fail.
2613 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002614 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002616 if (idev->cnf.forwarding)
2617 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 write_lock_bh(&idev->lock);
2620 while ((i = idev->mc_list) != NULL) {
2621 idev->mc_list = i->next;
Hangbin Liu1666d492017-01-12 21:19:37 +08002622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 ma_put(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 write_lock_bh(&idev->lock);
2626 }
2627 write_unlock_bh(&idev->lock);
2628}
2629
Vlad Yasevich382ed722017-03-28 14:49:16 -04002630static void ipv6_mc_rejoin_groups(struct inet6_dev *idev)
2631{
2632 struct ifmcaddr6 *pmc;
2633
2634 ASSERT_RTNL();
2635
2636 if (mld_in_v1_mode(idev)) {
2637 read_lock_bh(&idev->lock);
2638 for (pmc = idev->mc_list; pmc; pmc = pmc->next)
2639 igmp6_join_group(pmc);
2640 read_unlock_bh(&idev->lock);
2641 } else
2642 mld_send_report(idev, NULL);
2643}
2644
2645static int ipv6_mc_netdev_event(struct notifier_block *this,
2646 unsigned long event,
2647 void *ptr)
2648{
2649 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2650 struct inet6_dev *idev = __in6_dev_get(dev);
2651
2652 switch (event) {
2653 case NETDEV_RESEND_IGMP:
2654 if (idev)
2655 ipv6_mc_rejoin_groups(idev);
2656 break;
2657 default:
2658 break;
2659 }
2660
2661 return NOTIFY_DONE;
2662}
2663
2664static struct notifier_block igmp6_netdev_notifier = {
2665 .notifier_call = ipv6_mc_netdev_event,
2666};
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668#ifdef CONFIG_PROC_FS
2669struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002670 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 struct net_device *dev;
2672 struct inet6_dev *idev;
2673};
2674
2675#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2676
2677static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2678{
2679 struct ifmcaddr6 *im = NULL;
2680 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002681 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Pavel Emelianov7562f872007-05-03 15:13:45 -07002683 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002684 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002686 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 if (!idev)
2688 continue;
2689 read_lock_bh(&idev->lock);
2690 im = idev->mc_list;
2691 if (im) {
2692 state->idev = idev;
2693 break;
2694 }
2695 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697 return im;
2698}
2699
2700static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2701{
2702 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2703
2704 im = im->next;
2705 while (!im) {
Ian Morris53b24b82015-03-29 14:00:05 +01002706 if (likely(state->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002708
2709 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (!state->dev) {
2711 state->idev = NULL;
2712 break;
2713 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002714 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 if (!state->idev)
2716 continue;
2717 read_lock_bh(&state->idev->lock);
2718 im = state->idev->mc_list;
2719 }
2720 return im;
2721}
2722
2723static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2724{
2725 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2726 if (im)
2727 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2728 --pos;
2729 return pos ? NULL : im;
2730}
2731
2732static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002733 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
Eric Dumazetce81b762009-11-11 17:34:30 +00002735 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 return igmp6_mc_get_idx(seq, *pos);
2737}
2738
2739static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2740{
Eric Dumazetce81b762009-11-11 17:34:30 +00002741 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 ++*pos;
2744 return im;
2745}
2746
2747static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002748 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
2750 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002751
Ian Morris53b24b82015-03-29 14:00:05 +01002752 if (likely(state->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 state->idev = NULL;
2755 }
2756 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002757 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
2760static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2761{
2762 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2763 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2764
2765 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002766 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002768 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 im->mca_users, im->mca_flags,
2770 (im->mca_flags&MAF_TIMER_RUNNING) ?
2771 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2772 return 0;
2773}
2774
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002775static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 .start = igmp6_mc_seq_start,
2777 .next = igmp6_mc_seq_next,
2778 .stop = igmp6_mc_seq_stop,
2779 .show = igmp6_mc_seq_show,
2780};
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002783 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 struct net_device *dev;
2785 struct inet6_dev *idev;
2786 struct ifmcaddr6 *im;
2787};
2788
2789#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2790
2791static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2792{
2793 struct ip6_sf_list *psf = NULL;
2794 struct ifmcaddr6 *im = NULL;
2795 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002796 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Pavel Emelianov7562f872007-05-03 15:13:45 -07002798 state->idev = NULL;
2799 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002800 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002802 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (unlikely(idev == NULL))
2804 continue;
2805 read_lock_bh(&idev->lock);
2806 im = idev->mc_list;
Ian Morris53b24b82015-03-29 14:00:05 +01002807 if (likely(im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 spin_lock_bh(&im->mca_lock);
2809 psf = im->mca_sources;
Ian Morris53b24b82015-03-29 14:00:05 +01002810 if (likely(psf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 state->im = im;
2812 state->idev = idev;
2813 break;
2814 }
2815 spin_unlock_bh(&im->mca_lock);
2816 }
2817 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 }
2819 return psf;
2820}
2821
2822static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2823{
2824 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2825
2826 psf = psf->sf_next;
2827 while (!psf) {
2828 spin_unlock_bh(&state->im->mca_lock);
2829 state->im = state->im->next;
2830 while (!state->im) {
Ian Morris53b24b82015-03-29 14:00:05 +01002831 if (likely(state->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002833
2834 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (!state->dev) {
2836 state->idev = NULL;
2837 goto out;
2838 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002839 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 if (!state->idev)
2841 continue;
2842 read_lock_bh(&state->idev->lock);
2843 state->im = state->idev->mc_list;
2844 }
2845 if (!state->im)
2846 break;
2847 spin_lock_bh(&state->im->mca_lock);
2848 psf = state->im->mca_sources;
2849 }
2850out:
2851 return psf;
2852}
2853
2854static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2855{
2856 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2857 if (psf)
2858 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2859 --pos;
2860 return pos ? NULL : psf;
2861}
2862
2863static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002864 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
Eric Dumazetce81b762009-11-11 17:34:30 +00002866 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2868}
2869
2870static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2871{
2872 struct ip6_sf_list *psf;
2873 if (v == SEQ_START_TOKEN)
2874 psf = igmp6_mcf_get_first(seq);
2875 else
2876 psf = igmp6_mcf_get_next(seq, v);
2877 ++*pos;
2878 return psf;
2879}
2880
2881static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002882 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
2884 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
Ian Morris53b24b82015-03-29 14:00:05 +01002885 if (likely(state->im)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 spin_unlock_bh(&state->im->mca_lock);
2887 state->im = NULL;
2888 }
Ian Morris53b24b82015-03-29 14:00:05 +01002889 if (likely(state->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 state->idev = NULL;
2892 }
2893 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002894 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
2897static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2898{
2899 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2900 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2901
2902 if (v == SEQ_START_TOKEN) {
Joe Perches1744bea2014-11-04 15:37:03 -08002903 seq_puts(seq, "Idx Device Multicast Address Source Address INC EXC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 } else {
2905 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002906 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002908 &state->im->mca_addr,
2909 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 psf->sf_count[MCAST_INCLUDE],
2911 psf->sf_count[MCAST_EXCLUDE]);
2912 }
2913 return 0;
2914}
2915
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002916static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 .start = igmp6_mcf_seq_start,
2918 .next = igmp6_mcf_seq_next,
2919 .stop = igmp6_mcf_seq_stop,
2920 .show = igmp6_mcf_seq_show,
2921};
2922
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002923static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002924{
2925 int err;
2926
2927 err = -ENOMEM;
Christoph Hellwigc3506372018-04-10 19:42:55 +02002928 if (!proc_create_net("igmp6", 0444, net->proc_net, &igmp6_mc_seq_ops,
2929 sizeof(struct igmp6_mc_iter_state)))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002930 goto out;
Christoph Hellwigc3506372018-04-10 19:42:55 +02002931 if (!proc_create_net("mcfilter6", 0444, net->proc_net,
2932 &igmp6_mcf_seq_ops,
2933 sizeof(struct igmp6_mcf_iter_state)))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002934 goto out_proc_net_igmp6;
2935
2936 err = 0;
2937out:
2938 return err;
2939
2940out_proc_net_igmp6:
Gao fengece31ff2013-02-18 01:34:56 +00002941 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002942 goto out;
2943}
2944
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002945static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002946{
Gao fengece31ff2013-02-18 01:34:56 +00002947 remove_proc_entry("mcfilter6", net->proc_net);
2948 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002949}
2950#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002951static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002952{
2953 return 0;
2954}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002955static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002956{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958#endif
2959
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002960static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 int err;
2963
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002964 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2965 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002967 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002969 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 }
2971
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002972 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Madhu Challa93a714d2015-02-25 09:58:35 -08002974 err = inet_ctl_sock_create(&net->ipv6.mc_autojoin_sk, PF_INET6,
2975 SOCK_RAW, IPPROTO_ICMPV6, net);
2976 if (err < 0) {
2977 pr_err("Failed to initialize the IGMP6 autojoin socket (err %d)\n",
2978 err);
2979 goto out_sock_create;
2980 }
2981
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002982 err = igmp6_proc_init(net);
2983 if (err)
Madhu Challa93a714d2015-02-25 09:58:35 -08002984 goto out_sock_create_autojoin;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002985
Madhu Challa93a714d2015-02-25 09:58:35 -08002986 return 0;
2987
2988out_sock_create_autojoin:
2989 inet_ctl_sock_destroy(net->ipv6.mc_autojoin_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002990out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002991 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Madhu Challa93a714d2015-02-25 09:58:35 -08002992out:
2993 return err;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002994}
2995
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002996static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002997{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002998 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Madhu Challa93a714d2015-02-25 09:58:35 -08002999 inet_ctl_sock_destroy(net->ipv6.mc_autojoin_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07003000 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08003001}
3002
3003static struct pernet_operations igmp6_net_ops = {
3004 .init = igmp6_net_init,
3005 .exit = igmp6_net_exit,
3006};
3007
3008int __init igmp6_init(void)
3009{
3010 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
3012
Vlad Yasevich382ed722017-03-28 14:49:16 -04003013int __init igmp6_late_init(void)
3014{
3015 return register_netdevice_notifier(&igmp6_netdev_notifier);
3016}
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018void igmp6_cleanup(void)
3019{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08003020 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
Vlad Yasevich382ed722017-03-28 14:49:16 -04003022
3023void igmp6_late_cleanup(void)
3024{
3025 unregister_netdevice_notifier(&igmp6_netdev_notifier);
3026}