blob: 592eba61e78ad9200148bfedadcedcd1e0c7ecd0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Multicast support for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09008 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/* Changes:
17 *
18 * yoshfuji : fix format of router-alert option
19 * YOSHIFUJI Hideaki @USAGI:
20 * Fixed source address for MLD message based on
21 * <draft-ietf-magma-mld-source-05.txt>.
22 * YOSHIFUJI Hideaki @USAGI:
23 * - Ignore Queries for invalid addresses.
24 * - MLD for link-local addresses.
25 * David L Stevens <dlstevens@us.ibm.com>:
26 * - MLDv2 support
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/errno.h>
31#include <linux/types.h>
32#include <linux/string.h>
33#include <linux/socket.h>
34#include <linux/sockios.h>
35#include <linux/jiffies.h>
36#include <linux/times.h>
37#include <linux/net.h>
38#include <linux/in.h>
39#include <linux/in6.h>
40#include <linux/netdevice.h>
41#include <linux/if_arp.h>
42#include <linux/route.h>
43#include <linux/init.h>
44#include <linux/proc_fs.h>
45#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +020047#include <linux/pkt_sched.h>
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090048#include <net/mld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <linux/netfilter.h>
51#include <linux/netfilter_ipv6.h>
52
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020053#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/sock.h>
55#include <net/snmp.h>
56
57#include <net/ipv6.h>
58#include <net/protocol.h>
59#include <net/if_inet6.h>
60#include <net/ndisc.h>
61#include <net/addrconf.h>
62#include <net/ip6_route.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070063#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <net/ip6_checksum.h>
66
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090067/* Ensure that we have struct in6_addr aligned on 32bit word. */
68static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
69 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
70 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
71 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static void igmp6_join_group(struct ifmcaddr6 *ma);
77static void igmp6_leave_group(struct ifmcaddr6 *ma);
78static void igmp6_timer_handler(unsigned long data);
79
80static void mld_gq_timer_expire(unsigned long data);
81static void mld_ifc_timer_expire(unsigned long data);
82static void mld_ifc_event(struct inet6_dev *idev);
83static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000084static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void mld_clear_delrec(struct inet6_dev *idev);
Daniel Borkmann6c567b72013-09-04 00:19:38 +020086static bool mld_in_v1_mode(const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int sf_setstate(struct ifmcaddr6 *pmc);
88static void sf_markstate(struct ifmcaddr6 *pmc);
89static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000090static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
91 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000093static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
94 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int delta);
96static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
97 struct inet6_dev *idev);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define MLD_QRV_DEFAULT 2
Daniel Borkmann89225d12013-09-04 00:19:37 +0200100/* RFC3810, 9.2. Query Interval */
101#define MLD_QI_DEFAULT (125 * HZ)
102/* RFC3810, 9.3. Query Response Interval */
103#define MLD_QRI_DEFAULT (10 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Daniel Borkmann9fd07842013-08-20 12:22:02 +0200105/* RFC3810, 8.1 Query Version Distinctions */
106#define MLD_V1_QUERY_LEN 24
107#define MLD_V2_QUERY_LEN_MIN 28
108
David L Stevens6f4353d2005-12-26 17:03:46 -0800109#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Brian Haleyab32ea52006-09-22 14:15:41 -0700111int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200112int sysctl_mld_qrv __read_mostly = MLD_QRV_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/*
115 * socket join on multicast group
116 */
117
Eric Dumazet456b61b2010-11-23 13:12:15 +0000118#define for_each_pmc_rcu(np, pmc) \
119 for (pmc = rcu_dereference(np->ipv6_mc_list); \
120 pmc != NULL; \
121 pmc = rcu_dereference(pmc->next))
122
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200123static int unsolicited_report_interval(struct inet6_dev *idev)
124{
125 int iv;
126
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200127 if (mld_in_v1_mode(idev))
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200128 iv = idev->cnf.mldv1_unsolicited_report_interval;
129 else
130 iv = idev->cnf.mldv2_unsolicited_report_interval;
131
132 return iv > 0 ? iv : 1;
133}
134
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900135int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct net_device *dev = NULL;
138 struct ipv6_mc_socklist *mc_lst;
139 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900140 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int err;
142
143 if (!ipv6_addr_is_multicast(addr))
144 return -EINVAL;
145
Eric Dumazet456b61b2010-11-23 13:12:15 +0000146 rcu_read_lock();
147 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700148 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
149 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000150 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700151 return -EADDRINUSE;
152 }
153 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000154 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
157
158 if (mc_lst == NULL)
159 return -ENOMEM;
160
161 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000162 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200164 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (ifindex == 0) {
166 struct rt6_info *rt;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800167 rt = rt6_lookup(net, addr, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500169 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000170 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 } else
WANG Cong414b6c92014-09-11 15:35:14 -0700173 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (dev == NULL) {
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200176 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
178 return -ENODEV;
179 }
180
181 mc_lst->ifindex = dev->ifindex;
182 mc_lst->sfmode = MCAST_EXCLUDE;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800183 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 mc_lst->sflist = NULL;
185
186 /*
187 * now add/increase the group membership on the device
188 */
189
190 err = ipv6_dev_mc_inc(dev, addr);
191
192 if (err) {
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200193 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return err;
196 }
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000199 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200201 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 return 0;
204}
205
206/*
207 * socket leave on multicast group
208 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900209int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000212 struct ipv6_mc_socklist *mc_lst;
213 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900214 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Li Weia858d642012-07-17 15:28:59 +0800216 if (!ipv6_addr_is_multicast(addr))
217 return -EINVAL;
218
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200219 rtnl_lock();
Eric Dumazet456b61b2010-11-23 13:12:15 +0000220 for (lnk = &np->ipv6_mc_list;
WANG Congb5350912014-09-11 15:35:13 -0700221 (mc_lst = rtnl_dereference(*lnk)) != NULL;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000222 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
224 ipv6_addr_equal(&mc_lst->addr, addr)) {
225 struct net_device *dev;
226
227 *lnk = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
WANG Cong414b6c92014-09-11 15:35:14 -0700229 dev = __dev_get_by_index(net, mc_lst->ifindex);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800230 if (dev != NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000231 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
David L Stevensacd6e002006-08-17 16:27:39 -0700233 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000234 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700236 } else
237 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200238 rtnl_unlock();
239
Eric Dumazet456b61b2010-11-23 13:12:15 +0000240 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800241 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243 }
244 }
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200245 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
David L Stevens9951f032005-07-08 17:47:28 -0700247 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Eric Dumazet96b52e62010-06-07 21:05:02 +0000250/* called with rcu_read_lock() */
251static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000252 const struct in6_addr *group,
Eric Dumazet96b52e62010-06-07 21:05:02 +0000253 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct net_device *dev = NULL;
256 struct inet6_dev *idev = NULL;
257
258 if (ifindex == 0) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000259 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500262 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000263 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000266 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000269 return NULL;
270 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800271 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000272 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000274 if (idev->dead) {
275 read_unlock_bh(&idev->lock);
276 return NULL;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return idev;
279}
280
281void ipv6_sock_mc_close(struct sock *sk)
282{
283 struct ipv6_pinfo *np = inet6_sk(sk);
284 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900285 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Eric Dumazet0e1efe92012-12-05 09:18:10 +0000287 if (!rcu_access_pointer(np->ipv6_mc_list))
288 return;
289
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200290 rtnl_lock();
WANG Congb5350912014-09-11 15:35:13 -0700291 while ((mc_lst = rtnl_dereference(np->ipv6_mc_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct net_device *dev;
293
294 np->ipv6_mc_list = mc_lst->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
WANG Cong414b6c92014-09-11 15:35:14 -0700296 dev = __dev_get_by_index(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000298 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David L Stevensacd6e002006-08-17 16:27:39 -0700300 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000301 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700303 } else
304 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Eric Dumazet456b61b2010-11-23 13:12:15 +0000306 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800307 kfree_rcu(mc_lst, rcu);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200310 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313int ip6_mc_source(int add, int omode, struct sock *sk,
314 struct group_source_req *pgsr)
315{
316 struct in6_addr *source, *group;
317 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 struct inet6_dev *idev;
319 struct ipv6_pinfo *inet6 = inet6_sk(sk);
320 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900321 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700323 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800324 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int err;
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
328 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
329
330 if (!ipv6_addr_is_multicast(group))
331 return -EINVAL;
332
Eric Dumazet96b52e62010-06-07 21:05:02 +0000333 rcu_read_lock();
334 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
335 if (!idev) {
336 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 err = -EADDRNOTAVAIL;
341
Eric Dumazet456b61b2010-11-23 13:12:15 +0000342 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
344 continue;
345 if (ipv6_addr_equal(&pmc->addr, group))
346 break;
347 }
David L Stevens917f2f12005-07-08 17:45:16 -0700348 if (!pmc) { /* must have a prior join */
349 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* if a source filter was set, must be the same mode as before */
353 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700354 if (pmc->sfmode != omode) {
355 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 } else if (pmc->sfmode != omode) {
359 /* allow mode switches for empty-set filters */
360 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
361 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
362 pmc->sfmode = omode;
363 }
364
Eric Dumazet96b52e62010-06-07 21:05:02 +0000365 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800366 pmclocked = 1;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 psl = pmc->sflist;
369 if (!add) {
370 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700371 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 rv = !0;
Ian Morris67ba4152014-08-24 21:53:10 +0100373 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000374 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (rv == 0)
376 break;
377 }
378 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700379 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700381 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
382 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
383 leavegroup = 1;
384 goto done;
385 }
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* update the interface filter */
388 ip6_mc_del_src(idev, group, omode, 1, source, 1);
389
Ian Morris67ba4152014-08-24 21:53:10 +0100390 for (j = i+1; j < psl->sl_count; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 psl->sl_addr[j-1] = psl->sl_addr[j];
392 psl->sl_count--;
393 err = 0;
394 goto done;
395 }
396 /* else, add a new source to the filter */
397
398 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
399 err = -ENOBUFS;
400 goto done;
401 }
402 if (!psl || psl->sl_count == psl->sl_max) {
403 struct ip6_sf_socklist *newpsl;
404 int count = IP6_SFBLOCK;
405
406 if (psl)
407 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800408 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!newpsl) {
410 err = -ENOBUFS;
411 goto done;
412 }
413 newpsl->sl_max = count;
414 newpsl->sl_count = count - IP6_SFBLOCK;
415 if (psl) {
Ian Morris67ba4152014-08-24 21:53:10 +0100416 for (i = 0; i < psl->sl_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 newpsl->sl_addr[i] = psl->sl_addr[i];
418 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
419 }
420 pmc->sflist = psl = newpsl;
421 }
422 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
Ian Morris67ba4152014-08-24 21:53:10 +0100423 for (i = 0; i < psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000424 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Jean Sacren56db1c52013-02-03 21:34:10 +0000425 if (rv == 0) /* There is an error in the address. */
426 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Ian Morris67ba4152014-08-24 21:53:10 +0100428 for (j = psl->sl_count-1; j >= i; j--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 psl->sl_addr[j+1] = psl->sl_addr[j];
430 psl->sl_addr[i] = *source;
431 psl->sl_count++;
432 err = 0;
433 /* update the interface list */
434 ip6_mc_add_src(idev, group, omode, 1, source, 1);
435done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800436 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000437 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000439 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700440 if (leavegroup)
441 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return err;
443}
444
445int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
446{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000447 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct inet6_dev *idev;
450 struct ipv6_pinfo *inet6 = inet6_sk(sk);
451 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900452 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700453 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int i, err;
455
456 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
457
458 if (!ipv6_addr_is_multicast(group))
459 return -EINVAL;
460 if (gsf->gf_fmode != MCAST_INCLUDE &&
461 gsf->gf_fmode != MCAST_EXCLUDE)
462 return -EINVAL;
463
Eric Dumazet96b52e62010-06-07 21:05:02 +0000464 rcu_read_lock();
465 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Eric Dumazet96b52e62010-06-07 21:05:02 +0000467 if (!idev) {
468 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
David S. Miller9c059892005-07-08 21:44:39 -0700472 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800473
David L Stevens9951f032005-07-08 17:47:28 -0700474 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
475 leavegroup = 1;
476 goto done;
477 }
478
Eric Dumazet456b61b2010-11-23 13:12:15 +0000479 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (pmc->ifindex != gsf->gf_interface)
481 continue;
482 if (ipv6_addr_equal(&pmc->addr, group))
483 break;
484 }
David L Stevens917f2f12005-07-08 17:45:16 -0700485 if (!pmc) { /* must have a prior join */
486 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800490 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
491 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (!newpsl) {
493 err = -ENOBUFS;
494 goto done;
495 }
496 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
Ian Morris67ba4152014-08-24 21:53:10 +0100497 for (i = 0; i < newpsl->sl_count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct sockaddr_in6 *psin6;
499
500 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
501 newpsl->sl_addr[i] = psin6->sin6_addr;
502 }
503 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
504 newpsl->sl_count, newpsl->sl_addr, 0);
505 if (err) {
506 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
507 goto done;
508 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800509 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800511 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
512 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800513
Eric Dumazet96b52e62010-06-07 21:05:02 +0000514 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 psl = pmc->sflist;
516 if (psl) {
517 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
518 psl->sl_count, psl->sl_addr, 0);
519 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
520 } else
521 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
522 pmc->sflist = newpsl;
523 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000524 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700525 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526done:
527 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000528 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700529 if (leavegroup)
530 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return err;
532}
533
534int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
535 struct group_filter __user *optval, int __user *optlen)
536{
537 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000538 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct ipv6_mc_socklist *pmc;
540 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct ipv6_pinfo *inet6 = inet6_sk(sk);
542 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900543 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
546
547 if (!ipv6_addr_is_multicast(group))
548 return -EINVAL;
549
Eric Dumazet96b52e62010-06-07 21:05:02 +0000550 rcu_read_lock();
551 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Eric Dumazet96b52e62010-06-07 21:05:02 +0000553 if (!idev) {
554 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 err = -EADDRNOTAVAIL;
WANG Congf7ed9252014-09-11 15:35:15 -0700559 /* changes to the ipv6_mc_list require the socket lock and
560 * rtnl lock. We have the socket lock and rcu read lock,
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800561 * so reading the list is safe.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Eric Dumazet456b61b2010-11-23 13:12:15 +0000564 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (pmc->ifindex != gsf->gf_interface)
566 continue;
567 if (ipv6_addr_equal(group, &pmc->addr))
568 break;
569 }
570 if (!pmc) /* must have a prior join */
571 goto done;
572 gsf->gf_fmode = pmc->sfmode;
573 psl = pmc->sflist;
574 count = psl ? psl->sl_count : 0;
575 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000576 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
579 gsf->gf_numsrc = count;
580 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
581 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
582 return -EFAULT;
583 }
WANG Congf7ed9252014-09-11 15:35:15 -0700584 /* changes to psl require the socket lock, and a write lock
585 * on pmc->sflock. We have the socket lock so reading here is safe.
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800586 */
Ian Morris67ba4152014-08-24 21:53:10 +0100587 for (i = 0; i < copycount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 struct sockaddr_in6 *psin6;
589 struct sockaddr_storage ss;
590
591 psin6 = (struct sockaddr_in6 *)&ss;
592 memset(&ss, 0, sizeof(ss));
593 psin6->sin6_family = AF_INET6;
594 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900595 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return -EFAULT;
597 }
598 return 0;
599done:
600 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000601 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return err;
603}
604
Eric Dumazeta50feda2012-05-18 18:57:34 +0000605bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
606 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct ipv6_pinfo *np = inet6_sk(sk);
609 struct ipv6_mc_socklist *mc;
610 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000611 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Eric Dumazet456b61b2010-11-23 13:12:15 +0000613 rcu_read_lock();
614 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (ipv6_addr_equal(&mc->addr, mc_addr))
616 break;
617 }
618 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000619 rcu_read_unlock();
Eric Dumazeta50feda2012-05-18 18:57:34 +0000620 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800622 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 psl = mc->sflist;
624 if (!psl) {
625 rv = mc->sfmode == MCAST_EXCLUDE;
626 } else {
627 int i;
628
Ian Morris67ba4152014-08-24 21:53:10 +0100629 for (i = 0; i < psl->sl_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
631 break;
632 }
633 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000634 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000636 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800638 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000639 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 return rv;
642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644static void igmp6_group_added(struct ifmcaddr6 *mc)
645{
646 struct net_device *dev = mc->idev->dev;
647 char buf[MAX_ADDR_LEN];
648
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000649 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
650 IPV6_ADDR_SCOPE_LINKLOCAL)
651 return;
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 spin_lock_bh(&mc->mca_lock);
654 if (!(mc->mca_flags&MAF_LOADED)) {
655 mc->mca_flags |= MAF_LOADED;
656 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000657 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 spin_unlock_bh(&mc->mca_lock);
660
661 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
662 return;
663
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200664 if (mld_in_v1_mode(mc->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 igmp6_join_group(mc);
666 return;
667 }
668 /* else v2 */
669
670 mc->mca_crcount = mc->idev->mc_qrv;
671 mld_ifc_event(mc->idev);
672}
673
674static void igmp6_group_dropped(struct ifmcaddr6 *mc)
675{
676 struct net_device *dev = mc->idev->dev;
677 char buf[MAX_ADDR_LEN];
678
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000679 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
680 IPV6_ADDR_SCOPE_LINKLOCAL)
681 return;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 spin_lock_bh(&mc->mca_lock);
684 if (mc->mca_flags&MAF_LOADED) {
685 mc->mca_flags &= ~MAF_LOADED;
686 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000687 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
690 if (mc->mca_flags & MAF_NOREPORT)
691 goto done;
692 spin_unlock_bh(&mc->mca_lock);
693
694 if (!mc->idev->dead)
695 igmp6_leave_group(mc);
696
697 spin_lock_bh(&mc->mca_lock);
698 if (del_timer(&mc->mca_timer))
699 atomic_dec(&mc->mca_refcnt);
700done:
701 ip6_mc_clear_src(mc);
702 spin_unlock_bh(&mc->mca_lock);
703}
704
705/*
706 * deleted ifmcaddr6 manipulation
707 */
708static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
709{
710 struct ifmcaddr6 *pmc;
711
712 /* this is an "ifmcaddr6" for convenience; only the fields below
713 * are actually used. In particular, the refcnt and users are not
714 * used for management of the delete list. Using the same structure
715 * for deleted items allows change reports to use common code with
716 * non-deleted or query-response MCA's.
717 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800718 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!pmc)
720 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 spin_lock_bh(&im->mca_lock);
723 spin_lock_init(&pmc->mca_lock);
724 pmc->idev = im->idev;
725 in6_dev_hold(idev);
726 pmc->mca_addr = im->mca_addr;
727 pmc->mca_crcount = idev->mc_qrv;
728 pmc->mca_sfmode = im->mca_sfmode;
729 if (pmc->mca_sfmode == MCAST_INCLUDE) {
730 struct ip6_sf_list *psf;
731
732 pmc->mca_tomb = im->mca_tomb;
733 pmc->mca_sources = im->mca_sources;
734 im->mca_tomb = im->mca_sources = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100735 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 psf->sf_crcount = pmc->mca_crcount;
737 }
738 spin_unlock_bh(&im->mca_lock);
739
Stephen Hemminger6457d262010-02-17 18:48:44 -0800740 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 pmc->next = idev->mc_tomb;
742 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800743 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000746static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 struct ifmcaddr6 *pmc, *pmc_prev;
749 struct ip6_sf_list *psf, *psf_next;
750
Stephen Hemminger6457d262010-02-17 18:48:44 -0800751 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +0100753 for (pmc = idev->mc_tomb; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
755 break;
756 pmc_prev = pmc;
757 }
758 if (pmc) {
759 if (pmc_prev)
760 pmc_prev->next = pmc->next;
761 else
762 idev->mc_tomb = pmc->next;
763 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800764 spin_unlock_bh(&idev->mc_lock);
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (pmc) {
Ian Morris67ba4152014-08-24 21:53:10 +0100767 for (psf = pmc->mca_tomb; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 psf_next = psf->sf_next;
769 kfree(psf);
770 }
771 in6_dev_put(pmc->idev);
772 kfree(pmc);
773 }
774}
775
776static void mld_clear_delrec(struct inet6_dev *idev)
777{
778 struct ifmcaddr6 *pmc, *nextpmc;
779
Stephen Hemminger6457d262010-02-17 18:48:44 -0800780 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 pmc = idev->mc_tomb;
782 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800783 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 for (; pmc; pmc = nextpmc) {
786 nextpmc = pmc->next;
787 ip6_mc_clear_src(pmc);
788 in6_dev_put(pmc->idev);
789 kfree(pmc);
790 }
791
792 /* clear dead sources, too */
793 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100794 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct ip6_sf_list *psf, *psf_next;
796
797 spin_lock_bh(&pmc->mca_lock);
798 psf = pmc->mca_tomb;
799 pmc->mca_tomb = NULL;
800 spin_unlock_bh(&pmc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100801 for (; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 psf_next = psf->sf_next;
803 kfree(psf);
804 }
805 }
806 read_unlock_bh(&idev->lock);
807}
808
WANG Cong1691c632014-09-11 15:35:16 -0700809static void mca_get(struct ifmcaddr6 *mc)
810{
811 atomic_inc(&mc->mca_refcnt);
812}
813
814static void ma_put(struct ifmcaddr6 *mc)
815{
816 if (atomic_dec_and_test(&mc->mca_refcnt)) {
817 in6_dev_put(mc->idev);
818 kfree(mc);
819 }
820}
821
822static struct ifmcaddr6 *mca_alloc(struct inet6_dev *idev,
823 const struct in6_addr *addr)
824{
825 struct ifmcaddr6 *mc;
826
827 mc = kzalloc(sizeof(*mc), GFP_ATOMIC);
828 if (mc == NULL)
829 return NULL;
830
831 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
832
833 mc->mca_addr = *addr;
834 mc->idev = idev; /* reference taken by caller */
835 mc->mca_users = 1;
836 /* mca_stamp should be updated upon changes */
837 mc->mca_cstamp = mc->mca_tstamp = jiffies;
838 atomic_set(&mc->mca_refcnt, 1);
839 spin_lock_init(&mc->mca_lock);
840
841 /* initial mode is (EX, empty) */
842 mc->mca_sfmode = MCAST_EXCLUDE;
843 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
844
845 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
846 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
847 mc->mca_flags |= MAF_NOREPORT;
848
849 return mc;
850}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852/*
853 * device multicast group inc (add if not found)
854 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900855int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct ifmcaddr6 *mc;
858 struct inet6_dev *idev;
859
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200860 ASSERT_RTNL();
861
Eric Dumazet96b52e62010-06-07 21:05:02 +0000862 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 idev = in6_dev_get(dev);
864
865 if (idev == NULL)
866 return -EINVAL;
867
868 write_lock_bh(&idev->lock);
869 if (idev->dead) {
870 write_unlock_bh(&idev->lock);
871 in6_dev_put(idev);
872 return -ENODEV;
873 }
874
875 for (mc = idev->mc_list; mc; mc = mc->next) {
876 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
877 mc->mca_users++;
878 write_unlock_bh(&idev->lock);
879 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
880 NULL, 0);
881 in6_dev_put(idev);
882 return 0;
883 }
884 }
885
WANG Cong1691c632014-09-11 15:35:16 -0700886 mc = mca_alloc(idev, addr);
887 if (!mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 write_unlock_bh(&idev->lock);
889 in6_dev_put(idev);
890 return -ENOMEM;
891 }
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 mc->next = idev->mc_list;
894 idev->mc_list = mc;
WANG Cong1691c632014-09-11 15:35:16 -0700895
896 /* Hold this for the code below before we unlock,
897 * it is already exposed via idev->mc_list.
898 */
899 mca_get(mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 write_unlock_bh(&idev->lock);
901
902 mld_del_delrec(idev, &mc->mca_addr);
903 igmp6_group_added(mc);
904 ma_put(mc);
905 return 0;
906}
907
908/*
909 * device multicast group del
910 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900911int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct ifmcaddr6 *ma, **map;
914
Sabrina Dubrocaa9ed4a22014-09-02 10:29:29 +0200915 ASSERT_RTNL();
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 write_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100918 for (map = &idev->mc_list; (ma = *map) != NULL; map = &ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
920 if (--ma->mca_users == 0) {
921 *map = ma->next;
922 write_unlock_bh(&idev->lock);
923
924 igmp6_group_dropped(ma);
925
926 ma_put(ma);
927 return 0;
928 }
929 write_unlock_bh(&idev->lock);
930 return 0;
931 }
932 }
933 write_unlock_bh(&idev->lock);
934
935 return -ENOENT;
936}
937
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900938int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000940 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 int err;
942
WANG Cong414b6c92014-09-11 15:35:14 -0700943 ASSERT_RTNL();
Eric Dumazet96b52e62010-06-07 21:05:02 +0000944
945 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000947 err = -ENODEV;
948 else
949 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return err;
952}
953
954/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 * check if the interface/address pair is valid
956 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000957bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
958 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 struct inet6_dev *idev;
961 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000962 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Eric Dumazet96b52e62010-06-07 21:05:02 +0000964 rcu_read_lock();
965 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (idev) {
967 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100968 for (mc = idev->mc_list; mc; mc = mc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (ipv6_addr_equal(&mc->mca_addr, group))
970 break;
971 }
972 if (mc) {
973 if (src_addr && !ipv6_addr_any(src_addr)) {
974 struct ip6_sf_list *psf;
975
976 spin_lock_bh(&mc->mca_lock);
Ian Morris67ba4152014-08-24 21:53:10 +0100977 for (psf = mc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
979 break;
980 }
981 if (psf)
982 rv = psf->sf_count[MCAST_INCLUDE] ||
983 psf->sf_count[MCAST_EXCLUDE] !=
984 mc->mca_sfcount[MCAST_EXCLUDE];
985 else
Ian Morris67ba4152014-08-24 21:53:10 +0100986 rv = mc->mca_sfcount[MCAST_EXCLUDE] != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 spin_unlock_bh(&mc->mca_lock);
988 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +0000989 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Eric Dumazet96b52e62010-06-07 21:05:02 +0000993 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return rv;
995}
996
997static void mld_gq_start_timer(struct inet6_dev *idev)
998{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500999 unsigned long tv = prandom_u32() % idev->mc_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 idev->mc_gq_running = 1;
1002 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1003 in6_dev_hold(idev);
1004}
1005
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001006static void mld_gq_stop_timer(struct inet6_dev *idev)
1007{
1008 idev->mc_gq_running = 0;
1009 if (del_timer(&idev->mc_gq_timer))
1010 __in6_dev_put(idev);
1011}
1012
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001013static void mld_ifc_start_timer(struct inet6_dev *idev, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001015 unsigned long tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1018 in6_dev_hold(idev);
1019}
1020
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001021static void mld_ifc_stop_timer(struct inet6_dev *idev)
1022{
1023 idev->mc_ifc_count = 0;
1024 if (del_timer(&idev->mc_ifc_timer))
1025 __in6_dev_put(idev);
1026}
1027
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001028static void mld_dad_start_timer(struct inet6_dev *idev, unsigned long delay)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001029{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001030 unsigned long tv = prandom_u32() % delay;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001031
1032 if (!mod_timer(&idev->mc_dad_timer, jiffies+tv+2))
1033 in6_dev_hold(idev);
1034}
1035
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001036static void mld_dad_stop_timer(struct inet6_dev *idev)
1037{
1038 if (del_timer(&idev->mc_dad_timer))
1039 __in6_dev_put(idev);
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/*
1043 * IGMP handling (alias multicast ICMPv6 messages)
1044 */
1045
1046static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1047{
1048 unsigned long delay = resptime;
1049
1050 /* Do not start timer for these addresses */
1051 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1052 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1053 return;
1054
1055 if (del_timer(&ma->mca_timer)) {
1056 atomic_dec(&ma->mca_refcnt);
1057 delay = ma->mca_timer.expires - jiffies;
1058 }
1059
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001060 if (delay >= resptime)
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001061 delay = prandom_u32() % resptime;
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 ma->mca_timer.expires = jiffies + delay;
1064 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1065 atomic_inc(&ma->mca_refcnt);
1066 ma->mca_flags |= MAF_TIMER_RUNNING;
1067}
1068
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001069/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001070static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1071 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct ip6_sf_list *psf;
1074 int i, scount;
1075
1076 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001077 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (scount == nsrcs)
1079 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001080 for (i = 0; i < nsrcs; i++) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001081 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001082 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001083 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1084 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001085 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001086 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1087 scount++;
1088 break;
1089 }
1090 }
1091 }
1092 pmc->mca_flags &= ~MAF_GSQUERY;
1093 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001094 return false;
1095 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001096}
1097
Eric Dumazeta50feda2012-05-18 18:57:34 +00001098static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1099 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001100{
1101 struct ip6_sf_list *psf;
1102 int i, scount;
1103
1104 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1105 return mld_xmarksources(pmc, nsrcs, srcs);
1106
1107 /* mark INCLUDE-mode sources */
1108
1109 scount = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01001110 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001111 if (scount == nsrcs)
1112 break;
Ian Morris67ba4152014-08-24 21:53:10 +01001113 for (i = 0; i < nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1115 psf->sf_gsresp = 1;
1116 scount++;
1117 break;
1118 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001121 if (!scount) {
1122 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001123 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001124 }
1125 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001126 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001129static int mld_force_mld_version(const struct inet6_dev *idev)
1130{
1131 /* Normally, both are 0 here. If enforcement to a particular is
1132 * being used, individual device enforcement will have a lower
1133 * precedence over 'all' device (.../conf/all/force_mld_version).
1134 */
1135
1136 if (dev_net(idev->dev)->ipv6.devconf_all->force_mld_version != 0)
1137 return dev_net(idev->dev)->ipv6.devconf_all->force_mld_version;
1138 else
1139 return idev->cnf.force_mld_version;
1140}
1141
1142static bool mld_in_v2_mode_only(const struct inet6_dev *idev)
1143{
1144 return mld_force_mld_version(idev) == 2;
1145}
1146
1147static bool mld_in_v1_mode_only(const struct inet6_dev *idev)
1148{
1149 return mld_force_mld_version(idev) == 1;
1150}
1151
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001152static bool mld_in_v1_mode(const struct inet6_dev *idev)
1153{
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001154 if (mld_in_v2_mode_only(idev))
1155 return false;
1156 if (mld_in_v1_mode_only(idev))
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001157 return true;
1158 if (idev->mc_v1_seen && time_before(jiffies, idev->mc_v1_seen))
1159 return true;
1160
1161 return false;
1162}
1163
Daniel Borkmann89225d12013-09-04 00:19:37 +02001164static void mld_set_v1_mode(struct inet6_dev *idev)
1165{
1166 /* RFC3810, relevant sections:
1167 * - 9.1. Robustness Variable
1168 * - 9.2. Query Interval
1169 * - 9.3. Query Response Interval
1170 * - 9.12. Older Version Querier Present Timeout
1171 */
1172 unsigned long switchback;
1173
1174 switchback = (idev->mc_qrv * idev->mc_qi) + idev->mc_qri;
1175
1176 idev->mc_v1_seen = jiffies + switchback;
1177}
1178
1179static void mld_update_qrv(struct inet6_dev *idev,
1180 const struct mld2_query *mlh2)
1181{
1182 /* RFC3810, relevant sections:
1183 * - 5.1.8. QRV (Querier's Robustness Variable)
1184 * - 9.1. Robustness Variable
1185 */
1186
1187 /* The value of the Robustness Variable MUST NOT be zero,
1188 * and SHOULD NOT be one. Catch this here if we ever run
1189 * into such a case in future.
1190 */
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001191 const int min_qrv = min(MLD_QRV_DEFAULT, sysctl_mld_qrv);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001192 WARN_ON(idev->mc_qrv == 0);
1193
1194 if (mlh2->mld2q_qrv > 0)
1195 idev->mc_qrv = mlh2->mld2q_qrv;
1196
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001197 if (unlikely(idev->mc_qrv < min_qrv)) {
Daniel Borkmann89225d12013-09-04 00:19:37 +02001198 net_warn_ratelimited("IPv6: MLD: clamping QRV from %u to %u!\n",
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02001199 idev->mc_qrv, min_qrv);
1200 idev->mc_qrv = min_qrv;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001201 }
1202}
1203
1204static void mld_update_qi(struct inet6_dev *idev,
1205 const struct mld2_query *mlh2)
1206{
1207 /* RFC3810, relevant sections:
1208 * - 5.1.9. QQIC (Querier's Query Interval Code)
1209 * - 9.2. Query Interval
1210 * - 9.12. Older Version Querier Present Timeout
1211 * (the [Query Interval] in the last Query received)
1212 */
1213 unsigned long mc_qqi;
1214
1215 if (mlh2->mld2q_qqic < 128) {
1216 mc_qqi = mlh2->mld2q_qqic;
1217 } else {
1218 unsigned long mc_man, mc_exp;
1219
1220 mc_exp = MLDV2_QQIC_EXP(mlh2->mld2q_qqic);
1221 mc_man = MLDV2_QQIC_MAN(mlh2->mld2q_qqic);
1222
1223 mc_qqi = (mc_man | 0x10) << (mc_exp + 3);
1224 }
1225
1226 idev->mc_qi = mc_qqi * HZ;
1227}
1228
1229static void mld_update_qri(struct inet6_dev *idev,
1230 const struct mld2_query *mlh2)
1231{
1232 /* RFC3810, relevant sections:
1233 * - 5.1.3. Maximum Response Code
1234 * - 9.3. Query Response Interval
1235 */
Daniel Borkmanne3f5b172013-09-04 00:19:39 +02001236 idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2));
Daniel Borkmann89225d12013-09-04 00:19:37 +02001237}
1238
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001239static int mld_process_v1(struct inet6_dev *idev, struct mld_msg *mld,
1240 unsigned long *max_delay)
1241{
1242 unsigned long mldv1_md;
1243
1244 /* Ignore v1 queries */
1245 if (mld_in_v2_mode_only(idev))
1246 return -EINVAL;
1247
1248 /* MLDv1 router present */
1249 mldv1_md = ntohs(mld->mld_maxdelay);
1250 *max_delay = max(msecs_to_jiffies(mldv1_md), 1UL);
1251
1252 mld_set_v1_mode(idev);
1253
1254 /* cancel MLDv2 report timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001255 mld_gq_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001256 /* cancel the interface change timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001257 mld_ifc_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001258 /* clear deleted report items */
1259 mld_clear_delrec(idev);
1260
1261 return 0;
1262}
1263
1264static int mld_process_v2(struct inet6_dev *idev, struct mld2_query *mld,
1265 unsigned long *max_delay)
1266{
1267 /* hosts need to stay in MLDv1 mode, discard MLDv2 queries */
1268 if (mld_in_v1_mode(idev))
1269 return -EINVAL;
1270
1271 *max_delay = max(msecs_to_jiffies(mldv2_mrc(mld)), 1UL);
1272
1273 mld_update_qrv(idev, mld);
1274 mld_update_qi(idev, mld);
1275 mld_update_qri(idev, mld);
1276
1277 idev->mc_maxdelay = *max_delay;
1278
1279 return 0;
1280}
1281
Eric Dumazet96b52e62010-06-07 21:05:02 +00001282/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283int igmp6_event_query(struct sk_buff *skb)
1284{
Yan Zheng97300b52005-10-31 20:09:45 +08001285 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001287 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 unsigned long max_delay;
1289 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001290 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 int group_type;
1292 int mark = 0;
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001293 int len, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1296 return -EINVAL;
1297
1298 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001299 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001300 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Hangbin Liue940f5d2014-06-27 09:57:53 +08001302 /* RFC3810 6.2
1303 * Upon reception of an MLD message that contains a Query, the node
1304 * checks if the source address of the message is a valid link-local
1305 * address, if the Hop Limit is set to 1, and if the Router Alert
1306 * option is present in the Hop-By-Hop Options header of the IPv6
1307 * packet. If any of these checks fails, the packet is dropped.
1308 */
1309 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL) ||
1310 ipv6_hdr(skb)->hop_limit != 1 ||
1311 !(IP6CB(skb)->flags & IP6SKB_ROUTERALERT) ||
1312 IP6CB(skb)->ra != htons(IPV6_OPT_ROUTERALERT_MLD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EINVAL;
1314
Eric Dumazet96b52e62010-06-07 21:05:02 +00001315 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (idev == NULL)
1317 return 0;
1318
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001319 mld = (struct mld_msg *)icmp6_hdr(skb);
1320 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 group_type = ipv6_addr_type(group);
1322
1323 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001324 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001327 if (len == MLD_V1_QUERY_LEN) {
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001328 err = mld_process_v1(idev, mld, &max_delay);
1329 if (err < 0)
1330 return err;
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001331 } else if (len >= MLD_V2_QUERY_LEN_MIN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001332 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001333 sizeof(struct icmp6hdr);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001334
Eric Dumazet96b52e62010-06-07 21:05:02 +00001335 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001336 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001337
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001338 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Daniel Borkmann84698962013-08-20 12:22:00 +02001339
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001340 err = mld_process_v2(idev, mlh2, &max_delay);
1341 if (err < 0)
1342 return err;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001345 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return 0;
1350 }
1351 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001352 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001353 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001354 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001355 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001356
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001357 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001358 mark = 1;
1359 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001360 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 read_lock_bh(&idev->lock);
1364 if (group_type == IPV6_ADDR_ANY) {
Ian Morris67ba4152014-08-24 21:53:10 +01001365 for (ma = idev->mc_list; ma; ma = ma->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 spin_lock_bh(&ma->mca_lock);
1367 igmp6_group_queried(ma, max_delay);
1368 spin_unlock_bh(&ma->mca_lock);
1369 }
1370 } else {
Ian Morris67ba4152014-08-24 21:53:10 +01001371 for (ma = idev->mc_list; ma; ma = ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001372 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 continue;
1374 spin_lock_bh(&ma->mca_lock);
1375 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1376 /* gsquery <- gsquery && mark */
1377 if (!mark)
1378 ma->mca_flags &= ~MAF_GSQUERY;
1379 } else {
1380 /* gsquery <- mark */
1381 if (mark)
1382 ma->mca_flags |= MAF_GSQUERY;
1383 else
1384 ma->mca_flags &= ~MAF_GSQUERY;
1385 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001386 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001387 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001388 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001390 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392 }
1393 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 return 0;
1396}
1397
Eric Dumazet96b52e62010-06-07 21:05:02 +00001398/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399int igmp6_event_report(struct sk_buff *skb)
1400{
1401 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001403 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int addr_type;
1405
1406 /* Our own report looped back. Ignore it. */
1407 if (skb->pkt_type == PACKET_LOOPBACK)
1408 return 0;
1409
David Stevens24c69272005-12-02 20:32:59 -08001410 /* send our report if the MC router may not have heard this report */
1411 if (skb->pkt_type != PACKET_MULTICAST &&
1412 skb->pkt_type != PACKET_BROADCAST)
1413 return 0;
1414
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001415 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return -EINVAL;
1417
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001418 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001421 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001422 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 !(addr_type&IPV6_ADDR_LINKLOCAL))
1424 return -EINVAL;
1425
Eric Dumazet96b52e62010-06-07 21:05:02 +00001426 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (idev == NULL)
1428 return -ENODEV;
1429
1430 /*
1431 * Cancel the timer for this group
1432 */
1433
1434 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001435 for (ma = idev->mc_list; ma; ma = ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001436 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 spin_lock(&ma->mca_lock);
1438 if (del_timer(&ma->mca_timer))
1439 atomic_dec(&ma->mca_refcnt);
1440 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1441 spin_unlock(&ma->mca_lock);
1442 break;
1443 }
1444 }
1445 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return 0;
1447}
1448
Eric Dumazeta50feda2012-05-18 18:57:34 +00001449static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1450 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 switch (type) {
1453 case MLD2_MODE_IS_INCLUDE:
1454 case MLD2_MODE_IS_EXCLUDE:
1455 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001456 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001457 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1458 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001459 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001460 /* don't include if this source is excluded
1461 * in all filters
1462 */
1463 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001464 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001465 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1466 psf->sf_count[MCAST_EXCLUDE];
1467 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001468 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 case MLD2_CHANGE_TO_INCLUDE:
1470 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001471 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return psf->sf_count[MCAST_INCLUDE] != 0;
1473 case MLD2_CHANGE_TO_EXCLUDE:
1474 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001475 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1477 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001478 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1480 psf->sf_count[MCAST_EXCLUDE];
1481 case MLD2_ALLOW_NEW_SOURCES:
1482 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001483 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1485 case MLD2_BLOCK_OLD_SOURCES:
1486 if (pmc->mca_sfmode == MCAST_INCLUDE)
1487 return gdeleted || (psf->sf_crcount && sdeleted);
1488 return psf->sf_crcount && !gdeleted && !sdeleted;
1489 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001490 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
1493static int
1494mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1495{
1496 struct ip6_sf_list *psf;
1497 int scount = 0;
1498
Ian Morris67ba4152014-08-24 21:53:10 +01001499 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1501 continue;
1502 scount++;
1503 }
1504 return scount;
1505}
1506
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001507static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1508 struct net_device *dev,
1509 const struct in6_addr *saddr,
1510 const struct in6_addr *daddr,
1511 int proto, int len)
1512{
1513 struct ipv6hdr *hdr;
1514
1515 skb->protocol = htons(ETH_P_IPV6);
1516 skb->dev = dev;
1517
1518 skb_reset_network_header(skb);
1519 skb_put(skb, sizeof(struct ipv6hdr));
1520 hdr = ipv6_hdr(skb);
1521
1522 ip6_flow_hdr(hdr, 0, 0);
1523
1524 hdr->payload_len = htons(len);
1525 hdr->nexthdr = proto;
1526 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1527
1528 hdr->saddr = *saddr;
1529 hdr->daddr = *daddr;
1530}
1531
Amerigo Wang89657792013-06-29 21:30:49 +08001532static struct sk_buff *mld_newpack(struct inet6_dev *idev, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Amerigo Wang89657792013-06-29 21:30:49 +08001534 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001535 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001536 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct sk_buff *skb;
1538 struct mld2_report *pmr;
1539 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001540 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001541 int hlen = LL_RESERVED_SPACE(dev);
1542 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int err;
1544 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1545 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1546 IPV6_TLV_PADN, 0 };
1547
1548 /* we assume size > sizeof(ra) here */
Herbert Xua7ae1992011-11-18 02:20:04 +00001549 size += hlen + tlen;
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001550 /* limit our allocations to order-0 page */
1551 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1552 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001554 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return NULL;
1556
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001557 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001558 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Amerigo Wang89657792013-06-29 21:30:49 +08001560 if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001562 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 * when a valid link-local address is not available.
1564 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001565 saddr = &in6addr_any;
1566 } else
1567 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001569 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1572
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001573 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001574 skb_put(skb, sizeof(*pmr));
1575 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001576 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1577 pmr->mld2r_resv1 = 0;
1578 pmr->mld2r_cksum = 0;
1579 pmr->mld2r_resv2 = 0;
1580 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return skb;
1582}
1583
1584static void mld_sendpack(struct sk_buff *skb)
1585{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001586 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001587 struct mld2_report *pmr =
1588 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001590 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001591 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001593 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001594 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Eric Dumazet96b52e62010-06-07 21:05:02 +00001596 rcu_read_lock();
1597 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001598 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1599
Simon Horman29a3cad2013-05-28 20:34:26 +00001600 payload_len = (skb_tail_pointer(skb) - skb_network_header(skb)) -
1601 sizeof(*pip6);
1602 mldlen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 pip6->payload_len = htons(payload_len);
1604
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001605 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1606 IPPROTO_ICMPV6,
1607 csum_partial(skb_transport_header(skb),
1608 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001609
David S. Miller4c9483b2011-03-12 16:22:43 -05001610 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001611 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1612 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001613 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001614
David S. Miller452edd52011-03-02 13:27:41 -08001615 err = 0;
1616 if (IS_ERR(dst)) {
1617 err = PTR_ERR(dst);
1618 dst = NULL;
1619 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001620 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001621 if (err)
1622 goto err_out;
1623
Neil Hormanedf391f2009-04-27 02:45:02 -07001624 payload_len = skb->len;
1625
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001626 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001627 dst_output);
1628out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (!err) {
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001630 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1631 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1632 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1633 } else {
1634 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Eric Dumazet96b52e62010-06-07 21:05:02 +00001637 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001638 return;
1639
1640err_out:
1641 kfree_skb(skb);
1642 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
1645static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1646{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001647 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
1650static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1651 int type, struct mld2_grec **ppgr)
1652{
1653 struct net_device *dev = pmc->idev->dev;
1654 struct mld2_report *pmr;
1655 struct mld2_grec *pgr;
1656
1657 if (!skb)
Amerigo Wang89657792013-06-29 21:30:49 +08001658 skb = mld_newpack(pmc->idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (!skb)
1660 return NULL;
1661 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1662 pgr->grec_type = type;
1663 pgr->grec_auxwords = 0;
1664 pgr->grec_nsrcs = 0;
1665 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001666 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001667 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 *ppgr = pgr;
1669 return skb;
1670}
1671
1672#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1673 skb_tailroom(skb)) : 0)
1674
1675static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001676 int type, int gdeleted, int sdeleted, int crsend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Amerigo Wang89657792013-06-29 21:30:49 +08001678 struct inet6_dev *idev = pmc->idev;
1679 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 struct mld2_report *pmr;
1681 struct mld2_grec *pgr = NULL;
1682 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001683 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 if (pmc->mca_flags & MAF_NOREPORT)
1686 return skb;
1687
1688 isquery = type == MLD2_MODE_IS_INCLUDE ||
1689 type == MLD2_MODE_IS_EXCLUDE;
1690 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1691 type == MLD2_CHANGE_TO_EXCLUDE;
1692
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001693 stotal = scount = 0;
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1696
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001697 if (!*psf_list)
1698 goto empty_source;
1699
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001700 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 /* EX and TO_EX get a fresh packet, if needed */
1703 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001704 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1706 if (skb)
1707 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001708 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 }
1711 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001713 for (psf = *psf_list; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 struct in6_addr *psrc;
1715
1716 psf_next = psf->sf_next;
1717
1718 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1719 psf_prev = psf;
1720 continue;
1721 }
1722
1723 /* clear marks on query responses */
1724 if (isquery)
1725 psf->sf_gsresp = 0;
1726
1727 if (AVAILABLE(skb) < sizeof(*psrc) +
1728 first*sizeof(struct mld2_grec)) {
1729 if (truncate && !first)
1730 break; /* truncate these */
1731 if (pgr)
1732 pgr->grec_nsrcs = htons(scount);
1733 if (skb)
1734 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001735 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 first = 1;
1737 scount = 0;
1738 }
1739 if (first) {
1740 skb = add_grhead(skb, pmc, type, &pgr);
1741 first = 0;
1742 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001743 if (!skb)
1744 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1746 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001747 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1749 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1750 psf->sf_crcount--;
1751 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1752 if (psf_prev)
1753 psf_prev->sf_next = psf->sf_next;
1754 else
1755 *psf_list = psf->sf_next;
1756 kfree(psf);
1757 continue;
1758 }
1759 }
1760 psf_prev = psf;
1761 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001762
1763empty_source:
1764 if (!stotal) {
1765 if (type == MLD2_ALLOW_NEW_SOURCES ||
1766 type == MLD2_BLOCK_OLD_SOURCES)
1767 return skb;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001768 if (pmc->mca_crcount || isquery || crsend) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001769 /* make sure we have room for group header */
1770 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1771 mld_sendpack(skb);
1772 skb = NULL; /* add_grhead will get a new one */
1773 }
1774 skb = add_grhead(skb, pmc, type, &pgr);
1775 }
1776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (pgr)
1778 pgr->grec_nsrcs = htons(scount);
1779
1780 if (isquery)
1781 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1782 return skb;
1783}
1784
1785static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1786{
1787 struct sk_buff *skb = NULL;
1788 int type;
1789
Amerigo Wang89657792013-06-29 21:30:49 +08001790 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (!pmc) {
Ian Morris67ba4152014-08-24 21:53:10 +01001792 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (pmc->mca_flags & MAF_NOREPORT)
1794 continue;
1795 spin_lock_bh(&pmc->mca_lock);
1796 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1797 type = MLD2_MODE_IS_EXCLUDE;
1798 else
1799 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001800 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 spin_unlock_bh(&pmc->mca_lock);
1802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 } else {
1804 spin_lock_bh(&pmc->mca_lock);
1805 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1806 type = MLD2_MODE_IS_EXCLUDE;
1807 else
1808 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001809 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 spin_unlock_bh(&pmc->mca_lock);
1811 }
Amerigo Wang89657792013-06-29 21:30:49 +08001812 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (skb)
1814 mld_sendpack(skb);
1815}
1816
1817/*
1818 * remove zero-count source records from a source filter list
1819 */
1820static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1821{
1822 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1823
1824 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001825 for (psf = *ppsf; psf; psf = psf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 psf_next = psf->sf_next;
1827 if (psf->sf_crcount == 0) {
1828 if (psf_prev)
1829 psf_prev->sf_next = psf->sf_next;
1830 else
1831 *ppsf = psf->sf_next;
1832 kfree(psf);
1833 } else
1834 psf_prev = psf;
1835 }
1836}
1837
1838static void mld_send_cr(struct inet6_dev *idev)
1839{
1840 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1841 struct sk_buff *skb = NULL;
1842 int type, dtype;
1843
1844 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001845 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 /* deleted MCA's */
1848 pmc_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01001849 for (pmc = idev->mc_tomb; pmc; pmc = pmc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 pmc_next = pmc->next;
1851 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1852 type = MLD2_BLOCK_OLD_SOURCES;
1853 dtype = MLD2_BLOCK_OLD_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001854 skb = add_grec(skb, pmc, type, 1, 0, 0);
1855 skb = add_grec(skb, pmc, dtype, 1, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1859 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001860 skb = add_grec(skb, pmc, type, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001862 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (pmc->mca_crcount == 0) {
1864 mld_clear_zeros(&pmc->mca_tomb);
1865 mld_clear_zeros(&pmc->mca_sources);
1866 }
1867 }
1868 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1869 !pmc->mca_sources) {
1870 if (pmc_prev)
1871 pmc_prev->next = pmc_next;
1872 else
1873 idev->mc_tomb = pmc_next;
1874 in6_dev_put(pmc->idev);
1875 kfree(pmc);
1876 } else
1877 pmc_prev = pmc;
1878 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001879 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 /* change recs */
Ian Morris67ba4152014-08-24 21:53:10 +01001882 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 spin_lock_bh(&pmc->mca_lock);
1884 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1885 type = MLD2_BLOCK_OLD_SOURCES;
1886 dtype = MLD2_ALLOW_NEW_SOURCES;
1887 } else {
1888 type = MLD2_ALLOW_NEW_SOURCES;
1889 dtype = MLD2_BLOCK_OLD_SOURCES;
1890 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001891 skb = add_grec(skb, pmc, type, 0, 0, 0);
1892 skb = add_grec(skb, pmc, dtype, 0, 1, 0); /* deleted sources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 /* filter mode changes */
1895 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1897 type = MLD2_CHANGE_TO_EXCLUDE;
1898 else
1899 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001900 skb = add_grec(skb, pmc, type, 0, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001901 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903 spin_unlock_bh(&pmc->mca_lock);
1904 }
1905 read_unlock_bh(&idev->lock);
1906 if (!skb)
1907 return;
1908 (void) mld_sendpack(skb);
1909}
1910
1911static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1912{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001913 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001914 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001916 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001917 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001918 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001920 int hlen = LL_RESERVED_SPACE(dev);
1921 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 int err, len, payload_len, full_len;
1923 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1924 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1925 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001926 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001927 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001929 if (type == ICMPV6_MGM_REDUCTION)
1930 snd_addr = &in6addr_linklocal_allrouters;
1931 else
1932 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1935 payload_len = len + sizeof(ra);
1936 full_len = sizeof(struct ipv6hdr) + payload_len;
1937
Neil Hormanedf391f2009-04-27 02:45:02 -07001938 rcu_read_lock();
1939 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1940 IPSTATS_MIB_OUT, full_len);
1941 rcu_read_unlock();
1942
Herbert Xua7ae1992011-11-18 02:20:04 +00001943 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 if (skb == NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001946 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001947 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001948 IPSTATS_MIB_OUTDISCARDS);
1949 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return;
1951 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001952 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001953 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Neil Horman95c385b2007-04-25 17:08:10 -07001955 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001957 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 * when a valid link-local address is not available.
1959 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001960 saddr = &in6addr_any;
1961 } else
1962 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
YOSHIFUJI Hideaki / 吉藤英明2576f17d2013-01-21 06:48:19 +00001964 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1967
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001968 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1969 memset(hdr, 0, sizeof(struct mld_msg));
1970 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001971 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001973 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1974 IPPROTO_ICMPV6,
1975 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Eric Dumazet96b52e62010-06-07 21:05:02 +00001977 rcu_read_lock();
1978 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
David S. Miller4c9483b2011-03-12 16:22:43 -05001980 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001981 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1982 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001983 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08001984 if (IS_ERR(dst)) {
1985 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001986 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08001987 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001988
Eric Dumazetadf30902009-06-02 05:19:30 +00001989 skb_dst_set(skb, dst);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001990 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001991 dst_output);
1992out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001994 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001995 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001996 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001998 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Eric Dumazet96b52e62010-06-07 21:05:02 +00002000 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08002002
2003err_out:
2004 kfree_skb(skb);
2005 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002008static void mld_send_initial_cr(struct inet6_dev *idev)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002009{
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002010 struct sk_buff *skb;
2011 struct ifmcaddr6 *pmc;
2012 int type;
2013
2014 if (mld_in_v1_mode(idev))
2015 return;
2016
2017 skb = NULL;
2018 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002019 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002020 spin_lock_bh(&pmc->mca_lock);
2021 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2022 type = MLD2_CHANGE_TO_EXCLUDE;
2023 else
2024 type = MLD2_CHANGE_TO_INCLUDE;
2025 skb = add_grec(skb, pmc, type, 0, 0, 1);
2026 spin_unlock_bh(&pmc->mca_lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002027 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002028 read_unlock_bh(&idev->lock);
2029 if (skb)
2030 mld_sendpack(skb);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002031}
2032
2033void ipv6_mc_dad_complete(struct inet6_dev *idev)
2034{
2035 idev->mc_dad_count = idev->mc_qrv;
2036 if (idev->mc_dad_count) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002037 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002038 idev->mc_dad_count--;
2039 if (idev->mc_dad_count)
2040 mld_dad_start_timer(idev, idev->mc_maxdelay);
2041 }
2042}
2043
2044static void mld_dad_timer_expire(unsigned long data)
2045{
2046 struct inet6_dev *idev = (struct inet6_dev *)data;
2047
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002048 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002049 if (idev->mc_dad_count) {
2050 idev->mc_dad_count--;
2051 if (idev->mc_dad_count)
2052 mld_dad_start_timer(idev, idev->mc_maxdelay);
2053 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002054 in6_dev_put(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002055}
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002058 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 struct ip6_sf_list *psf, *psf_prev;
2061 int rv = 0;
2062
2063 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002064 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2066 break;
2067 psf_prev = psf;
2068 }
2069 if (!psf || psf->sf_count[sfmode] == 0) {
2070 /* source filter not found, or count wrong => bug */
2071 return -ESRCH;
2072 }
2073 psf->sf_count[sfmode]--;
2074 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
2075 struct inet6_dev *idev = pmc->idev;
2076
2077 /* no more filters for this source */
2078 if (psf_prev)
2079 psf_prev->sf_next = psf->sf_next;
2080 else
2081 pmc->mca_sources = psf->sf_next;
2082 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002083 !mld_in_v1_mode(idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 psf->sf_crcount = idev->mc_qrv;
2085 psf->sf_next = pmc->mca_tomb;
2086 pmc->mca_tomb = psf;
2087 rv = 1;
2088 } else
2089 kfree(psf);
2090 }
2091 return rv;
2092}
2093
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002094static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2095 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 int delta)
2097{
2098 struct ifmcaddr6 *pmc;
2099 int changerec = 0;
2100 int i, err;
2101
2102 if (!idev)
2103 return -ENODEV;
2104 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002105 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2107 break;
2108 }
2109 if (!pmc) {
2110 /* MCA not found?? bug */
2111 read_unlock_bh(&idev->lock);
2112 return -ESRCH;
2113 }
2114 spin_lock_bh(&pmc->mca_lock);
2115 sf_markstate(pmc);
2116 if (!delta) {
2117 if (!pmc->mca_sfcount[sfmode]) {
2118 spin_unlock_bh(&pmc->mca_lock);
2119 read_unlock_bh(&idev->lock);
2120 return -EINVAL;
2121 }
2122 pmc->mca_sfcount[sfmode]--;
2123 }
2124 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002125 for (i = 0; i < sfcount; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2127
2128 changerec |= rv > 0;
2129 if (!err && rv < 0)
2130 err = rv;
2131 }
2132 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
2133 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
2134 pmc->mca_sfcount[MCAST_INCLUDE]) {
2135 struct ip6_sf_list *psf;
2136
2137 /* filter mode change */
2138 pmc->mca_sfmode = MCAST_INCLUDE;
2139 pmc->mca_crcount = idev->mc_qrv;
2140 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002141 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 psf->sf_crcount = 0;
2143 mld_ifc_event(pmc->idev);
2144 } else if (sf_setstate(pmc) || changerec)
2145 mld_ifc_event(pmc->idev);
2146 spin_unlock_bh(&pmc->mca_lock);
2147 read_unlock_bh(&idev->lock);
2148 return err;
2149}
2150
2151/*
2152 * Add multicast single-source filter to the interface list
2153 */
2154static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00002155 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 struct ip6_sf_list *psf, *psf_prev;
2158
2159 psf_prev = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002160 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2162 break;
2163 psf_prev = psf;
2164 }
2165 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002166 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (!psf)
2168 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 psf->sf_addr = *psfsrc;
2171 if (psf_prev) {
2172 psf_prev->sf_next = psf;
2173 } else
2174 pmc->mca_sources = psf;
2175 }
2176 psf->sf_count[sfmode]++;
2177 return 0;
2178}
2179
2180static void sf_markstate(struct ifmcaddr6 *pmc)
2181{
2182 struct ip6_sf_list *psf;
2183 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2184
Ian Morris67ba4152014-08-24 21:53:10 +01002185 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2187 psf->sf_oldin = mca_xcount ==
2188 psf->sf_count[MCAST_EXCLUDE] &&
2189 !psf->sf_count[MCAST_INCLUDE];
2190 } else
2191 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2192}
2193
2194static int sf_setstate(struct ifmcaddr6 *pmc)
2195{
David L Stevens7add2a42006-01-24 13:06:39 -08002196 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2198 int qrv = pmc->idev->mc_qrv;
2199 int new_in, rv;
2200
2201 rv = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002202 for (psf = pmc->mca_sources; psf; psf = psf->sf_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2204 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2205 !psf->sf_count[MCAST_INCLUDE];
2206 } else
2207 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08002208 if (new_in) {
2209 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05002210 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08002211
Ian Morris67ba4152014-08-24 21:53:10 +01002212 for (dpsf = pmc->mca_tomb; dpsf;
2213 dpsf = dpsf->sf_next) {
David L Stevens7add2a42006-01-24 13:06:39 -08002214 if (ipv6_addr_equal(&dpsf->sf_addr,
2215 &psf->sf_addr))
2216 break;
2217 prev = dpsf;
2218 }
2219 if (dpsf) {
2220 if (prev)
2221 prev->sf_next = dpsf->sf_next;
2222 else
2223 pmc->mca_tomb = dpsf->sf_next;
2224 kfree(dpsf);
2225 }
2226 psf->sf_crcount = qrv;
2227 rv++;
2228 }
2229 } else if (psf->sf_oldin) {
2230 psf->sf_crcount = 0;
2231 /*
2232 * add or update "delete" records if an active filter
2233 * is now inactive
2234 */
Ian Morris67ba4152014-08-24 21:53:10 +01002235 for (dpsf = pmc->mca_tomb; dpsf; dpsf = dpsf->sf_next)
David L Stevens7add2a42006-01-24 13:06:39 -08002236 if (ipv6_addr_equal(&dpsf->sf_addr,
2237 &psf->sf_addr))
2238 break;
2239 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002240 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002241 if (!dpsf)
2242 continue;
2243 *dpsf = *psf;
2244 /* pmc->mca_lock held by callers */
2245 dpsf->sf_next = pmc->mca_tomb;
2246 pmc->mca_tomb = dpsf;
2247 }
2248 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 rv++;
2250 }
2251 }
2252 return rv;
2253}
2254
2255/*
2256 * Add multicast source filter list to the interface list
2257 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002258static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2259 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 int delta)
2261{
2262 struct ifmcaddr6 *pmc;
2263 int isexclude;
2264 int i, err;
2265
2266 if (!idev)
2267 return -ENODEV;
2268 read_lock_bh(&idev->lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002269 for (pmc = idev->mc_list; pmc; pmc = pmc->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2271 break;
2272 }
2273 if (!pmc) {
2274 /* MCA not found?? bug */
2275 read_unlock_bh(&idev->lock);
2276 return -ESRCH;
2277 }
2278 spin_lock_bh(&pmc->mca_lock);
2279
2280 sf_markstate(pmc);
2281 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2282 if (!delta)
2283 pmc->mca_sfcount[sfmode]++;
2284 err = 0;
Ian Morris67ba4152014-08-24 21:53:10 +01002285 for (i = 0; i < sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002286 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (err)
2288 break;
2289 }
2290 if (err) {
2291 int j;
2292
2293 if (!delta)
2294 pmc->mca_sfcount[sfmode]--;
Ian Morris67ba4152014-08-24 21:53:10 +01002295 for (j = 0; j < i; j++)
RongQing.Li78d50212012-04-04 16:47:04 +00002296 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 struct ip6_sf_list *psf;
2299
2300 /* filter mode change */
2301 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2302 pmc->mca_sfmode = MCAST_EXCLUDE;
2303 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2304 pmc->mca_sfmode = MCAST_INCLUDE;
2305 /* else no filters; keep old mode for reports */
2306
2307 pmc->mca_crcount = idev->mc_qrv;
2308 idev->mc_ifc_count = pmc->mca_crcount;
Ian Morris67ba4152014-08-24 21:53:10 +01002309 for (psf = pmc->mca_sources; psf; psf = psf->sf_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 psf->sf_crcount = 0;
2311 mld_ifc_event(idev);
2312 } else if (sf_setstate(pmc))
2313 mld_ifc_event(idev);
2314 spin_unlock_bh(&pmc->mca_lock);
2315 read_unlock_bh(&idev->lock);
2316 return err;
2317}
2318
2319static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2320{
2321 struct ip6_sf_list *psf, *nextpsf;
2322
Ian Morris67ba4152014-08-24 21:53:10 +01002323 for (psf = pmc->mca_tomb; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 nextpsf = psf->sf_next;
2325 kfree(psf);
2326 }
2327 pmc->mca_tomb = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +01002328 for (psf = pmc->mca_sources; psf; psf = nextpsf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 nextpsf = psf->sf_next;
2330 kfree(psf);
2331 }
2332 pmc->mca_sources = NULL;
2333 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002334 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2336}
2337
2338
2339static void igmp6_join_group(struct ifmcaddr6 *ma)
2340{
2341 unsigned long delay;
2342
2343 if (ma->mca_flags & MAF_NOREPORT)
2344 return;
2345
2346 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2347
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05002348 delay = prandom_u32() % unsolicited_report_interval(ma->idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 spin_lock_bh(&ma->mca_lock);
2351 if (del_timer(&ma->mca_timer)) {
2352 atomic_dec(&ma->mca_refcnt);
2353 delay = ma->mca_timer.expires - jiffies;
2354 }
2355
2356 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2357 atomic_inc(&ma->mca_refcnt);
2358 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2359 spin_unlock_bh(&ma->mca_lock);
2360}
2361
2362static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2363 struct inet6_dev *idev)
2364{
2365 int err;
2366
WANG Congf7ed9252014-09-11 15:35:15 -07002367 /* callers have the socket lock and rtnl lock
David L Stevens5ab4a6c2005-12-27 14:03:00 -08002368 * so no other readers or writers of iml or its sflist
2369 */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002370 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 /* any-source empty exclude case */
2372 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2373 }
2374 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2375 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2376 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2377 iml->sflist = NULL;
2378 return err;
2379}
2380
2381static void igmp6_leave_group(struct ifmcaddr6 *ma)
2382{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002383 if (mld_in_v1_mode(ma->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 if (ma->mca_flags & MAF_LAST_REPORTER)
2385 igmp6_send(&ma->mca_addr, ma->idev->dev,
2386 ICMPV6_MGM_REDUCTION);
2387 } else {
2388 mld_add_delrec(ma->idev, ma);
2389 mld_ifc_event(ma->idev);
2390 }
2391}
2392
2393static void mld_gq_timer_expire(unsigned long data)
2394{
2395 struct inet6_dev *idev = (struct inet6_dev *)data;
2396
2397 idev->mc_gq_running = 0;
2398 mld_send_report(idev, NULL);
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002399 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
2401
2402static void mld_ifc_timer_expire(unsigned long data)
2403{
2404 struct inet6_dev *idev = (struct inet6_dev *)data;
2405
2406 mld_send_cr(idev);
2407 if (idev->mc_ifc_count) {
2408 idev->mc_ifc_count--;
2409 if (idev->mc_ifc_count)
2410 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2411 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002412 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
2415static void mld_ifc_event(struct inet6_dev *idev)
2416{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002417 if (mld_in_v1_mode(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return;
2419 idev->mc_ifc_count = idev->mc_qrv;
2420 mld_ifc_start_timer(idev, 1);
2421}
2422
2423
2424static void igmp6_timer_handler(unsigned long data)
2425{
2426 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2427
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002428 if (mld_in_v1_mode(ma->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2430 else
2431 mld_send_report(ma->idev, ma);
2432
2433 spin_lock(&ma->mca_lock);
2434 ma->mca_flags |= MAF_LAST_REPORTER;
2435 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2436 spin_unlock(&ma->mca_lock);
2437 ma_put(ma);
2438}
2439
Moni Shoua75c78502009-09-15 02:37:40 -07002440/* Device changing type */
2441
2442void ipv6_mc_unmap(struct inet6_dev *idev)
2443{
2444 struct ifmcaddr6 *i;
2445
2446 /* Install multicast list, except for all-nodes (already installed) */
2447
2448 read_lock_bh(&idev->lock);
2449 for (i = idev->mc_list; i; i = i->next)
2450 igmp6_group_dropped(i);
2451 read_unlock_bh(&idev->lock);
2452}
2453
2454void ipv6_mc_remap(struct inet6_dev *idev)
2455{
2456 ipv6_mc_up(idev);
2457}
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459/* Device going down */
2460
2461void ipv6_mc_down(struct inet6_dev *idev)
2462{
2463 struct ifmcaddr6 *i;
2464
2465 /* Withdraw multicast list */
2466
2467 read_lock_bh(&idev->lock);
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02002468 mld_ifc_stop_timer(idev);
2469 mld_gq_stop_timer(idev);
2470 mld_dad_stop_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Ian Morris67ba4152014-08-24 21:53:10 +01002472 for (i = idev->mc_list; i; i = i->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 igmp6_group_dropped(i);
2474 read_unlock_bh(&idev->lock);
2475
2476 mld_clear_delrec(idev);
2477}
2478
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002479static void ipv6_mc_reset(struct inet6_dev *idev)
2480{
2481 idev->mc_qrv = sysctl_mld_qrv;
2482 idev->mc_qi = MLD_QI_DEFAULT;
2483 idev->mc_qri = MLD_QRI_DEFAULT;
2484 idev->mc_v1_seen = 0;
2485 idev->mc_maxdelay = unsolicited_report_interval(idev);
2486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488/* Device going up */
2489
2490void ipv6_mc_up(struct inet6_dev *idev)
2491{
2492 struct ifmcaddr6 *i;
2493
2494 /* Install multicast list, except for all-nodes (already installed) */
2495
2496 read_lock_bh(&idev->lock);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002497 ipv6_mc_reset(idev);
Ian Morris67ba4152014-08-24 21:53:10 +01002498 for (i = idev->mc_list; i; i = i->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 igmp6_group_added(i);
2500 read_unlock_bh(&idev->lock);
2501}
2502
2503/* IPv6 device initialization. */
2504
2505void ipv6_mc_init_dev(struct inet6_dev *idev)
2506{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002508 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 idev->mc_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002510 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2511 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 idev->mc_tomb = NULL;
2513 idev->mc_ifc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002514 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2515 (unsigned long)idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002516 setup_timer(&idev->mc_dad_timer, mld_dad_timer_expire,
2517 (unsigned long)idev);
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +02002518 ipv6_mc_reset(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
2522/*
2523 * Device is about to be destroyed: clean up.
2524 */
2525
2526void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2527{
2528 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 /* Deactivate timers */
2531 ipv6_mc_down(idev);
2532
2533 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2535 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2536 * fail.
2537 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002538 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002540 if (idev->cnf.forwarding)
2541 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 write_lock_bh(&idev->lock);
2544 while ((i = idev->mc_list) != NULL) {
2545 idev->mc_list = i->next;
2546 write_unlock_bh(&idev->lock);
2547
2548 igmp6_group_dropped(i);
2549 ma_put(i);
2550
2551 write_lock_bh(&idev->lock);
2552 }
2553 write_unlock_bh(&idev->lock);
2554}
2555
2556#ifdef CONFIG_PROC_FS
2557struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002558 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 struct net_device *dev;
2560 struct inet6_dev *idev;
2561};
2562
2563#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2564
2565static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2566{
2567 struct ifmcaddr6 *im = NULL;
2568 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002569 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Pavel Emelianov7562f872007-05-03 15:13:45 -07002571 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002572 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002574 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (!idev)
2576 continue;
2577 read_lock_bh(&idev->lock);
2578 im = idev->mc_list;
2579 if (im) {
2580 state->idev = idev;
2581 break;
2582 }
2583 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 }
2585 return im;
2586}
2587
2588static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2589{
2590 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2591
2592 im = im->next;
2593 while (!im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002594 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002596
2597 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (!state->dev) {
2599 state->idev = NULL;
2600 break;
2601 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002602 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (!state->idev)
2604 continue;
2605 read_lock_bh(&state->idev->lock);
2606 im = state->idev->mc_list;
2607 }
2608 return im;
2609}
2610
2611static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2612{
2613 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2614 if (im)
2615 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2616 --pos;
2617 return pos ? NULL : im;
2618}
2619
2620static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002621 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
Eric Dumazetce81b762009-11-11 17:34:30 +00002623 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return igmp6_mc_get_idx(seq, *pos);
2625}
2626
2627static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2628{
Eric Dumazetce81b762009-11-11 17:34:30 +00002629 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 ++*pos;
2632 return im;
2633}
2634
2635static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002636 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
2638 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (likely(state->idev != NULL)) {
2641 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 state->idev = NULL;
2643 }
2644 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002645 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
2647
2648static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2649{
2650 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2651 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2652
2653 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002654 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002656 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 im->mca_users, im->mca_flags,
2658 (im->mca_flags&MAF_TIMER_RUNNING) ?
2659 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2660 return 0;
2661}
2662
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002663static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 .start = igmp6_mc_seq_start,
2665 .next = igmp6_mc_seq_next,
2666 .stop = igmp6_mc_seq_stop,
2667 .show = igmp6_mc_seq_show,
2668};
2669
2670static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2671{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002672 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2673 sizeof(struct igmp6_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Arjan van de Ven9a321442007-02-12 00:55:35 -08002676static const struct file_operations igmp6_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 .owner = THIS_MODULE,
2678 .open = igmp6_mc_seq_open,
2679 .read = seq_read,
2680 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002681 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682};
2683
2684struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002685 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 struct net_device *dev;
2687 struct inet6_dev *idev;
2688 struct ifmcaddr6 *im;
2689};
2690
2691#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2692
2693static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2694{
2695 struct ip6_sf_list *psf = NULL;
2696 struct ifmcaddr6 *im = NULL;
2697 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002698 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Pavel Emelianov7562f872007-05-03 15:13:45 -07002700 state->idev = NULL;
2701 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002702 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002704 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 if (unlikely(idev == NULL))
2706 continue;
2707 read_lock_bh(&idev->lock);
2708 im = idev->mc_list;
2709 if (likely(im != NULL)) {
2710 spin_lock_bh(&im->mca_lock);
2711 psf = im->mca_sources;
2712 if (likely(psf != NULL)) {
2713 state->im = im;
2714 state->idev = idev;
2715 break;
2716 }
2717 spin_unlock_bh(&im->mca_lock);
2718 }
2719 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721 return psf;
2722}
2723
2724static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2725{
2726 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2727
2728 psf = psf->sf_next;
2729 while (!psf) {
2730 spin_unlock_bh(&state->im->mca_lock);
2731 state->im = state->im->next;
2732 while (!state->im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002733 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002735
2736 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 if (!state->dev) {
2738 state->idev = NULL;
2739 goto out;
2740 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002741 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 if (!state->idev)
2743 continue;
2744 read_lock_bh(&state->idev->lock);
2745 state->im = state->idev->mc_list;
2746 }
2747 if (!state->im)
2748 break;
2749 spin_lock_bh(&state->im->mca_lock);
2750 psf = state->im->mca_sources;
2751 }
2752out:
2753 return psf;
2754}
2755
2756static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2757{
2758 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2759 if (psf)
2760 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2761 --pos;
2762 return pos ? NULL : psf;
2763}
2764
2765static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002766 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
Eric Dumazetce81b762009-11-11 17:34:30 +00002768 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2770}
2771
2772static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2773{
2774 struct ip6_sf_list *psf;
2775 if (v == SEQ_START_TOKEN)
2776 psf = igmp6_mcf_get_first(seq);
2777 else
2778 psf = igmp6_mcf_get_next(seq, v);
2779 ++*pos;
2780 return psf;
2781}
2782
2783static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002784 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
2786 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2787 if (likely(state->im != NULL)) {
2788 spin_unlock_bh(&state->im->mca_lock);
2789 state->im = NULL;
2790 }
2791 if (likely(state->idev != NULL)) {
2792 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 state->idev = NULL;
2794 }
2795 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002796 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797}
2798
2799static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2800{
2801 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2802 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2803
2804 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002805 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 "%3s %6s "
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002807 "%32s %32s %6s %6s\n", "Idx",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 "Device", "Multicast Address",
2809 "Source Address", "INC", "EXC");
2810 } else {
2811 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002812 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002814 &state->im->mca_addr,
2815 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 psf->sf_count[MCAST_INCLUDE],
2817 psf->sf_count[MCAST_EXCLUDE]);
2818 }
2819 return 0;
2820}
2821
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002822static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 .start = igmp6_mcf_seq_start,
2824 .next = igmp6_mcf_seq_next,
2825 .stop = igmp6_mcf_seq_stop,
2826 .show = igmp6_mcf_seq_show,
2827};
2828
2829static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2830{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002831 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2832 sizeof(struct igmp6_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833}
2834
Arjan van de Ven9a321442007-02-12 00:55:35 -08002835static const struct file_operations igmp6_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 .owner = THIS_MODULE,
2837 .open = igmp6_mcf_seq_open,
2838 .read = seq_read,
2839 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002840 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841};
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002842
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002843static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002844{
2845 int err;
2846
2847 err = -ENOMEM;
Gao fengd4beaa62013-02-18 01:34:54 +00002848 if (!proc_create("igmp6", S_IRUGO, net->proc_net, &igmp6_mc_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002849 goto out;
Gao fengd4beaa62013-02-18 01:34:54 +00002850 if (!proc_create("mcfilter6", S_IRUGO, net->proc_net,
2851 &igmp6_mcf_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002852 goto out_proc_net_igmp6;
2853
2854 err = 0;
2855out:
2856 return err;
2857
2858out_proc_net_igmp6:
Gao fengece31ff2013-02-18 01:34:56 +00002859 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002860 goto out;
2861}
2862
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002863static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002864{
Gao fengece31ff2013-02-18 01:34:56 +00002865 remove_proc_entry("mcfilter6", net->proc_net);
2866 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002867}
2868#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002869static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002870{
2871 return 0;
2872}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002873static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002874{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876#endif
2877
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002878static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 int err;
2881
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002882 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2883 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002885 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002887 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
2889
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002890 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002892 err = igmp6_proc_init(net);
2893 if (err)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002894 goto out_sock_create;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002895out:
2896 return err;
2897
2898out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002899 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002900 goto out;
2901}
2902
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002903static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002904{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002905 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002906 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002907}
2908
2909static struct pernet_operations igmp6_net_ops = {
2910 .init = igmp6_net_init,
2911 .exit = igmp6_net_exit,
2912};
2913
2914int __init igmp6_init(void)
2915{
2916 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
2919void igmp6_cleanup(void)
2920{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002921 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922}