blob: 7b27d08ee281eed75f06dac29734cef811497031 [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);
95static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *addr);
96static 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);
100static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
101 int sfmode, int sfcount, struct in6_addr *psfsrc,
102 int delta);
103static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
104 int sfmode, int sfcount, struct in6_addr *psfsrc,
105 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;
158 ipv6_addr_copy(&mc_lst->addr, addr);
159
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) {
165 dev = rt->rt6i_dev;
Changli Gaod8d1f302010-06-10 23:31:35 -0700166 dst_release(&rt->dst);
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
Eric Dumazet456b61b2010-11-23 13:12:15 +0000204static void ipv6_mc_socklist_reclaim(struct rcu_head *head)
205{
206 kfree(container_of(head, struct ipv6_mc_socklist, rcu));
207}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
209 * socket leave on multicast group
210 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900211int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000214 struct ipv6_mc_socklist *mc_lst;
215 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900216 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Eric Dumazet456b61b2010-11-23 13:12:15 +0000218 spin_lock(&ipv6_sk_mc_lock);
219 for (lnk = &np->ipv6_mc_list;
220 (mc_lst = rcu_dereference_protected(*lnk,
221 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
222 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
224 ipv6_addr_equal(&mc_lst->addr, addr)) {
225 struct net_device *dev;
226
227 *lnk = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000228 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Eric Dumazet96b52e62010-06-07 21:05:02 +0000230 rcu_read_lock();
231 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800232 if (dev != NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000233 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
David L Stevensacd6e002006-08-17 16:27:39 -0700235 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000236 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700238 } else
239 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000240 rcu_read_unlock();
Eric Dumazet456b61b2010-11-23 13:12:15 +0000241 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
242 call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244 }
245 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000246 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
David L Stevens9951f032005-07-08 17:47:28 -0700248 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Eric Dumazet96b52e62010-06-07 21:05:02 +0000251/* called with rcu_read_lock() */
252static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
253 struct in6_addr *group,
254 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct net_device *dev = NULL;
257 struct inet6_dev *idev = NULL;
258
259 if (ifindex == 0) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000260 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (rt) {
263 dev = rt->rt6i_dev;
264 dev_hold(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -0700265 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000268 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000271 return NULL;
272 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800273 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000274 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000276 if (idev->dead) {
277 read_unlock_bh(&idev->lock);
278 return NULL;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return idev;
281}
282
283void ipv6_sock_mc_close(struct sock *sk)
284{
285 struct ipv6_pinfo *np = inet6_sk(sk);
286 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900287 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Eric Dumazet456b61b2010-11-23 13:12:15 +0000289 spin_lock(&ipv6_sk_mc_lock);
290 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
291 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct net_device *dev;
293
294 np->ipv6_mc_list = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000295 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Eric Dumazet96b52e62010-06-07 21:05:02 +0000297 rcu_read_lock();
298 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000300 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
David L Stevensacd6e002006-08-17 16:27:39 -0700302 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000303 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700305 } else
306 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000307 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Eric Dumazet456b61b2010-11-23 13:12:15 +0000309 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
310 call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);
311
312 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000314 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317int ip6_mc_source(int add, int omode, struct sock *sk,
318 struct group_source_req *pgsr)
319{
320 struct in6_addr *source, *group;
321 struct ipv6_mc_socklist *pmc;
322 struct net_device *dev;
323 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 dev = idev->dev;
345
346 err = -EADDRNOTAVAIL;
347
Eric Dumazet456b61b2010-11-23 13:12:15 +0000348 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
350 continue;
351 if (ipv6_addr_equal(&pmc->addr, group))
352 break;
353 }
David L Stevens917f2f12005-07-08 17:45:16 -0700354 if (!pmc) { /* must have a prior join */
355 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* if a source filter was set, must be the same mode as before */
359 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700360 if (pmc->sfmode != omode) {
361 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 } else if (pmc->sfmode != omode) {
365 /* allow mode switches for empty-set filters */
366 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
367 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
368 pmc->sfmode = omode;
369 }
370
Eric Dumazet96b52e62010-06-07 21:05:02 +0000371 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800372 pmclocked = 1;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 psl = pmc->sflist;
375 if (!add) {
376 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700377 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 rv = !0;
379 for (i=0; i<psl->sl_count; i++) {
380 rv = memcmp(&psl->sl_addr[i], source,
381 sizeof(struct in6_addr));
382 if (rv == 0)
383 break;
384 }
385 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700386 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700388 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
389 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
390 leavegroup = 1;
391 goto done;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /* update the interface filter */
395 ip6_mc_del_src(idev, group, omode, 1, source, 1);
396
397 for (j=i+1; j<psl->sl_count; j++)
398 psl->sl_addr[j-1] = psl->sl_addr[j];
399 psl->sl_count--;
400 err = 0;
401 goto done;
402 }
403 /* else, add a new source to the filter */
404
405 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
406 err = -ENOBUFS;
407 goto done;
408 }
409 if (!psl || psl->sl_count == psl->sl_max) {
410 struct ip6_sf_socklist *newpsl;
411 int count = IP6_SFBLOCK;
412
413 if (psl)
414 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800415 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!newpsl) {
417 err = -ENOBUFS;
418 goto done;
419 }
420 newpsl->sl_max = count;
421 newpsl->sl_count = count - IP6_SFBLOCK;
422 if (psl) {
423 for (i=0; i<psl->sl_count; i++)
424 newpsl->sl_addr[i] = psl->sl_addr[i];
425 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
426 }
427 pmc->sflist = psl = newpsl;
428 }
429 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
430 for (i=0; i<psl->sl_count; i++) {
431 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
432 if (rv == 0)
433 break;
434 }
435 if (rv == 0) /* address already there is an error */
436 goto done;
437 for (j=psl->sl_count-1; j>=i; j--)
438 psl->sl_addr[j+1] = psl->sl_addr[j];
439 psl->sl_addr[i] = *source;
440 psl->sl_count++;
441 err = 0;
442 /* update the interface list */
443 ip6_mc_add_src(idev, group, omode, 1, source, 1);
444done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800445 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000446 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000448 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700449 if (leavegroup)
450 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return err;
452}
453
454int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
455{
456 struct in6_addr *group;
457 struct ipv6_mc_socklist *pmc;
458 struct net_device *dev;
459 struct inet6_dev *idev;
460 struct ipv6_pinfo *inet6 = inet6_sk(sk);
461 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900462 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700463 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 int i, err;
465
466 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
467
468 if (!ipv6_addr_is_multicast(group))
469 return -EINVAL;
470 if (gsf->gf_fmode != MCAST_INCLUDE &&
471 gsf->gf_fmode != MCAST_EXCLUDE)
472 return -EINVAL;
473
Eric Dumazet96b52e62010-06-07 21:05:02 +0000474 rcu_read_lock();
475 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Eric Dumazet96b52e62010-06-07 21:05:02 +0000477 if (!idev) {
478 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
David S. Miller9c059892005-07-08 21:44:39 -0700483 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800484
David L Stevens9951f032005-07-08 17:47:28 -0700485 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
486 leavegroup = 1;
487 goto done;
488 }
489
Eric Dumazet456b61b2010-11-23 13:12:15 +0000490 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (pmc->ifindex != gsf->gf_interface)
492 continue;
493 if (ipv6_addr_equal(&pmc->addr, group))
494 break;
495 }
David L Stevens917f2f12005-07-08 17:45:16 -0700496 if (!pmc) { /* must have a prior join */
497 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800501 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
502 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (!newpsl) {
504 err = -ENOBUFS;
505 goto done;
506 }
507 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
508 for (i=0; i<newpsl->sl_count; ++i) {
509 struct sockaddr_in6 *psin6;
510
511 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
512 newpsl->sl_addr[i] = psin6->sin6_addr;
513 }
514 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
515 newpsl->sl_count, newpsl->sl_addr, 0);
516 if (err) {
517 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
518 goto done;
519 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800520 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800522 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
523 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800524
Eric Dumazet96b52e62010-06-07 21:05:02 +0000525 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 psl = pmc->sflist;
527 if (psl) {
528 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
529 psl->sl_count, psl->sl_addr, 0);
530 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
531 } else
532 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
533 pmc->sflist = newpsl;
534 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000535 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700536 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537done:
538 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000539 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700540 if (leavegroup)
541 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return err;
543}
544
545int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
546 struct group_filter __user *optval, int __user *optlen)
547{
548 int err, i, count, copycount;
549 struct in6_addr *group;
550 struct ipv6_mc_socklist *pmc;
551 struct inet6_dev *idev;
552 struct net_device *dev;
553 struct ipv6_pinfo *inet6 = inet6_sk(sk);
554 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900555 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
558
559 if (!ipv6_addr_is_multicast(group))
560 return -EINVAL;
561
Eric Dumazet96b52e62010-06-07 21:05:02 +0000562 rcu_read_lock();
563 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Eric Dumazet96b52e62010-06-07 21:05:02 +0000565 if (!idev) {
566 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 dev = idev->dev;
570
571 err = -EADDRNOTAVAIL;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800572 /*
573 * changes to the ipv6_mc_list require the socket lock and
574 * a read lock on ip6_sk_mc_lock. We have the socket lock,
575 * so reading the list is safe.
576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Eric Dumazet456b61b2010-11-23 13:12:15 +0000578 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (pmc->ifindex != gsf->gf_interface)
580 continue;
581 if (ipv6_addr_equal(group, &pmc->addr))
582 break;
583 }
584 if (!pmc) /* must have a prior join */
585 goto done;
586 gsf->gf_fmode = pmc->sfmode;
587 psl = pmc->sflist;
588 count = psl ? psl->sl_count : 0;
589 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000590 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
593 gsf->gf_numsrc = count;
594 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
595 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
596 return -EFAULT;
597 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800598 /* changes to psl require the socket lock, a read lock on
599 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
600 * have the socket lock, so reading here is safe.
601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 for (i=0; i<copycount; i++) {
603 struct sockaddr_in6 *psin6;
604 struct sockaddr_storage ss;
605
606 psin6 = (struct sockaddr_in6 *)&ss;
607 memset(&ss, 0, sizeof(ss));
608 psin6->sin6_family = AF_INET6;
609 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900610 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return -EFAULT;
612 }
613 return 0;
614done:
615 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000616 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return err;
618}
619
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900620int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
621 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct ipv6_pinfo *np = inet6_sk(sk);
624 struct ipv6_mc_socklist *mc;
625 struct ip6_sf_socklist *psl;
626 int rv = 1;
627
Eric Dumazet456b61b2010-11-23 13:12:15 +0000628 rcu_read_lock();
629 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (ipv6_addr_equal(&mc->addr, mc_addr))
631 break;
632 }
633 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000634 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 1;
636 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800637 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 psl = mc->sflist;
639 if (!psl) {
640 rv = mc->sfmode == MCAST_EXCLUDE;
641 } else {
642 int i;
643
644 for (i=0; i<psl->sl_count; i++) {
645 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
646 break;
647 }
648 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
649 rv = 0;
650 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
651 rv = 0;
652 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800653 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000654 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 return rv;
657}
658
659static void ma_put(struct ifmcaddr6 *mc)
660{
661 if (atomic_dec_and_test(&mc->mca_refcnt)) {
662 in6_dev_put(mc->idev);
663 kfree(mc);
664 }
665}
666
667static void igmp6_group_added(struct ifmcaddr6 *mc)
668{
669 struct net_device *dev = mc->idev->dev;
670 char buf[MAX_ADDR_LEN];
671
672 spin_lock_bh(&mc->mca_lock);
673 if (!(mc->mca_flags&MAF_LOADED)) {
674 mc->mca_flags |= MAF_LOADED;
675 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000676 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 spin_unlock_bh(&mc->mca_lock);
679
680 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
681 return;
682
683 if (MLD_V1_SEEN(mc->idev)) {
684 igmp6_join_group(mc);
685 return;
686 }
687 /* else v2 */
688
689 mc->mca_crcount = mc->idev->mc_qrv;
690 mld_ifc_event(mc->idev);
691}
692
693static void igmp6_group_dropped(struct ifmcaddr6 *mc)
694{
695 struct net_device *dev = mc->idev->dev;
696 char buf[MAX_ADDR_LEN];
697
698 spin_lock_bh(&mc->mca_lock);
699 if (mc->mca_flags&MAF_LOADED) {
700 mc->mca_flags &= ~MAF_LOADED;
701 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000702 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 if (mc->mca_flags & MAF_NOREPORT)
706 goto done;
707 spin_unlock_bh(&mc->mca_lock);
708
709 if (!mc->idev->dead)
710 igmp6_leave_group(mc);
711
712 spin_lock_bh(&mc->mca_lock);
713 if (del_timer(&mc->mca_timer))
714 atomic_dec(&mc->mca_refcnt);
715done:
716 ip6_mc_clear_src(mc);
717 spin_unlock_bh(&mc->mca_lock);
718}
719
720/*
721 * deleted ifmcaddr6 manipulation
722 */
723static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
724{
725 struct ifmcaddr6 *pmc;
726
727 /* this is an "ifmcaddr6" for convenience; only the fields below
728 * are actually used. In particular, the refcnt and users are not
729 * used for management of the delete list. Using the same structure
730 * for deleted items allows change reports to use common code with
731 * non-deleted or query-response MCA's.
732 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800733 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!pmc)
735 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 spin_lock_bh(&im->mca_lock);
738 spin_lock_init(&pmc->mca_lock);
739 pmc->idev = im->idev;
740 in6_dev_hold(idev);
741 pmc->mca_addr = im->mca_addr;
742 pmc->mca_crcount = idev->mc_qrv;
743 pmc->mca_sfmode = im->mca_sfmode;
744 if (pmc->mca_sfmode == MCAST_INCLUDE) {
745 struct ip6_sf_list *psf;
746
747 pmc->mca_tomb = im->mca_tomb;
748 pmc->mca_sources = im->mca_sources;
749 im->mca_tomb = im->mca_sources = NULL;
750 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
751 psf->sf_crcount = pmc->mca_crcount;
752 }
753 spin_unlock_bh(&im->mca_lock);
754
Stephen Hemminger6457d262010-02-17 18:48:44 -0800755 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 pmc->next = idev->mc_tomb;
757 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800758 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761static void mld_del_delrec(struct inet6_dev *idev, struct in6_addr *pmca)
762{
763 struct ifmcaddr6 *pmc, *pmc_prev;
764 struct ip6_sf_list *psf, *psf_next;
765
Stephen Hemminger6457d262010-02-17 18:48:44 -0800766 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 pmc_prev = NULL;
768 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
769 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
770 break;
771 pmc_prev = pmc;
772 }
773 if (pmc) {
774 if (pmc_prev)
775 pmc_prev->next = pmc->next;
776 else
777 idev->mc_tomb = pmc->next;
778 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800779 spin_unlock_bh(&idev->mc_lock);
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (pmc) {
782 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
783 psf_next = psf->sf_next;
784 kfree(psf);
785 }
786 in6_dev_put(pmc->idev);
787 kfree(pmc);
788 }
789}
790
791static void mld_clear_delrec(struct inet6_dev *idev)
792{
793 struct ifmcaddr6 *pmc, *nextpmc;
794
Stephen Hemminger6457d262010-02-17 18:48:44 -0800795 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 pmc = idev->mc_tomb;
797 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800798 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 for (; pmc; pmc = nextpmc) {
801 nextpmc = pmc->next;
802 ip6_mc_clear_src(pmc);
803 in6_dev_put(pmc->idev);
804 kfree(pmc);
805 }
806
807 /* clear dead sources, too */
808 read_lock_bh(&idev->lock);
809 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
810 struct ip6_sf_list *psf, *psf_next;
811
812 spin_lock_bh(&pmc->mca_lock);
813 psf = pmc->mca_tomb;
814 pmc->mca_tomb = NULL;
815 spin_unlock_bh(&pmc->mca_lock);
816 for (; psf; psf=psf_next) {
817 psf_next = psf->sf_next;
818 kfree(psf);
819 }
820 }
821 read_unlock_bh(&idev->lock);
822}
823
824
825/*
826 * device multicast group inc (add if not found)
827 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900828int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 struct ifmcaddr6 *mc;
831 struct inet6_dev *idev;
832
Eric Dumazet96b52e62010-06-07 21:05:02 +0000833 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 idev = in6_dev_get(dev);
835
836 if (idev == NULL)
837 return -EINVAL;
838
839 write_lock_bh(&idev->lock);
840 if (idev->dead) {
841 write_unlock_bh(&idev->lock);
842 in6_dev_put(idev);
843 return -ENODEV;
844 }
845
846 for (mc = idev->mc_list; mc; mc = mc->next) {
847 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
848 mc->mca_users++;
849 write_unlock_bh(&idev->lock);
850 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
851 NULL, 0);
852 in6_dev_put(idev);
853 return 0;
854 }
855 }
856
857 /*
858 * not found: create a new one.
859 */
860
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800861 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 if (mc == NULL) {
864 write_unlock_bh(&idev->lock);
865 in6_dev_put(idev);
866 return -ENOMEM;
867 }
868
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800869 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 ipv6_addr_copy(&mc->mca_addr, addr);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000872 mc->idev = idev; /* (reference taken) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 mc->mca_users = 1;
874 /* mca_stamp should be updated upon changes */
875 mc->mca_cstamp = mc->mca_tstamp = jiffies;
876 atomic_set(&mc->mca_refcnt, 2);
877 spin_lock_init(&mc->mca_lock);
878
879 /* initial mode is (EX, empty) */
880 mc->mca_sfmode = MCAST_EXCLUDE;
881 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
882
883 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
884 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
885 mc->mca_flags |= MAF_NOREPORT;
886
887 mc->next = idev->mc_list;
888 idev->mc_list = mc;
889 write_unlock_bh(&idev->lock);
890
891 mld_del_delrec(idev, &mc->mca_addr);
892 igmp6_group_added(mc);
893 ma_put(mc);
894 return 0;
895}
896
897/*
898 * device multicast group del
899 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900900int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct ifmcaddr6 *ma, **map;
903
904 write_lock_bh(&idev->lock);
905 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
906 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
907 if (--ma->mca_users == 0) {
908 *map = ma->next;
909 write_unlock_bh(&idev->lock);
910
911 igmp6_group_dropped(ma);
912
913 ma_put(ma);
914 return 0;
915 }
916 write_unlock_bh(&idev->lock);
917 return 0;
918 }
919 }
920 write_unlock_bh(&idev->lock);
921
922 return -ENOENT;
923}
924
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900925int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000927 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 int err;
929
Eric Dumazet96b52e62010-06-07 21:05:02 +0000930 rcu_read_lock();
931
932 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000934 err = -ENODEV;
935 else
936 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Eric Dumazet96b52e62010-06-07 21:05:02 +0000938 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return err;
940}
941
942/*
943 * identify MLD packets for MLD filter exceptions
944 */
945int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
946{
947 struct icmp6hdr *pic;
948
949 if (nexthdr != IPPROTO_ICMPV6)
950 return 0;
951
952 if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
953 return 0;
954
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300955 pic = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 switch (pic->icmp6_type) {
958 case ICMPV6_MGM_QUERY:
959 case ICMPV6_MGM_REPORT:
960 case ICMPV6_MGM_REDUCTION:
961 case ICMPV6_MLD2_REPORT:
962 return 1;
963 default:
964 break;
965 }
966 return 0;
967}
968
969/*
970 * check if the interface/address pair is valid
971 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900972int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
973 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 struct inet6_dev *idev;
976 struct ifmcaddr6 *mc;
977 int rv = 0;
978
Eric Dumazet96b52e62010-06-07 21:05:02 +0000979 rcu_read_lock();
980 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (idev) {
982 read_lock_bh(&idev->lock);
983 for (mc = idev->mc_list; mc; mc=mc->next) {
984 if (ipv6_addr_equal(&mc->mca_addr, group))
985 break;
986 }
987 if (mc) {
988 if (src_addr && !ipv6_addr_any(src_addr)) {
989 struct ip6_sf_list *psf;
990
991 spin_lock_bh(&mc->mca_lock);
992 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
993 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
994 break;
995 }
996 if (psf)
997 rv = psf->sf_count[MCAST_INCLUDE] ||
998 psf->sf_count[MCAST_EXCLUDE] !=
999 mc->mca_sfcount[MCAST_EXCLUDE];
1000 else
1001 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
1002 spin_unlock_bh(&mc->mca_lock);
1003 } else
1004 rv = 1; /* don't filter unspecified source */
1005 }
1006 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001008 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return rv;
1010}
1011
1012static void mld_gq_start_timer(struct inet6_dev *idev)
1013{
1014 int tv = net_random() % idev->mc_maxdelay;
1015
1016 idev->mc_gq_running = 1;
1017 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1018 in6_dev_hold(idev);
1019}
1020
1021static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1022{
1023 int tv = net_random() % delay;
1024
1025 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1026 in6_dev_hold(idev);
1027}
1028
1029/*
1030 * IGMP handling (alias multicast ICMPv6 messages)
1031 */
1032
1033static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1034{
1035 unsigned long delay = resptime;
1036
1037 /* Do not start timer for these addresses */
1038 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1039 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1040 return;
1041
1042 if (del_timer(&ma->mca_timer)) {
1043 atomic_dec(&ma->mca_refcnt);
1044 delay = ma->mca_timer.expires - jiffies;
1045 }
1046
1047 if (delay >= resptime) {
1048 if (resptime)
1049 delay = net_random() % resptime;
1050 else
1051 delay = 1;
1052 }
1053 ma->mca_timer.expires = jiffies + delay;
1054 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1055 atomic_inc(&ma->mca_refcnt);
1056 ma->mca_flags |= MAF_TIMER_RUNNING;
1057}
1058
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001059/* mark EXCLUDE-mode sources */
1060static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct in6_addr *srcs)
1062{
1063 struct ip6_sf_list *psf;
1064 int i, scount;
1065
1066 scount = 0;
1067 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1068 if (scount == nsrcs)
1069 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001070 for (i=0; i<nsrcs; i++) {
1071 /* skip inactive filters */
1072 if (pmc->mca_sfcount[MCAST_INCLUDE] ||
1073 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1074 psf->sf_count[MCAST_EXCLUDE])
1075 continue;
1076 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1077 scount++;
1078 break;
1079 }
1080 }
1081 }
1082 pmc->mca_flags &= ~MAF_GSQUERY;
1083 if (scount == nsrcs) /* all sources excluded */
1084 return 0;
1085 return 1;
1086}
1087
1088static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1089 struct in6_addr *srcs)
1090{
1091 struct ip6_sf_list *psf;
1092 int i, scount;
1093
1094 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1095 return mld_xmarksources(pmc, nsrcs, srcs);
1096
1097 /* mark INCLUDE-mode sources */
1098
1099 scount = 0;
1100 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1101 if (scount == nsrcs)
1102 break;
1103 for (i=0; i<nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1105 psf->sf_gsresp = 1;
1106 scount++;
1107 break;
1108 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001111 if (!scount) {
1112 pmc->mca_flags &= ~MAF_GSQUERY;
1113 return 0;
1114 }
1115 pmc->mca_flags |= MAF_GSQUERY;
1116 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Eric Dumazet96b52e62010-06-07 21:05:02 +00001119/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120int igmp6_event_query(struct sk_buff *skb)
1121{
Yan Zheng97300b52005-10-31 20:09:45 +08001122 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct ifmcaddr6 *ma;
1124 struct in6_addr *group;
1125 unsigned long max_delay;
1126 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001127 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 int group_type;
1129 int mark = 0;
1130 int len;
1131
1132 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1133 return -EINVAL;
1134
1135 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001136 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001137 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /* Drop queries with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001140 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return -EINVAL;
1142
Eric Dumazet96b52e62010-06-07 21:05:02 +00001143 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (idev == NULL)
1146 return 0;
1147
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001148 mld = (struct mld_msg *)icmp6_hdr(skb);
1149 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 group_type = ipv6_addr_type(group);
1151
1152 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001153 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 if (len == 24) {
1157 int switchback;
1158 /* MLDv1 router present */
1159
1160 /* Translate milliseconds to jiffies */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001161 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 switchback = (idev->mc_qrv + 1) * max_delay;
1164 idev->mc_v1_seen = jiffies + switchback;
1165
1166 /* cancel the interface change timer */
1167 idev->mc_ifc_count = 0;
1168 if (del_timer(&idev->mc_ifc_timer))
1169 __in6_dev_put(idev);
1170 /* clear deleted report items */
1171 mld_clear_delrec(idev);
1172 } else if (len >= 28) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001173 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001174 sizeof(struct icmp6hdr);
Eric Dumazet96b52e62010-06-07 21:05:02 +00001175 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001176 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001177
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001178 mlh2 = (struct mld2_query *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001179 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (!max_delay)
1181 max_delay = 1;
1182 idev->mc_maxdelay = max_delay;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001183 if (mlh2->mld2q_qrv)
1184 idev->mc_qrv = mlh2->mld2q_qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001186 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return 0;
1191 }
1192 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001193 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001194 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001195 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001196 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001197
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001198 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001199 mark = 1;
1200 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001201 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 read_lock_bh(&idev->lock);
1205 if (group_type == IPV6_ADDR_ANY) {
1206 for (ma = idev->mc_list; ma; ma=ma->next) {
1207 spin_lock_bh(&ma->mca_lock);
1208 igmp6_group_queried(ma, max_delay);
1209 spin_unlock_bh(&ma->mca_lock);
1210 }
1211 } else {
1212 for (ma = idev->mc_list; ma; ma=ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001213 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 continue;
1215 spin_lock_bh(&ma->mca_lock);
1216 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1217 /* gsquery <- gsquery && mark */
1218 if (!mark)
1219 ma->mca_flags &= ~MAF_GSQUERY;
1220 } else {
1221 /* gsquery <- mark */
1222 if (mark)
1223 ma->mca_flags |= MAF_GSQUERY;
1224 else
1225 ma->mca_flags &= ~MAF_GSQUERY;
1226 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001227 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001228 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001229 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 }
1234 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 return 0;
1237}
1238
Eric Dumazet96b52e62010-06-07 21:05:02 +00001239/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240int igmp6_event_report(struct sk_buff *skb)
1241{
1242 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001244 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int addr_type;
1246
1247 /* Our own report looped back. Ignore it. */
1248 if (skb->pkt_type == PACKET_LOOPBACK)
1249 return 0;
1250
David Stevens24c69272005-12-02 20:32:59 -08001251 /* send our report if the MC router may not have heard this report */
1252 if (skb->pkt_type != PACKET_MULTICAST &&
1253 skb->pkt_type != PACKET_BROADCAST)
1254 return 0;
1255
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001256 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return -EINVAL;
1258
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001259 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001262 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001263 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 !(addr_type&IPV6_ADDR_LINKLOCAL))
1265 return -EINVAL;
1266
Eric Dumazet96b52e62010-06-07 21:05:02 +00001267 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (idev == NULL)
1269 return -ENODEV;
1270
1271 /*
1272 * Cancel the timer for this group
1273 */
1274
1275 read_lock_bh(&idev->lock);
1276 for (ma = idev->mc_list; ma; ma=ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001277 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 spin_lock(&ma->mca_lock);
1279 if (del_timer(&ma->mca_timer))
1280 atomic_dec(&ma->mca_refcnt);
1281 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1282 spin_unlock(&ma->mca_lock);
1283 break;
1284 }
1285 }
1286 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return 0;
1288}
1289
1290static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1291 int gdeleted, int sdeleted)
1292{
1293 switch (type) {
1294 case MLD2_MODE_IS_INCLUDE:
1295 case MLD2_MODE_IS_EXCLUDE:
1296 if (gdeleted || sdeleted)
1297 return 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001298 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1299 if (pmc->mca_sfmode == MCAST_INCLUDE)
1300 return 1;
1301 /* don't include if this source is excluded
1302 * in all filters
1303 */
1304 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001305 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001306 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1307 psf->sf_count[MCAST_EXCLUDE];
1308 }
1309 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 case MLD2_CHANGE_TO_INCLUDE:
1311 if (gdeleted || sdeleted)
1312 return 0;
1313 return psf->sf_count[MCAST_INCLUDE] != 0;
1314 case MLD2_CHANGE_TO_EXCLUDE:
1315 if (gdeleted || sdeleted)
1316 return 0;
1317 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1318 psf->sf_count[MCAST_INCLUDE])
1319 return 0;
1320 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1321 psf->sf_count[MCAST_EXCLUDE];
1322 case MLD2_ALLOW_NEW_SOURCES:
1323 if (gdeleted || !psf->sf_crcount)
1324 return 0;
1325 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1326 case MLD2_BLOCK_OLD_SOURCES:
1327 if (pmc->mca_sfmode == MCAST_INCLUDE)
1328 return gdeleted || (psf->sf_crcount && sdeleted);
1329 return psf->sf_crcount && !gdeleted && !sdeleted;
1330 }
1331 return 0;
1332}
1333
1334static int
1335mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1336{
1337 struct ip6_sf_list *psf;
1338 int scount = 0;
1339
1340 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1341 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1342 continue;
1343 scount++;
1344 }
1345 return scount;
1346}
1347
1348static struct sk_buff *mld_newpack(struct net_device *dev, int size)
1349{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001350 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001351 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 struct sk_buff *skb;
1353 struct mld2_report *pmr;
1354 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001355 const struct in6_addr *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int err;
1357 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1358 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1359 IPV6_TLV_PADN, 0 };
1360
1361 /* we assume size > sizeof(ra) here */
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001362 size += LL_ALLOCATED_SPACE(dev);
1363 /* limit our allocations to order-0 page */
1364 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1365 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001367 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return NULL;
1369
1370 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Neil Horman95c385b2007-04-25 17:08:10 -07001372 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001374 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 * when a valid link-local address is not available.
1376 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001377 saddr = &in6addr_any;
1378 } else
1379 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001381 ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1384
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001385 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001386 skb_put(skb, sizeof(*pmr));
1387 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001388 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1389 pmr->mld2r_resv1 = 0;
1390 pmr->mld2r_cksum = 0;
1391 pmr->mld2r_resv2 = 0;
1392 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return skb;
1394}
1395
1396static void mld_sendpack(struct sk_buff *skb)
1397{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001398 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001399 struct mld2_report *pmr =
1400 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001402 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001403 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int err;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001405 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00001406 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Eric Dumazet96b52e62010-06-07 21:05:02 +00001408 rcu_read_lock();
1409 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001410 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1411
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001412 payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1413 mldlen = skb->tail - skb->transport_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 pip6->payload_len = htons(payload_len);
1415
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001416 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1417 IPPROTO_ICMPV6,
1418 csum_partial(skb_transport_header(skb),
1419 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001420
Eric Dumazetadf30902009-06-02 05:19:30 +00001421 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001422
Eric Dumazetadf30902009-06-02 05:19:30 +00001423 if (!dst) {
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001424 err = -ENOMEM;
1425 goto err_out;
1426 }
1427
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001428 icmpv6_flow_init(net->ipv6.igmp_sk, &fl, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001429 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1430 skb->dev->ifindex);
1431
David S. Miller452edd52011-03-02 13:27:41 -08001432 dst = xfrm_lookup(net, dst, &fl, NULL, 0);
1433 err = 0;
1434 if (IS_ERR(dst)) {
1435 err = PTR_ERR(dst);
1436 dst = NULL;
1437 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001438 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001439 if (err)
1440 goto err_out;
1441
Neil Hormanedf391f2009-04-27 02:45:02 -07001442 payload_len = skb->len;
1443
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001444 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001445 dst_output);
1446out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (!err) {
Denis V. Lunev5a57d4c2008-10-08 10:34:14 -07001448 ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
Denis V. Luneve41b5362008-10-08 10:33:26 -07001449 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001450 IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 } else
Denis V. Lunev483a47d2008-10-08 11:09:27 -07001452 IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Eric Dumazet96b52e62010-06-07 21:05:02 +00001454 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001455 return;
1456
1457err_out:
1458 kfree_skb(skb);
1459 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
1462static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1463{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001464 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
1467static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1468 int type, struct mld2_grec **ppgr)
1469{
1470 struct net_device *dev = pmc->idev->dev;
1471 struct mld2_report *pmr;
1472 struct mld2_grec *pgr;
1473
1474 if (!skb)
1475 skb = mld_newpack(dev, dev->mtu);
1476 if (!skb)
1477 return NULL;
1478 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1479 pgr->grec_type = type;
1480 pgr->grec_auxwords = 0;
1481 pgr->grec_nsrcs = 0;
1482 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001483 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001484 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 *ppgr = pgr;
1486 return skb;
1487}
1488
1489#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1490 skb_tailroom(skb)) : 0)
1491
1492static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1493 int type, int gdeleted, int sdeleted)
1494{
1495 struct net_device *dev = pmc->idev->dev;
1496 struct mld2_report *pmr;
1497 struct mld2_grec *pgr = NULL;
1498 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001499 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 if (pmc->mca_flags & MAF_NOREPORT)
1502 return skb;
1503
1504 isquery = type == MLD2_MODE_IS_INCLUDE ||
1505 type == MLD2_MODE_IS_EXCLUDE;
1506 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1507 type == MLD2_CHANGE_TO_EXCLUDE;
1508
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001509 stotal = scount = 0;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1512
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001513 if (!*psf_list)
1514 goto empty_source;
1515
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001516 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /* EX and TO_EX get a fresh packet, if needed */
1519 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001520 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1522 if (skb)
1523 mld_sendpack(skb);
1524 skb = mld_newpack(dev, dev->mtu);
1525 }
1526 }
1527 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 psf_prev = NULL;
1529 for (psf=*psf_list; psf; psf=psf_next) {
1530 struct in6_addr *psrc;
1531
1532 psf_next = psf->sf_next;
1533
1534 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1535 psf_prev = psf;
1536 continue;
1537 }
1538
1539 /* clear marks on query responses */
1540 if (isquery)
1541 psf->sf_gsresp = 0;
1542
1543 if (AVAILABLE(skb) < sizeof(*psrc) +
1544 first*sizeof(struct mld2_grec)) {
1545 if (truncate && !first)
1546 break; /* truncate these */
1547 if (pgr)
1548 pgr->grec_nsrcs = htons(scount);
1549 if (skb)
1550 mld_sendpack(skb);
1551 skb = mld_newpack(dev, dev->mtu);
1552 first = 1;
1553 scount = 0;
1554 }
1555 if (first) {
1556 skb = add_grhead(skb, pmc, type, &pgr);
1557 first = 0;
1558 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001559 if (!skb)
1560 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1562 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001563 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1565 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1566 psf->sf_crcount--;
1567 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1568 if (psf_prev)
1569 psf_prev->sf_next = psf->sf_next;
1570 else
1571 *psf_list = psf->sf_next;
1572 kfree(psf);
1573 continue;
1574 }
1575 }
1576 psf_prev = psf;
1577 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001578
1579empty_source:
1580 if (!stotal) {
1581 if (type == MLD2_ALLOW_NEW_SOURCES ||
1582 type == MLD2_BLOCK_OLD_SOURCES)
1583 return skb;
1584 if (pmc->mca_crcount || isquery) {
1585 /* make sure we have room for group header */
1586 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1587 mld_sendpack(skb);
1588 skb = NULL; /* add_grhead will get a new one */
1589 }
1590 skb = add_grhead(skb, pmc, type, &pgr);
1591 }
1592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (pgr)
1594 pgr->grec_nsrcs = htons(scount);
1595
1596 if (isquery)
1597 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1598 return skb;
1599}
1600
1601static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1602{
1603 struct sk_buff *skb = NULL;
1604 int type;
1605
1606 if (!pmc) {
1607 read_lock_bh(&idev->lock);
1608 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1609 if (pmc->mca_flags & MAF_NOREPORT)
1610 continue;
1611 spin_lock_bh(&pmc->mca_lock);
1612 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1613 type = MLD2_MODE_IS_EXCLUDE;
1614 else
1615 type = MLD2_MODE_IS_INCLUDE;
1616 skb = add_grec(skb, pmc, type, 0, 0);
1617 spin_unlock_bh(&pmc->mca_lock);
1618 }
1619 read_unlock_bh(&idev->lock);
1620 } else {
1621 spin_lock_bh(&pmc->mca_lock);
1622 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1623 type = MLD2_MODE_IS_EXCLUDE;
1624 else
1625 type = MLD2_MODE_IS_INCLUDE;
1626 skb = add_grec(skb, pmc, type, 0, 0);
1627 spin_unlock_bh(&pmc->mca_lock);
1628 }
1629 if (skb)
1630 mld_sendpack(skb);
1631}
1632
1633/*
1634 * remove zero-count source records from a source filter list
1635 */
1636static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1637{
1638 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1639
1640 psf_prev = NULL;
1641 for (psf=*ppsf; psf; psf = psf_next) {
1642 psf_next = psf->sf_next;
1643 if (psf->sf_crcount == 0) {
1644 if (psf_prev)
1645 psf_prev->sf_next = psf->sf_next;
1646 else
1647 *ppsf = psf->sf_next;
1648 kfree(psf);
1649 } else
1650 psf_prev = psf;
1651 }
1652}
1653
1654static void mld_send_cr(struct inet6_dev *idev)
1655{
1656 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1657 struct sk_buff *skb = NULL;
1658 int type, dtype;
1659
1660 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001661 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /* deleted MCA's */
1664 pmc_prev = NULL;
1665 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1666 pmc_next = pmc->next;
1667 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1668 type = MLD2_BLOCK_OLD_SOURCES;
1669 dtype = MLD2_BLOCK_OLD_SOURCES;
1670 skb = add_grec(skb, pmc, type, 1, 0);
1671 skb = add_grec(skb, pmc, dtype, 1, 1);
1672 }
1673 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1675 type = MLD2_CHANGE_TO_INCLUDE;
1676 skb = add_grec(skb, pmc, type, 1, 0);
1677 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001678 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (pmc->mca_crcount == 0) {
1680 mld_clear_zeros(&pmc->mca_tomb);
1681 mld_clear_zeros(&pmc->mca_sources);
1682 }
1683 }
1684 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1685 !pmc->mca_sources) {
1686 if (pmc_prev)
1687 pmc_prev->next = pmc_next;
1688 else
1689 idev->mc_tomb = pmc_next;
1690 in6_dev_put(pmc->idev);
1691 kfree(pmc);
1692 } else
1693 pmc_prev = pmc;
1694 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001695 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 /* change recs */
1698 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1699 spin_lock_bh(&pmc->mca_lock);
1700 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1701 type = MLD2_BLOCK_OLD_SOURCES;
1702 dtype = MLD2_ALLOW_NEW_SOURCES;
1703 } else {
1704 type = MLD2_ALLOW_NEW_SOURCES;
1705 dtype = MLD2_BLOCK_OLD_SOURCES;
1706 }
1707 skb = add_grec(skb, pmc, type, 0, 0);
1708 skb = add_grec(skb, pmc, dtype, 0, 1); /* deleted sources */
1709
1710 /* filter mode changes */
1711 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1713 type = MLD2_CHANGE_TO_EXCLUDE;
1714 else
1715 type = MLD2_CHANGE_TO_INCLUDE;
1716 skb = add_grec(skb, pmc, type, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001717 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719 spin_unlock_bh(&pmc->mca_lock);
1720 }
1721 read_unlock_bh(&idev->lock);
1722 if (!skb)
1723 return;
1724 (void) mld_sendpack(skb);
1725}
1726
1727static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1728{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001729 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001730 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001732 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001733 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001734 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 struct in6_addr addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int err, len, payload_len, full_len;
1737 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1738 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1739 IPV6_TLV_PADN, 0 };
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001740 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00001741 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001743 if (type == ICMPV6_MGM_REDUCTION)
1744 snd_addr = &in6addr_linklocal_allrouters;
1745 else
1746 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1749 payload_len = len + sizeof(ra);
1750 full_len = sizeof(struct ipv6hdr) + payload_len;
1751
Neil Hormanedf391f2009-04-27 02:45:02 -07001752 rcu_read_lock();
1753 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1754 IPSTATS_MIB_OUT, full_len);
1755 rcu_read_unlock();
1756
Johannes Bergf5184d22008-05-12 20:48:31 -07001757 skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 if (skb == NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001760 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001761 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001762 IPSTATS_MIB_OUTDISCARDS);
1763 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return;
1765 }
1766
1767 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Neil Horman95c385b2007-04-25 17:08:10 -07001769 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001771 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 * when a valid link-local address is not available.
1773 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001774 saddr = &in6addr_any;
1775 } else
1776 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001778 ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1781
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001782 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1783 memset(hdr, 0, sizeof(struct mld_msg));
1784 hdr->mld_type = type;
1785 ipv6_addr_copy(&hdr->mld_mca, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001787 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1788 IPPROTO_ICMPV6,
1789 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Eric Dumazet96b52e62010-06-07 21:05:02 +00001791 rcu_read_lock();
1792 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Eric Dumazetadf30902009-06-02 05:19:30 +00001794 dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1795 if (!dst) {
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001796 err = -ENOMEM;
1797 goto err_out;
1798 }
1799
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001800 icmpv6_flow_init(sk, &fl, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001801 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1802 skb->dev->ifindex);
1803
David S. Miller452edd52011-03-02 13:27:41 -08001804 dst = xfrm_lookup(net, dst, &fl, NULL, 0);
1805 if (IS_ERR(dst)) {
1806 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001807 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08001808 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001809
Eric Dumazetadf30902009-06-02 05:19:30 +00001810 skb_dst_set(skb, dst);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001811 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001812 dst_output);
1813out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001815 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001816 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001817 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001819 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Eric Dumazet96b52e62010-06-07 21:05:02 +00001821 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001823
1824err_out:
1825 kfree_skb(skb);
1826 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
1829static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1830 struct in6_addr *psfsrc)
1831{
1832 struct ip6_sf_list *psf, *psf_prev;
1833 int rv = 0;
1834
1835 psf_prev = NULL;
1836 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1837 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1838 break;
1839 psf_prev = psf;
1840 }
1841 if (!psf || psf->sf_count[sfmode] == 0) {
1842 /* source filter not found, or count wrong => bug */
1843 return -ESRCH;
1844 }
1845 psf->sf_count[sfmode]--;
1846 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1847 struct inet6_dev *idev = pmc->idev;
1848
1849 /* no more filters for this source */
1850 if (psf_prev)
1851 psf_prev->sf_next = psf->sf_next;
1852 else
1853 pmc->mca_sources = psf->sf_next;
1854 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1855 !MLD_V1_SEEN(idev)) {
1856 psf->sf_crcount = idev->mc_qrv;
1857 psf->sf_next = pmc->mca_tomb;
1858 pmc->mca_tomb = psf;
1859 rv = 1;
1860 } else
1861 kfree(psf);
1862 }
1863 return rv;
1864}
1865
1866static int ip6_mc_del_src(struct inet6_dev *idev, struct in6_addr *pmca,
1867 int sfmode, int sfcount, struct in6_addr *psfsrc,
1868 int delta)
1869{
1870 struct ifmcaddr6 *pmc;
1871 int changerec = 0;
1872 int i, err;
1873
1874 if (!idev)
1875 return -ENODEV;
1876 read_lock_bh(&idev->lock);
1877 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1878 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1879 break;
1880 }
1881 if (!pmc) {
1882 /* MCA not found?? bug */
1883 read_unlock_bh(&idev->lock);
1884 return -ESRCH;
1885 }
1886 spin_lock_bh(&pmc->mca_lock);
1887 sf_markstate(pmc);
1888 if (!delta) {
1889 if (!pmc->mca_sfcount[sfmode]) {
1890 spin_unlock_bh(&pmc->mca_lock);
1891 read_unlock_bh(&idev->lock);
1892 return -EINVAL;
1893 }
1894 pmc->mca_sfcount[sfmode]--;
1895 }
1896 err = 0;
1897 for (i=0; i<sfcount; i++) {
1898 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1899
1900 changerec |= rv > 0;
1901 if (!err && rv < 0)
1902 err = rv;
1903 }
1904 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1905 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1906 pmc->mca_sfcount[MCAST_INCLUDE]) {
1907 struct ip6_sf_list *psf;
1908
1909 /* filter mode change */
1910 pmc->mca_sfmode = MCAST_INCLUDE;
1911 pmc->mca_crcount = idev->mc_qrv;
1912 idev->mc_ifc_count = pmc->mca_crcount;
1913 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1914 psf->sf_crcount = 0;
1915 mld_ifc_event(pmc->idev);
1916 } else if (sf_setstate(pmc) || changerec)
1917 mld_ifc_event(pmc->idev);
1918 spin_unlock_bh(&pmc->mca_lock);
1919 read_unlock_bh(&idev->lock);
1920 return err;
1921}
1922
1923/*
1924 * Add multicast single-source filter to the interface list
1925 */
1926static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1927 struct in6_addr *psfsrc, int delta)
1928{
1929 struct ip6_sf_list *psf, *psf_prev;
1930
1931 psf_prev = NULL;
1932 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1933 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1934 break;
1935 psf_prev = psf;
1936 }
1937 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001938 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (!psf)
1940 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 psf->sf_addr = *psfsrc;
1943 if (psf_prev) {
1944 psf_prev->sf_next = psf;
1945 } else
1946 pmc->mca_sources = psf;
1947 }
1948 psf->sf_count[sfmode]++;
1949 return 0;
1950}
1951
1952static void sf_markstate(struct ifmcaddr6 *pmc)
1953{
1954 struct ip6_sf_list *psf;
1955 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1956
1957 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1958 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1959 psf->sf_oldin = mca_xcount ==
1960 psf->sf_count[MCAST_EXCLUDE] &&
1961 !psf->sf_count[MCAST_INCLUDE];
1962 } else
1963 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1964}
1965
1966static int sf_setstate(struct ifmcaddr6 *pmc)
1967{
David L Stevens7add2a42006-01-24 13:06:39 -08001968 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1970 int qrv = pmc->idev->mc_qrv;
1971 int new_in, rv;
1972
1973 rv = 0;
1974 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1975 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1976 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1977 !psf->sf_count[MCAST_INCLUDE];
1978 } else
1979 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08001980 if (new_in) {
1981 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05001982 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08001983
1984 for (dpsf=pmc->mca_tomb; dpsf;
1985 dpsf=dpsf->sf_next) {
1986 if (ipv6_addr_equal(&dpsf->sf_addr,
1987 &psf->sf_addr))
1988 break;
1989 prev = dpsf;
1990 }
1991 if (dpsf) {
1992 if (prev)
1993 prev->sf_next = dpsf->sf_next;
1994 else
1995 pmc->mca_tomb = dpsf->sf_next;
1996 kfree(dpsf);
1997 }
1998 psf->sf_crcount = qrv;
1999 rv++;
2000 }
2001 } else if (psf->sf_oldin) {
2002 psf->sf_crcount = 0;
2003 /*
2004 * add or update "delete" records if an active filter
2005 * is now inactive
2006 */
2007 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2008 if (ipv6_addr_equal(&dpsf->sf_addr,
2009 &psf->sf_addr))
2010 break;
2011 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002012 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002013 if (!dpsf)
2014 continue;
2015 *dpsf = *psf;
2016 /* pmc->mca_lock held by callers */
2017 dpsf->sf_next = pmc->mca_tomb;
2018 pmc->mca_tomb = dpsf;
2019 }
2020 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 rv++;
2022 }
2023 }
2024 return rv;
2025}
2026
2027/*
2028 * Add multicast source filter list to the interface list
2029 */
2030static int ip6_mc_add_src(struct inet6_dev *idev, struct in6_addr *pmca,
2031 int sfmode, int sfcount, struct in6_addr *psfsrc,
2032 int delta)
2033{
2034 struct ifmcaddr6 *pmc;
2035 int isexclude;
2036 int i, err;
2037
2038 if (!idev)
2039 return -ENODEV;
2040 read_lock_bh(&idev->lock);
2041 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2042 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2043 break;
2044 }
2045 if (!pmc) {
2046 /* MCA not found?? bug */
2047 read_unlock_bh(&idev->lock);
2048 return -ESRCH;
2049 }
2050 spin_lock_bh(&pmc->mca_lock);
2051
2052 sf_markstate(pmc);
2053 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2054 if (!delta)
2055 pmc->mca_sfcount[sfmode]++;
2056 err = 0;
2057 for (i=0; i<sfcount; i++) {
2058 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2059 if (err)
2060 break;
2061 }
2062 if (err) {
2063 int j;
2064
2065 if (!delta)
2066 pmc->mca_sfcount[sfmode]--;
2067 for (j=0; j<i; j++)
2068 (void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2069 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 struct ip6_sf_list *psf;
2071
2072 /* filter mode change */
2073 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2074 pmc->mca_sfmode = MCAST_EXCLUDE;
2075 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2076 pmc->mca_sfmode = MCAST_INCLUDE;
2077 /* else no filters; keep old mode for reports */
2078
2079 pmc->mca_crcount = idev->mc_qrv;
2080 idev->mc_ifc_count = pmc->mca_crcount;
2081 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2082 psf->sf_crcount = 0;
2083 mld_ifc_event(idev);
2084 } else if (sf_setstate(pmc))
2085 mld_ifc_event(idev);
2086 spin_unlock_bh(&pmc->mca_lock);
2087 read_unlock_bh(&idev->lock);
2088 return err;
2089}
2090
2091static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2092{
2093 struct ip6_sf_list *psf, *nextpsf;
2094
2095 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2096 nextpsf = psf->sf_next;
2097 kfree(psf);
2098 }
2099 pmc->mca_tomb = NULL;
2100 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2101 nextpsf = psf->sf_next;
2102 kfree(psf);
2103 }
2104 pmc->mca_sources = NULL;
2105 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002106 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2108}
2109
2110
2111static void igmp6_join_group(struct ifmcaddr6 *ma)
2112{
2113 unsigned long delay;
2114
2115 if (ma->mca_flags & MAF_NOREPORT)
2116 return;
2117
2118 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2119
2120 delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2121
2122 spin_lock_bh(&ma->mca_lock);
2123 if (del_timer(&ma->mca_timer)) {
2124 atomic_dec(&ma->mca_refcnt);
2125 delay = ma->mca_timer.expires - jiffies;
2126 }
2127
2128 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2129 atomic_inc(&ma->mca_refcnt);
2130 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2131 spin_unlock_bh(&ma->mca_lock);
2132}
2133
2134static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2135 struct inet6_dev *idev)
2136{
2137 int err;
2138
David L Stevens5ab4a6c2005-12-27 14:03:00 -08002139 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2140 * so no other readers or writers of iml or its sflist
2141 */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002142 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 /* any-source empty exclude case */
2144 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2145 }
2146 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2147 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2148 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2149 iml->sflist = NULL;
2150 return err;
2151}
2152
2153static void igmp6_leave_group(struct ifmcaddr6 *ma)
2154{
2155 if (MLD_V1_SEEN(ma->idev)) {
2156 if (ma->mca_flags & MAF_LAST_REPORTER)
2157 igmp6_send(&ma->mca_addr, ma->idev->dev,
2158 ICMPV6_MGM_REDUCTION);
2159 } else {
2160 mld_add_delrec(ma->idev, ma);
2161 mld_ifc_event(ma->idev);
2162 }
2163}
2164
2165static void mld_gq_timer_expire(unsigned long data)
2166{
2167 struct inet6_dev *idev = (struct inet6_dev *)data;
2168
2169 idev->mc_gq_running = 0;
2170 mld_send_report(idev, NULL);
2171 __in6_dev_put(idev);
2172}
2173
2174static void mld_ifc_timer_expire(unsigned long data)
2175{
2176 struct inet6_dev *idev = (struct inet6_dev *)data;
2177
2178 mld_send_cr(idev);
2179 if (idev->mc_ifc_count) {
2180 idev->mc_ifc_count--;
2181 if (idev->mc_ifc_count)
2182 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2183 }
2184 __in6_dev_put(idev);
2185}
2186
2187static void mld_ifc_event(struct inet6_dev *idev)
2188{
2189 if (MLD_V1_SEEN(idev))
2190 return;
2191 idev->mc_ifc_count = idev->mc_qrv;
2192 mld_ifc_start_timer(idev, 1);
2193}
2194
2195
2196static void igmp6_timer_handler(unsigned long data)
2197{
2198 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2199
2200 if (MLD_V1_SEEN(ma->idev))
2201 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2202 else
2203 mld_send_report(ma->idev, ma);
2204
2205 spin_lock(&ma->mca_lock);
2206 ma->mca_flags |= MAF_LAST_REPORTER;
2207 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2208 spin_unlock(&ma->mca_lock);
2209 ma_put(ma);
2210}
2211
Moni Shoua75c78502009-09-15 02:37:40 -07002212/* Device changing type */
2213
2214void ipv6_mc_unmap(struct inet6_dev *idev)
2215{
2216 struct ifmcaddr6 *i;
2217
2218 /* Install multicast list, except for all-nodes (already installed) */
2219
2220 read_lock_bh(&idev->lock);
2221 for (i = idev->mc_list; i; i = i->next)
2222 igmp6_group_dropped(i);
2223 read_unlock_bh(&idev->lock);
2224}
2225
2226void ipv6_mc_remap(struct inet6_dev *idev)
2227{
2228 ipv6_mc_up(idev);
2229}
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231/* Device going down */
2232
2233void ipv6_mc_down(struct inet6_dev *idev)
2234{
2235 struct ifmcaddr6 *i;
2236
2237 /* Withdraw multicast list */
2238
2239 read_lock_bh(&idev->lock);
2240 idev->mc_ifc_count = 0;
2241 if (del_timer(&idev->mc_ifc_timer))
2242 __in6_dev_put(idev);
2243 idev->mc_gq_running = 0;
2244 if (del_timer(&idev->mc_gq_timer))
2245 __in6_dev_put(idev);
2246
2247 for (i = idev->mc_list; i; i=i->next)
2248 igmp6_group_dropped(i);
2249 read_unlock_bh(&idev->lock);
2250
2251 mld_clear_delrec(idev);
2252}
2253
2254
2255/* Device going up */
2256
2257void ipv6_mc_up(struct inet6_dev *idev)
2258{
2259 struct ifmcaddr6 *i;
2260
2261 /* Install multicast list, except for all-nodes (already installed) */
2262
2263 read_lock_bh(&idev->lock);
2264 for (i = idev->mc_list; i; i=i->next)
2265 igmp6_group_added(i);
2266 read_unlock_bh(&idev->lock);
2267}
2268
2269/* IPv6 device initialization. */
2270
2271void ipv6_mc_init_dev(struct inet6_dev *idev)
2272{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002274 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 idev->mc_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002276 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2277 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 idev->mc_tomb = NULL;
2279 idev->mc_ifc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002280 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2281 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 idev->mc_qrv = MLD_QRV_DEFAULT;
2283 idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2284 idev->mc_v1_seen = 0;
2285 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
2288/*
2289 * Device is about to be destroyed: clean up.
2290 */
2291
2292void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2293{
2294 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 /* Deactivate timers */
2297 ipv6_mc_down(idev);
2298
2299 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2301 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2302 * fail.
2303 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002304 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002306 if (idev->cnf.forwarding)
2307 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 write_lock_bh(&idev->lock);
2310 while ((i = idev->mc_list) != NULL) {
2311 idev->mc_list = i->next;
2312 write_unlock_bh(&idev->lock);
2313
2314 igmp6_group_dropped(i);
2315 ma_put(i);
2316
2317 write_lock_bh(&idev->lock);
2318 }
2319 write_unlock_bh(&idev->lock);
2320}
2321
2322#ifdef CONFIG_PROC_FS
2323struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002324 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 struct net_device *dev;
2326 struct inet6_dev *idev;
2327};
2328
2329#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2330
2331static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2332{
2333 struct ifmcaddr6 *im = NULL;
2334 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002335 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Pavel Emelianov7562f872007-05-03 15:13:45 -07002337 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002338 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002340 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (!idev)
2342 continue;
2343 read_lock_bh(&idev->lock);
2344 im = idev->mc_list;
2345 if (im) {
2346 state->idev = idev;
2347 break;
2348 }
2349 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 return im;
2352}
2353
2354static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2355{
2356 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2357
2358 im = im->next;
2359 while (!im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002360 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002362
2363 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 if (!state->dev) {
2365 state->idev = NULL;
2366 break;
2367 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002368 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (!state->idev)
2370 continue;
2371 read_lock_bh(&state->idev->lock);
2372 im = state->idev->mc_list;
2373 }
2374 return im;
2375}
2376
2377static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2378{
2379 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2380 if (im)
2381 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2382 --pos;
2383 return pos ? NULL : im;
2384}
2385
2386static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002387 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Eric Dumazetce81b762009-11-11 17:34:30 +00002389 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return igmp6_mc_get_idx(seq, *pos);
2391}
2392
2393static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2394{
Eric Dumazetce81b762009-11-11 17:34:30 +00002395 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 ++*pos;
2398 return im;
2399}
2400
2401static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002402 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
2404 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002405
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (likely(state->idev != NULL)) {
2407 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 state->idev = NULL;
2409 }
2410 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002411 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412}
2413
2414static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2415{
2416 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2417 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2418
2419 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002420 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002422 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 im->mca_users, im->mca_flags,
2424 (im->mca_flags&MAF_TIMER_RUNNING) ?
2425 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2426 return 0;
2427}
2428
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002429static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 .start = igmp6_mc_seq_start,
2431 .next = igmp6_mc_seq_next,
2432 .stop = igmp6_mc_seq_stop,
2433 .show = igmp6_mc_seq_show,
2434};
2435
2436static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2437{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002438 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2439 sizeof(struct igmp6_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440}
2441
Arjan van de Ven9a321442007-02-12 00:55:35 -08002442static const struct file_operations igmp6_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 .owner = THIS_MODULE,
2444 .open = igmp6_mc_seq_open,
2445 .read = seq_read,
2446 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002447 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448};
2449
2450struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002451 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 struct net_device *dev;
2453 struct inet6_dev *idev;
2454 struct ifmcaddr6 *im;
2455};
2456
2457#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2458
2459static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2460{
2461 struct ip6_sf_list *psf = NULL;
2462 struct ifmcaddr6 *im = NULL;
2463 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002464 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Pavel Emelianov7562f872007-05-03 15:13:45 -07002466 state->idev = NULL;
2467 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002468 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002470 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (unlikely(idev == NULL))
2472 continue;
2473 read_lock_bh(&idev->lock);
2474 im = idev->mc_list;
2475 if (likely(im != NULL)) {
2476 spin_lock_bh(&im->mca_lock);
2477 psf = im->mca_sources;
2478 if (likely(psf != NULL)) {
2479 state->im = im;
2480 state->idev = idev;
2481 break;
2482 }
2483 spin_unlock_bh(&im->mca_lock);
2484 }
2485 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487 return psf;
2488}
2489
2490static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2491{
2492 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2493
2494 psf = psf->sf_next;
2495 while (!psf) {
2496 spin_unlock_bh(&state->im->mca_lock);
2497 state->im = state->im->next;
2498 while (!state->im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002499 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002501
2502 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (!state->dev) {
2504 state->idev = NULL;
2505 goto out;
2506 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002507 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (!state->idev)
2509 continue;
2510 read_lock_bh(&state->idev->lock);
2511 state->im = state->idev->mc_list;
2512 }
2513 if (!state->im)
2514 break;
2515 spin_lock_bh(&state->im->mca_lock);
2516 psf = state->im->mca_sources;
2517 }
2518out:
2519 return psf;
2520}
2521
2522static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2523{
2524 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2525 if (psf)
2526 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2527 --pos;
2528 return pos ? NULL : psf;
2529}
2530
2531static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002532 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Eric Dumazetce81b762009-11-11 17:34:30 +00002534 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2536}
2537
2538static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2539{
2540 struct ip6_sf_list *psf;
2541 if (v == SEQ_START_TOKEN)
2542 psf = igmp6_mcf_get_first(seq);
2543 else
2544 psf = igmp6_mcf_get_next(seq, v);
2545 ++*pos;
2546 return psf;
2547}
2548
2549static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002550 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
2552 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2553 if (likely(state->im != NULL)) {
2554 spin_unlock_bh(&state->im->mca_lock);
2555 state->im = NULL;
2556 }
2557 if (likely(state->idev != NULL)) {
2558 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 state->idev = NULL;
2560 }
2561 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002562 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
2564
2565static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2566{
2567 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2568 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2569
2570 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002571 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 "%3s %6s "
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002573 "%32s %32s %6s %6s\n", "Idx",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 "Device", "Multicast Address",
2575 "Source Address", "INC", "EXC");
2576 } else {
2577 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002578 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002580 &state->im->mca_addr,
2581 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 psf->sf_count[MCAST_INCLUDE],
2583 psf->sf_count[MCAST_EXCLUDE]);
2584 }
2585 return 0;
2586}
2587
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002588static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 .start = igmp6_mcf_seq_start,
2590 .next = igmp6_mcf_seq_next,
2591 .stop = igmp6_mcf_seq_stop,
2592 .show = igmp6_mcf_seq_show,
2593};
2594
2595static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2596{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002597 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2598 sizeof(struct igmp6_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
Arjan van de Ven9a321442007-02-12 00:55:35 -08002601static const struct file_operations igmp6_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 .owner = THIS_MODULE,
2603 .open = igmp6_mcf_seq_open,
2604 .read = seq_read,
2605 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002606 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607};
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002608
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002609static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002610{
2611 int err;
2612
2613 err = -ENOMEM;
2614 if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2615 goto out;
2616 if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2617 &igmp6_mcf_seq_fops))
2618 goto out_proc_net_igmp6;
2619
2620 err = 0;
2621out:
2622 return err;
2623
2624out_proc_net_igmp6:
2625 proc_net_remove(net, "igmp6");
2626 goto out;
2627}
2628
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002629static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002630{
2631 proc_net_remove(net, "mcfilter6");
2632 proc_net_remove(net, "igmp6");
2633}
2634#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002635static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002636{
2637 return 0;
2638}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002639static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002640{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002641}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642#endif
2643
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002644static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 int err;
2647
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002648 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2649 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 if (err < 0) {
2651 printk(KERN_ERR
2652 "Failed to initialize the IGMP6 control socket (err %d).\n",
2653 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002654 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 }
2656
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002657 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002659 err = igmp6_proc_init(net);
2660 if (err)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002661 goto out_sock_create;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002662out:
2663 return err;
2664
2665out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002666 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002667 goto out;
2668}
2669
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002670static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002671{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002672 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002673 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002674}
2675
2676static struct pernet_operations igmp6_net_ops = {
2677 .init = igmp6_net_init,
2678 .exit = igmp6_net_exit,
2679};
2680
2681int __init igmp6_init(void)
2682{
2683 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
2686void igmp6_cleanup(void)
2687{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002688 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}