blob: f25002aaf624dd4bca40e7303930bc773e2132f5 [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>
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090047#include <net/mld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <linux/netfilter.h>
50#include <linux/netfilter_ipv6.h>
51
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020052#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <net/sock.h>
54#include <net/snmp.h>
55
56#include <net/ipv6.h>
57#include <net/protocol.h>
58#include <net/if_inet6.h>
59#include <net/ndisc.h>
60#include <net/addrconf.h>
61#include <net/ip6_route.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070062#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <net/ip6_checksum.h>
65
66/* Set to 3 to get tracing... */
67#define MCAST_DEBUG 2
68
69#if MCAST_DEBUG >= 3
70#define MDBG(x) printk x
71#else
72#define MDBG(x)
73#endif
74
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090075/* Ensure that we have struct in6_addr aligned on 32bit word. */
76static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
77 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
78 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
79 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
83
84/* Big mc list lock for all the sockets */
Eric Dumazet456b61b2010-11-23 13:12:15 +000085static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static void igmp6_join_group(struct ifmcaddr6 *ma);
88static void igmp6_leave_group(struct ifmcaddr6 *ma);
89static void igmp6_timer_handler(unsigned long data);
90
91static void mld_gq_timer_expire(unsigned long data);
92static void mld_ifc_timer_expire(unsigned long data);
93static void mld_ifc_event(struct inet6_dev *idev);
94static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000095static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static void mld_clear_delrec(struct inet6_dev *idev);
97static int sf_setstate(struct ifmcaddr6 *pmc);
98static void sf_markstate(struct ifmcaddr6 *pmc);
99static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000100static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
101 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000103static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
104 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int delta);
106static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
107 struct inet6_dev *idev);
108
109
110#define IGMP6_UNSOLICITED_IVAL (10*HZ)
111#define MLD_QRV_DEFAULT 2
112
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700113#define MLD_V1_SEEN(idev) (dev_net((idev)->dev)->ipv6.devconf_all->force_mld_version == 1 || \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 (idev)->cnf.force_mld_version == 1 || \
115 ((idev)->mc_v1_seen && \
116 time_before(jiffies, (idev)->mc_v1_seen)))
117
David L Stevens6f4353d2005-12-26 17:03:46 -0800118#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Brian Haleyab32ea52006-09-22 14:15:41 -0700120int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/*
123 * socket join on multicast group
124 */
125
Eric Dumazet456b61b2010-11-23 13:12:15 +0000126#define for_each_pmc_rcu(np, pmc) \
127 for (pmc = rcu_dereference(np->ipv6_mc_list); \
128 pmc != NULL; \
129 pmc = rcu_dereference(pmc->next))
130
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900131int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct net_device *dev = NULL;
134 struct ipv6_mc_socklist *mc_lst;
135 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900136 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int err;
138
139 if (!ipv6_addr_is_multicast(addr))
140 return -EINVAL;
141
Eric Dumazet456b61b2010-11-23 13:12:15 +0000142 rcu_read_lock();
143 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700144 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
145 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000146 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700147 return -EADDRINUSE;
148 }
149 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000150 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
153
154 if (mc_lst == NULL)
155 return -ENOMEM;
156
157 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000158 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Eric Dumazet96b52e62010-06-07 21:05:02 +0000160 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (ifindex == 0) {
162 struct rt6_info *rt;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800163 rt = rt6_lookup(net, addr, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500165 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000166 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000169 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (dev == NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000172 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
174 return -ENODEV;
175 }
176
177 mc_lst->ifindex = dev->ifindex;
178 mc_lst->sfmode = MCAST_EXCLUDE;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800179 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 mc_lst->sflist = NULL;
181
182 /*
183 * now add/increase the group membership on the device
184 */
185
186 err = ipv6_dev_mc_inc(dev, addr);
187
188 if (err) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000189 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return err;
192 }
193
Eric Dumazet456b61b2010-11-23 13:12:15 +0000194 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000196 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
197 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Eric Dumazet96b52e62010-06-07 21:05:02 +0000199 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 return 0;
202}
203
204/*
205 * socket leave on multicast group
206 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900207int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000210 struct ipv6_mc_socklist *mc_lst;
211 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900212 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Li Weia858d642012-07-17 15:28:59 +0800214 if (!ipv6_addr_is_multicast(addr))
215 return -EINVAL;
216
Eric Dumazet456b61b2010-11-23 13:12:15 +0000217 spin_lock(&ipv6_sk_mc_lock);
218 for (lnk = &np->ipv6_mc_list;
219 (mc_lst = rcu_dereference_protected(*lnk,
220 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
221 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
223 ipv6_addr_equal(&mc_lst->addr, addr)) {
224 struct net_device *dev;
225
226 *lnk = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000227 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Eric Dumazet96b52e62010-06-07 21:05:02 +0000229 rcu_read_lock();
230 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800231 if (dev != NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000232 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
David L Stevensacd6e002006-08-17 16:27:39 -0700234 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000235 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700237 } else
238 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000239 rcu_read_unlock();
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 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000245 spin_unlock(&ipv6_sk_mc_lock);
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
Eric Dumazet456b61b2010-11-23 13:12:15 +0000290 spin_lock(&ipv6_sk_mc_lock);
291 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
292 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct net_device *dev;
294
295 np->ipv6_mc_list = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000296 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Eric Dumazet96b52e62010-06-07 21:05:02 +0000298 rcu_read_lock();
299 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000301 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
David L Stevensacd6e002006-08-17 16:27:39 -0700303 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000304 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700306 } else
307 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000308 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Eric Dumazet456b61b2010-11-23 13:12:15 +0000310 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800311 kfree_rcu(mc_lst, rcu);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000312
313 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000315 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318int ip6_mc_source(int add, int omode, struct sock *sk,
319 struct group_source_req *pgsr)
320{
321 struct in6_addr *source, *group;
322 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct inet6_dev *idev;
324 struct ipv6_pinfo *inet6 = inet6_sk(sk);
325 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900326 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700328 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800329 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 int err;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
333 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
334
335 if (!ipv6_addr_is_multicast(group))
336 return -EINVAL;
337
Eric Dumazet96b52e62010-06-07 21:05:02 +0000338 rcu_read_lock();
339 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
340 if (!idev) {
341 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 err = -EADDRNOTAVAIL;
346
Eric Dumazet456b61b2010-11-23 13:12:15 +0000347 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
349 continue;
350 if (ipv6_addr_equal(&pmc->addr, group))
351 break;
352 }
David L Stevens917f2f12005-07-08 17:45:16 -0700353 if (!pmc) { /* must have a prior join */
354 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* if a source filter was set, must be the same mode as before */
358 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700359 if (pmc->sfmode != omode) {
360 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 } else if (pmc->sfmode != omode) {
364 /* allow mode switches for empty-set filters */
365 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
366 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
367 pmc->sfmode = omode;
368 }
369
Eric Dumazet96b52e62010-06-07 21:05:02 +0000370 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800371 pmclocked = 1;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 psl = pmc->sflist;
374 if (!add) {
375 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700376 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 rv = !0;
378 for (i=0; i<psl->sl_count; i++) {
379 rv = memcmp(&psl->sl_addr[i], source,
380 sizeof(struct in6_addr));
381 if (rv == 0)
382 break;
383 }
384 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700385 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700387 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
388 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
389 leavegroup = 1;
390 goto done;
391 }
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* update the interface filter */
394 ip6_mc_del_src(idev, group, omode, 1, source, 1);
395
396 for (j=i+1; j<psl->sl_count; j++)
397 psl->sl_addr[j-1] = psl->sl_addr[j];
398 psl->sl_count--;
399 err = 0;
400 goto done;
401 }
402 /* else, add a new source to the filter */
403
404 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
405 err = -ENOBUFS;
406 goto done;
407 }
408 if (!psl || psl->sl_count == psl->sl_max) {
409 struct ip6_sf_socklist *newpsl;
410 int count = IP6_SFBLOCK;
411
412 if (psl)
413 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800414 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!newpsl) {
416 err = -ENOBUFS;
417 goto done;
418 }
419 newpsl->sl_max = count;
420 newpsl->sl_count = count - IP6_SFBLOCK;
421 if (psl) {
422 for (i=0; i<psl->sl_count; i++)
423 newpsl->sl_addr[i] = psl->sl_addr[i];
424 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
425 }
426 pmc->sflist = psl = newpsl;
427 }
428 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
429 for (i=0; i<psl->sl_count; i++) {
430 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
431 if (rv == 0)
432 break;
433 }
434 if (rv == 0) /* address already there is an error */
435 goto done;
436 for (j=psl->sl_count-1; j>=i; j--)
437 psl->sl_addr[j+1] = psl->sl_addr[j];
438 psl->sl_addr[i] = *source;
439 psl->sl_count++;
440 err = 0;
441 /* update the interface list */
442 ip6_mc_add_src(idev, group, omode, 1, source, 1);
443done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800444 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000445 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000447 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700448 if (leavegroup)
449 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return err;
451}
452
453int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
454{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000455 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct inet6_dev *idev;
458 struct ipv6_pinfo *inet6 = inet6_sk(sk);
459 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900460 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700461 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int i, err;
463
464 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
465
466 if (!ipv6_addr_is_multicast(group))
467 return -EINVAL;
468 if (gsf->gf_fmode != MCAST_INCLUDE &&
469 gsf->gf_fmode != MCAST_EXCLUDE)
470 return -EINVAL;
471
Eric Dumazet96b52e62010-06-07 21:05:02 +0000472 rcu_read_lock();
473 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Eric Dumazet96b52e62010-06-07 21:05:02 +0000475 if (!idev) {
476 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
David S. Miller9c059892005-07-08 21:44:39 -0700480 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800481
David L Stevens9951f032005-07-08 17:47:28 -0700482 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
483 leavegroup = 1;
484 goto done;
485 }
486
Eric Dumazet456b61b2010-11-23 13:12:15 +0000487 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (pmc->ifindex != gsf->gf_interface)
489 continue;
490 if (ipv6_addr_equal(&pmc->addr, group))
491 break;
492 }
David L Stevens917f2f12005-07-08 17:45:16 -0700493 if (!pmc) { /* must have a prior join */
494 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800498 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
499 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (!newpsl) {
501 err = -ENOBUFS;
502 goto done;
503 }
504 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
505 for (i=0; i<newpsl->sl_count; ++i) {
506 struct sockaddr_in6 *psin6;
507
508 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
509 newpsl->sl_addr[i] = psin6->sin6_addr;
510 }
511 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
512 newpsl->sl_count, newpsl->sl_addr, 0);
513 if (err) {
514 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
515 goto done;
516 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800517 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800519 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
520 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800521
Eric Dumazet96b52e62010-06-07 21:05:02 +0000522 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 psl = pmc->sflist;
524 if (psl) {
525 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
526 psl->sl_count, psl->sl_addr, 0);
527 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
528 } else
529 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
530 pmc->sflist = newpsl;
531 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000532 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700533 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534done:
535 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000536 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700537 if (leavegroup)
538 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return err;
540}
541
542int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
543 struct group_filter __user *optval, int __user *optlen)
544{
545 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000546 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct ipv6_mc_socklist *pmc;
548 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct ipv6_pinfo *inet6 = inet6_sk(sk);
550 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900551 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
554
555 if (!ipv6_addr_is_multicast(group))
556 return -EINVAL;
557
Eric Dumazet96b52e62010-06-07 21:05:02 +0000558 rcu_read_lock();
559 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Eric Dumazet96b52e62010-06-07 21:05:02 +0000561 if (!idev) {
562 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 err = -EADDRNOTAVAIL;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800567 /*
568 * changes to the ipv6_mc_list require the socket lock and
569 * a read lock on ip6_sk_mc_lock. We have the socket lock,
570 * so reading the list is safe.
571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Eric Dumazet456b61b2010-11-23 13:12:15 +0000573 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (pmc->ifindex != gsf->gf_interface)
575 continue;
576 if (ipv6_addr_equal(group, &pmc->addr))
577 break;
578 }
579 if (!pmc) /* must have a prior join */
580 goto done;
581 gsf->gf_fmode = pmc->sfmode;
582 psl = pmc->sflist;
583 count = psl ? psl->sl_count : 0;
584 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000585 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
588 gsf->gf_numsrc = count;
589 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
590 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
591 return -EFAULT;
592 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800593 /* changes to psl require the socket lock, a read lock on
594 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
595 * have the socket lock, so reading here is safe.
596 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 for (i=0; i<copycount; i++) {
598 struct sockaddr_in6 *psin6;
599 struct sockaddr_storage ss;
600
601 psin6 = (struct sockaddr_in6 *)&ss;
602 memset(&ss, 0, sizeof(ss));
603 psin6->sin6_family = AF_INET6;
604 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900605 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return -EFAULT;
607 }
608 return 0;
609done:
610 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000611 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return err;
613}
614
Eric Dumazeta50feda2012-05-18 18:57:34 +0000615bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
616 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct ipv6_pinfo *np = inet6_sk(sk);
619 struct ipv6_mc_socklist *mc;
620 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000621 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Eric Dumazet456b61b2010-11-23 13:12:15 +0000623 rcu_read_lock();
624 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (ipv6_addr_equal(&mc->addr, mc_addr))
626 break;
627 }
628 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000629 rcu_read_unlock();
Eric Dumazeta50feda2012-05-18 18:57:34 +0000630 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800632 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 psl = mc->sflist;
634 if (!psl) {
635 rv = mc->sfmode == MCAST_EXCLUDE;
636 } else {
637 int i;
638
639 for (i=0; i<psl->sl_count; i++) {
640 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
641 break;
642 }
643 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000644 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000646 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800648 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000649 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 return rv;
652}
653
654static void ma_put(struct ifmcaddr6 *mc)
655{
656 if (atomic_dec_and_test(&mc->mca_refcnt)) {
657 in6_dev_put(mc->idev);
658 kfree(mc);
659 }
660}
661
662static void igmp6_group_added(struct ifmcaddr6 *mc)
663{
664 struct net_device *dev = mc->idev->dev;
665 char buf[MAX_ADDR_LEN];
666
667 spin_lock_bh(&mc->mca_lock);
668 if (!(mc->mca_flags&MAF_LOADED)) {
669 mc->mca_flags |= MAF_LOADED;
670 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000671 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673 spin_unlock_bh(&mc->mca_lock);
674
675 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
676 return;
677
678 if (MLD_V1_SEEN(mc->idev)) {
679 igmp6_join_group(mc);
680 return;
681 }
682 /* else v2 */
683
684 mc->mca_crcount = mc->idev->mc_qrv;
685 mld_ifc_event(mc->idev);
686}
687
688static void igmp6_group_dropped(struct ifmcaddr6 *mc)
689{
690 struct net_device *dev = mc->idev->dev;
691 char buf[MAX_ADDR_LEN];
692
693 spin_lock_bh(&mc->mca_lock);
694 if (mc->mca_flags&MAF_LOADED) {
695 mc->mca_flags &= ~MAF_LOADED;
696 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000697 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
700 if (mc->mca_flags & MAF_NOREPORT)
701 goto done;
702 spin_unlock_bh(&mc->mca_lock);
703
704 if (!mc->idev->dead)
705 igmp6_leave_group(mc);
706
707 spin_lock_bh(&mc->mca_lock);
708 if (del_timer(&mc->mca_timer))
709 atomic_dec(&mc->mca_refcnt);
710done:
711 ip6_mc_clear_src(mc);
712 spin_unlock_bh(&mc->mca_lock);
713}
714
715/*
716 * deleted ifmcaddr6 manipulation
717 */
718static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
719{
720 struct ifmcaddr6 *pmc;
721
722 /* this is an "ifmcaddr6" for convenience; only the fields below
723 * are actually used. In particular, the refcnt and users are not
724 * used for management of the delete list. Using the same structure
725 * for deleted items allows change reports to use common code with
726 * non-deleted or query-response MCA's.
727 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800728 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!pmc)
730 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 spin_lock_bh(&im->mca_lock);
733 spin_lock_init(&pmc->mca_lock);
734 pmc->idev = im->idev;
735 in6_dev_hold(idev);
736 pmc->mca_addr = im->mca_addr;
737 pmc->mca_crcount = idev->mc_qrv;
738 pmc->mca_sfmode = im->mca_sfmode;
739 if (pmc->mca_sfmode == MCAST_INCLUDE) {
740 struct ip6_sf_list *psf;
741
742 pmc->mca_tomb = im->mca_tomb;
743 pmc->mca_sources = im->mca_sources;
744 im->mca_tomb = im->mca_sources = NULL;
745 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
746 psf->sf_crcount = pmc->mca_crcount;
747 }
748 spin_unlock_bh(&im->mca_lock);
749
Stephen Hemminger6457d262010-02-17 18:48:44 -0800750 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 pmc->next = idev->mc_tomb;
752 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800753 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000756static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct ifmcaddr6 *pmc, *pmc_prev;
759 struct ip6_sf_list *psf, *psf_next;
760
Stephen Hemminger6457d262010-02-17 18:48:44 -0800761 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 pmc_prev = NULL;
763 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
764 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
765 break;
766 pmc_prev = pmc;
767 }
768 if (pmc) {
769 if (pmc_prev)
770 pmc_prev->next = pmc->next;
771 else
772 idev->mc_tomb = pmc->next;
773 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800774 spin_unlock_bh(&idev->mc_lock);
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (pmc) {
777 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
778 psf_next = psf->sf_next;
779 kfree(psf);
780 }
781 in6_dev_put(pmc->idev);
782 kfree(pmc);
783 }
784}
785
786static void mld_clear_delrec(struct inet6_dev *idev)
787{
788 struct ifmcaddr6 *pmc, *nextpmc;
789
Stephen Hemminger6457d262010-02-17 18:48:44 -0800790 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 pmc = idev->mc_tomb;
792 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800793 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 for (; pmc; pmc = nextpmc) {
796 nextpmc = pmc->next;
797 ip6_mc_clear_src(pmc);
798 in6_dev_put(pmc->idev);
799 kfree(pmc);
800 }
801
802 /* clear dead sources, too */
803 read_lock_bh(&idev->lock);
804 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
805 struct ip6_sf_list *psf, *psf_next;
806
807 spin_lock_bh(&pmc->mca_lock);
808 psf = pmc->mca_tomb;
809 pmc->mca_tomb = NULL;
810 spin_unlock_bh(&pmc->mca_lock);
811 for (; psf; psf=psf_next) {
812 psf_next = psf->sf_next;
813 kfree(psf);
814 }
815 }
816 read_unlock_bh(&idev->lock);
817}
818
819
820/*
821 * device multicast group inc (add if not found)
822 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900823int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 struct ifmcaddr6 *mc;
826 struct inet6_dev *idev;
827
Eric Dumazet96b52e62010-06-07 21:05:02 +0000828 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 idev = in6_dev_get(dev);
830
831 if (idev == NULL)
832 return -EINVAL;
833
834 write_lock_bh(&idev->lock);
835 if (idev->dead) {
836 write_unlock_bh(&idev->lock);
837 in6_dev_put(idev);
838 return -ENODEV;
839 }
840
841 for (mc = idev->mc_list; mc; mc = mc->next) {
842 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
843 mc->mca_users++;
844 write_unlock_bh(&idev->lock);
845 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
846 NULL, 0);
847 in6_dev_put(idev);
848 return 0;
849 }
850 }
851
852 /*
853 * not found: create a new one.
854 */
855
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800856 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (mc == NULL) {
859 write_unlock_bh(&idev->lock);
860 in6_dev_put(idev);
861 return -ENOMEM;
862 }
863
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800864 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000866 mc->mca_addr = *addr;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000867 mc->idev = idev; /* (reference taken) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 mc->mca_users = 1;
869 /* mca_stamp should be updated upon changes */
870 mc->mca_cstamp = mc->mca_tstamp = jiffies;
871 atomic_set(&mc->mca_refcnt, 2);
872 spin_lock_init(&mc->mca_lock);
873
874 /* initial mode is (EX, empty) */
875 mc->mca_sfmode = MCAST_EXCLUDE;
876 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
877
878 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
879 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
880 mc->mca_flags |= MAF_NOREPORT;
881
882 mc->next = idev->mc_list;
883 idev->mc_list = mc;
884 write_unlock_bh(&idev->lock);
885
886 mld_del_delrec(idev, &mc->mca_addr);
887 igmp6_group_added(mc);
888 ma_put(mc);
889 return 0;
890}
891
892/*
893 * device multicast group del
894 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900895int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 struct ifmcaddr6 *ma, **map;
898
899 write_lock_bh(&idev->lock);
900 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
901 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
902 if (--ma->mca_users == 0) {
903 *map = ma->next;
904 write_unlock_bh(&idev->lock);
905
906 igmp6_group_dropped(ma);
907
908 ma_put(ma);
909 return 0;
910 }
911 write_unlock_bh(&idev->lock);
912 return 0;
913 }
914 }
915 write_unlock_bh(&idev->lock);
916
917 return -ENOENT;
918}
919
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900920int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000922 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 int err;
924
Eric Dumazet96b52e62010-06-07 21:05:02 +0000925 rcu_read_lock();
926
927 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000929 err = -ENODEV;
930 else
931 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Eric Dumazet96b52e62010-06-07 21:05:02 +0000933 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return err;
935}
936
937/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 * check if the interface/address pair is valid
939 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000940bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
941 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 struct inet6_dev *idev;
944 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000945 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Eric Dumazet96b52e62010-06-07 21:05:02 +0000947 rcu_read_lock();
948 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (idev) {
950 read_lock_bh(&idev->lock);
951 for (mc = idev->mc_list; mc; mc=mc->next) {
952 if (ipv6_addr_equal(&mc->mca_addr, group))
953 break;
954 }
955 if (mc) {
956 if (src_addr && !ipv6_addr_any(src_addr)) {
957 struct ip6_sf_list *psf;
958
959 spin_lock_bh(&mc->mca_lock);
960 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
961 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
962 break;
963 }
964 if (psf)
965 rv = psf->sf_count[MCAST_INCLUDE] ||
966 psf->sf_count[MCAST_EXCLUDE] !=
967 mc->mca_sfcount[MCAST_EXCLUDE];
968 else
969 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
970 spin_unlock_bh(&mc->mca_lock);
971 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +0000972 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Eric Dumazet96b52e62010-06-07 21:05:02 +0000976 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return rv;
978}
979
980static void mld_gq_start_timer(struct inet6_dev *idev)
981{
982 int tv = net_random() % idev->mc_maxdelay;
983
984 idev->mc_gq_running = 1;
985 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
986 in6_dev_hold(idev);
987}
988
989static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
990{
991 int tv = net_random() % delay;
992
993 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
994 in6_dev_hold(idev);
995}
996
997/*
998 * IGMP handling (alias multicast ICMPv6 messages)
999 */
1000
1001static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1002{
1003 unsigned long delay = resptime;
1004
1005 /* Do not start timer for these addresses */
1006 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1007 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1008 return;
1009
1010 if (del_timer(&ma->mca_timer)) {
1011 atomic_dec(&ma->mca_refcnt);
1012 delay = ma->mca_timer.expires - jiffies;
1013 }
1014
1015 if (delay >= resptime) {
1016 if (resptime)
1017 delay = net_random() % resptime;
1018 else
1019 delay = 1;
1020 }
1021 ma->mca_timer.expires = jiffies + delay;
1022 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1023 atomic_inc(&ma->mca_refcnt);
1024 ma->mca_flags |= MAF_TIMER_RUNNING;
1025}
1026
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001027/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001028static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1029 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 struct ip6_sf_list *psf;
1032 int i, scount;
1033
1034 scount = 0;
1035 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1036 if (scount == nsrcs)
1037 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001038 for (i=0; i<nsrcs; i++) {
1039 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001040 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001041 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1042 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001043 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001044 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1045 scount++;
1046 break;
1047 }
1048 }
1049 }
1050 pmc->mca_flags &= ~MAF_GSQUERY;
1051 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001052 return false;
1053 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001054}
1055
Eric Dumazeta50feda2012-05-18 18:57:34 +00001056static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1057 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001058{
1059 struct ip6_sf_list *psf;
1060 int i, scount;
1061
1062 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1063 return mld_xmarksources(pmc, nsrcs, srcs);
1064
1065 /* mark INCLUDE-mode sources */
1066
1067 scount = 0;
1068 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1069 if (scount == nsrcs)
1070 break;
1071 for (i=0; i<nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1073 psf->sf_gsresp = 1;
1074 scount++;
1075 break;
1076 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001079 if (!scount) {
1080 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001081 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001082 }
1083 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001084 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Eric Dumazet96b52e62010-06-07 21:05:02 +00001087/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088int igmp6_event_query(struct sk_buff *skb)
1089{
Yan Zheng97300b52005-10-31 20:09:45 +08001090 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001092 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 unsigned long max_delay;
1094 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001095 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int group_type;
1097 int mark = 0;
1098 int len;
1099
1100 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1101 return -EINVAL;
1102
1103 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001104 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001105 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /* Drop queries with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001108 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return -EINVAL;
1110
Eric Dumazet96b52e62010-06-07 21:05:02 +00001111 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (idev == NULL)
1114 return 0;
1115
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001116 mld = (struct mld_msg *)icmp6_hdr(skb);
1117 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 group_type = ipv6_addr_type(group);
1119
1120 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001121 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 if (len == 24) {
1125 int switchback;
1126 /* MLDv1 router present */
1127
1128 /* Translate milliseconds to jiffies */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001129 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 switchback = (idev->mc_qrv + 1) * max_delay;
1132 idev->mc_v1_seen = jiffies + switchback;
1133
1134 /* cancel the interface change timer */
1135 idev->mc_ifc_count = 0;
1136 if (del_timer(&idev->mc_ifc_timer))
1137 __in6_dev_put(idev);
1138 /* clear deleted report items */
1139 mld_clear_delrec(idev);
1140 } else if (len >= 28) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001141 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001142 sizeof(struct icmp6hdr);
Eric Dumazet96b52e62010-06-07 21:05:02 +00001143 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001144 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001145
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001146 mlh2 = (struct mld2_query *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001147 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (!max_delay)
1149 max_delay = 1;
1150 idev->mc_maxdelay = max_delay;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001151 if (mlh2->mld2q_qrv)
1152 idev->mc_qrv = mlh2->mld2q_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001154 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return 0;
1159 }
1160 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001161 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001162 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001163 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001164 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001165
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001166 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001167 mark = 1;
1168 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001169 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 read_lock_bh(&idev->lock);
1173 if (group_type == IPV6_ADDR_ANY) {
1174 for (ma = idev->mc_list; ma; ma=ma->next) {
1175 spin_lock_bh(&ma->mca_lock);
1176 igmp6_group_queried(ma, max_delay);
1177 spin_unlock_bh(&ma->mca_lock);
1178 }
1179 } else {
1180 for (ma = idev->mc_list; ma; ma=ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001181 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 continue;
1183 spin_lock_bh(&ma->mca_lock);
1184 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1185 /* gsquery <- gsquery && mark */
1186 if (!mark)
1187 ma->mca_flags &= ~MAF_GSQUERY;
1188 } else {
1189 /* gsquery <- mark */
1190 if (mark)
1191 ma->mca_flags |= MAF_GSQUERY;
1192 else
1193 ma->mca_flags &= ~MAF_GSQUERY;
1194 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001195 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001196 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001197 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 }
1202 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 return 0;
1205}
1206
Eric Dumazet96b52e62010-06-07 21:05:02 +00001207/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208int igmp6_event_report(struct sk_buff *skb)
1209{
1210 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001212 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int addr_type;
1214
1215 /* Our own report looped back. Ignore it. */
1216 if (skb->pkt_type == PACKET_LOOPBACK)
1217 return 0;
1218
David Stevens24c69272005-12-02 20:32:59 -08001219 /* send our report if the MC router may not have heard this report */
1220 if (skb->pkt_type != PACKET_MULTICAST &&
1221 skb->pkt_type != PACKET_BROADCAST)
1222 return 0;
1223
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001224 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return -EINVAL;
1226
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001227 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001230 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001231 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 !(addr_type&IPV6_ADDR_LINKLOCAL))
1233 return -EINVAL;
1234
Eric Dumazet96b52e62010-06-07 21:05:02 +00001235 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (idev == NULL)
1237 return -ENODEV;
1238
1239 /*
1240 * Cancel the timer for this group
1241 */
1242
1243 read_lock_bh(&idev->lock);
1244 for (ma = idev->mc_list; ma; ma=ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001245 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 spin_lock(&ma->mca_lock);
1247 if (del_timer(&ma->mca_timer))
1248 atomic_dec(&ma->mca_refcnt);
1249 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1250 spin_unlock(&ma->mca_lock);
1251 break;
1252 }
1253 }
1254 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return 0;
1256}
1257
Eric Dumazeta50feda2012-05-18 18:57:34 +00001258static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1259 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 switch (type) {
1262 case MLD2_MODE_IS_INCLUDE:
1263 case MLD2_MODE_IS_EXCLUDE:
1264 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001265 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001266 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1267 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001268 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001269 /* don't include if this source is excluded
1270 * in all filters
1271 */
1272 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001273 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001274 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1275 psf->sf_count[MCAST_EXCLUDE];
1276 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001277 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 case MLD2_CHANGE_TO_INCLUDE:
1279 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001280 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return psf->sf_count[MCAST_INCLUDE] != 0;
1282 case MLD2_CHANGE_TO_EXCLUDE:
1283 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001284 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1286 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001287 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1289 psf->sf_count[MCAST_EXCLUDE];
1290 case MLD2_ALLOW_NEW_SOURCES:
1291 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001292 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1294 case MLD2_BLOCK_OLD_SOURCES:
1295 if (pmc->mca_sfmode == MCAST_INCLUDE)
1296 return gdeleted || (psf->sf_crcount && sdeleted);
1297 return psf->sf_crcount && !gdeleted && !sdeleted;
1298 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001299 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302static int
1303mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1304{
1305 struct ip6_sf_list *psf;
1306 int scount = 0;
1307
1308 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1309 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1310 continue;
1311 scount++;
1312 }
1313 return scount;
1314}
1315
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001316static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1317 struct net_device *dev,
1318 const struct in6_addr *saddr,
1319 const struct in6_addr *daddr,
1320 int proto, int len)
1321{
1322 struct ipv6hdr *hdr;
1323
1324 skb->protocol = htons(ETH_P_IPV6);
1325 skb->dev = dev;
1326
1327 skb_reset_network_header(skb);
1328 skb_put(skb, sizeof(struct ipv6hdr));
1329 hdr = ipv6_hdr(skb);
1330
1331 ip6_flow_hdr(hdr, 0, 0);
1332
1333 hdr->payload_len = htons(len);
1334 hdr->nexthdr = proto;
1335 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1336
1337 hdr->saddr = *saddr;
1338 hdr->daddr = *daddr;
1339}
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1342{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001343 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001344 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct sk_buff *skb;
1346 struct mld2_report *pmr;
1347 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001348 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001349 int hlen = LL_RESERVED_SPACE(dev);
1350 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 int err;
1352 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1353 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1354 IPV6_TLV_PADN, 0 };
1355
1356 /* we assume size > sizeof(ra) here */
Herbert Xua7ae1992011-11-18 02:20:04 +00001357 size += hlen + tlen;
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001358 /* limit our allocations to order-0 page */
1359 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1360 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001362 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return NULL;
1364
Herbert Xua7ae1992011-11-18 02:20:04 +00001365 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Neil Horman95c385b2007-04-25 17:08:10 -07001367 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001369 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * when a valid link-local address is not available.
1371 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001372 saddr = &in6addr_any;
1373 } else
1374 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001376 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1379
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001380 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001381 skb_put(skb, sizeof(*pmr));
1382 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001383 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1384 pmr->mld2r_resv1 = 0;
1385 pmr->mld2r_cksum = 0;
1386 pmr->mld2r_resv2 = 0;
1387 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return skb;
1389}
1390
1391static void mld_sendpack(struct sk_buff *skb)
1392{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001393 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001394 struct mld2_report *pmr =
1395 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001397 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001398 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001400 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001401 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Eric Dumazet96b52e62010-06-07 21:05:02 +00001403 rcu_read_lock();
1404 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001405 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1406
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001407 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1408 mldlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 pip6->payload_len = htons(payload_len);
1410
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001411 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1412 IPPROTO_ICMPV6,
1413 csum_partial(skb_transport_header(skb),
1414 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001415
David S. Miller4c9483b2011-03-12 16:22:43 -05001416 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001417 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1418 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001419 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001420
David S. Miller452edd52011-03-02 13:27:41 -08001421 err = 0;
1422 if (IS_ERR(dst)) {
1423 err = PTR_ERR(dst);
1424 dst = NULL;
1425 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001426 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001427 if (err)
1428 goto err_out;
1429
Neil Hormanedf391f2009-04-27 02:45:02 -07001430 payload_len = skb->len;
1431
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001432 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001433 dst_output);
1434out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (!err) {
Denis V. Lunev5a57d4c2008-10-08 10:34:14 -07001436 ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
Denis V. Luneve41b5362008-10-08 10:33:26 -07001437 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001438 IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 } else
Denis V. Lunev483a47d2008-10-08 11:09:27 -07001440 IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Eric Dumazet96b52e62010-06-07 21:05:02 +00001442 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001443 return;
1444
1445err_out:
1446 kfree_skb(skb);
1447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1451{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001452 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
1455static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1456 int type, struct mld2_grec **ppgr)
1457{
1458 struct net_device *dev = pmc->idev->dev;
1459 struct mld2_report *pmr;
1460 struct mld2_grec *pgr;
1461
1462 if (!skb)
1463 skb = mld_newpack(dev, dev->mtu);
1464 if (!skb)
1465 return NULL;
1466 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1467 pgr->grec_type = type;
1468 pgr->grec_auxwords = 0;
1469 pgr->grec_nsrcs = 0;
1470 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001471 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001472 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 *ppgr = pgr;
1474 return skb;
1475}
1476
1477#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1478 skb_tailroom(skb)) : 0)
1479
1480static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1481 int type, int gdeleted, int sdeleted)
1482{
1483 struct net_device *dev = pmc->idev->dev;
1484 struct mld2_report *pmr;
1485 struct mld2_grec *pgr = NULL;
1486 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001487 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 if (pmc->mca_flags & MAF_NOREPORT)
1490 return skb;
1491
1492 isquery = type == MLD2_MODE_IS_INCLUDE ||
1493 type == MLD2_MODE_IS_EXCLUDE;
1494 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1495 type == MLD2_CHANGE_TO_EXCLUDE;
1496
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001497 stotal = scount = 0;
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1500
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001501 if (!*psf_list)
1502 goto empty_source;
1503
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001504 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 /* EX and TO_EX get a fresh packet, if needed */
1507 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001508 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1510 if (skb)
1511 mld_sendpack(skb);
1512 skb = mld_newpack(dev, dev->mtu);
1513 }
1514 }
1515 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 psf_prev = NULL;
1517 for (psf=*psf_list; psf; psf=psf_next) {
1518 struct in6_addr *psrc;
1519
1520 psf_next = psf->sf_next;
1521
1522 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1523 psf_prev = psf;
1524 continue;
1525 }
1526
1527 /* clear marks on query responses */
1528 if (isquery)
1529 psf->sf_gsresp = 0;
1530
1531 if (AVAILABLE(skb) < sizeof(*psrc) +
1532 first*sizeof(struct mld2_grec)) {
1533 if (truncate && !first)
1534 break; /* truncate these */
1535 if (pgr)
1536 pgr->grec_nsrcs = htons(scount);
1537 if (skb)
1538 mld_sendpack(skb);
1539 skb = mld_newpack(dev, dev->mtu);
1540 first = 1;
1541 scount = 0;
1542 }
1543 if (first) {
1544 skb = add_grhead(skb, pmc, type, &pgr);
1545 first = 0;
1546 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001547 if (!skb)
1548 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1550 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001551 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1553 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1554 psf->sf_crcount--;
1555 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1556 if (psf_prev)
1557 psf_prev->sf_next = psf->sf_next;
1558 else
1559 *psf_list = psf->sf_next;
1560 kfree(psf);
1561 continue;
1562 }
1563 }
1564 psf_prev = psf;
1565 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001566
1567empty_source:
1568 if (!stotal) {
1569 if (type == MLD2_ALLOW_NEW_SOURCES ||
1570 type == MLD2_BLOCK_OLD_SOURCES)
1571 return skb;
1572 if (pmc->mca_crcount || isquery) {
1573 /* make sure we have room for group header */
1574 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1575 mld_sendpack(skb);
1576 skb = NULL; /* add_grhead will get a new one */
1577 }
1578 skb = add_grhead(skb, pmc, type, &pgr);
1579 }
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (pgr)
1582 pgr->grec_nsrcs = htons(scount);
1583
1584 if (isquery)
1585 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1586 return skb;
1587}
1588
1589static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1590{
1591 struct sk_buff *skb = NULL;
1592 int type;
1593
1594 if (!pmc) {
1595 read_lock_bh(&idev->lock);
1596 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1597 if (pmc->mca_flags & MAF_NOREPORT)
1598 continue;
1599 spin_lock_bh(&pmc->mca_lock);
1600 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1601 type = MLD2_MODE_IS_EXCLUDE;
1602 else
1603 type = MLD2_MODE_IS_INCLUDE;
1604 skb = add_grec(skb, pmc, type, 0, 0);
1605 spin_unlock_bh(&pmc->mca_lock);
1606 }
1607 read_unlock_bh(&idev->lock);
1608 } else {
1609 spin_lock_bh(&pmc->mca_lock);
1610 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1611 type = MLD2_MODE_IS_EXCLUDE;
1612 else
1613 type = MLD2_MODE_IS_INCLUDE;
1614 skb = add_grec(skb, pmc, type, 0, 0);
1615 spin_unlock_bh(&pmc->mca_lock);
1616 }
1617 if (skb)
1618 mld_sendpack(skb);
1619}
1620
1621/*
1622 * remove zero-count source records from a source filter list
1623 */
1624static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1625{
1626 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1627
1628 psf_prev = NULL;
1629 for (psf=*ppsf; psf; psf = psf_next) {
1630 psf_next = psf->sf_next;
1631 if (psf->sf_crcount == 0) {
1632 if (psf_prev)
1633 psf_prev->sf_next = psf->sf_next;
1634 else
1635 *ppsf = psf->sf_next;
1636 kfree(psf);
1637 } else
1638 psf_prev = psf;
1639 }
1640}
1641
1642static void mld_send_cr(struct inet6_dev *idev)
1643{
1644 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1645 struct sk_buff *skb = NULL;
1646 int type, dtype;
1647
1648 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001649 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /* deleted MCA's */
1652 pmc_prev = NULL;
1653 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1654 pmc_next = pmc->next;
1655 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1656 type = MLD2_BLOCK_OLD_SOURCES;
1657 dtype = MLD2_BLOCK_OLD_SOURCES;
1658 skb = add_grec(skb, pmc, type, 1, 0);
1659 skb = add_grec(skb, pmc, dtype, 1, 1);
1660 }
1661 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1663 type = MLD2_CHANGE_TO_INCLUDE;
1664 skb = add_grec(skb, pmc, type, 1, 0);
1665 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001666 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (pmc->mca_crcount == 0) {
1668 mld_clear_zeros(&pmc->mca_tomb);
1669 mld_clear_zeros(&pmc->mca_sources);
1670 }
1671 }
1672 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1673 !pmc->mca_sources) {
1674 if (pmc_prev)
1675 pmc_prev->next = pmc_next;
1676 else
1677 idev->mc_tomb = pmc_next;
1678 in6_dev_put(pmc->idev);
1679 kfree(pmc);
1680 } else
1681 pmc_prev = pmc;
1682 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001683 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 /* change recs */
1686 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1687 spin_lock_bh(&pmc->mca_lock);
1688 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1689 type = MLD2_BLOCK_OLD_SOURCES;
1690 dtype = MLD2_ALLOW_NEW_SOURCES;
1691 } else {
1692 type = MLD2_ALLOW_NEW_SOURCES;
1693 dtype = MLD2_BLOCK_OLD_SOURCES;
1694 }
1695 skb = add_grec(skb, pmc, type, 0, 0);
1696 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1697
1698 /* filter mode changes */
1699 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1701 type = MLD2_CHANGE_TO_EXCLUDE;
1702 else
1703 type = MLD2_CHANGE_TO_INCLUDE;
1704 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001705 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 spin_unlock_bh(&pmc->mca_lock);
1708 }
1709 read_unlock_bh(&idev->lock);
1710 if (!skb)
1711 return;
1712 (void) mld_sendpack(skb);
1713}
1714
1715static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1716{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001717 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001718 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001720 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001721 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001722 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001724 int hlen = LL_RESERVED_SPACE(dev);
1725 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 int err, len, payload_len, full_len;
1727 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1728 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1729 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001730 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001731 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001733 if (type == ICMPV6_MGM_REDUCTION)
1734 snd_addr = &in6addr_linklocal_allrouters;
1735 else
1736 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1739 payload_len = len + sizeof(ra);
1740 full_len = sizeof(struct ipv6hdr) + payload_len;
1741
Neil Hormanedf391f2009-04-27 02:45:02 -07001742 rcu_read_lock();
1743 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1744 IPSTATS_MIB_OUT, full_len);
1745 rcu_read_unlock();
1746
Herbert Xua7ae1992011-11-18 02:20:04 +00001747 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 if (skb == NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001750 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001751 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001752 IPSTATS_MIB_OUTDISCARDS);
1753 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return;
1755 }
1756
Herbert Xua7ae1992011-11-18 02:20:04 +00001757 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Neil Horman95c385b2007-04-25 17:08:10 -07001759 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001761 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 * when a valid link-local address is not available.
1763 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001764 saddr = &in6addr_any;
1765 } else
1766 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001768 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1771
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001772 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1773 memset(hdr, 0, sizeof(struct mld_msg));
1774 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001775 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001777 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1778 IPPROTO_ICMPV6,
1779 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Eric Dumazet96b52e62010-06-07 21:05:02 +00001781 rcu_read_lock();
1782 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
David S. Miller4c9483b2011-03-12 16:22:43 -05001784 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001785 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1786 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001787 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08001788 if (IS_ERR(dst)) {
1789 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001790 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08001791 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001792
Eric Dumazetadf30902009-06-02 05:19:30 +00001793 skb_dst_set(skb, dst);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001794 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001795 dst_output);
1796out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001798 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001799 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001800 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001802 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Eric Dumazet96b52e62010-06-07 21:05:02 +00001804 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001806
1807err_out:
1808 kfree_skb(skb);
1809 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
1811
1812static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001813 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
1815 struct ip6_sf_list *psf, *psf_prev;
1816 int rv = 0;
1817
1818 psf_prev = NULL;
1819 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1820 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1821 break;
1822 psf_prev = psf;
1823 }
1824 if (!psf || psf->sf_count[sfmode] == 0) {
1825 /* source filter not found, or count wrong => bug */
1826 return -ESRCH;
1827 }
1828 psf->sf_count[sfmode]--;
1829 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1830 struct inet6_dev *idev = pmc->idev;
1831
1832 /* no more filters for this source */
1833 if (psf_prev)
1834 psf_prev->sf_next = psf->sf_next;
1835 else
1836 pmc->mca_sources = psf->sf_next;
1837 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1838 !MLD_V1_SEEN(idev)) {
1839 psf->sf_crcount = idev->mc_qrv;
1840 psf->sf_next = pmc->mca_tomb;
1841 pmc->mca_tomb = psf;
1842 rv = 1;
1843 } else
1844 kfree(psf);
1845 }
1846 return rv;
1847}
1848
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001849static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
1850 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 int delta)
1852{
1853 struct ifmcaddr6 *pmc;
1854 int changerec = 0;
1855 int i, err;
1856
1857 if (!idev)
1858 return -ENODEV;
1859 read_lock_bh(&idev->lock);
1860 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1861 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1862 break;
1863 }
1864 if (!pmc) {
1865 /* MCA not found?? bug */
1866 read_unlock_bh(&idev->lock);
1867 return -ESRCH;
1868 }
1869 spin_lock_bh(&pmc->mca_lock);
1870 sf_markstate(pmc);
1871 if (!delta) {
1872 if (!pmc->mca_sfcount[sfmode]) {
1873 spin_unlock_bh(&pmc->mca_lock);
1874 read_unlock_bh(&idev->lock);
1875 return -EINVAL;
1876 }
1877 pmc->mca_sfcount[sfmode]--;
1878 }
1879 err = 0;
1880 for (i=0; i<sfcount; i++) {
1881 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1882
1883 changerec |= rv > 0;
1884 if (!err && rv < 0)
1885 err = rv;
1886 }
1887 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1888 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1889 pmc->mca_sfcount[MCAST_INCLUDE]) {
1890 struct ip6_sf_list *psf;
1891
1892 /* filter mode change */
1893 pmc->mca_sfmode = MCAST_INCLUDE;
1894 pmc->mca_crcount = idev->mc_qrv;
1895 idev->mc_ifc_count = pmc->mca_crcount;
1896 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1897 psf->sf_crcount = 0;
1898 mld_ifc_event(pmc->idev);
1899 } else if (sf_setstate(pmc) || changerec)
1900 mld_ifc_event(pmc->idev);
1901 spin_unlock_bh(&pmc->mca_lock);
1902 read_unlock_bh(&idev->lock);
1903 return err;
1904}
1905
1906/*
1907 * Add multicast single-source filter to the interface list
1908 */
1909static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00001910 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
1912 struct ip6_sf_list *psf, *psf_prev;
1913
1914 psf_prev = NULL;
1915 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1916 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1917 break;
1918 psf_prev = psf;
1919 }
1920 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001921 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (!psf)
1923 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 psf->sf_addr = *psfsrc;
1926 if (psf_prev) {
1927 psf_prev->sf_next = psf;
1928 } else
1929 pmc->mca_sources = psf;
1930 }
1931 psf->sf_count[sfmode]++;
1932 return 0;
1933}
1934
1935static void sf_markstate(struct ifmcaddr6 *pmc)
1936{
1937 struct ip6_sf_list *psf;
1938 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1939
1940 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1941 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1942 psf->sf_oldin = mca_xcount ==
1943 psf->sf_count[MCAST_EXCLUDE] &&
1944 !psf->sf_count[MCAST_INCLUDE];
1945 } else
1946 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1947}
1948
1949static int sf_setstate(struct ifmcaddr6 *pmc)
1950{
David L Stevens7add2a42006-01-24 13:06:39 -08001951 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1953 int qrv = pmc->idev->mc_qrv;
1954 int new_in, rv;
1955
1956 rv = 0;
1957 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1958 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1959 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1960 !psf->sf_count[MCAST_INCLUDE];
1961 } else
1962 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08001963 if (new_in) {
1964 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05001965 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08001966
1967 for (dpsf=pmc->mca_tomb; dpsf;
1968 dpsf=dpsf->sf_next) {
1969 if (ipv6_addr_equal(&dpsf->sf_addr,
1970 &psf->sf_addr))
1971 break;
1972 prev = dpsf;
1973 }
1974 if (dpsf) {
1975 if (prev)
1976 prev->sf_next = dpsf->sf_next;
1977 else
1978 pmc->mca_tomb = dpsf->sf_next;
1979 kfree(dpsf);
1980 }
1981 psf->sf_crcount = qrv;
1982 rv++;
1983 }
1984 } else if (psf->sf_oldin) {
1985 psf->sf_crcount = 0;
1986 /*
1987 * add or update "delete" records if an active filter
1988 * is now inactive
1989 */
1990 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
1991 if (ipv6_addr_equal(&dpsf->sf_addr,
1992 &psf->sf_addr))
1993 break;
1994 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00001995 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08001996 if (!dpsf)
1997 continue;
1998 *dpsf = *psf;
1999 /* pmc->mca_lock held by callers */
2000 dpsf->sf_next = pmc->mca_tomb;
2001 pmc->mca_tomb = dpsf;
2002 }
2003 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 rv++;
2005 }
2006 }
2007 return rv;
2008}
2009
2010/*
2011 * Add multicast source filter list to the interface list
2012 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002013static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2014 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 int delta)
2016{
2017 struct ifmcaddr6 *pmc;
2018 int isexclude;
2019 int i, err;
2020
2021 if (!idev)
2022 return -ENODEV;
2023 read_lock_bh(&idev->lock);
2024 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2025 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2026 break;
2027 }
2028 if (!pmc) {
2029 /* MCA not found?? bug */
2030 read_unlock_bh(&idev->lock);
2031 return -ESRCH;
2032 }
2033 spin_lock_bh(&pmc->mca_lock);
2034
2035 sf_markstate(pmc);
2036 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2037 if (!delta)
2038 pmc->mca_sfcount[sfmode]++;
2039 err = 0;
2040 for (i=0; i<sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002041 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (err)
2043 break;
2044 }
2045 if (err) {
2046 int j;
2047
2048 if (!delta)
2049 pmc->mca_sfcount[sfmode]--;
2050 for (j=0; j<i; j++)
RongQing.Li78d502172012-04-04 16:47:04 +00002051 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 struct ip6_sf_list *psf;
2054
2055 /* filter mode change */
2056 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2057 pmc->mca_sfmode = MCAST_EXCLUDE;
2058 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2059 pmc->mca_sfmode = MCAST_INCLUDE;
2060 /* else no filters; keep old mode for reports */
2061
2062 pmc->mca_crcount = idev->mc_qrv;
2063 idev->mc_ifc_count = pmc->mca_crcount;
2064 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2065 psf->sf_crcount = 0;
2066 mld_ifc_event(idev);
2067 } else if (sf_setstate(pmc))
2068 mld_ifc_event(idev);
2069 spin_unlock_bh(&pmc->mca_lock);
2070 read_unlock_bh(&idev->lock);
2071 return err;
2072}
2073
2074static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2075{
2076 struct ip6_sf_list *psf, *nextpsf;
2077
2078 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2079 nextpsf = psf->sf_next;
2080 kfree(psf);
2081 }
2082 pmc->mca_tomb = NULL;
2083 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2084 nextpsf = psf->sf_next;
2085 kfree(psf);
2086 }
2087 pmc->mca_sources = NULL;
2088 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002089 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2091}
2092
2093
2094static void igmp6_join_group(struct ifmcaddr6 *ma)
2095{
2096 unsigned long delay;
2097
2098 if (ma->mca_flags & MAF_NOREPORT)
2099 return;
2100
2101 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2102
2103 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2104
2105 spin_lock_bh(&ma->mca_lock);
2106 if (del_timer(&ma->mca_timer)) {
2107 atomic_dec(&ma->mca_refcnt);
2108 delay = ma->mca_timer.expires - jiffies;
2109 }
2110
2111 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2112 atomic_inc(&ma->mca_refcnt);
2113 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2114 spin_unlock_bh(&ma->mca_lock);
2115}
2116
2117static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2118 struct inet6_dev *idev)
2119{
2120 int err;
2121
David L Stevens5ab4a6c2005-12-27 14:03:00 -08002122 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2123 * so no other readers or writers of iml or its sflist
2124 */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002125 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /* any-source empty exclude case */
2127 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2128 }
2129 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2130 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2131 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2132 iml->sflist = NULL;
2133 return err;
2134}
2135
2136static void igmp6_leave_group(struct ifmcaddr6 *ma)
2137{
2138 if (MLD_V1_SEEN(ma->idev)) {
2139 if (ma->mca_flags & MAF_LAST_REPORTER)
2140 igmp6_send(&ma->mca_addr, ma->idev->dev,
2141 ICMPV6_MGM_REDUCTION);
2142 } else {
2143 mld_add_delrec(ma->idev, ma);
2144 mld_ifc_event(ma->idev);
2145 }
2146}
2147
2148static void mld_gq_timer_expire(unsigned long data)
2149{
2150 struct inet6_dev *idev = (struct inet6_dev *)data;
2151
2152 idev->mc_gq_running = 0;
2153 mld_send_report(idev, NULL);
2154 __in6_dev_put(idev);
2155}
2156
2157static void mld_ifc_timer_expire(unsigned long data)
2158{
2159 struct inet6_dev *idev = (struct inet6_dev *)data;
2160
2161 mld_send_cr(idev);
2162 if (idev->mc_ifc_count) {
2163 idev->mc_ifc_count--;
2164 if (idev->mc_ifc_count)
2165 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2166 }
2167 __in6_dev_put(idev);
2168}
2169
2170static void mld_ifc_event(struct inet6_dev *idev)
2171{
2172 if (MLD_V1_SEEN(idev))
2173 return;
2174 idev->mc_ifc_count = idev->mc_qrv;
2175 mld_ifc_start_timer(idev, 1);
2176}
2177
2178
2179static void igmp6_timer_handler(unsigned long data)
2180{
2181 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2182
2183 if (MLD_V1_SEEN(ma->idev))
2184 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2185 else
2186 mld_send_report(ma->idev, ma);
2187
2188 spin_lock(&ma->mca_lock);
2189 ma->mca_flags |= MAF_LAST_REPORTER;
2190 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2191 spin_unlock(&ma->mca_lock);
2192 ma_put(ma);
2193}
2194
Moni Shoua75c78502009-09-15 02:37:40 -07002195/* Device changing type */
2196
2197void ipv6_mc_unmap(struct inet6_dev *idev)
2198{
2199 struct ifmcaddr6 *i;
2200
2201 /* Install multicast list, except for all-nodes (already installed) */
2202
2203 read_lock_bh(&idev->lock);
2204 for (i = idev->mc_list; i; i = i->next)
2205 igmp6_group_dropped(i);
2206 read_unlock_bh(&idev->lock);
2207}
2208
2209void ipv6_mc_remap(struct inet6_dev *idev)
2210{
2211 ipv6_mc_up(idev);
2212}
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214/* Device going down */
2215
2216void ipv6_mc_down(struct inet6_dev *idev)
2217{
2218 struct ifmcaddr6 *i;
2219
2220 /* Withdraw multicast list */
2221
2222 read_lock_bh(&idev->lock);
2223 idev->mc_ifc_count = 0;
2224 if (del_timer(&idev->mc_ifc_timer))
2225 __in6_dev_put(idev);
2226 idev->mc_gq_running = 0;
2227 if (del_timer(&idev->mc_gq_timer))
2228 __in6_dev_put(idev);
2229
2230 for (i = idev->mc_list; i; i=i->next)
2231 igmp6_group_dropped(i);
2232 read_unlock_bh(&idev->lock);
2233
2234 mld_clear_delrec(idev);
2235}
2236
2237
2238/* Device going up */
2239
2240void ipv6_mc_up(struct inet6_dev *idev)
2241{
2242 struct ifmcaddr6 *i;
2243
2244 /* Install multicast list, except for all-nodes (already installed) */
2245
2246 read_lock_bh(&idev->lock);
2247 for (i = idev->mc_list; i; i=i->next)
2248 igmp6_group_added(i);
2249 read_unlock_bh(&idev->lock);
2250}
2251
2252/* IPv6 device initialization. */
2253
2254void ipv6_mc_init_dev(struct inet6_dev *idev)
2255{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002257 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 idev->mc_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002259 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2260 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 idev->mc_tomb = NULL;
2262 idev->mc_ifc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002263 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2264 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 idev->mc_qrv = MLD_QRV_DEFAULT;
2266 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2267 idev->mc_v1_seen = 0;
2268 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
2271/*
2272 * Device is about to be destroyed: clean up.
2273 */
2274
2275void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2276{
2277 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 /* Deactivate timers */
2280 ipv6_mc_down(idev);
2281
2282 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2284 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2285 * fail.
2286 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002287 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002289 if (idev->cnf.forwarding)
2290 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 write_lock_bh(&idev->lock);
2293 while ((i = idev->mc_list) != NULL) {
2294 idev->mc_list = i->next;
2295 write_unlock_bh(&idev->lock);
2296
2297 igmp6_group_dropped(i);
2298 ma_put(i);
2299
2300 write_lock_bh(&idev->lock);
2301 }
2302 write_unlock_bh(&idev->lock);
2303}
2304
2305#ifdef CONFIG_PROC_FS
2306struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002307 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 struct net_device *dev;
2309 struct inet6_dev *idev;
2310};
2311
2312#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2313
2314static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2315{
2316 struct ifmcaddr6 *im = NULL;
2317 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002318 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Pavel Emelianov7562f872007-05-03 15:13:45 -07002320 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002321 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002323 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (!idev)
2325 continue;
2326 read_lock_bh(&idev->lock);
2327 im = idev->mc_list;
2328 if (im) {
2329 state->idev = idev;
2330 break;
2331 }
2332 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334 return im;
2335}
2336
2337static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2338{
2339 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2340
2341 im = im->next;
2342 while (!im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002343 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002345
2346 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (!state->dev) {
2348 state->idev = NULL;
2349 break;
2350 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002351 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 if (!state->idev)
2353 continue;
2354 read_lock_bh(&state->idev->lock);
2355 im = state->idev->mc_list;
2356 }
2357 return im;
2358}
2359
2360static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2361{
2362 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2363 if (im)
2364 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2365 --pos;
2366 return pos ? NULL : im;
2367}
2368
2369static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002370 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Eric Dumazetce81b762009-11-11 17:34:30 +00002372 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 return igmp6_mc_get_idx(seq, *pos);
2374}
2375
2376static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2377{
Eric Dumazetce81b762009-11-11 17:34:30 +00002378 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 ++*pos;
2381 return im;
2382}
2383
2384static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002385 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
2387 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (likely(state->idev != NULL)) {
2390 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 state->idev = NULL;
2392 }
2393 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002394 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
2397static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2398{
2399 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2400 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2401
2402 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002403 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002405 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 im->mca_users, im->mca_flags,
2407 (im->mca_flags&MAF_TIMER_RUNNING) ?
2408 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2409 return 0;
2410}
2411
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002412static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 .start = igmp6_mc_seq_start,
2414 .next = igmp6_mc_seq_next,
2415 .stop = igmp6_mc_seq_stop,
2416 .show = igmp6_mc_seq_show,
2417};
2418
2419static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2420{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002421 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2422 sizeof(struct igmp6_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423}
2424
Arjan van de Ven9a321442007-02-12 00:55:35 -08002425static const struct file_operations igmp6_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 .owner = THIS_MODULE,
2427 .open = igmp6_mc_seq_open,
2428 .read = seq_read,
2429 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002430 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431};
2432
2433struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002434 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 struct net_device *dev;
2436 struct inet6_dev *idev;
2437 struct ifmcaddr6 *im;
2438};
2439
2440#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2441
2442static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2443{
2444 struct ip6_sf_list *psf = NULL;
2445 struct ifmcaddr6 *im = NULL;
2446 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002447 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Pavel Emelianov7562f872007-05-03 15:13:45 -07002449 state->idev = NULL;
2450 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002451 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002453 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (unlikely(idev == NULL))
2455 continue;
2456 read_lock_bh(&idev->lock);
2457 im = idev->mc_list;
2458 if (likely(im != NULL)) {
2459 spin_lock_bh(&im->mca_lock);
2460 psf = im->mca_sources;
2461 if (likely(psf != NULL)) {
2462 state->im = im;
2463 state->idev = idev;
2464 break;
2465 }
2466 spin_unlock_bh(&im->mca_lock);
2467 }
2468 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
2470 return psf;
2471}
2472
2473static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2474{
2475 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2476
2477 psf = psf->sf_next;
2478 while (!psf) {
2479 spin_unlock_bh(&state->im->mca_lock);
2480 state->im = state->im->next;
2481 while (!state->im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002482 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002484
2485 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 if (!state->dev) {
2487 state->idev = NULL;
2488 goto out;
2489 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002490 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (!state->idev)
2492 continue;
2493 read_lock_bh(&state->idev->lock);
2494 state->im = state->idev->mc_list;
2495 }
2496 if (!state->im)
2497 break;
2498 spin_lock_bh(&state->im->mca_lock);
2499 psf = state->im->mca_sources;
2500 }
2501out:
2502 return psf;
2503}
2504
2505static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2506{
2507 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2508 if (psf)
2509 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2510 --pos;
2511 return pos ? NULL : psf;
2512}
2513
2514static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002515 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Eric Dumazetce81b762009-11-11 17:34:30 +00002517 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2519}
2520
2521static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2522{
2523 struct ip6_sf_list *psf;
2524 if (v == SEQ_START_TOKEN)
2525 psf = igmp6_mcf_get_first(seq);
2526 else
2527 psf = igmp6_mcf_get_next(seq, v);
2528 ++*pos;
2529 return psf;
2530}
2531
2532static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002533 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
2535 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2536 if (likely(state->im != NULL)) {
2537 spin_unlock_bh(&state->im->mca_lock);
2538 state->im = NULL;
2539 }
2540 if (likely(state->idev != NULL)) {
2541 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 state->idev = NULL;
2543 }
2544 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002545 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
2548static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2549{
2550 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2551 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2552
2553 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002554 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 "%3s %6s "
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002556 "%32s %32s %6s %6s\n", "Idx",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 "Device", "Multicast Address",
2558 "Source Address", "INC", "EXC");
2559 } else {
2560 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002561 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002563 &state->im->mca_addr,
2564 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 psf->sf_count[MCAST_INCLUDE],
2566 psf->sf_count[MCAST_EXCLUDE]);
2567 }
2568 return 0;
2569}
2570
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002571static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 .start = igmp6_mcf_seq_start,
2573 .next = igmp6_mcf_seq_next,
2574 .stop = igmp6_mcf_seq_stop,
2575 .show = igmp6_mcf_seq_show,
2576};
2577
2578static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2579{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002580 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2581 sizeof(struct igmp6_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582}
2583
Arjan van de Ven9a321442007-02-12 00:55:35 -08002584static const struct file_operations igmp6_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 .owner = THIS_MODULE,
2586 .open = igmp6_mcf_seq_open,
2587 .read = seq_read,
2588 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002589 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590};
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002591
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002592static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002593{
2594 int err;
2595
2596 err = -ENOMEM;
2597 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2598 goto out;
2599 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2600 &igmp6_mcf_seq_fops))
2601 goto out_proc_net_igmp6;
2602
2603 err = 0;
2604out:
2605 return err;
2606
2607out_proc_net_igmp6:
2608 proc_net_remove(net, "igmp6");
2609 goto out;
2610}
2611
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002612static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002613{
2614 proc_net_remove(net, "mcfilter6");
2615 proc_net_remove(net, "igmp6");
2616}
2617#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002618static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002619{
2620 return 0;
2621}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002622static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002623{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#endif
2626
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002627static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 int err;
2630
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002631 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2632 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002634 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002636 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
2638
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002639 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002641 err = igmp6_proc_init(net);
2642 if (err)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002643 goto out_sock_create;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002644out:
2645 return err;
2646
2647out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002648 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002649 goto out;
2650}
2651
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002652static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002653{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002654 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002655 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002656}
2657
2658static struct pernet_operations igmp6_net_ops = {
2659 .init = igmp6_net_init,
2660 .exit = igmp6_net_exit,
2661};
2662
2663int __init igmp6_init(void)
2664{
2665 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
2668void igmp6_cleanup(void)
2669{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002670 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671}