blob: a23b655a7627a69046d956139946c00dda8825f4 [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
67/* Set to 3 to get tracing... */
68#define MCAST_DEBUG 2
69
70#if MCAST_DEBUG >= 3
71#define MDBG(x) printk x
72#else
73#define MDBG(x)
74#endif
75
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090076/* Ensure that we have struct in6_addr aligned on 32bit word. */
77static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
78 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
79 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
80 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
84
85/* Big mc list lock for all the sockets */
Eric Dumazet456b61b2010-11-23 13:12:15 +000086static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void igmp6_join_group(struct ifmcaddr6 *ma);
89static void igmp6_leave_group(struct ifmcaddr6 *ma);
90static void igmp6_timer_handler(unsigned long data);
91
92static void mld_gq_timer_expire(unsigned long data);
93static void mld_ifc_timer_expire(unsigned long data);
94static void mld_ifc_event(struct inet6_dev *idev);
95static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000096static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static void mld_clear_delrec(struct inet6_dev *idev);
Daniel Borkmann6c567b72013-09-04 00:19:38 +020098static bool mld_in_v1_mode(const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int sf_setstate(struct ifmcaddr6 *pmc);
100static void sf_markstate(struct ifmcaddr6 *pmc);
101static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000102static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
103 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000105static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
106 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int delta);
108static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
109 struct inet6_dev *idev);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define MLD_QRV_DEFAULT 2
Daniel Borkmann89225d12013-09-04 00:19:37 +0200112/* RFC3810, 9.2. Query Interval */
113#define MLD_QI_DEFAULT (125 * HZ)
114/* RFC3810, 9.3. Query Response Interval */
115#define MLD_QRI_DEFAULT (10 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Daniel Borkmann9fd07842013-08-20 12:22:02 +0200117/* RFC3810, 8.1 Query Version Distinctions */
118#define MLD_V1_QUERY_LEN 24
119#define MLD_V2_QUERY_LEN_MIN 28
120
David L Stevens6f4353d2005-12-26 17:03:46 -0800121#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Brian Haleyab32ea52006-09-22 14:15:41 -0700123int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * socket join on multicast group
127 */
128
Eric Dumazet456b61b2010-11-23 13:12:15 +0000129#define for_each_pmc_rcu(np, pmc) \
130 for (pmc = rcu_dereference(np->ipv6_mc_list); \
131 pmc != NULL; \
132 pmc = rcu_dereference(pmc->next))
133
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200134static int unsolicited_report_interval(struct inet6_dev *idev)
135{
136 int iv;
137
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200138 if (mld_in_v1_mode(idev))
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200139 iv = idev->cnf.mldv1_unsolicited_report_interval;
140 else
141 iv = idev->cnf.mldv2_unsolicited_report_interval;
142
143 return iv > 0 ? iv : 1;
144}
145
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900146int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct net_device *dev = NULL;
149 struct ipv6_mc_socklist *mc_lst;
150 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900151 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int err;
153
154 if (!ipv6_addr_is_multicast(addr))
155 return -EINVAL;
156
Eric Dumazet456b61b2010-11-23 13:12:15 +0000157 rcu_read_lock();
158 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700159 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
160 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000161 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700162 return -EADDRINUSE;
163 }
164 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000165 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
168
169 if (mc_lst == NULL)
170 return -ENOMEM;
171
172 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000173 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200175 rtnl_lock();
Eric Dumazet96b52e62010-06-07 21:05:02 +0000176 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (ifindex == 0) {
178 struct rt6_info *rt;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800179 rt = rt6_lookup(net, addr, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500181 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000182 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000185 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 if (dev == NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000188 rcu_read_unlock();
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200189 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
191 return -ENODEV;
192 }
193
194 mc_lst->ifindex = dev->ifindex;
195 mc_lst->sfmode = MCAST_EXCLUDE;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800196 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 mc_lst->sflist = NULL;
198
199 /*
200 * now add/increase the group membership on the device
201 */
202
203 err = ipv6_dev_mc_inc(dev, addr);
204
205 if (err) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000206 rcu_read_unlock();
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200207 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return err;
210 }
211
Eric Dumazet456b61b2010-11-23 13:12:15 +0000212 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000214 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
215 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Eric Dumazet96b52e62010-06-07 21:05:02 +0000217 rcu_read_unlock();
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200218 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 return 0;
221}
222
223/*
224 * socket leave on multicast group
225 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900226int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000229 struct ipv6_mc_socklist *mc_lst;
230 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900231 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Li Weia858d642012-07-17 15:28:59 +0800233 if (!ipv6_addr_is_multicast(addr))
234 return -EINVAL;
235
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200236 rtnl_lock();
Eric Dumazet456b61b2010-11-23 13:12:15 +0000237 spin_lock(&ipv6_sk_mc_lock);
238 for (lnk = &np->ipv6_mc_list;
239 (mc_lst = rcu_dereference_protected(*lnk,
240 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
241 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
243 ipv6_addr_equal(&mc_lst->addr, addr)) {
244 struct net_device *dev;
245
246 *lnk = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000247 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Eric Dumazet96b52e62010-06-07 21:05:02 +0000249 rcu_read_lock();
250 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800251 if (dev != NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000252 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
David L Stevensacd6e002006-08-17 16:27:39 -0700254 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000255 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700257 } else
258 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000259 rcu_read_unlock();
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200260 rtnl_unlock();
261
Eric Dumazet456b61b2010-11-23 13:12:15 +0000262 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800263 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
265 }
266 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000267 spin_unlock(&ipv6_sk_mc_lock);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200268 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
David L Stevens9951f032005-07-08 17:47:28 -0700270 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Eric Dumazet96b52e62010-06-07 21:05:02 +0000273/* called with rcu_read_lock() */
274static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000275 const struct in6_addr *group,
Eric Dumazet96b52e62010-06-07 21:05:02 +0000276 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 struct net_device *dev = NULL;
279 struct inet6_dev *idev = NULL;
280
281 if (ifindex == 0) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000282 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500285 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000286 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000289 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000292 return NULL;
293 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800294 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000295 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000297 if (idev->dead) {
298 read_unlock_bh(&idev->lock);
299 return NULL;
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return idev;
302}
303
304void ipv6_sock_mc_close(struct sock *sk)
305{
306 struct ipv6_pinfo *np = inet6_sk(sk);
307 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900308 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Eric Dumazet0e1efe92012-12-05 09:18:10 +0000310 if (!rcu_access_pointer(np->ipv6_mc_list))
311 return;
312
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200313 rtnl_lock();
Eric Dumazet456b61b2010-11-23 13:12:15 +0000314 spin_lock(&ipv6_sk_mc_lock);
315 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
316 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct net_device *dev;
318
319 np->ipv6_mc_list = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000320 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Eric Dumazet96b52e62010-06-07 21:05:02 +0000322 rcu_read_lock();
323 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000325 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
David L Stevensacd6e002006-08-17 16:27:39 -0700327 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000328 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700330 } else
331 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000332 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Eric Dumazet456b61b2010-11-23 13:12:15 +0000334 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800335 kfree_rcu(mc_lst, rcu);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000336
337 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000339 spin_unlock(&ipv6_sk_mc_lock);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200340 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343int ip6_mc_source(int add, int omode, struct sock *sk,
344 struct group_source_req *pgsr)
345{
346 struct in6_addr *source, *group;
347 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct inet6_dev *idev;
349 struct ipv6_pinfo *inet6 = inet6_sk(sk);
350 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900351 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700353 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800354 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 int err;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
358 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
359
360 if (!ipv6_addr_is_multicast(group))
361 return -EINVAL;
362
Eric Dumazet96b52e62010-06-07 21:05:02 +0000363 rcu_read_lock();
364 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
365 if (!idev) {
366 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 err = -EADDRNOTAVAIL;
371
Eric Dumazet456b61b2010-11-23 13:12:15 +0000372 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
374 continue;
375 if (ipv6_addr_equal(&pmc->addr, group))
376 break;
377 }
David L Stevens917f2f12005-07-08 17:45:16 -0700378 if (!pmc) { /* must have a prior join */
379 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* if a source filter was set, must be the same mode as before */
383 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700384 if (pmc->sfmode != omode) {
385 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 } else if (pmc->sfmode != omode) {
389 /* allow mode switches for empty-set filters */
390 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
391 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
392 pmc->sfmode = omode;
393 }
394
Eric Dumazet96b52e62010-06-07 21:05:02 +0000395 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800396 pmclocked = 1;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 psl = pmc->sflist;
399 if (!add) {
400 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700401 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 rv = !0;
403 for (i=0; i<psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000404 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (rv == 0)
406 break;
407 }
408 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700409 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700411 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
412 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
413 leavegroup = 1;
414 goto done;
415 }
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /* update the interface filter */
418 ip6_mc_del_src(idev, group, omode, 1, source, 1);
419
420 for (j=i+1; j<psl->sl_count; j++)
421 psl->sl_addr[j-1] = psl->sl_addr[j];
422 psl->sl_count--;
423 err = 0;
424 goto done;
425 }
426 /* else, add a new source to the filter */
427
428 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
429 err = -ENOBUFS;
430 goto done;
431 }
432 if (!psl || psl->sl_count == psl->sl_max) {
433 struct ip6_sf_socklist *newpsl;
434 int count = IP6_SFBLOCK;
435
436 if (psl)
437 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800438 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!newpsl) {
440 err = -ENOBUFS;
441 goto done;
442 }
443 newpsl->sl_max = count;
444 newpsl->sl_count = count - IP6_SFBLOCK;
445 if (psl) {
446 for (i=0; i<psl->sl_count; i++)
447 newpsl->sl_addr[i] = psl->sl_addr[i];
448 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
449 }
450 pmc->sflist = psl = newpsl;
451 }
452 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
453 for (i=0; i<psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000454 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Jean Sacren56db1c52013-02-03 21:34:10 +0000455 if (rv == 0) /* There is an error in the address. */
456 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 for (j=psl->sl_count-1; j>=i; j--)
459 psl->sl_addr[j+1] = psl->sl_addr[j];
460 psl->sl_addr[i] = *source;
461 psl->sl_count++;
462 err = 0;
463 /* update the interface list */
464 ip6_mc_add_src(idev, group, omode, 1, source, 1);
465done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800466 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000467 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000469 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700470 if (leavegroup)
471 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return err;
473}
474
475int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
476{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000477 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 struct inet6_dev *idev;
480 struct ipv6_pinfo *inet6 = inet6_sk(sk);
481 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900482 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700483 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int i, err;
485
486 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
487
488 if (!ipv6_addr_is_multicast(group))
489 return -EINVAL;
490 if (gsf->gf_fmode != MCAST_INCLUDE &&
491 gsf->gf_fmode != MCAST_EXCLUDE)
492 return -EINVAL;
493
Eric Dumazet96b52e62010-06-07 21:05:02 +0000494 rcu_read_lock();
495 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Eric Dumazet96b52e62010-06-07 21:05:02 +0000497 if (!idev) {
498 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
David S. Miller9c059892005-07-08 21:44:39 -0700502 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800503
David L Stevens9951f032005-07-08 17:47:28 -0700504 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
505 leavegroup = 1;
506 goto done;
507 }
508
Eric Dumazet456b61b2010-11-23 13:12:15 +0000509 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (pmc->ifindex != gsf->gf_interface)
511 continue;
512 if (ipv6_addr_equal(&pmc->addr, group))
513 break;
514 }
David L Stevens917f2f12005-07-08 17:45:16 -0700515 if (!pmc) { /* must have a prior join */
516 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800520 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
521 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (!newpsl) {
523 err = -ENOBUFS;
524 goto done;
525 }
526 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
527 for (i=0; i<newpsl->sl_count; ++i) {
528 struct sockaddr_in6 *psin6;
529
530 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
531 newpsl->sl_addr[i] = psin6->sin6_addr;
532 }
533 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
534 newpsl->sl_count, newpsl->sl_addr, 0);
535 if (err) {
536 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
537 goto done;
538 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800539 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800541 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
542 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800543
Eric Dumazet96b52e62010-06-07 21:05:02 +0000544 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 psl = pmc->sflist;
546 if (psl) {
547 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
548 psl->sl_count, psl->sl_addr, 0);
549 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
550 } else
551 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
552 pmc->sflist = newpsl;
553 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000554 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700555 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556done:
557 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000558 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700559 if (leavegroup)
560 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return err;
562}
563
564int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
565 struct group_filter __user *optval, int __user *optlen)
566{
567 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000568 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct ipv6_mc_socklist *pmc;
570 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct ipv6_pinfo *inet6 = inet6_sk(sk);
572 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900573 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
576
577 if (!ipv6_addr_is_multicast(group))
578 return -EINVAL;
579
Eric Dumazet96b52e62010-06-07 21:05:02 +0000580 rcu_read_lock();
581 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Eric Dumazet96b52e62010-06-07 21:05:02 +0000583 if (!idev) {
584 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 err = -EADDRNOTAVAIL;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800589 /*
590 * changes to the ipv6_mc_list require the socket lock and
591 * a read lock on ip6_sk_mc_lock. We have the socket lock,
592 * so reading the list is safe.
593 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Eric Dumazet456b61b2010-11-23 13:12:15 +0000595 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (pmc->ifindex != gsf->gf_interface)
597 continue;
598 if (ipv6_addr_equal(group, &pmc->addr))
599 break;
600 }
601 if (!pmc) /* must have a prior join */
602 goto done;
603 gsf->gf_fmode = pmc->sfmode;
604 psl = pmc->sflist;
605 count = psl ? psl->sl_count : 0;
606 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000607 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
610 gsf->gf_numsrc = count;
611 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
612 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
613 return -EFAULT;
614 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800615 /* changes to psl require the socket lock, a read lock on
616 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
617 * have the socket lock, so reading here is safe.
618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 for (i=0; i<copycount; i++) {
620 struct sockaddr_in6 *psin6;
621 struct sockaddr_storage ss;
622
623 psin6 = (struct sockaddr_in6 *)&ss;
624 memset(&ss, 0, sizeof(ss));
625 psin6->sin6_family = AF_INET6;
626 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900627 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return -EFAULT;
629 }
630 return 0;
631done:
632 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000633 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return err;
635}
636
Eric Dumazeta50feda2012-05-18 18:57:34 +0000637bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
638 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 struct ipv6_pinfo *np = inet6_sk(sk);
641 struct ipv6_mc_socklist *mc;
642 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000643 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Eric Dumazet456b61b2010-11-23 13:12:15 +0000645 rcu_read_lock();
646 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (ipv6_addr_equal(&mc->addr, mc_addr))
648 break;
649 }
650 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000651 rcu_read_unlock();
Eric Dumazeta50feda2012-05-18 18:57:34 +0000652 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800654 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 psl = mc->sflist;
656 if (!psl) {
657 rv = mc->sfmode == MCAST_EXCLUDE;
658 } else {
659 int i;
660
661 for (i=0; i<psl->sl_count; i++) {
662 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
663 break;
664 }
665 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000666 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000668 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800670 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000671 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 return rv;
674}
675
676static void ma_put(struct ifmcaddr6 *mc)
677{
678 if (atomic_dec_and_test(&mc->mca_refcnt)) {
679 in6_dev_put(mc->idev);
680 kfree(mc);
681 }
682}
683
684static void igmp6_group_added(struct ifmcaddr6 *mc)
685{
686 struct net_device *dev = mc->idev->dev;
687 char buf[MAX_ADDR_LEN];
688
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000689 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
690 IPV6_ADDR_SCOPE_LINKLOCAL)
691 return;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 spin_lock_bh(&mc->mca_lock);
694 if (!(mc->mca_flags&MAF_LOADED)) {
695 mc->mca_flags |= MAF_LOADED;
696 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000697 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 spin_unlock_bh(&mc->mca_lock);
700
701 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
702 return;
703
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200704 if (mld_in_v1_mode(mc->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 igmp6_join_group(mc);
706 return;
707 }
708 /* else v2 */
709
710 mc->mca_crcount = mc->idev->mc_qrv;
711 mld_ifc_event(mc->idev);
712}
713
714static void igmp6_group_dropped(struct ifmcaddr6 *mc)
715{
716 struct net_device *dev = mc->idev->dev;
717 char buf[MAX_ADDR_LEN];
718
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000719 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
720 IPV6_ADDR_SCOPE_LINKLOCAL)
721 return;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 spin_lock_bh(&mc->mca_lock);
724 if (mc->mca_flags&MAF_LOADED) {
725 mc->mca_flags &= ~MAF_LOADED;
726 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000727 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
730 if (mc->mca_flags & MAF_NOREPORT)
731 goto done;
732 spin_unlock_bh(&mc->mca_lock);
733
734 if (!mc->idev->dead)
735 igmp6_leave_group(mc);
736
737 spin_lock_bh(&mc->mca_lock);
738 if (del_timer(&mc->mca_timer))
739 atomic_dec(&mc->mca_refcnt);
740done:
741 ip6_mc_clear_src(mc);
742 spin_unlock_bh(&mc->mca_lock);
743}
744
745/*
746 * deleted ifmcaddr6 manipulation
747 */
748static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
749{
750 struct ifmcaddr6 *pmc;
751
752 /* this is an "ifmcaddr6" for convenience; only the fields below
753 * are actually used. In particular, the refcnt and users are not
754 * used for management of the delete list. Using the same structure
755 * for deleted items allows change reports to use common code with
756 * non-deleted or query-response MCA's.
757 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800758 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (!pmc)
760 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 spin_lock_bh(&im->mca_lock);
763 spin_lock_init(&pmc->mca_lock);
764 pmc->idev = im->idev;
765 in6_dev_hold(idev);
766 pmc->mca_addr = im->mca_addr;
767 pmc->mca_crcount = idev->mc_qrv;
768 pmc->mca_sfmode = im->mca_sfmode;
769 if (pmc->mca_sfmode == MCAST_INCLUDE) {
770 struct ip6_sf_list *psf;
771
772 pmc->mca_tomb = im->mca_tomb;
773 pmc->mca_sources = im->mca_sources;
774 im->mca_tomb = im->mca_sources = NULL;
775 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
776 psf->sf_crcount = pmc->mca_crcount;
777 }
778 spin_unlock_bh(&im->mca_lock);
779
Stephen Hemminger6457d262010-02-17 18:48:44 -0800780 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 pmc->next = idev->mc_tomb;
782 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800783 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000786static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct ifmcaddr6 *pmc, *pmc_prev;
789 struct ip6_sf_list *psf, *psf_next;
790
Stephen Hemminger6457d262010-02-17 18:48:44 -0800791 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 pmc_prev = NULL;
793 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
794 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
795 break;
796 pmc_prev = pmc;
797 }
798 if (pmc) {
799 if (pmc_prev)
800 pmc_prev->next = pmc->next;
801 else
802 idev->mc_tomb = pmc->next;
803 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800804 spin_unlock_bh(&idev->mc_lock);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (pmc) {
807 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
808 psf_next = psf->sf_next;
809 kfree(psf);
810 }
811 in6_dev_put(pmc->idev);
812 kfree(pmc);
813 }
814}
815
816static void mld_clear_delrec(struct inet6_dev *idev)
817{
818 struct ifmcaddr6 *pmc, *nextpmc;
819
Stephen Hemminger6457d262010-02-17 18:48:44 -0800820 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 pmc = idev->mc_tomb;
822 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800823 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 for (; pmc; pmc = nextpmc) {
826 nextpmc = pmc->next;
827 ip6_mc_clear_src(pmc);
828 in6_dev_put(pmc->idev);
829 kfree(pmc);
830 }
831
832 /* clear dead sources, too */
833 read_lock_bh(&idev->lock);
834 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
835 struct ip6_sf_list *psf, *psf_next;
836
837 spin_lock_bh(&pmc->mca_lock);
838 psf = pmc->mca_tomb;
839 pmc->mca_tomb = NULL;
840 spin_unlock_bh(&pmc->mca_lock);
841 for (; psf; psf=psf_next) {
842 psf_next = psf->sf_next;
843 kfree(psf);
844 }
845 }
846 read_unlock_bh(&idev->lock);
847}
848
849
850/*
851 * device multicast group inc (add if not found)
852 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900853int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct ifmcaddr6 *mc;
856 struct inet6_dev *idev;
857
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200858 ASSERT_RTNL();
859
Eric Dumazet96b52e62010-06-07 21:05:02 +0000860 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 idev = in6_dev_get(dev);
862
863 if (idev == NULL)
864 return -EINVAL;
865
866 write_lock_bh(&idev->lock);
867 if (idev->dead) {
868 write_unlock_bh(&idev->lock);
869 in6_dev_put(idev);
870 return -ENODEV;
871 }
872
873 for (mc = idev->mc_list; mc; mc = mc->next) {
874 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
875 mc->mca_users++;
876 write_unlock_bh(&idev->lock);
877 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
878 NULL, 0);
879 in6_dev_put(idev);
880 return 0;
881 }
882 }
883
884 /*
885 * not found: create a new one.
886 */
887
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800888 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 if (mc == NULL) {
891 write_unlock_bh(&idev->lock);
892 in6_dev_put(idev);
893 return -ENOMEM;
894 }
895
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800896 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000898 mc->mca_addr = *addr;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000899 mc->idev = idev; /* (reference taken) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 mc->mca_users = 1;
901 /* mca_stamp should be updated upon changes */
902 mc->mca_cstamp = mc->mca_tstamp = jiffies;
903 atomic_set(&mc->mca_refcnt, 2);
904 spin_lock_init(&mc->mca_lock);
905
906 /* initial mode is (EX, empty) */
907 mc->mca_sfmode = MCAST_EXCLUDE;
908 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
909
910 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
911 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
912 mc->mca_flags |= MAF_NOREPORT;
913
914 mc->next = idev->mc_list;
915 idev->mc_list = mc;
916 write_unlock_bh(&idev->lock);
917
918 mld_del_delrec(idev, &mc->mca_addr);
919 igmp6_group_added(mc);
920 ma_put(mc);
921 return 0;
922}
923
924/*
925 * device multicast group del
926 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900927int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct ifmcaddr6 *ma, **map;
930
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200931 ASSERT_RTNL();
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 write_lock_bh(&idev->lock);
934 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
935 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
936 if (--ma->mca_users == 0) {
937 *map = ma->next;
938 write_unlock_bh(&idev->lock);
939
940 igmp6_group_dropped(ma);
941
942 ma_put(ma);
943 return 0;
944 }
945 write_unlock_bh(&idev->lock);
946 return 0;
947 }
948 }
949 write_unlock_bh(&idev->lock);
950
951 return -ENOENT;
952}
953
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900954int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000956 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 int err;
958
Eric Dumazet96b52e62010-06-07 21:05:02 +0000959 rcu_read_lock();
960
961 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000963 err = -ENODEV;
964 else
965 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Eric Dumazet96b52e62010-06-07 21:05:02 +0000967 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return err;
969}
970
971/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 * check if the interface/address pair is valid
973 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000974bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
975 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct inet6_dev *idev;
978 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000979 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Dumazet96b52e62010-06-07 21:05:02 +0000981 rcu_read_lock();
982 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (idev) {
984 read_lock_bh(&idev->lock);
985 for (mc = idev->mc_list; mc; mc=mc->next) {
986 if (ipv6_addr_equal(&mc->mca_addr, group))
987 break;
988 }
989 if (mc) {
990 if (src_addr && !ipv6_addr_any(src_addr)) {
991 struct ip6_sf_list *psf;
992
993 spin_lock_bh(&mc->mca_lock);
994 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
995 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
996 break;
997 }
998 if (psf)
999 rv = psf->sf_count[MCAST_INCLUDE] ||
1000 psf->sf_count[MCAST_EXCLUDE] !=
1001 mc->mca_sfcount[MCAST_EXCLUDE];
1002 else
1003 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
1004 spin_unlock_bh(&mc->mca_lock);
1005 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +00001006 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001010 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return rv;
1012}
1013
1014static void mld_gq_start_timer(struct inet6_dev *idev)
1015{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001016 unsigned long tv = prandom_u32() % idev->mc_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 idev->mc_gq_running = 1;
1019 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1020 in6_dev_hold(idev);
1021}
1022
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001023static void mld_gq_stop_timer(struct inet6_dev *idev)
1024{
1025 idev->mc_gq_running = 0;
1026 if (del_timer(&idev->mc_gq_timer))
1027 __in6_dev_put(idev);
1028}
1029
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001030static void mld_ifc_start_timer(struct inet6_dev *idev, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001032 unsigned long tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1035 in6_dev_hold(idev);
1036}
1037
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001038static void mld_ifc_stop_timer(struct inet6_dev *idev)
1039{
1040 idev->mc_ifc_count = 0;
1041 if (del_timer(&idev->mc_ifc_timer))
1042 __in6_dev_put(idev);
1043}
1044
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001045static void mld_dad_start_timer(struct inet6_dev *idev, unsigned long delay)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001046{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001047 unsigned long tv = prandom_u32() % delay;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001048
1049 if (!mod_timer(&idev->mc_dad_timer, jiffies+tv+2))
1050 in6_dev_hold(idev);
1051}
1052
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001053static void mld_dad_stop_timer(struct inet6_dev *idev)
1054{
1055 if (del_timer(&idev->mc_dad_timer))
1056 __in6_dev_put(idev);
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/*
1060 * IGMP handling (alias multicast ICMPv6 messages)
1061 */
1062
1063static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1064{
1065 unsigned long delay = resptime;
1066
1067 /* Do not start timer for these addresses */
1068 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1069 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1070 return;
1071
1072 if (del_timer(&ma->mca_timer)) {
1073 atomic_dec(&ma->mca_refcnt);
1074 delay = ma->mca_timer.expires - jiffies;
1075 }
1076
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001077 if (delay >= resptime)
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001078 delay = prandom_u32() % resptime;
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 ma->mca_timer.expires = jiffies + delay;
1081 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1082 atomic_inc(&ma->mca_refcnt);
1083 ma->mca_flags |= MAF_TIMER_RUNNING;
1084}
1085
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001086/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001087static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1088 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 struct ip6_sf_list *psf;
1091 int i, scount;
1092
1093 scount = 0;
1094 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1095 if (scount == nsrcs)
1096 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001097 for (i=0; i<nsrcs; i++) {
1098 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001099 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001100 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1101 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001102 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001103 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1104 scount++;
1105 break;
1106 }
1107 }
1108 }
1109 pmc->mca_flags &= ~MAF_GSQUERY;
1110 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001111 return false;
1112 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001113}
1114
Eric Dumazeta50feda2012-05-18 18:57:34 +00001115static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1116 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001117{
1118 struct ip6_sf_list *psf;
1119 int i, scount;
1120
1121 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1122 return mld_xmarksources(pmc, nsrcs, srcs);
1123
1124 /* mark INCLUDE-mode sources */
1125
1126 scount = 0;
1127 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1128 if (scount == nsrcs)
1129 break;
1130 for (i=0; i<nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1132 psf->sf_gsresp = 1;
1133 scount++;
1134 break;
1135 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001138 if (!scount) {
1139 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001140 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001141 }
1142 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001143 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001146static int mld_force_mld_version(const struct inet6_dev *idev)
1147{
1148 /* Normally, both are 0 here. If enforcement to a particular is
1149 * being used, individual device enforcement will have a lower
1150 * precedence over 'all' device (.../conf/all/force_mld_version).
1151 */
1152
1153 if (dev_net(idev->dev)->ipv6.devconf_all->force_mld_version != 0)
1154 return dev_net(idev->dev)->ipv6.devconf_all->force_mld_version;
1155 else
1156 return idev->cnf.force_mld_version;
1157}
1158
1159static bool mld_in_v2_mode_only(const struct inet6_dev *idev)
1160{
1161 return mld_force_mld_version(idev) == 2;
1162}
1163
1164static bool mld_in_v1_mode_only(const struct inet6_dev *idev)
1165{
1166 return mld_force_mld_version(idev) == 1;
1167}
1168
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001169static bool mld_in_v1_mode(const struct inet6_dev *idev)
1170{
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001171 if (mld_in_v2_mode_only(idev))
1172 return false;
1173 if (mld_in_v1_mode_only(idev))
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001174 return true;
1175 if (idev->mc_v1_seen && time_before(jiffies, idev->mc_v1_seen))
1176 return true;
1177
1178 return false;
1179}
1180
Daniel Borkmann89225d12013-09-04 00:19:37 +02001181static void mld_set_v1_mode(struct inet6_dev *idev)
1182{
1183 /* RFC3810, relevant sections:
1184 * - 9.1. Robustness Variable
1185 * - 9.2. Query Interval
1186 * - 9.3. Query Response Interval
1187 * - 9.12. Older Version Querier Present Timeout
1188 */
1189 unsigned long switchback;
1190
1191 switchback = (idev->mc_qrv * idev->mc_qi) + idev->mc_qri;
1192
1193 idev->mc_v1_seen = jiffies + switchback;
1194}
1195
1196static void mld_update_qrv(struct inet6_dev *idev,
1197 const struct mld2_query *mlh2)
1198{
1199 /* RFC3810, relevant sections:
1200 * - 5.1.8. QRV (Querier's Robustness Variable)
1201 * - 9.1. Robustness Variable
1202 */
1203
1204 /* The value of the Robustness Variable MUST NOT be zero,
1205 * and SHOULD NOT be one. Catch this here if we ever run
1206 * into such a case in future.
1207 */
1208 WARN_ON(idev->mc_qrv == 0);
1209
1210 if (mlh2->mld2q_qrv > 0)
1211 idev->mc_qrv = mlh2->mld2q_qrv;
1212
1213 if (unlikely(idev->mc_qrv < 2)) {
1214 net_warn_ratelimited("IPv6: MLD: clamping QRV from %u to %u!\n",
1215 idev->mc_qrv, MLD_QRV_DEFAULT);
1216 idev->mc_qrv = MLD_QRV_DEFAULT;
1217 }
1218}
1219
1220static void mld_update_qi(struct inet6_dev *idev,
1221 const struct mld2_query *mlh2)
1222{
1223 /* RFC3810, relevant sections:
1224 * - 5.1.9. QQIC (Querier's Query Interval Code)
1225 * - 9.2. Query Interval
1226 * - 9.12. Older Version Querier Present Timeout
1227 * (the [Query Interval] in the last Query received)
1228 */
1229 unsigned long mc_qqi;
1230
1231 if (mlh2->mld2q_qqic < 128) {
1232 mc_qqi = mlh2->mld2q_qqic;
1233 } else {
1234 unsigned long mc_man, mc_exp;
1235
1236 mc_exp = MLDV2_QQIC_EXP(mlh2->mld2q_qqic);
1237 mc_man = MLDV2_QQIC_MAN(mlh2->mld2q_qqic);
1238
1239 mc_qqi = (mc_man | 0x10) << (mc_exp + 3);
1240 }
1241
1242 idev->mc_qi = mc_qqi * HZ;
1243}
1244
1245static void mld_update_qri(struct inet6_dev *idev,
1246 const struct mld2_query *mlh2)
1247{
1248 /* RFC3810, relevant sections:
1249 * - 5.1.3. Maximum Response Code
1250 * - 9.3. Query Response Interval
1251 */
Daniel Borkmanne3f5b172013-09-04 00:19:39 +02001252 idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2));
Daniel Borkmann89225d12013-09-04 00:19:37 +02001253}
1254
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001255static int mld_process_v1(struct inet6_dev *idev, struct mld_msg *mld,
1256 unsigned long *max_delay)
1257{
1258 unsigned long mldv1_md;
1259
1260 /* Ignore v1 queries */
1261 if (mld_in_v2_mode_only(idev))
1262 return -EINVAL;
1263
1264 /* MLDv1 router present */
1265 mldv1_md = ntohs(mld->mld_maxdelay);
1266 *max_delay = max(msecs_to_jiffies(mldv1_md), 1UL);
1267
1268 mld_set_v1_mode(idev);
1269
1270 /* cancel MLDv2 report timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001271 mld_gq_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001272 /* cancel the interface change timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001273 mld_ifc_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001274 /* clear deleted report items */
1275 mld_clear_delrec(idev);
1276
1277 return 0;
1278}
1279
1280static int mld_process_v2(struct inet6_dev *idev, struct mld2_query *mld,
1281 unsigned long *max_delay)
1282{
1283 /* hosts need to stay in MLDv1 mode, discard MLDv2 queries */
1284 if (mld_in_v1_mode(idev))
1285 return -EINVAL;
1286
1287 *max_delay = max(msecs_to_jiffies(mldv2_mrc(mld)), 1UL);
1288
1289 mld_update_qrv(idev, mld);
1290 mld_update_qi(idev, mld);
1291 mld_update_qri(idev, mld);
1292
1293 idev->mc_maxdelay = *max_delay;
1294
1295 return 0;
1296}
1297
Eric Dumazet96b52e62010-06-07 21:05:02 +00001298/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299int igmp6_event_query(struct sk_buff *skb)
1300{
Yan Zheng97300b52005-10-31 20:09:45 +08001301 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001303 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 unsigned long max_delay;
1305 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001306 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 int group_type;
1308 int mark = 0;
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001309 int len, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1312 return -EINVAL;
1313
1314 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001315 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001316 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Hangbin Liue940f5d2014-06-27 09:57:53 +08001318 /* RFC3810 6.2
1319 * Upon reception of an MLD message that contains a Query, the node
1320 * checks if the source address of the message is a valid link-local
1321 * address, if the Hop Limit is set to 1, and if the Router Alert
1322 * option is present in the Hop-By-Hop Options header of the IPv6
1323 * packet. If any of these checks fails, the packet is dropped.
1324 */
1325 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL) ||
1326 ipv6_hdr(skb)->hop_limit != 1 ||
1327 !(IP6CB(skb)->flags & IP6SKB_ROUTERALERT) ||
1328 IP6CB(skb)->ra != htons(IPV6_OPT_ROUTERALERT_MLD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return -EINVAL;
1330
Eric Dumazet96b52e62010-06-07 21:05:02 +00001331 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (idev == NULL)
1333 return 0;
1334
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001335 mld = (struct mld_msg *)icmp6_hdr(skb);
1336 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 group_type = ipv6_addr_type(group);
1338
1339 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001340 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001343 if (len == MLD_V1_QUERY_LEN) {
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001344 err = mld_process_v1(idev, mld, &max_delay);
1345 if (err < 0)
1346 return err;
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001347 } else if (len >= MLD_V2_QUERY_LEN_MIN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001348 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001349 sizeof(struct icmp6hdr);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001350
Eric Dumazet96b52e62010-06-07 21:05:02 +00001351 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001352 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001353
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001354 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Daniel Borkmann84698962013-08-20 12:22:00 +02001355
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001356 err = mld_process_v2(idev, mlh2, &max_delay);
1357 if (err < 0)
1358 return err;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001361 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return 0;
1366 }
1367 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001368 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001369 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001370 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001371 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001372
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001373 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001374 mark = 1;
1375 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001376 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 read_lock_bh(&idev->lock);
1380 if (group_type == IPV6_ADDR_ANY) {
1381 for (ma = idev->mc_list; ma; ma=ma->next) {
1382 spin_lock_bh(&ma->mca_lock);
1383 igmp6_group_queried(ma, max_delay);
1384 spin_unlock_bh(&ma->mca_lock);
1385 }
1386 } else {
1387 for (ma = idev->mc_list; ma; ma=ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001388 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 continue;
1390 spin_lock_bh(&ma->mca_lock);
1391 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1392 /* gsquery <- gsquery && mark */
1393 if (!mark)
1394 ma->mca_flags &= ~MAF_GSQUERY;
1395 } else {
1396 /* gsquery <- mark */
1397 if (mark)
1398 ma->mca_flags |= MAF_GSQUERY;
1399 else
1400 ma->mca_flags &= ~MAF_GSQUERY;
1401 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001402 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001403 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001404 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408 }
1409 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 return 0;
1412}
1413
Eric Dumazet96b52e62010-06-07 21:05:02 +00001414/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415int igmp6_event_report(struct sk_buff *skb)
1416{
1417 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001419 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 int addr_type;
1421
1422 /* Our own report looped back. Ignore it. */
1423 if (skb->pkt_type == PACKET_LOOPBACK)
1424 return 0;
1425
David Stevens24c69272005-12-02 20:32:59 -08001426 /* send our report if the MC router may not have heard this report */
1427 if (skb->pkt_type != PACKET_MULTICAST &&
1428 skb->pkt_type != PACKET_BROADCAST)
1429 return 0;
1430
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001431 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return -EINVAL;
1433
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001434 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001437 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001438 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 !(addr_type&IPV6_ADDR_LINKLOCAL))
1440 return -EINVAL;
1441
Eric Dumazet96b52e62010-06-07 21:05:02 +00001442 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (idev == NULL)
1444 return -ENODEV;
1445
1446 /*
1447 * Cancel the timer for this group
1448 */
1449
1450 read_lock_bh(&idev->lock);
1451 for (ma = idev->mc_list; ma; ma=ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001452 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 spin_lock(&ma->mca_lock);
1454 if (del_timer(&ma->mca_timer))
1455 atomic_dec(&ma->mca_refcnt);
1456 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1457 spin_unlock(&ma->mca_lock);
1458 break;
1459 }
1460 }
1461 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return 0;
1463}
1464
Eric Dumazeta50feda2012-05-18 18:57:34 +00001465static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1466 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 switch (type) {
1469 case MLD2_MODE_IS_INCLUDE:
1470 case MLD2_MODE_IS_EXCLUDE:
1471 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001472 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001473 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1474 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001475 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001476 /* don't include if this source is excluded
1477 * in all filters
1478 */
1479 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001480 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001481 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1482 psf->sf_count[MCAST_EXCLUDE];
1483 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001484 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 case MLD2_CHANGE_TO_INCLUDE:
1486 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001487 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return psf->sf_count[MCAST_INCLUDE] != 0;
1489 case MLD2_CHANGE_TO_EXCLUDE:
1490 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001491 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1493 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001494 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1496 psf->sf_count[MCAST_EXCLUDE];
1497 case MLD2_ALLOW_NEW_SOURCES:
1498 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001499 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1501 case MLD2_BLOCK_OLD_SOURCES:
1502 if (pmc->mca_sfmode == MCAST_INCLUDE)
1503 return gdeleted || (psf->sf_crcount && sdeleted);
1504 return psf->sf_crcount && !gdeleted && !sdeleted;
1505 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001506 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
1509static int
1510mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1511{
1512 struct ip6_sf_list *psf;
1513 int scount = 0;
1514
1515 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1516 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1517 continue;
1518 scount++;
1519 }
1520 return scount;
1521}
1522
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001523static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1524 struct net_device *dev,
1525 const struct in6_addr *saddr,
1526 const struct in6_addr *daddr,
1527 int proto, int len)
1528{
1529 struct ipv6hdr *hdr;
1530
1531 skb->protocol = htons(ETH_P_IPV6);
1532 skb->dev = dev;
1533
1534 skb_reset_network_header(skb);
1535 skb_put(skb, sizeof(struct ipv6hdr));
1536 hdr = ipv6_hdr(skb);
1537
1538 ip6_flow_hdr(hdr, 0, 0);
1539
1540 hdr->payload_len = htons(len);
1541 hdr->nexthdr = proto;
1542 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1543
1544 hdr->saddr = *saddr;
1545 hdr->daddr = *daddr;
1546}
1547
Amerigo Wang89657792013-06-29 21:30:49 +08001548static struct sk_buff *mld_newpack(struct inet6_dev *idev, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Amerigo Wang89657792013-06-29 21:30:49 +08001550 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001551 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001552 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct sk_buff *skb;
1554 struct mld2_report *pmr;
1555 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001556 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001557 int hlen = LL_RESERVED_SPACE(dev);
1558 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 int err;
1560 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1561 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1562 IPV6_TLV_PADN, 0 };
1563
1564 /* we assume size > sizeof(ra) here */
Herbert Xua7ae1992011-11-18 02:20:04 +00001565 size += hlen + tlen;
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001566 /* limit our allocations to order-0 page */
1567 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1568 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001570 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return NULL;
1572
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001573 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001574 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Amerigo Wang89657792013-06-29 21:30:49 +08001576 if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001578 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 * when a valid link-local address is not available.
1580 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001581 saddr = &in6addr_any;
1582 } else
1583 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001585 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1588
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001589 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001590 skb_put(skb, sizeof(*pmr));
1591 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001592 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1593 pmr->mld2r_resv1 = 0;
1594 pmr->mld2r_cksum = 0;
1595 pmr->mld2r_resv2 = 0;
1596 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 return skb;
1598}
1599
1600static void mld_sendpack(struct sk_buff *skb)
1601{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001602 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001603 struct mld2_report *pmr =
1604 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001606 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001607 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001609 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001610 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Eric Dumazet96b52e62010-06-07 21:05:02 +00001612 rcu_read_lock();
1613 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001614 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1615
Simon Horman29a3cad2013-05-28 20:34:26 +00001616 payload_len = (skb_tail_pointer(skb) - skb_network_header(skb)) -
1617 sizeof(*pip6);
1618 mldlen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 pip6->payload_len = htons(payload_len);
1620
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001621 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1622 IPPROTO_ICMPV6,
1623 csum_partial(skb_transport_header(skb),
1624 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001625
David S. Miller4c9483b2011-03-12 16:22:43 -05001626 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001627 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1628 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001629 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001630
David S. Miller452edd52011-03-02 13:27:41 -08001631 err = 0;
1632 if (IS_ERR(dst)) {
1633 err = PTR_ERR(dst);
1634 dst = NULL;
1635 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001636 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001637 if (err)
1638 goto err_out;
1639
Neil Hormanedf391f2009-04-27 02:45:02 -07001640 payload_len = skb->len;
1641
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001642 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001643 dst_output);
1644out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (!err) {
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001646 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1647 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1648 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1649 } else {
1650 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Eric Dumazet96b52e62010-06-07 21:05:02 +00001653 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001654 return;
1655
1656err_out:
1657 kfree_skb(skb);
1658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
1661static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1662{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001663 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
1666static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1667 int type, struct mld2_grec **ppgr)
1668{
1669 struct net_device *dev = pmc->idev->dev;
1670 struct mld2_report *pmr;
1671 struct mld2_grec *pgr;
1672
1673 if (!skb)
Amerigo Wang89657792013-06-29 21:30:49 +08001674 skb = mld_newpack(pmc->idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (!skb)
1676 return NULL;
1677 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1678 pgr->grec_type = type;
1679 pgr->grec_auxwords = 0;
1680 pgr->grec_nsrcs = 0;
1681 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001682 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001683 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 *ppgr = pgr;
1685 return skb;
1686}
1687
1688#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1689 skb_tailroom(skb)) : 0)
1690
1691static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001692 int type, int gdeleted, int sdeleted, int crsend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Amerigo Wang89657792013-06-29 21:30:49 +08001694 struct inet6_dev *idev = pmc->idev;
1695 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 struct mld2_report *pmr;
1697 struct mld2_grec *pgr = NULL;
1698 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001699 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (pmc->mca_flags & MAF_NOREPORT)
1702 return skb;
1703
1704 isquery = type == MLD2_MODE_IS_INCLUDE ||
1705 type == MLD2_MODE_IS_EXCLUDE;
1706 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1707 type == MLD2_CHANGE_TO_EXCLUDE;
1708
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001709 stotal = scount = 0;
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1712
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001713 if (!*psf_list)
1714 goto empty_source;
1715
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001716 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 /* EX and TO_EX get a fresh packet, if needed */
1719 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001720 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1722 if (skb)
1723 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001724 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 }
1727 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 psf_prev = NULL;
1729 for (psf=*psf_list; psf; psf=psf_next) {
1730 struct in6_addr *psrc;
1731
1732 psf_next = psf->sf_next;
1733
1734 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1735 psf_prev = psf;
1736 continue;
1737 }
1738
1739 /* clear marks on query responses */
1740 if (isquery)
1741 psf->sf_gsresp = 0;
1742
1743 if (AVAILABLE(skb) < sizeof(*psrc) +
1744 first*sizeof(struct mld2_grec)) {
1745 if (truncate && !first)
1746 break; /* truncate these */
1747 if (pgr)
1748 pgr->grec_nsrcs = htons(scount);
1749 if (skb)
1750 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001751 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 first = 1;
1753 scount = 0;
1754 }
1755 if (first) {
1756 skb = add_grhead(skb, pmc, type, &pgr);
1757 first = 0;
1758 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001759 if (!skb)
1760 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1762 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001763 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1765 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1766 psf->sf_crcount--;
1767 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1768 if (psf_prev)
1769 psf_prev->sf_next = psf->sf_next;
1770 else
1771 *psf_list = psf->sf_next;
1772 kfree(psf);
1773 continue;
1774 }
1775 }
1776 psf_prev = psf;
1777 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001778
1779empty_source:
1780 if (!stotal) {
1781 if (type == MLD2_ALLOW_NEW_SOURCES ||
1782 type == MLD2_BLOCK_OLD_SOURCES)
1783 return skb;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001784 if (pmc->mca_crcount || isquery || crsend) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001785 /* make sure we have room for group header */
1786 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1787 mld_sendpack(skb);
1788 skb = NULL; /* add_grhead will get a new one */
1789 }
1790 skb = add_grhead(skb, pmc, type, &pgr);
1791 }
1792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (pgr)
1794 pgr->grec_nsrcs = htons(scount);
1795
1796 if (isquery)
1797 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1798 return skb;
1799}
1800
1801static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1802{
1803 struct sk_buff *skb = NULL;
1804 int type;
1805
Amerigo Wang89657792013-06-29 21:30:49 +08001806 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (!pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1809 if (pmc->mca_flags & MAF_NOREPORT)
1810 continue;
1811 spin_lock_bh(&pmc->mca_lock);
1812 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1813 type = MLD2_MODE_IS_EXCLUDE;
1814 else
1815 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001816 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 spin_unlock_bh(&pmc->mca_lock);
1818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 } else {
1820 spin_lock_bh(&pmc->mca_lock);
1821 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1822 type = MLD2_MODE_IS_EXCLUDE;
1823 else
1824 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001825 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 spin_unlock_bh(&pmc->mca_lock);
1827 }
Amerigo Wang89657792013-06-29 21:30:49 +08001828 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (skb)
1830 mld_sendpack(skb);
1831}
1832
1833/*
1834 * remove zero-count source records from a source filter list
1835 */
1836static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1837{
1838 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1839
1840 psf_prev = NULL;
1841 for (psf=*ppsf; psf; psf = psf_next) {
1842 psf_next = psf->sf_next;
1843 if (psf->sf_crcount == 0) {
1844 if (psf_prev)
1845 psf_prev->sf_next = psf->sf_next;
1846 else
1847 *ppsf = psf->sf_next;
1848 kfree(psf);
1849 } else
1850 psf_prev = psf;
1851 }
1852}
1853
1854static void mld_send_cr(struct inet6_dev *idev)
1855{
1856 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1857 struct sk_buff *skb = NULL;
1858 int type, dtype;
1859
1860 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001861 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /* deleted MCA's */
1864 pmc_prev = NULL;
1865 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1866 pmc_next = pmc->next;
1867 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1868 type = MLD2_BLOCK_OLD_SOURCES;
1869 dtype = MLD2_BLOCK_OLD_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001870 skb = add_grec(skb, pmc, type, 1, 0, 0);
1871 skb = add_grec(skb, pmc, dtype, 1, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1875 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001876 skb = add_grec(skb, pmc, type, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001878 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (pmc->mca_crcount == 0) {
1880 mld_clear_zeros(&pmc->mca_tomb);
1881 mld_clear_zeros(&pmc->mca_sources);
1882 }
1883 }
1884 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1885 !pmc->mca_sources) {
1886 if (pmc_prev)
1887 pmc_prev->next = pmc_next;
1888 else
1889 idev->mc_tomb = pmc_next;
1890 in6_dev_put(pmc->idev);
1891 kfree(pmc);
1892 } else
1893 pmc_prev = pmc;
1894 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001895 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 /* change recs */
1898 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1899 spin_lock_bh(&pmc->mca_lock);
1900 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1901 type = MLD2_BLOCK_OLD_SOURCES;
1902 dtype = MLD2_ALLOW_NEW_SOURCES;
1903 } else {
1904 type = MLD2_ALLOW_NEW_SOURCES;
1905 dtype = MLD2_BLOCK_OLD_SOURCES;
1906 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001907 skb = add_grec(skb, pmc, type, 0, 0, 0);
1908 skb = add_grec(skb, pmc, dtype, 0, 1, 0); /* deleted sources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910 /* filter mode changes */
1911 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1913 type = MLD2_CHANGE_TO_EXCLUDE;
1914 else
1915 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001916 skb = add_grec(skb, pmc, type, 0, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001917 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919 spin_unlock_bh(&pmc->mca_lock);
1920 }
1921 read_unlock_bh(&idev->lock);
1922 if (!skb)
1923 return;
1924 (void) mld_sendpack(skb);
1925}
1926
1927static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1928{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001929 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001930 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001932 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001933 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001934 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001936 int hlen = LL_RESERVED_SPACE(dev);
1937 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 int err, len, payload_len, full_len;
1939 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1940 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1941 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001942 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001943 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001945 if (type == ICMPV6_MGM_REDUCTION)
1946 snd_addr = &in6addr_linklocal_allrouters;
1947 else
1948 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1951 payload_len = len + sizeof(ra);
1952 full_len = sizeof(struct ipv6hdr) + payload_len;
1953
Neil Hormanedf391f2009-04-27 02:45:02 -07001954 rcu_read_lock();
1955 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1956 IPSTATS_MIB_OUT, full_len);
1957 rcu_read_unlock();
1958
Herbert Xua7ae1992011-11-18 02:20:04 +00001959 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 if (skb == NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001962 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001963 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001964 IPSTATS_MIB_OUTDISCARDS);
1965 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return;
1967 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001968 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001969 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Neil Horman95c385b2007-04-25 17:08:10 -07001971 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001973 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * when a valid link-local address is not available.
1975 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001976 saddr = &in6addr_any;
1977 } else
1978 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001980 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1983
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001984 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1985 memset(hdr, 0, sizeof(struct mld_msg));
1986 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001987 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001989 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1990 IPPROTO_ICMPV6,
1991 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Eric Dumazet96b52e62010-06-07 21:05:02 +00001993 rcu_read_lock();
1994 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
David S. Miller4c9483b2011-03-12 16:22:43 -05001996 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001997 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1998 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001999 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08002000 if (IS_ERR(dst)) {
2001 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002002 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08002003 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002004
Eric Dumazetadf30902009-06-02 05:19:30 +00002005 skb_dst_set(skb, dst);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01002006 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002007 dst_output);
2008out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07002010 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07002011 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07002012 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002014 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Eric Dumazet96b52e62010-06-07 21:05:02 +00002016 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002018
2019err_out:
2020 kfree_skb(skb);
2021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002024static void mld_send_initial_cr(struct inet6_dev *idev)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002025{
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002026 struct sk_buff *skb;
2027 struct ifmcaddr6 *pmc;
2028 int type;
2029
2030 if (mld_in_v1_mode(idev))
2031 return;
2032
2033 skb = NULL;
2034 read_lock_bh(&idev->lock);
2035 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2036 spin_lock_bh(&pmc->mca_lock);
2037 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2038 type = MLD2_CHANGE_TO_EXCLUDE;
2039 else
2040 type = MLD2_CHANGE_TO_INCLUDE;
2041 skb = add_grec(skb, pmc, type, 0, 0, 1);
2042 spin_unlock_bh(&pmc->mca_lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002043 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002044 read_unlock_bh(&idev->lock);
2045 if (skb)
2046 mld_sendpack(skb);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002047}
2048
2049void ipv6_mc_dad_complete(struct inet6_dev *idev)
2050{
2051 idev->mc_dad_count = idev->mc_qrv;
2052 if (idev->mc_dad_count) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002053 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002054 idev->mc_dad_count--;
2055 if (idev->mc_dad_count)
2056 mld_dad_start_timer(idev, idev->mc_maxdelay);
2057 }
2058}
2059
2060static void mld_dad_timer_expire(unsigned long data)
2061{
2062 struct inet6_dev *idev = (struct inet6_dev *)data;
2063
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002064 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002065 if (idev->mc_dad_count) {
2066 idev->mc_dad_count--;
2067 if (idev->mc_dad_count)
2068 mld_dad_start_timer(idev, idev->mc_maxdelay);
2069 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002070 in6_dev_put(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002071}
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002074 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 struct ip6_sf_list *psf, *psf_prev;
2077 int rv = 0;
2078
2079 psf_prev = NULL;
2080 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2081 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2082 break;
2083 psf_prev = psf;
2084 }
2085 if (!psf || psf->sf_count[sfmode] == 0) {
2086 /* source filter not found, or count wrong => bug */
2087 return -ESRCH;
2088 }
2089 psf->sf_count[sfmode]--;
2090 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
2091 struct inet6_dev *idev = pmc->idev;
2092
2093 /* no more filters for this source */
2094 if (psf_prev)
2095 psf_prev->sf_next = psf->sf_next;
2096 else
2097 pmc->mca_sources = psf->sf_next;
2098 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002099 !mld_in_v1_mode(idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 psf->sf_crcount = idev->mc_qrv;
2101 psf->sf_next = pmc->mca_tomb;
2102 pmc->mca_tomb = psf;
2103 rv = 1;
2104 } else
2105 kfree(psf);
2106 }
2107 return rv;
2108}
2109
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002110static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2111 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 int delta)
2113{
2114 struct ifmcaddr6 *pmc;
2115 int changerec = 0;
2116 int i, err;
2117
2118 if (!idev)
2119 return -ENODEV;
2120 read_lock_bh(&idev->lock);
2121 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2122 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2123 break;
2124 }
2125 if (!pmc) {
2126 /* MCA not found?? bug */
2127 read_unlock_bh(&idev->lock);
2128 return -ESRCH;
2129 }
2130 spin_lock_bh(&pmc->mca_lock);
2131 sf_markstate(pmc);
2132 if (!delta) {
2133 if (!pmc->mca_sfcount[sfmode]) {
2134 spin_unlock_bh(&pmc->mca_lock);
2135 read_unlock_bh(&idev->lock);
2136 return -EINVAL;
2137 }
2138 pmc->mca_sfcount[sfmode]--;
2139 }
2140 err = 0;
2141 for (i=0; i<sfcount; i++) {
2142 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2143
2144 changerec |= rv > 0;
2145 if (!err && rv < 0)
2146 err = rv;
2147 }
2148 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
2149 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
2150 pmc->mca_sfcount[MCAST_INCLUDE]) {
2151 struct ip6_sf_list *psf;
2152
2153 /* filter mode change */
2154 pmc->mca_sfmode = MCAST_INCLUDE;
2155 pmc->mca_crcount = idev->mc_qrv;
2156 idev->mc_ifc_count = pmc->mca_crcount;
2157 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2158 psf->sf_crcount = 0;
2159 mld_ifc_event(pmc->idev);
2160 } else if (sf_setstate(pmc) || changerec)
2161 mld_ifc_event(pmc->idev);
2162 spin_unlock_bh(&pmc->mca_lock);
2163 read_unlock_bh(&idev->lock);
2164 return err;
2165}
2166
2167/*
2168 * Add multicast single-source filter to the interface list
2169 */
2170static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00002171 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 struct ip6_sf_list *psf, *psf_prev;
2174
2175 psf_prev = NULL;
2176 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2177 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2178 break;
2179 psf_prev = psf;
2180 }
2181 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002182 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (!psf)
2184 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 psf->sf_addr = *psfsrc;
2187 if (psf_prev) {
2188 psf_prev->sf_next = psf;
2189 } else
2190 pmc->mca_sources = psf;
2191 }
2192 psf->sf_count[sfmode]++;
2193 return 0;
2194}
2195
2196static void sf_markstate(struct ifmcaddr6 *pmc)
2197{
2198 struct ip6_sf_list *psf;
2199 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2200
2201 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
2202 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2203 psf->sf_oldin = mca_xcount ==
2204 psf->sf_count[MCAST_EXCLUDE] &&
2205 !psf->sf_count[MCAST_INCLUDE];
2206 } else
2207 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2208}
2209
2210static int sf_setstate(struct ifmcaddr6 *pmc)
2211{
David L Stevens7add2a42006-01-24 13:06:39 -08002212 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2214 int qrv = pmc->idev->mc_qrv;
2215 int new_in, rv;
2216
2217 rv = 0;
2218 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2219 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2220 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2221 !psf->sf_count[MCAST_INCLUDE];
2222 } else
2223 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08002224 if (new_in) {
2225 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05002226 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08002227
2228 for (dpsf=pmc->mca_tomb; dpsf;
2229 dpsf=dpsf->sf_next) {
2230 if (ipv6_addr_equal(&dpsf->sf_addr,
2231 &psf->sf_addr))
2232 break;
2233 prev = dpsf;
2234 }
2235 if (dpsf) {
2236 if (prev)
2237 prev->sf_next = dpsf->sf_next;
2238 else
2239 pmc->mca_tomb = dpsf->sf_next;
2240 kfree(dpsf);
2241 }
2242 psf->sf_crcount = qrv;
2243 rv++;
2244 }
2245 } else if (psf->sf_oldin) {
2246 psf->sf_crcount = 0;
2247 /*
2248 * add or update "delete" records if an active filter
2249 * is now inactive
2250 */
2251 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2252 if (ipv6_addr_equal(&dpsf->sf_addr,
2253 &psf->sf_addr))
2254 break;
2255 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002256 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002257 if (!dpsf)
2258 continue;
2259 *dpsf = *psf;
2260 /* pmc->mca_lock held by callers */
2261 dpsf->sf_next = pmc->mca_tomb;
2262 pmc->mca_tomb = dpsf;
2263 }
2264 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 rv++;
2266 }
2267 }
2268 return rv;
2269}
2270
2271/*
2272 * Add multicast source filter list to the interface list
2273 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002274static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2275 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 int delta)
2277{
2278 struct ifmcaddr6 *pmc;
2279 int isexclude;
2280 int i, err;
2281
2282 if (!idev)
2283 return -ENODEV;
2284 read_lock_bh(&idev->lock);
2285 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2286 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2287 break;
2288 }
2289 if (!pmc) {
2290 /* MCA not found?? bug */
2291 read_unlock_bh(&idev->lock);
2292 return -ESRCH;
2293 }
2294 spin_lock_bh(&pmc->mca_lock);
2295
2296 sf_markstate(pmc);
2297 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2298 if (!delta)
2299 pmc->mca_sfcount[sfmode]++;
2300 err = 0;
2301 for (i=0; i<sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002302 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (err)
2304 break;
2305 }
2306 if (err) {
2307 int j;
2308
2309 if (!delta)
2310 pmc->mca_sfcount[sfmode]--;
2311 for (j=0; j<i; j++)
RongQing.Li78d50212012-04-04 16:47:04 +00002312 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 struct ip6_sf_list *psf;
2315
2316 /* filter mode change */
2317 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2318 pmc->mca_sfmode = MCAST_EXCLUDE;
2319 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2320 pmc->mca_sfmode = MCAST_INCLUDE;
2321 /* else no filters; keep old mode for reports */
2322
2323 pmc->mca_crcount = idev->mc_qrv;
2324 idev->mc_ifc_count = pmc->mca_crcount;
2325 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2326 psf->sf_crcount = 0;
2327 mld_ifc_event(idev);
2328 } else if (sf_setstate(pmc))
2329 mld_ifc_event(idev);
2330 spin_unlock_bh(&pmc->mca_lock);
2331 read_unlock_bh(&idev->lock);
2332 return err;
2333}
2334
2335static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2336{
2337 struct ip6_sf_list *psf, *nextpsf;
2338
2339 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2340 nextpsf = psf->sf_next;
2341 kfree(psf);
2342 }
2343 pmc->mca_tomb = NULL;
2344 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2345 nextpsf = psf->sf_next;
2346 kfree(psf);
2347 }
2348 pmc->mca_sources = NULL;
2349 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002350 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2352}
2353
2354
2355static void igmp6_join_group(struct ifmcaddr6 *ma)
2356{
2357 unsigned long delay;
2358
2359 if (ma->mca_flags & MAF_NOREPORT)
2360 return;
2361
2362 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2363
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05002364 delay = prandom_u32() % unsolicited_report_interval(ma->idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366 spin_lock_bh(&ma->mca_lock);
2367 if (del_timer(&ma->mca_timer)) {
2368 atomic_dec(&ma->mca_refcnt);
2369 delay = ma->mca_timer.expires - jiffies;
2370 }
2371
2372 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2373 atomic_inc(&ma->mca_refcnt);
2374 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2375 spin_unlock_bh(&ma->mca_lock);
2376}
2377
2378static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2379 struct inet6_dev *idev)
2380{
2381 int err;
2382
David L Stevens5ab4a6c2005-12-27 14:03:00 -08002383 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2384 * so no other readers or writers of iml or its sflist
2385 */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002386 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 /* any-source empty exclude case */
2388 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2389 }
2390 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2391 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2392 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2393 iml->sflist = NULL;
2394 return err;
2395}
2396
2397static void igmp6_leave_group(struct ifmcaddr6 *ma)
2398{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002399 if (mld_in_v1_mode(ma->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if (ma->mca_flags & MAF_LAST_REPORTER)
2401 igmp6_send(&ma->mca_addr, ma->idev->dev,
2402 ICMPV6_MGM_REDUCTION);
2403 } else {
2404 mld_add_delrec(ma->idev, ma);
2405 mld_ifc_event(ma->idev);
2406 }
2407}
2408
2409static void mld_gq_timer_expire(unsigned long data)
2410{
2411 struct inet6_dev *idev = (struct inet6_dev *)data;
2412
2413 idev->mc_gq_running = 0;
2414 mld_send_report(idev, NULL);
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002415 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416}
2417
2418static void mld_ifc_timer_expire(unsigned long data)
2419{
2420 struct inet6_dev *idev = (struct inet6_dev *)data;
2421
2422 mld_send_cr(idev);
2423 if (idev->mc_ifc_count) {
2424 idev->mc_ifc_count--;
2425 if (idev->mc_ifc_count)
2426 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2427 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002428 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
2431static void mld_ifc_event(struct inet6_dev *idev)
2432{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002433 if (mld_in_v1_mode(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return;
2435 idev->mc_ifc_count = idev->mc_qrv;
2436 mld_ifc_start_timer(idev, 1);
2437}
2438
2439
2440static void igmp6_timer_handler(unsigned long data)
2441{
2442 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2443
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002444 if (mld_in_v1_mode(ma->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2446 else
2447 mld_send_report(ma->idev, ma);
2448
2449 spin_lock(&ma->mca_lock);
2450 ma->mca_flags |= MAF_LAST_REPORTER;
2451 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2452 spin_unlock(&ma->mca_lock);
2453 ma_put(ma);
2454}
2455
Moni Shoua75c78502009-09-15 02:37:40 -07002456/* Device changing type */
2457
2458void ipv6_mc_unmap(struct inet6_dev *idev)
2459{
2460 struct ifmcaddr6 *i;
2461
2462 /* Install multicast list, except for all-nodes (already installed) */
2463
2464 read_lock_bh(&idev->lock);
2465 for (i = idev->mc_list; i; i = i->next)
2466 igmp6_group_dropped(i);
2467 read_unlock_bh(&idev->lock);
2468}
2469
2470void ipv6_mc_remap(struct inet6_dev *idev)
2471{
2472 ipv6_mc_up(idev);
2473}
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475/* Device going down */
2476
2477void ipv6_mc_down(struct inet6_dev *idev)
2478{
2479 struct ifmcaddr6 *i;
2480
2481 /* Withdraw multicast list */
2482
2483 read_lock_bh(&idev->lock);
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02002484 mld_ifc_stop_timer(idev);
2485 mld_gq_stop_timer(idev);
2486 mld_dad_stop_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488 for (i = idev->mc_list; i; i=i->next)
2489 igmp6_group_dropped(i);
2490 read_unlock_bh(&idev->lock);
2491
2492 mld_clear_delrec(idev);
2493}
2494
2495
2496/* Device going up */
2497
2498void ipv6_mc_up(struct inet6_dev *idev)
2499{
2500 struct ifmcaddr6 *i;
2501
2502 /* Install multicast list, except for all-nodes (already installed) */
2503
2504 read_lock_bh(&idev->lock);
2505 for (i = idev->mc_list; i; i=i->next)
2506 igmp6_group_added(i);
2507 read_unlock_bh(&idev->lock);
2508}
2509
2510/* IPv6 device initialization. */
2511
2512void ipv6_mc_init_dev(struct inet6_dev *idev)
2513{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002515 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 idev->mc_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002517 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2518 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 idev->mc_tomb = NULL;
2520 idev->mc_ifc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002521 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2522 (unsigned long)idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002523 setup_timer(&idev->mc_dad_timer, mld_dad_timer_expire,
2524 (unsigned long)idev);
Daniel Borkmann89225d12013-09-04 00:19:37 +02002525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 idev->mc_qrv = MLD_QRV_DEFAULT;
Daniel Borkmann89225d12013-09-04 00:19:37 +02002527 idev->mc_qi = MLD_QI_DEFAULT;
2528 idev->mc_qri = MLD_QRI_DEFAULT;
2529
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02002530 idev->mc_maxdelay = unsolicited_report_interval(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 idev->mc_v1_seen = 0;
2532 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533}
2534
2535/*
2536 * Device is about to be destroyed: clean up.
2537 */
2538
2539void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2540{
2541 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /* Deactivate timers */
2544 ipv6_mc_down(idev);
2545
2546 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2548 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2549 * fail.
2550 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002551 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002553 if (idev->cnf.forwarding)
2554 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 write_lock_bh(&idev->lock);
2557 while ((i = idev->mc_list) != NULL) {
2558 idev->mc_list = i->next;
2559 write_unlock_bh(&idev->lock);
2560
2561 igmp6_group_dropped(i);
2562 ma_put(i);
2563
2564 write_lock_bh(&idev->lock);
2565 }
2566 write_unlock_bh(&idev->lock);
2567}
2568
2569#ifdef CONFIG_PROC_FS
2570struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002571 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 struct net_device *dev;
2573 struct inet6_dev *idev;
2574};
2575
2576#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2577
2578static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2579{
2580 struct ifmcaddr6 *im = NULL;
2581 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002582 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Pavel Emelianov7562f872007-05-03 15:13:45 -07002584 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002585 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002587 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (!idev)
2589 continue;
2590 read_lock_bh(&idev->lock);
2591 im = idev->mc_list;
2592 if (im) {
2593 state->idev = idev;
2594 break;
2595 }
2596 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
2598 return im;
2599}
2600
2601static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2602{
2603 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2604
2605 im = im->next;
2606 while (!im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002607 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002609
2610 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (!state->dev) {
2612 state->idev = NULL;
2613 break;
2614 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002615 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if (!state->idev)
2617 continue;
2618 read_lock_bh(&state->idev->lock);
2619 im = state->idev->mc_list;
2620 }
2621 return im;
2622}
2623
2624static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2625{
2626 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2627 if (im)
2628 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2629 --pos;
2630 return pos ? NULL : im;
2631}
2632
2633static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002634 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
Eric Dumazetce81b762009-11-11 17:34:30 +00002636 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 return igmp6_mc_get_idx(seq, *pos);
2638}
2639
2640static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2641{
Eric Dumazetce81b762009-11-11 17:34:30 +00002642 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 ++*pos;
2645 return im;
2646}
2647
2648static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002649 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
2651 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (likely(state->idev != NULL)) {
2654 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 state->idev = NULL;
2656 }
2657 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002658 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
2661static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2662{
2663 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2664 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2665
2666 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002667 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002669 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 im->mca_users, im->mca_flags,
2671 (im->mca_flags&MAF_TIMER_RUNNING) ?
2672 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2673 return 0;
2674}
2675
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002676static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 .start = igmp6_mc_seq_start,
2678 .next = igmp6_mc_seq_next,
2679 .stop = igmp6_mc_seq_stop,
2680 .show = igmp6_mc_seq_show,
2681};
2682
2683static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2684{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002685 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2686 sizeof(struct igmp6_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687}
2688
Arjan van de Ven9a321442007-02-12 00:55:35 -08002689static const struct file_operations igmp6_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 .owner = THIS_MODULE,
2691 .open = igmp6_mc_seq_open,
2692 .read = seq_read,
2693 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002694 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695};
2696
2697struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002698 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 struct net_device *dev;
2700 struct inet6_dev *idev;
2701 struct ifmcaddr6 *im;
2702};
2703
2704#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2705
2706static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2707{
2708 struct ip6_sf_list *psf = NULL;
2709 struct ifmcaddr6 *im = NULL;
2710 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002711 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Pavel Emelianov7562f872007-05-03 15:13:45 -07002713 state->idev = NULL;
2714 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002715 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002717 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 if (unlikely(idev == NULL))
2719 continue;
2720 read_lock_bh(&idev->lock);
2721 im = idev->mc_list;
2722 if (likely(im != NULL)) {
2723 spin_lock_bh(&im->mca_lock);
2724 psf = im->mca_sources;
2725 if (likely(psf != NULL)) {
2726 state->im = im;
2727 state->idev = idev;
2728 break;
2729 }
2730 spin_unlock_bh(&im->mca_lock);
2731 }
2732 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 }
2734 return psf;
2735}
2736
2737static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2738{
2739 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2740
2741 psf = psf->sf_next;
2742 while (!psf) {
2743 spin_unlock_bh(&state->im->mca_lock);
2744 state->im = state->im->next;
2745 while (!state->im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002746 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002748
2749 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (!state->dev) {
2751 state->idev = NULL;
2752 goto out;
2753 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002754 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (!state->idev)
2756 continue;
2757 read_lock_bh(&state->idev->lock);
2758 state->im = state->idev->mc_list;
2759 }
2760 if (!state->im)
2761 break;
2762 spin_lock_bh(&state->im->mca_lock);
2763 psf = state->im->mca_sources;
2764 }
2765out:
2766 return psf;
2767}
2768
2769static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2770{
2771 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2772 if (psf)
2773 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2774 --pos;
2775 return pos ? NULL : psf;
2776}
2777
2778static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002779 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Eric Dumazetce81b762009-11-11 17:34:30 +00002781 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2783}
2784
2785static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2786{
2787 struct ip6_sf_list *psf;
2788 if (v == SEQ_START_TOKEN)
2789 psf = igmp6_mcf_get_first(seq);
2790 else
2791 psf = igmp6_mcf_get_next(seq, v);
2792 ++*pos;
2793 return psf;
2794}
2795
2796static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002797 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
2799 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2800 if (likely(state->im != NULL)) {
2801 spin_unlock_bh(&state->im->mca_lock);
2802 state->im = NULL;
2803 }
2804 if (likely(state->idev != NULL)) {
2805 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 state->idev = NULL;
2807 }
2808 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002809 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
2812static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2813{
2814 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2815 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2816
2817 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002818 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 "%3s %6s "
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002820 "%32s %32s %6s %6s\n", "Idx",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 "Device", "Multicast Address",
2822 "Source Address", "INC", "EXC");
2823 } else {
2824 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002825 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002827 &state->im->mca_addr,
2828 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 psf->sf_count[MCAST_INCLUDE],
2830 psf->sf_count[MCAST_EXCLUDE]);
2831 }
2832 return 0;
2833}
2834
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002835static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 .start = igmp6_mcf_seq_start,
2837 .next = igmp6_mcf_seq_next,
2838 .stop = igmp6_mcf_seq_stop,
2839 .show = igmp6_mcf_seq_show,
2840};
2841
2842static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2843{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002844 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2845 sizeof(struct igmp6_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846}
2847
Arjan van de Ven9a321442007-02-12 00:55:35 -08002848static const struct file_operations igmp6_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 .owner = THIS_MODULE,
2850 .open = igmp6_mcf_seq_open,
2851 .read = seq_read,
2852 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002853 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854};
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002855
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002856static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002857{
2858 int err;
2859
2860 err = -ENOMEM;
Gao fengd4beaa62013-02-18 01:34:54 +00002861 if (!proc_create("igmp6", S_IRUGO, net->proc_net, &igmp6_mc_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002862 goto out;
Gao fengd4beaa62013-02-18 01:34:54 +00002863 if (!proc_create("mcfilter6", S_IRUGO, net->proc_net,
2864 &igmp6_mcf_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002865 goto out_proc_net_igmp6;
2866
2867 err = 0;
2868out:
2869 return err;
2870
2871out_proc_net_igmp6:
Gao fengece31ff2013-02-18 01:34:56 +00002872 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002873 goto out;
2874}
2875
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002876static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002877{
Gao fengece31ff2013-02-18 01:34:56 +00002878 remove_proc_entry("mcfilter6", net->proc_net);
2879 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002880}
2881#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002882static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002883{
2884 return 0;
2885}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002886static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002887{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889#endif
2890
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002891static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 int err;
2894
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002895 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2896 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002898 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002900 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
2902
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002903 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002905 err = igmp6_proc_init(net);
2906 if (err)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002907 goto out_sock_create;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002908out:
2909 return err;
2910
2911out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002912 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002913 goto out;
2914}
2915
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002916static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002917{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002918 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002919 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002920}
2921
2922static struct pernet_operations igmp6_net_ops = {
2923 .init = igmp6_net_init,
2924 .exit = igmp6_net_exit,
2925};
2926
2927int __init igmp6_init(void)
2928{
2929 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930}
2931
2932void igmp6_cleanup(void)
2933{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002934 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935}