mcast.c 62.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *	Multicast support for IPv6
3
 *	Linux INET6 implementation
L
Linus Torvalds 已提交
4 5
 *
 *	Authors:
6
 *	Pedro Roque		<roque@di.fc.ul.pt>
L
Linus Torvalds 已提交
7
 *
8
 *	Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
 *
 *	This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */

/* Changes:
 *
 *	yoshfuji	: fix format of router-alert option
 *	YOSHIFUJI Hideaki @USAGI:
 *		Fixed source address for MLD message based on
 *		<draft-ietf-magma-mld-source-05.txt>.
 *	YOSHIFUJI Hideaki @USAGI:
 *		- Ignore Queries for invalid addresses.
 *		- MLD for link-local addresses.
 *	David L Stevens <dlstevens@us.ibm.com>:
 *		- MLDv2 support
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/jiffies.h>
#include <linux/times.h>
#include <linux/net.h>
#include <linux/in.h>
#include <linux/in6.h>
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <linux/route.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
46
#include <linux/slab.h>
47
#include <net/mld.h>
L
Linus Torvalds 已提交
48 49 50 51

#include <linux/netfilter.h>
#include <linux/netfilter_ipv6.h>

52
#include <net/net_namespace.h>
L
Linus Torvalds 已提交
53 54 55 56 57 58 59 60 61
#include <net/sock.h>
#include <net/snmp.h>

#include <net/ipv6.h>
#include <net/protocol.h>
#include <net/if_inet6.h>
#include <net/ndisc.h>
#include <net/addrconf.h>
#include <net/ip6_route.h>
62
#include <net/inet_common.h>
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74

#include <net/ip6_checksum.h>

/* Set to 3 to get tracing... */
#define MCAST_DEBUG 2

#if MCAST_DEBUG >= 3
#define MDBG(x) printk x
#else
#define MDBG(x)
#endif

75 76 77 78 79
/* Ensure that we have struct in6_addr aligned on 32bit word. */
static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
	BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
	BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
	BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
L
Linus Torvalds 已提交
80 81 82 83 84
};

static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;

/* Big mc list lock for all the sockets */
E
Eric Dumazet 已提交
85
static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94

static void igmp6_join_group(struct ifmcaddr6 *ma);
static void igmp6_leave_group(struct ifmcaddr6 *ma);
static void igmp6_timer_handler(unsigned long data);

static void mld_gq_timer_expire(unsigned long data);
static void mld_ifc_timer_expire(unsigned long data);
static void mld_ifc_event(struct inet6_dev *idev);
static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
95
static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
L
Linus Torvalds 已提交
96 97 98 99
static void mld_clear_delrec(struct inet6_dev *idev);
static int sf_setstate(struct ifmcaddr6 *pmc);
static void sf_markstate(struct ifmcaddr6 *pmc);
static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
100 101
static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
			  int sfmode, int sfcount, const struct in6_addr *psfsrc,
L
Linus Torvalds 已提交
102
			  int delta);
103 104
static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
			  int sfmode, int sfcount, const struct in6_addr *psfsrc,
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112
			  int delta);
static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
			    struct inet6_dev *idev);


#define IGMP6_UNSOLICITED_IVAL	(10*HZ)
#define MLD_QRV_DEFAULT		2

113
#define MLD_V1_SEEN(idev) (dev_net((idev)->dev)->ipv6.devconf_all->force_mld_version == 1 || \
L
Linus Torvalds 已提交
114 115 116 117
		(idev)->cnf.force_mld_version == 1 || \
		((idev)->mc_v1_seen && \
		time_before(jiffies, (idev)->mc_v1_seen)))

118
#define IPV6_MLD_MAX_MSF	64
L
Linus Torvalds 已提交
119

120
int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
L
Linus Torvalds 已提交
121 122 123 124 125

/*
 *	socket join on multicast group
 */

E
Eric Dumazet 已提交
126 127 128 129 130
#define for_each_pmc_rcu(np, pmc)				\
	for (pmc = rcu_dereference(np->ipv6_mc_list);		\
	     pmc != NULL;					\
	     pmc = rcu_dereference(pmc->next))

131
int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
L
Linus Torvalds 已提交
132 133 134 135
{
	struct net_device *dev = NULL;
	struct ipv6_mc_socklist *mc_lst;
	struct ipv6_pinfo *np = inet6_sk(sk);
136
	struct net *net = sock_net(sk);
L
Linus Torvalds 已提交
137 138 139 140 141
	int err;

	if (!ipv6_addr_is_multicast(addr))
		return -EINVAL;

E
Eric Dumazet 已提交
142 143
	rcu_read_lock();
	for_each_pmc_rcu(np, mc_lst) {
144 145
		if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
		    ipv6_addr_equal(&mc_lst->addr, addr)) {
E
Eric Dumazet 已提交
146
			rcu_read_unlock();
147 148 149
			return -EADDRINUSE;
		}
	}
E
Eric Dumazet 已提交
150
	rcu_read_unlock();
151

L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159
	mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);

	if (mc_lst == NULL)
		return -ENOMEM;

	mc_lst->next = NULL;
	ipv6_addr_copy(&mc_lst->addr, addr);

E
Eric Dumazet 已提交
160
	rcu_read_lock();
L
Linus Torvalds 已提交
161 162
	if (ifindex == 0) {
		struct rt6_info *rt;
163
		rt = rt6_lookup(net, addr, NULL, 0, 0);
L
Linus Torvalds 已提交
164 165
		if (rt) {
			dev = rt->rt6i_dev;
166
			dst_release(&rt->dst);
L
Linus Torvalds 已提交
167 168
		}
	} else
E
Eric Dumazet 已提交
169
		dev = dev_get_by_index_rcu(net, ifindex);
L
Linus Torvalds 已提交
170 171

	if (dev == NULL) {
E
Eric Dumazet 已提交
172
		rcu_read_unlock();
L
Linus Torvalds 已提交
173 174 175 176 177 178
		sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
		return -ENODEV;
	}

	mc_lst->ifindex = dev->ifindex;
	mc_lst->sfmode = MCAST_EXCLUDE;
179
	rwlock_init(&mc_lst->sflock);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188
	mc_lst->sflist = NULL;

	/*
	 *	now add/increase the group membership on the device
	 */

	err = ipv6_dev_mc_inc(dev, addr);

	if (err) {
E
Eric Dumazet 已提交
189
		rcu_read_unlock();
L
Linus Torvalds 已提交
190 191 192 193
		sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
		return err;
	}

E
Eric Dumazet 已提交
194
	spin_lock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
195
	mc_lst->next = np->ipv6_mc_list;
E
Eric Dumazet 已提交
196 197
	rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
	spin_unlock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
198

E
Eric Dumazet 已提交
199
	rcu_read_unlock();
L
Linus Torvalds 已提交
200 201 202 203

	return 0;
}

E
Eric Dumazet 已提交
204 205 206 207
static void ipv6_mc_socklist_reclaim(struct rcu_head *head)
{
	kfree(container_of(head, struct ipv6_mc_socklist, rcu));
}
L
Linus Torvalds 已提交
208 209 210
/*
 *	socket leave on multicast group
 */
211
int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
L
Linus Torvalds 已提交
212 213
{
	struct ipv6_pinfo *np = inet6_sk(sk);
E
Eric Dumazet 已提交
214 215
	struct ipv6_mc_socklist *mc_lst;
	struct ipv6_mc_socklist __rcu **lnk;
216
	struct net *net = sock_net(sk);
L
Linus Torvalds 已提交
217

E
Eric Dumazet 已提交
218 219 220 221 222
	spin_lock(&ipv6_sk_mc_lock);
	for (lnk = &np->ipv6_mc_list;
	     (mc_lst = rcu_dereference_protected(*lnk,
			lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
	      lnk = &mc_lst->next) {
L
Linus Torvalds 已提交
223 224 225 226 227
		if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
		    ipv6_addr_equal(&mc_lst->addr, addr)) {
			struct net_device *dev;

			*lnk = mc_lst->next;
E
Eric Dumazet 已提交
228
			spin_unlock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
229

E
Eric Dumazet 已提交
230 231
			rcu_read_lock();
			dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
232
			if (dev != NULL) {
E
Eric Dumazet 已提交
233
				struct inet6_dev *idev = __in6_dev_get(dev);
L
Linus Torvalds 已提交
234

235
				(void) ip6_mc_leave_src(sk, mc_lst, idev);
E
Eric Dumazet 已提交
236
				if (idev)
L
Linus Torvalds 已提交
237
					__ipv6_dev_mc_dec(idev, &mc_lst->addr);
238 239
			} else
				(void) ip6_mc_leave_src(sk, mc_lst, NULL);
E
Eric Dumazet 已提交
240
			rcu_read_unlock();
E
Eric Dumazet 已提交
241 242
			atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
			call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);
L
Linus Torvalds 已提交
243 244 245
			return 0;
		}
	}
E
Eric Dumazet 已提交
246
	spin_unlock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
247

248
	return -EADDRNOTAVAIL;
L
Linus Torvalds 已提交
249 250
}

E
Eric Dumazet 已提交
251 252
/* called with rcu_read_lock() */
static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
253
					     const struct in6_addr *group,
E
Eric Dumazet 已提交
254
					     int ifindex)
L
Linus Torvalds 已提交
255 256 257 258 259
{
	struct net_device *dev = NULL;
	struct inet6_dev *idev = NULL;

	if (ifindex == 0) {
E
Eric Dumazet 已提交
260
		struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
L
Linus Torvalds 已提交
261 262 263 264

		if (rt) {
			dev = rt->rt6i_dev;
			dev_hold(dev);
265
			dst_release(&rt->dst);
L
Linus Torvalds 已提交
266 267
		}
	} else
E
Eric Dumazet 已提交
268
		dev = dev_get_by_index_rcu(net, ifindex);
L
Linus Torvalds 已提交
269 270

	if (!dev)
E
Eric Dumazet 已提交
271 272
		return NULL;
	idev = __in6_dev_get(dev);
273
	if (!idev)
274
		return NULL;
L
Linus Torvalds 已提交
275
	read_lock_bh(&idev->lock);
E
Eric Dumazet 已提交
276 277 278 279
	if (idev->dead) {
		read_unlock_bh(&idev->lock);
		return NULL;
	}
L
Linus Torvalds 已提交
280 281 282 283 284 285 286
	return idev;
}

void ipv6_sock_mc_close(struct sock *sk)
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct ipv6_mc_socklist *mc_lst;
287
	struct net *net = sock_net(sk);
L
Linus Torvalds 已提交
288

E
Eric Dumazet 已提交
289 290 291
	spin_lock(&ipv6_sk_mc_lock);
	while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
				lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
L
Linus Torvalds 已提交
292 293 294
		struct net_device *dev;

		np->ipv6_mc_list = mc_lst->next;
E
Eric Dumazet 已提交
295
		spin_unlock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
296

E
Eric Dumazet 已提交
297 298
		rcu_read_lock();
		dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
L
Linus Torvalds 已提交
299
		if (dev) {
E
Eric Dumazet 已提交
300
			struct inet6_dev *idev = __in6_dev_get(dev);
L
Linus Torvalds 已提交
301

302
			(void) ip6_mc_leave_src(sk, mc_lst, idev);
E
Eric Dumazet 已提交
303
			if (idev)
L
Linus Torvalds 已提交
304
				__ipv6_dev_mc_dec(idev, &mc_lst->addr);
305 306
		} else
			(void) ip6_mc_leave_src(sk, mc_lst, NULL);
E
Eric Dumazet 已提交
307
		rcu_read_unlock();
L
Linus Torvalds 已提交
308

E
Eric Dumazet 已提交
309 310 311 312
		atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
		call_rcu(&mc_lst->rcu, ipv6_mc_socklist_reclaim);

		spin_lock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
313
	}
E
Eric Dumazet 已提交
314
	spin_unlock(&ipv6_sk_mc_lock);
L
Linus Torvalds 已提交
315 316 317 318 319 320 321 322 323 324
}

int ip6_mc_source(int add, int omode, struct sock *sk,
	struct group_source_req *pgsr)
{
	struct in6_addr *source, *group;
	struct ipv6_mc_socklist *pmc;
	struct inet6_dev *idev;
	struct ipv6_pinfo *inet6 = inet6_sk(sk);
	struct ip6_sf_socklist *psl;
325
	struct net *net = sock_net(sk);
L
Linus Torvalds 已提交
326
	int i, j, rv;
327
	int leavegroup = 0;
328
	int pmclocked = 0;
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336
	int err;

	source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
	group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;

	if (!ipv6_addr_is_multicast(group))
		return -EINVAL;

E
Eric Dumazet 已提交
337 338 339 340
	rcu_read_lock();
	idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
	if (!idev) {
		rcu_read_unlock();
L
Linus Torvalds 已提交
341
		return -ENODEV;
E
Eric Dumazet 已提交
342
	}
L
Linus Torvalds 已提交
343 344 345

	err = -EADDRNOTAVAIL;

E
Eric Dumazet 已提交
346
	for_each_pmc_rcu(inet6, pmc) {
L
Linus Torvalds 已提交
347 348 349 350 351
		if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
			continue;
		if (ipv6_addr_equal(&pmc->addr, group))
			break;
	}
352 353
	if (!pmc) {		/* must have a prior join */
		err = -EINVAL;
L
Linus Torvalds 已提交
354
		goto done;
355
	}
L
Linus Torvalds 已提交
356 357
	/* if a source filter was set, must be the same mode as before */
	if (pmc->sflist) {
358 359
		if (pmc->sfmode != omode) {
			err = -EINVAL;
L
Linus Torvalds 已提交
360
			goto done;
361
		}
L
Linus Torvalds 已提交
362 363 364 365 366 367 368
	} else if (pmc->sfmode != omode) {
		/* allow mode switches for empty-set filters */
		ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
		ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
		pmc->sfmode = omode;
	}

E
Eric Dumazet 已提交
369
	write_lock(&pmc->sflock);
370 371
	pmclocked = 1;

L
Linus Torvalds 已提交
372 373 374
	psl = pmc->sflist;
	if (!add) {
		if (!psl)
375
			goto done;	/* err = -EADDRNOTAVAIL */
L
Linus Torvalds 已提交
376 377 378 379 380 381 382 383
		rv = !0;
		for (i=0; i<psl->sl_count; i++) {
			rv = memcmp(&psl->sl_addr[i], source,
				sizeof(struct in6_addr));
			if (rv == 0)
				break;
		}
		if (rv)		/* source not found */
384
			goto done;	/* err = -EADDRNOTAVAIL */
L
Linus Torvalds 已提交
385

386 387 388 389 390 391
		/* special case - (INCLUDE, empty) == LEAVE_GROUP */
		if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
			leavegroup = 1;
			goto done;
		}

L
Linus Torvalds 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
		/* update the interface filter */
		ip6_mc_del_src(idev, group, omode, 1, source, 1);

		for (j=i+1; j<psl->sl_count; j++)
			psl->sl_addr[j-1] = psl->sl_addr[j];
		psl->sl_count--;
		err = 0;
		goto done;
	}
	/* else, add a new source to the filter */

	if (psl && psl->sl_count >= sysctl_mld_max_msf) {
		err = -ENOBUFS;
		goto done;
	}
	if (!psl || psl->sl_count == psl->sl_max) {
		struct ip6_sf_socklist *newpsl;
		int count = IP6_SFBLOCK;

		if (psl)
			count += psl->sl_max;
413
		newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
L
Linus Torvalds 已提交
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
		if (!newpsl) {
			err = -ENOBUFS;
			goto done;
		}
		newpsl->sl_max = count;
		newpsl->sl_count = count - IP6_SFBLOCK;
		if (psl) {
			for (i=0; i<psl->sl_count; i++)
				newpsl->sl_addr[i] = psl->sl_addr[i];
			sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
		}
		pmc->sflist = psl = newpsl;
	}
	rv = 1;	/* > 0 for insert logic below if sl_count is 0 */
	for (i=0; i<psl->sl_count; i++) {
		rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
		if (rv == 0)
			break;
	}
	if (rv == 0)		/* address already there is an error */
		goto done;
	for (j=psl->sl_count-1; j>=i; j--)
		psl->sl_addr[j+1] = psl->sl_addr[j];
	psl->sl_addr[i] = *source;
	psl->sl_count++;
	err = 0;
	/* update the interface list */
	ip6_mc_add_src(idev, group, omode, 1, source, 1);
done:
443
	if (pmclocked)
E
Eric Dumazet 已提交
444
		write_unlock(&pmc->sflock);
L
Linus Torvalds 已提交
445
	read_unlock_bh(&idev->lock);
E
Eric Dumazet 已提交
446
	rcu_read_unlock();
447 448
	if (leavegroup)
		return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
L
Linus Torvalds 已提交
449 450 451 452 453
	return err;
}

int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
{
454
	const struct in6_addr *group;
L
Linus Torvalds 已提交
455 456 457 458
	struct ipv6_mc_socklist *pmc;
	struct inet6_dev *idev;
	struct ipv6_pinfo *inet6 = inet6_sk(sk);
	struct ip6_sf_socklist *newpsl, *psl;
459
	struct net *net = sock_net(sk);
460
	int leavegroup = 0;
L
Linus Torvalds 已提交
461 462 463 464 465 466 467 468 469 470
	int i, err;

	group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;

	if (!ipv6_addr_is_multicast(group))
		return -EINVAL;
	if (gsf->gf_fmode != MCAST_INCLUDE &&
	    gsf->gf_fmode != MCAST_EXCLUDE)
		return -EINVAL;

E
Eric Dumazet 已提交
471 472
	rcu_read_lock();
	idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
L
Linus Torvalds 已提交
473

E
Eric Dumazet 已提交
474 475
	if (!idev) {
		rcu_read_unlock();
L
Linus Torvalds 已提交
476
		return -ENODEV;
E
Eric Dumazet 已提交
477
	}
L
Linus Torvalds 已提交
478

479
	err = 0;
480

481 482 483 484 485
	if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
		leavegroup = 1;
		goto done;
	}

E
Eric Dumazet 已提交
486
	for_each_pmc_rcu(inet6, pmc) {
L
Linus Torvalds 已提交
487 488 489 490 491
		if (pmc->ifindex != gsf->gf_interface)
			continue;
		if (ipv6_addr_equal(&pmc->addr, group))
			break;
	}
492 493
	if (!pmc) {		/* must have a prior join */
		err = -EINVAL;
L
Linus Torvalds 已提交
494
		goto done;
495
	}
L
Linus Torvalds 已提交
496
	if (gsf->gf_numsrc) {
497 498
		newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
							  GFP_ATOMIC);
L
Linus Torvalds 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
		if (!newpsl) {
			err = -ENOBUFS;
			goto done;
		}
		newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
		for (i=0; i<newpsl->sl_count; ++i) {
			struct sockaddr_in6 *psin6;

			psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
			newpsl->sl_addr[i] = psin6->sin6_addr;
		}
		err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
			newpsl->sl_count, newpsl->sl_addr, 0);
		if (err) {
			sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
			goto done;
		}
516
	} else {
L
Linus Torvalds 已提交
517
		newpsl = NULL;
518 519
		(void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
	}
520

E
Eric Dumazet 已提交
521
	write_lock(&pmc->sflock);
L
Linus Torvalds 已提交
522 523 524 525 526 527 528 529 530
	psl = pmc->sflist;
	if (psl) {
		(void) ip6_mc_del_src(idev, group, pmc->sfmode,
			psl->sl_count, psl->sl_addr, 0);
		sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
	} else
		(void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
	pmc->sflist = newpsl;
	pmc->sfmode = gsf->gf_fmode;
E
Eric Dumazet 已提交
531
	write_unlock(&pmc->sflock);
532
	err = 0;
L
Linus Torvalds 已提交
533 534
done:
	read_unlock_bh(&idev->lock);
E
Eric Dumazet 已提交
535
	rcu_read_unlock();
536 537
	if (leavegroup)
		err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
L
Linus Torvalds 已提交
538 539 540 541 542 543 544
	return err;
}

int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
	struct group_filter __user *optval, int __user *optlen)
{
	int err, i, count, copycount;
545
	const struct in6_addr *group;
L
Linus Torvalds 已提交
546 547 548 549
	struct ipv6_mc_socklist *pmc;
	struct inet6_dev *idev;
	struct ipv6_pinfo *inet6 = inet6_sk(sk);
	struct ip6_sf_socklist *psl;
550
	struct net *net = sock_net(sk);
L
Linus Torvalds 已提交
551 552 553 554 555 556

	group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;

	if (!ipv6_addr_is_multicast(group))
		return -EINVAL;

E
Eric Dumazet 已提交
557 558
	rcu_read_lock();
	idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
L
Linus Torvalds 已提交
559

E
Eric Dumazet 已提交
560 561
	if (!idev) {
		rcu_read_unlock();
L
Linus Torvalds 已提交
562
		return -ENODEV;
E
Eric Dumazet 已提交
563
	}
L
Linus Torvalds 已提交
564 565

	err = -EADDRNOTAVAIL;
566 567 568 569 570
	/*
	 * changes to the ipv6_mc_list require the socket lock and
	 * a read lock on ip6_sk_mc_lock. We have the socket lock,
	 * so reading the list is safe.
	 */
L
Linus Torvalds 已提交
571

E
Eric Dumazet 已提交
572
	for_each_pmc_rcu(inet6, pmc) {
L
Linus Torvalds 已提交
573 574 575 576 577 578 579 580 581 582 583
		if (pmc->ifindex != gsf->gf_interface)
			continue;
		if (ipv6_addr_equal(group, &pmc->addr))
			break;
	}
	if (!pmc)		/* must have a prior join */
		goto done;
	gsf->gf_fmode = pmc->sfmode;
	psl = pmc->sflist;
	count = psl ? psl->sl_count : 0;
	read_unlock_bh(&idev->lock);
E
Eric Dumazet 已提交
584
	rcu_read_unlock();
L
Linus Torvalds 已提交
585 586 587 588 589 590 591

	copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
	gsf->gf_numsrc = count;
	if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
	    copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
		return -EFAULT;
	}
592 593 594 595
	/* changes to psl require the socket lock, a read lock on
	 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
	 * have the socket lock, so reading here is safe.
	 */
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603
	for (i=0; i<copycount; i++) {
		struct sockaddr_in6 *psin6;
		struct sockaddr_storage ss;

		psin6 = (struct sockaddr_in6 *)&ss;
		memset(&ss, 0, sizeof(ss));
		psin6->sin6_family = AF_INET6;
		psin6->sin6_addr = psl->sl_addr[i];
604
		if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
L
Linus Torvalds 已提交
605 606 607 608 609
			return -EFAULT;
	}
	return 0;
done:
	read_unlock_bh(&idev->lock);
E
Eric Dumazet 已提交
610
	rcu_read_unlock();
L
Linus Torvalds 已提交
611 612 613
	return err;
}

614 615
int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
		   const struct in6_addr *src_addr)
L
Linus Torvalds 已提交
616 617 618 619 620 621
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct ipv6_mc_socklist *mc;
	struct ip6_sf_socklist *psl;
	int rv = 1;

E
Eric Dumazet 已提交
622 623
	rcu_read_lock();
	for_each_pmc_rcu(np, mc) {
L
Linus Torvalds 已提交
624 625 626 627
		if (ipv6_addr_equal(&mc->addr, mc_addr))
			break;
	}
	if (!mc) {
E
Eric Dumazet 已提交
628
		rcu_read_unlock();
L
Linus Torvalds 已提交
629 630
		return 1;
	}
631
	read_lock(&mc->sflock);
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
	psl = mc->sflist;
	if (!psl) {
		rv = mc->sfmode == MCAST_EXCLUDE;
	} else {
		int i;

		for (i=0; i<psl->sl_count; i++) {
			if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
				break;
		}
		if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
			rv = 0;
		if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
			rv = 0;
	}
647
	read_unlock(&mc->sflock);
E
Eric Dumazet 已提交
648
	rcu_read_unlock();
L
Linus Torvalds 已提交
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

	return rv;
}

static void ma_put(struct ifmcaddr6 *mc)
{
	if (atomic_dec_and_test(&mc->mca_refcnt)) {
		in6_dev_put(mc->idev);
		kfree(mc);
	}
}

static void igmp6_group_added(struct ifmcaddr6 *mc)
{
	struct net_device *dev = mc->idev->dev;
	char buf[MAX_ADDR_LEN];

	spin_lock_bh(&mc->mca_lock);
	if (!(mc->mca_flags&MAF_LOADED)) {
		mc->mca_flags |= MAF_LOADED;
		if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
670
			dev_mc_add(dev, buf);
L
Linus Torvalds 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
	}
	spin_unlock_bh(&mc->mca_lock);

	if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
		return;

	if (MLD_V1_SEEN(mc->idev)) {
		igmp6_join_group(mc);
		return;
	}
	/* else v2 */

	mc->mca_crcount = mc->idev->mc_qrv;
	mld_ifc_event(mc->idev);
}

static void igmp6_group_dropped(struct ifmcaddr6 *mc)
{
	struct net_device *dev = mc->idev->dev;
	char buf[MAX_ADDR_LEN];

	spin_lock_bh(&mc->mca_lock);
	if (mc->mca_flags&MAF_LOADED) {
		mc->mca_flags &= ~MAF_LOADED;
		if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
696
			dev_mc_del(dev, buf);
L
Linus Torvalds 已提交
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
	}

	if (mc->mca_flags & MAF_NOREPORT)
		goto done;
	spin_unlock_bh(&mc->mca_lock);

	if (!mc->idev->dead)
		igmp6_leave_group(mc);

	spin_lock_bh(&mc->mca_lock);
	if (del_timer(&mc->mca_timer))
		atomic_dec(&mc->mca_refcnt);
done:
	ip6_mc_clear_src(mc);
	spin_unlock_bh(&mc->mca_lock);
}

/*
 * deleted ifmcaddr6 manipulation
 */
static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
{
	struct ifmcaddr6 *pmc;

	/* this is an "ifmcaddr6" for convenience; only the fields below
	 * are actually used. In particular, the refcnt and users are not
	 * used for management of the delete list. Using the same structure
	 * for deleted items allows change reports to use common code with
	 * non-deleted or query-response MCA's.
	 */
727
	pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
L
Linus Torvalds 已提交
728 729
	if (!pmc)
		return;
730

L
Linus Torvalds 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
	spin_lock_bh(&im->mca_lock);
	spin_lock_init(&pmc->mca_lock);
	pmc->idev = im->idev;
	in6_dev_hold(idev);
	pmc->mca_addr = im->mca_addr;
	pmc->mca_crcount = idev->mc_qrv;
	pmc->mca_sfmode = im->mca_sfmode;
	if (pmc->mca_sfmode == MCAST_INCLUDE) {
		struct ip6_sf_list *psf;

		pmc->mca_tomb = im->mca_tomb;
		pmc->mca_sources = im->mca_sources;
		im->mca_tomb = im->mca_sources = NULL;
		for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
			psf->sf_crcount = pmc->mca_crcount;
	}
	spin_unlock_bh(&im->mca_lock);

749
	spin_lock_bh(&idev->mc_lock);
L
Linus Torvalds 已提交
750 751
	pmc->next = idev->mc_tomb;
	idev->mc_tomb = pmc;
752
	spin_unlock_bh(&idev->mc_lock);
L
Linus Torvalds 已提交
753 754
}

755
static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
L
Linus Torvalds 已提交
756 757 758 759
{
	struct ifmcaddr6 *pmc, *pmc_prev;
	struct ip6_sf_list *psf, *psf_next;

760
	spin_lock_bh(&idev->mc_lock);
L
Linus Torvalds 已提交
761 762 763 764 765 766 767 768 769 770 771 772
	pmc_prev = NULL;
	for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
		if (ipv6_addr_equal(&pmc->mca_addr, pmca))
			break;
		pmc_prev = pmc;
	}
	if (pmc) {
		if (pmc_prev)
			pmc_prev->next = pmc->next;
		else
			idev->mc_tomb = pmc->next;
	}
773 774
	spin_unlock_bh(&idev->mc_lock);

L
Linus Torvalds 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787 788
	if (pmc) {
		for (psf=pmc->mca_tomb; psf; psf=psf_next) {
			psf_next = psf->sf_next;
			kfree(psf);
		}
		in6_dev_put(pmc->idev);
		kfree(pmc);
	}
}

static void mld_clear_delrec(struct inet6_dev *idev)
{
	struct ifmcaddr6 *pmc, *nextpmc;

789
	spin_lock_bh(&idev->mc_lock);
L
Linus Torvalds 已提交
790 791
	pmc = idev->mc_tomb;
	idev->mc_tomb = NULL;
792
	spin_unlock_bh(&idev->mc_lock);
L
Linus Torvalds 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821

	for (; pmc; pmc = nextpmc) {
		nextpmc = pmc->next;
		ip6_mc_clear_src(pmc);
		in6_dev_put(pmc->idev);
		kfree(pmc);
	}

	/* clear dead sources, too */
	read_lock_bh(&idev->lock);
	for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
		struct ip6_sf_list *psf, *psf_next;

		spin_lock_bh(&pmc->mca_lock);
		psf = pmc->mca_tomb;
		pmc->mca_tomb = NULL;
		spin_unlock_bh(&pmc->mca_lock);
		for (; psf; psf=psf_next) {
			psf_next = psf->sf_next;
			kfree(psf);
		}
	}
	read_unlock_bh(&idev->lock);
}


/*
 *	device multicast group inc (add if not found)
 */
822
int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
L
Linus Torvalds 已提交
823 824 825 826
{
	struct ifmcaddr6 *mc;
	struct inet6_dev *idev;

E
Eric Dumazet 已提交
827
	/* we need to take a reference on idev */
L
Linus Torvalds 已提交
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
	idev = in6_dev_get(dev);

	if (idev == NULL)
		return -EINVAL;

	write_lock_bh(&idev->lock);
	if (idev->dead) {
		write_unlock_bh(&idev->lock);
		in6_dev_put(idev);
		return -ENODEV;
	}

	for (mc = idev->mc_list; mc; mc = mc->next) {
		if (ipv6_addr_equal(&mc->mca_addr, addr)) {
			mc->mca_users++;
			write_unlock_bh(&idev->lock);
			ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
				NULL, 0);
			in6_dev_put(idev);
			return 0;
		}
	}

	/*
	 *	not found: create a new one.
	 */

855
	mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
L
Linus Torvalds 已提交
856 857 858 859 860 861 862

	if (mc == NULL) {
		write_unlock_bh(&idev->lock);
		in6_dev_put(idev);
		return -ENOMEM;
	}

863
	setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
L
Linus Torvalds 已提交
864 865

	ipv6_addr_copy(&mc->mca_addr, addr);
E
Eric Dumazet 已提交
866
	mc->idev = idev; /* (reference taken) */
L
Linus Torvalds 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
	mc->mca_users = 1;
	/* mca_stamp should be updated upon changes */
	mc->mca_cstamp = mc->mca_tstamp = jiffies;
	atomic_set(&mc->mca_refcnt, 2);
	spin_lock_init(&mc->mca_lock);

	/* initial mode is (EX, empty) */
	mc->mca_sfmode = MCAST_EXCLUDE;
	mc->mca_sfcount[MCAST_EXCLUDE] = 1;

	if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
	    IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
		mc->mca_flags |= MAF_NOREPORT;

	mc->next = idev->mc_list;
	idev->mc_list = mc;
	write_unlock_bh(&idev->lock);

	mld_del_delrec(idev, &mc->mca_addr);
	igmp6_group_added(mc);
	ma_put(mc);
	return 0;
}

/*
 *	device multicast group del
 */
894
int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
L
Linus Torvalds 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
{
	struct ifmcaddr6 *ma, **map;

	write_lock_bh(&idev->lock);
	for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
		if (ipv6_addr_equal(&ma->mca_addr, addr)) {
			if (--ma->mca_users == 0) {
				*map = ma->next;
				write_unlock_bh(&idev->lock);

				igmp6_group_dropped(ma);

				ma_put(ma);
				return 0;
			}
			write_unlock_bh(&idev->lock);
			return 0;
		}
	}
	write_unlock_bh(&idev->lock);

	return -ENOENT;
}

919
int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
L
Linus Torvalds 已提交
920
{
E
Eric Dumazet 已提交
921
	struct inet6_dev *idev;
L
Linus Torvalds 已提交
922 923
	int err;

E
Eric Dumazet 已提交
924
	rcu_read_lock();
L
Linus Torvalds 已提交
925

E
Eric Dumazet 已提交
926 927 928 929 930
	idev = __in6_dev_get(dev);
	if (!idev)
		err = -ENODEV;
	else
		err = __ipv6_dev_mc_dec(idev, addr);
L
Linus Torvalds 已提交
931

E
Eric Dumazet 已提交
932
	rcu_read_unlock();
L
Linus Torvalds 已提交
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
	return err;
}

/*
 * identify MLD packets for MLD filter exceptions
 */
int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
{
	struct icmp6hdr *pic;

	if (nexthdr != IPPROTO_ICMPV6)
		return 0;

	if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
		return 0;

949
	pic = icmp6_hdr(skb);
L
Linus Torvalds 已提交
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965

	switch (pic->icmp6_type) {
	case ICMPV6_MGM_QUERY:
	case ICMPV6_MGM_REPORT:
	case ICMPV6_MGM_REDUCTION:
	case ICMPV6_MLD2_REPORT:
		return 1;
	default:
		break;
	}
	return 0;
}

/*
 *	check if the interface/address pair is valid
 */
966 967
int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
			const struct in6_addr *src_addr)
L
Linus Torvalds 已提交
968 969 970 971 972
{
	struct inet6_dev *idev;
	struct ifmcaddr6 *mc;
	int rv = 0;

E
Eric Dumazet 已提交
973 974
	rcu_read_lock();
	idev = __in6_dev_get(dev);
L
Linus Torvalds 已提交
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
	if (idev) {
		read_lock_bh(&idev->lock);
		for (mc = idev->mc_list; mc; mc=mc->next) {
			if (ipv6_addr_equal(&mc->mca_addr, group))
				break;
		}
		if (mc) {
			if (src_addr && !ipv6_addr_any(src_addr)) {
				struct ip6_sf_list *psf;

				spin_lock_bh(&mc->mca_lock);
				for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
					if (ipv6_addr_equal(&psf->sf_addr, src_addr))
						break;
				}
				if (psf)
					rv = psf->sf_count[MCAST_INCLUDE] ||
						psf->sf_count[MCAST_EXCLUDE] !=
						mc->mca_sfcount[MCAST_EXCLUDE];
				else
					rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
				spin_unlock_bh(&mc->mca_lock);
			} else
				rv = 1; /* don't filter unspecified source */
		}
		read_unlock_bh(&idev->lock);
	}
E
Eric Dumazet 已提交
1002
	rcu_read_unlock();
L
Linus Torvalds 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
	return rv;
}

static void mld_gq_start_timer(struct inet6_dev *idev)
{
	int tv = net_random() % idev->mc_maxdelay;

	idev->mc_gq_running = 1;
	if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
		in6_dev_hold(idev);
}

static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
{
	int tv = net_random() % delay;

	if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
		in6_dev_hold(idev);
}

/*
 *	IGMP handling (alias multicast ICMPv6 messages)
 */

static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
{
	unsigned long delay = resptime;

	/* Do not start timer for these addresses */
	if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
	    IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
		return;

	if (del_timer(&ma->mca_timer)) {
		atomic_dec(&ma->mca_refcnt);
		delay = ma->mca_timer.expires - jiffies;
	}

	if (delay >= resptime) {
		if (resptime)
			delay = net_random() % resptime;
		else
			delay = 1;
	}
	ma->mca_timer.expires = jiffies + delay;
	if (!mod_timer(&ma->mca_timer, jiffies + delay))
		atomic_inc(&ma->mca_refcnt);
	ma->mca_flags |= MAF_TIMER_RUNNING;
}

1053 1054
/* mark EXCLUDE-mode sources */
static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1055
	const struct in6_addr *srcs)
L
Linus Torvalds 已提交
1056 1057 1058 1059 1060 1061 1062 1063
{
	struct ip6_sf_list *psf;
	int i, scount;

	scount = 0;
	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (scount == nsrcs)
			break;
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
		for (i=0; i<nsrcs; i++) {
			/* skip inactive filters */
			if (pmc->mca_sfcount[MCAST_INCLUDE] ||
			    pmc->mca_sfcount[MCAST_EXCLUDE] !=
			    psf->sf_count[MCAST_EXCLUDE])
				continue;
			if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
				scount++;
				break;
			}
		}
	}
	pmc->mca_flags &= ~MAF_GSQUERY;
	if (scount == nsrcs)	/* all sources excluded */
		return 0;
	return 1;
}

static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1083
	const struct in6_addr *srcs)
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
{
	struct ip6_sf_list *psf;
	int i, scount;

	if (pmc->mca_sfmode == MCAST_EXCLUDE)
		return mld_xmarksources(pmc, nsrcs, srcs);

	/* mark INCLUDE-mode sources */

	scount = 0;
	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (scount == nsrcs)
			break;
		for (i=0; i<nsrcs; i++) {
L
Linus Torvalds 已提交
1098 1099 1100 1101 1102
			if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
				psf->sf_gsresp = 1;
				scount++;
				break;
			}
1103 1104 1105 1106 1107
		}
	}
	if (!scount) {
		pmc->mca_flags &= ~MAF_GSQUERY;
		return 0;
L
Linus Torvalds 已提交
1108
	}
1109 1110
	pmc->mca_flags |= MAF_GSQUERY;
	return 1;
L
Linus Torvalds 已提交
1111 1112
}

E
Eric Dumazet 已提交
1113
/* called with rcu_read_lock() */
L
Linus Torvalds 已提交
1114 1115
int igmp6_event_query(struct sk_buff *skb)
{
1116
	struct mld2_query *mlh2 = NULL;
L
Linus Torvalds 已提交
1117
	struct ifmcaddr6 *ma;
1118
	const struct in6_addr *group;
L
Linus Torvalds 已提交
1119 1120
	unsigned long max_delay;
	struct inet6_dev *idev;
1121
	struct mld_msg *mld;
L
Linus Torvalds 已提交
1122 1123 1124 1125 1126 1127 1128 1129
	int group_type;
	int mark = 0;
	int len;

	if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
		return -EINVAL;

	/* compute payload length excluding extension headers */
1130
	len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1131
	len -= skb_network_header_len(skb);
L
Linus Torvalds 已提交
1132 1133

	/* Drop queries with not link local source */
1134
	if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
L
Linus Torvalds 已提交
1135 1136
		return -EINVAL;

E
Eric Dumazet 已提交
1137
	idev = __in6_dev_get(skb->dev);
L
Linus Torvalds 已提交
1138 1139 1140 1141

	if (idev == NULL)
		return 0;

1142 1143
	mld = (struct mld_msg *)icmp6_hdr(skb);
	group = &mld->mld_mca;
L
Linus Torvalds 已提交
1144 1145 1146
	group_type = ipv6_addr_type(group);

	if (group_type != IPV6_ADDR_ANY &&
E
Eric Dumazet 已提交
1147
	    !(group_type&IPV6_ADDR_MULTICAST))
L
Linus Torvalds 已提交
1148 1149 1150 1151 1152 1153 1154
		return -EINVAL;

	if (len == 24) {
		int switchback;
		/* MLDv1 router present */

		/* Translate milliseconds to jiffies */
1155
		max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
L
Linus Torvalds 已提交
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166

		switchback = (idev->mc_qrv + 1) * max_delay;
		idev->mc_v1_seen = jiffies + switchback;

		/* cancel the interface change timer */
		idev->mc_ifc_count = 0;
		if (del_timer(&idev->mc_ifc_timer))
			__in6_dev_put(idev);
		/* clear deleted report items */
		mld_clear_delrec(idev);
	} else if (len >= 28) {
1167
		int srcs_offset = sizeof(struct mld2_query) -
1168
				  sizeof(struct icmp6hdr);
E
Eric Dumazet 已提交
1169
		if (!pskb_may_pull(skb, srcs_offset))
1170
			return -EINVAL;
E
Eric Dumazet 已提交
1171

1172
		mlh2 = (struct mld2_query *)skb_transport_header(skb);
1173
		max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
L
Linus Torvalds 已提交
1174 1175 1176
		if (!max_delay)
			max_delay = 1;
		idev->mc_maxdelay = max_delay;
1177 1178
		if (mlh2->mld2q_qrv)
			idev->mc_qrv = mlh2->mld2q_qrv;
L
Linus Torvalds 已提交
1179
		if (group_type == IPV6_ADDR_ANY) { /* general query */
E
Eric Dumazet 已提交
1180
			if (mlh2->mld2q_nsrcs)
L
Linus Torvalds 已提交
1181
				return -EINVAL; /* no sources allowed */
E
Eric Dumazet 已提交
1182

L
Linus Torvalds 已提交
1183 1184 1185 1186
			mld_gq_start_timer(idev);
			return 0;
		}
		/* mark sources to include, if group & source-specific */
1187
		if (mlh2->mld2q_nsrcs != 0) {
1188
			if (!pskb_may_pull(skb, srcs_offset +
E
Eric Dumazet 已提交
1189
			    ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
1190
				return -EINVAL;
E
Eric Dumazet 已提交
1191

1192
			mlh2 = (struct mld2_query *)skb_transport_header(skb);
1193 1194
			mark = 1;
		}
E
Eric Dumazet 已提交
1195
	} else
L
Linus Torvalds 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
		return -EINVAL;

	read_lock_bh(&idev->lock);
	if (group_type == IPV6_ADDR_ANY) {
		for (ma = idev->mc_list; ma; ma=ma->next) {
			spin_lock_bh(&ma->mca_lock);
			igmp6_group_queried(ma, max_delay);
			spin_unlock_bh(&ma->mca_lock);
		}
	} else {
		for (ma = idev->mc_list; ma; ma=ma->next) {
1207
			if (!ipv6_addr_equal(group, &ma->mca_addr))
L
Linus Torvalds 已提交
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
				continue;
			spin_lock_bh(&ma->mca_lock);
			if (ma->mca_flags & MAF_TIMER_RUNNING) {
				/* gsquery <- gsquery && mark */
				if (!mark)
					ma->mca_flags &= ~MAF_GSQUERY;
			} else {
				/* gsquery <- mark */
				if (mark)
					ma->mca_flags |= MAF_GSQUERY;
				else
					ma->mca_flags &= ~MAF_GSQUERY;
			}
1221
			if (!(ma->mca_flags & MAF_GSQUERY) ||
1222
			    mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
1223
				igmp6_group_queried(ma, max_delay);
L
Linus Torvalds 已提交
1224
			spin_unlock_bh(&ma->mca_lock);
1225
			break;
L
Linus Torvalds 已提交
1226 1227 1228 1229 1230 1231 1232
		}
	}
	read_unlock_bh(&idev->lock);

	return 0;
}

E
Eric Dumazet 已提交
1233
/* called with rcu_read_lock() */
L
Linus Torvalds 已提交
1234 1235 1236 1237
int igmp6_event_report(struct sk_buff *skb)
{
	struct ifmcaddr6 *ma;
	struct inet6_dev *idev;
1238
	struct mld_msg *mld;
L
Linus Torvalds 已提交
1239 1240 1241 1242 1243 1244
	int addr_type;

	/* Our own report looped back. Ignore it. */
	if (skb->pkt_type == PACKET_LOOPBACK)
		return 0;

1245 1246 1247 1248 1249
	/* send our report if the MC router may not have heard this report */
	if (skb->pkt_type != PACKET_MULTICAST &&
	    skb->pkt_type != PACKET_BROADCAST)
		return 0;

1250
	if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
L
Linus Torvalds 已提交
1251 1252
		return -EINVAL;

1253
	mld = (struct mld_msg *)icmp6_hdr(skb);
L
Linus Torvalds 已提交
1254 1255

	/* Drop reports with not link local source */
1256
	addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1257
	if (addr_type != IPV6_ADDR_ANY &&
L
Linus Torvalds 已提交
1258 1259 1260
	    !(addr_type&IPV6_ADDR_LINKLOCAL))
		return -EINVAL;

E
Eric Dumazet 已提交
1261
	idev = __in6_dev_get(skb->dev);
L
Linus Torvalds 已提交
1262 1263 1264 1265 1266 1267 1268 1269 1270
	if (idev == NULL)
		return -ENODEV;

	/*
	 *	Cancel the timer for this group
	 */

	read_lock_bh(&idev->lock);
	for (ma = idev->mc_list; ma; ma=ma->next) {
1271
		if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
L
Linus Torvalds 已提交
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
			spin_lock(&ma->mca_lock);
			if (del_timer(&ma->mca_timer))
				atomic_dec(&ma->mca_refcnt);
			ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
			spin_unlock(&ma->mca_lock);
			break;
		}
	}
	read_unlock_bh(&idev->lock);
	return 0;
}

static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
	int gdeleted, int sdeleted)
{
	switch (type) {
	case MLD2_MODE_IS_INCLUDE:
	case MLD2_MODE_IS_EXCLUDE:
		if (gdeleted || sdeleted)
			return 0;
1292 1293 1294 1295 1296 1297 1298
		if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
			if (pmc->mca_sfmode == MCAST_INCLUDE)
				return 1;
			/* don't include if this source is excluded
			 * in all filters
			 */
			if (psf->sf_count[MCAST_INCLUDE])
1299
				return type == MLD2_MODE_IS_INCLUDE;
1300 1301 1302 1303
			return pmc->mca_sfcount[MCAST_EXCLUDE] ==
				psf->sf_count[MCAST_EXCLUDE];
		}
		return 0;
L
Linus Torvalds 已提交
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
	case MLD2_CHANGE_TO_INCLUDE:
		if (gdeleted || sdeleted)
			return 0;
		return psf->sf_count[MCAST_INCLUDE] != 0;
	case MLD2_CHANGE_TO_EXCLUDE:
		if (gdeleted || sdeleted)
			return 0;
		if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
		    psf->sf_count[MCAST_INCLUDE])
			return 0;
		return pmc->mca_sfcount[MCAST_EXCLUDE] ==
			psf->sf_count[MCAST_EXCLUDE];
	case MLD2_ALLOW_NEW_SOURCES:
		if (gdeleted || !psf->sf_crcount)
			return 0;
		return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
	case MLD2_BLOCK_OLD_SOURCES:
		if (pmc->mca_sfmode == MCAST_INCLUDE)
			return gdeleted || (psf->sf_crcount && sdeleted);
		return psf->sf_crcount && !gdeleted && !sdeleted;
	}
	return 0;
}

static int
mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
{
	struct ip6_sf_list *psf;
	int scount = 0;

	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (!is_in(pmc, psf, type, gdeleted, sdeleted))
			continue;
		scount++;
	}
	return scount;
}

static struct sk_buff *mld_newpack(struct net_device *dev, int size)
{
1344
	struct net *net = dev_net(dev);
1345
	struct sock *sk = net->ipv6.igmp_sk;
L
Linus Torvalds 已提交
1346 1347 1348
	struct sk_buff *skb;
	struct mld2_report *pmr;
	struct in6_addr addr_buf;
1349
	const struct in6_addr *saddr;
L
Linus Torvalds 已提交
1350 1351 1352 1353 1354 1355
	int err;
	u8 ra[8] = { IPPROTO_ICMPV6, 0,
		     IPV6_TLV_ROUTERALERT, 2, 0, 0,
		     IPV6_TLV_PADN, 0 };

	/* we assume size > sizeof(ra) here */
1356 1357 1358 1359
	size += LL_ALLOCATED_SPACE(dev);
	/* limit our allocations to order-0 page */
	size = min_t(int, size, SKB_MAX_ORDER(0, 0));
	skb = sock_alloc_send_skb(sk, size, 1, &err);
L
Linus Torvalds 已提交
1360

S
Stephen Hemminger 已提交
1361
	if (!skb)
L
Linus Torvalds 已提交
1362 1363 1364 1365
		return NULL;

	skb_reserve(skb, LL_RESERVED_SPACE(dev));

1366
	if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
L
Linus Torvalds 已提交
1367
		/* <draft-ietf-magma-mld-source-05.txt>:
1368
		 * use unspecified address as the source address
L
Linus Torvalds 已提交
1369 1370
		 * when a valid link-local address is not available.
		 */
1371 1372 1373
		saddr = &in6addr_any;
	} else
		saddr = &addr_buf;
L
Linus Torvalds 已提交
1374

1375
	ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
L
Linus Torvalds 已提交
1376 1377 1378

	memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));

1379
	skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1380 1381
	skb_put(skb, sizeof(*pmr));
	pmr = (struct mld2_report *)skb_transport_header(skb);
1382 1383 1384 1385 1386
	pmr->mld2r_type = ICMPV6_MLD2_REPORT;
	pmr->mld2r_resv1 = 0;
	pmr->mld2r_cksum = 0;
	pmr->mld2r_resv2 = 0;
	pmr->mld2r_ngrec = 0;
L
Linus Torvalds 已提交
1387 1388 1389 1390 1391
	return skb;
}

static void mld_sendpack(struct sk_buff *skb)
{
1392
	struct ipv6hdr *pip6 = ipv6_hdr(skb);
1393 1394
	struct mld2_report *pmr =
			      (struct mld2_report *)skb_transport_header(skb);
L
Linus Torvalds 已提交
1395
	int payload_len, mldlen;
E
Eric Dumazet 已提交
1396
	struct inet6_dev *idev;
1397
	struct net *net = dev_net(skb->dev);
L
Linus Torvalds 已提交
1398
	int err;
1399
	struct flowi6 fl6;
E
Eric Dumazet 已提交
1400
	struct dst_entry *dst;
L
Linus Torvalds 已提交
1401

E
Eric Dumazet 已提交
1402 1403
	rcu_read_lock();
	idev = __in6_dev_get(skb->dev);
1404 1405
	IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);

1406 1407
	payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
	mldlen = skb->tail - skb->transport_header;
L
Linus Torvalds 已提交
1408 1409
	pip6->payload_len = htons(payload_len);

1410 1411 1412 1413
	pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
					   IPPROTO_ICMPV6,
					   csum_partial(skb_transport_header(skb),
							mldlen, 0));
1414

E
Eric Dumazet 已提交
1415
	dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1416

E
Eric Dumazet 已提交
1417
	if (!dst) {
1418 1419 1420 1421
		err = -ENOMEM;
		goto err_out;
	}

1422
	icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
1423 1424 1425
			 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
			 skb->dev->ifindex);

1426
	dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
1427 1428 1429 1430 1431
	err = 0;
	if (IS_ERR(dst)) {
		err = PTR_ERR(dst);
		dst = NULL;
	}
E
Eric Dumazet 已提交
1432
	skb_dst_set(skb, dst);
1433 1434 1435
	if (err)
		goto err_out;

1436 1437
	payload_len = skb->len;

1438
	err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1439 1440
		      dst_output);
out:
L
Linus Torvalds 已提交
1441
	if (!err) {
1442
		ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT);
1443
		ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
1444
		IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
L
Linus Torvalds 已提交
1445
	} else
1446
		IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS);
L
Linus Torvalds 已提交
1447

E
Eric Dumazet 已提交
1448
	rcu_read_unlock();
1449 1450 1451 1452 1453
	return;

err_out:
	kfree_skb(skb);
	goto out;
L
Linus Torvalds 已提交
1454 1455 1456 1457
}

static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
{
1458
	return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
L
Linus Torvalds 已提交
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
}

static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
	int type, struct mld2_grec **ppgr)
{
	struct net_device *dev = pmc->idev->dev;
	struct mld2_report *pmr;
	struct mld2_grec *pgr;

	if (!skb)
		skb = mld_newpack(dev, dev->mtu);
	if (!skb)
		return NULL;
	pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
	pgr->grec_type = type;
	pgr->grec_auxwords = 0;
	pgr->grec_nsrcs = 0;
	pgr->grec_mca = pmc->mca_addr;	/* structure copy */
1477
	pmr = (struct mld2_report *)skb_transport_header(skb);
1478
	pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
L
Linus Torvalds 已提交
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
	*ppgr = pgr;
	return skb;
}

#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
	skb_tailroom(skb)) : 0)

static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
	int type, int gdeleted, int sdeleted)
{
	struct net_device *dev = pmc->idev->dev;
	struct mld2_report *pmr;
	struct mld2_grec *pgr = NULL;
	struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1493
	int scount, stotal, first, isquery, truncate;
L
Linus Torvalds 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502

	if (pmc->mca_flags & MAF_NOREPORT)
		return skb;

	isquery = type == MLD2_MODE_IS_INCLUDE ||
		  type == MLD2_MODE_IS_EXCLUDE;
	truncate = type == MLD2_MODE_IS_EXCLUDE ||
		    type == MLD2_CHANGE_TO_EXCLUDE;

1503 1504
	stotal = scount = 0;

L
Linus Torvalds 已提交
1505 1506
	psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;

1507 1508 1509
	if (!*psf_list)
		goto empty_source;

1510
	pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
L
Linus Torvalds 已提交
1511 1512 1513

	/* EX and TO_EX get a fresh packet, if needed */
	if (truncate) {
1514
		if (pmr && pmr->mld2r_ngrec &&
L
Linus Torvalds 已提交
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
		    AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
			if (skb)
				mld_sendpack(skb);
			skb = mld_newpack(dev, dev->mtu);
		}
	}
	first = 1;
	psf_prev = NULL;
	for (psf=*psf_list; psf; psf=psf_next) {
		struct in6_addr *psrc;

		psf_next = psf->sf_next;

		if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
			psf_prev = psf;
			continue;
		}

		/* clear marks on query responses */
		if (isquery)
			psf->sf_gsresp = 0;

		if (AVAILABLE(skb) < sizeof(*psrc) +
		    first*sizeof(struct mld2_grec)) {
			if (truncate && !first)
				break;	 /* truncate these */
			if (pgr)
				pgr->grec_nsrcs = htons(scount);
			if (skb)
				mld_sendpack(skb);
			skb = mld_newpack(dev, dev->mtu);
			first = 1;
			scount = 0;
		}
		if (first) {
			skb = add_grhead(skb, pmc, type, &pgr);
			first = 0;
		}
1553 1554
		if (!skb)
			return NULL;
L
Linus Torvalds 已提交
1555 1556
		psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
		*psrc = psf->sf_addr;
1557
		scount++; stotal++;
L
Linus Torvalds 已提交
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
		if ((type == MLD2_ALLOW_NEW_SOURCES ||
		     type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
			psf->sf_crcount--;
			if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
				if (psf_prev)
					psf_prev->sf_next = psf->sf_next;
				else
					*psf_list = psf->sf_next;
				kfree(psf);
				continue;
			}
		}
		psf_prev = psf;
	}
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586

empty_source:
	if (!stotal) {
		if (type == MLD2_ALLOW_NEW_SOURCES ||
		    type == MLD2_BLOCK_OLD_SOURCES)
			return skb;
		if (pmc->mca_crcount || isquery) {
			/* make sure we have room for group header */
			if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
				mld_sendpack(skb);
				skb = NULL; /* add_grhead will get a new one */
			}
			skb = add_grhead(skb, pmc, type, &pgr);
		}
	}
L
Linus Torvalds 已提交
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
	if (pgr)
		pgr->grec_nsrcs = htons(scount);

	if (isquery)
		pmc->mca_flags &= ~MAF_GSQUERY;	/* clear query state */
	return skb;
}

static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
{
	struct sk_buff *skb = NULL;
	int type;

	if (!pmc) {
		read_lock_bh(&idev->lock);
		for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
			if (pmc->mca_flags & MAF_NOREPORT)
				continue;
			spin_lock_bh(&pmc->mca_lock);
			if (pmc->mca_sfcount[MCAST_EXCLUDE])
				type = MLD2_MODE_IS_EXCLUDE;
			else
				type = MLD2_MODE_IS_INCLUDE;
			skb = add_grec(skb, pmc, type, 0, 0);
			spin_unlock_bh(&pmc->mca_lock);
		}
		read_unlock_bh(&idev->lock);
	} else {
		spin_lock_bh(&pmc->mca_lock);
		if (pmc->mca_sfcount[MCAST_EXCLUDE])
			type = MLD2_MODE_IS_EXCLUDE;
		else
			type = MLD2_MODE_IS_INCLUDE;
		skb = add_grec(skb, pmc, type, 0, 0);
		spin_unlock_bh(&pmc->mca_lock);
	}
	if (skb)
		mld_sendpack(skb);
}

/*
 * remove zero-count source records from a source filter list
 */
static void mld_clear_zeros(struct ip6_sf_list **ppsf)
{
	struct ip6_sf_list *psf_prev, *psf_next, *psf;

	psf_prev = NULL;
	for (psf=*ppsf; psf; psf = psf_next) {
		psf_next = psf->sf_next;
		if (psf->sf_crcount == 0) {
			if (psf_prev)
				psf_prev->sf_next = psf->sf_next;
			else
				*ppsf = psf->sf_next;
			kfree(psf);
		} else
			psf_prev = psf;
	}
}

static void mld_send_cr(struct inet6_dev *idev)
{
	struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
	struct sk_buff *skb = NULL;
	int type, dtype;

	read_lock_bh(&idev->lock);
1655
	spin_lock(&idev->mc_lock);
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671

	/* deleted MCA's */
	pmc_prev = NULL;
	for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
		pmc_next = pmc->next;
		if (pmc->mca_sfmode == MCAST_INCLUDE) {
			type = MLD2_BLOCK_OLD_SOURCES;
			dtype = MLD2_BLOCK_OLD_SOURCES;
			skb = add_grec(skb, pmc, type, 1, 0);
			skb = add_grec(skb, pmc, dtype, 1, 1);
		}
		if (pmc->mca_crcount) {
			if (pmc->mca_sfmode == MCAST_EXCLUDE) {
				type = MLD2_CHANGE_TO_INCLUDE;
				skb = add_grec(skb, pmc, type, 1, 0);
			}
1672
			pmc->mca_crcount--;
L
Linus Torvalds 已提交
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
			if (pmc->mca_crcount == 0) {
				mld_clear_zeros(&pmc->mca_tomb);
				mld_clear_zeros(&pmc->mca_sources);
			}
		}
		if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
		    !pmc->mca_sources) {
			if (pmc_prev)
				pmc_prev->next = pmc_next;
			else
				idev->mc_tomb = pmc_next;
			in6_dev_put(pmc->idev);
			kfree(pmc);
		} else
			pmc_prev = pmc;
	}
1689
	spin_unlock(&idev->mc_lock);
L
Linus Torvalds 已提交
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710

	/* change recs */
	for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
		spin_lock_bh(&pmc->mca_lock);
		if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
			type = MLD2_BLOCK_OLD_SOURCES;
			dtype = MLD2_ALLOW_NEW_SOURCES;
		} else {
			type = MLD2_ALLOW_NEW_SOURCES;
			dtype = MLD2_BLOCK_OLD_SOURCES;
		}
		skb = add_grec(skb, pmc, type, 0, 0);
		skb = add_grec(skb, pmc, dtype, 0, 1);	/* deleted sources */

		/* filter mode changes */
		if (pmc->mca_crcount) {
			if (pmc->mca_sfmode == MCAST_EXCLUDE)
				type = MLD2_CHANGE_TO_EXCLUDE;
			else
				type = MLD2_CHANGE_TO_INCLUDE;
			skb = add_grec(skb, pmc, type, 0, 0);
1711
			pmc->mca_crcount--;
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
		}
		spin_unlock_bh(&pmc->mca_lock);
	}
	read_unlock_bh(&idev->lock);
	if (!skb)
		return;
	(void) mld_sendpack(skb);
}

static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
{
1723
	struct net *net = dev_net(dev);
1724
	struct sock *sk = net->ipv6.igmp_sk;
L
Linus Torvalds 已提交
1725
	struct inet6_dev *idev;
1726
	struct sk_buff *skb;
1727
	struct mld_msg *hdr;
1728
	const struct in6_addr *snd_addr, *saddr;
L
Linus Torvalds 已提交
1729 1730 1731 1732 1733
	struct in6_addr addr_buf;
	int err, len, payload_len, full_len;
	u8 ra[8] = { IPPROTO_ICMPV6, 0,
		     IPV6_TLV_ROUTERALERT, 2, 0, 0,
		     IPV6_TLV_PADN, 0 };
1734
	struct flowi6 fl6;
E
Eric Dumazet 已提交
1735
	struct dst_entry *dst;
L
Linus Torvalds 已提交
1736

1737 1738 1739 1740
	if (type == ICMPV6_MGM_REDUCTION)
		snd_addr = &in6addr_linklocal_allrouters;
	else
		snd_addr = addr;
L
Linus Torvalds 已提交
1741 1742 1743 1744 1745

	len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
	payload_len = len + sizeof(ra);
	full_len = sizeof(struct ipv6hdr) + payload_len;

1746 1747 1748 1749 1750
	rcu_read_lock();
	IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
		      IPSTATS_MIB_OUT, full_len);
	rcu_read_unlock();

1751
	skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err);
L
Linus Torvalds 已提交
1752 1753

	if (skb == NULL) {
1754
		rcu_read_lock();
1755
		IP6_INC_STATS(net, __in6_dev_get(dev),
1756 1757
			      IPSTATS_MIB_OUTDISCARDS);
		rcu_read_unlock();
L
Linus Torvalds 已提交
1758 1759 1760 1761 1762
		return;
	}

	skb_reserve(skb, LL_RESERVED_SPACE(dev));

1763
	if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
L
Linus Torvalds 已提交
1764
		/* <draft-ietf-magma-mld-source-05.txt>:
1765
		 * use unspecified address as the source address
L
Linus Torvalds 已提交
1766 1767
		 * when a valid link-local address is not available.
		 */
1768 1769 1770
		saddr = &in6addr_any;
	} else
		saddr = &addr_buf;
L
Linus Torvalds 已提交
1771

1772
	ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
L
Linus Torvalds 已提交
1773 1774 1775

	memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));

1776 1777 1778 1779
	hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
	memset(hdr, 0, sizeof(struct mld_msg));
	hdr->mld_type = type;
	ipv6_addr_copy(&hdr->mld_mca, addr);
L
Linus Torvalds 已提交
1780

1781 1782 1783
	hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
					 IPPROTO_ICMPV6,
					 csum_partial(hdr, len, 0));
L
Linus Torvalds 已提交
1784

E
Eric Dumazet 已提交
1785 1786
	rcu_read_lock();
	idev = __in6_dev_get(skb->dev);
L
Linus Torvalds 已提交
1787

E
Eric Dumazet 已提交
1788 1789
	dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
	if (!dst) {
1790 1791 1792 1793
		err = -ENOMEM;
		goto err_out;
	}

1794
	icmpv6_flow_init(sk, &fl6, type,
1795 1796 1797
			 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
			 skb->dev->ifindex);

1798
	dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
1799 1800
	if (IS_ERR(dst)) {
		err = PTR_ERR(dst);
1801
		goto err_out;
1802
	}
1803

E
Eric Dumazet 已提交
1804
	skb_dst_set(skb, dst);
1805
	err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1806 1807
		      dst_output);
out:
L
Linus Torvalds 已提交
1808
	if (!err) {
1809
		ICMP6MSGOUT_INC_STATS(net, idev, type);
1810
		ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1811
		IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
L
Linus Torvalds 已提交
1812
	} else
1813
		IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
L
Linus Torvalds 已提交
1814

E
Eric Dumazet 已提交
1815
	rcu_read_unlock();
L
Linus Torvalds 已提交
1816
	return;
1817 1818 1819 1820

err_out:
	kfree_skb(skb);
	goto out;
L
Linus Torvalds 已提交
1821 1822 1823
}

static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1824
	const struct in6_addr *psfsrc)
L
Linus Torvalds 已提交
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
{
	struct ip6_sf_list *psf, *psf_prev;
	int rv = 0;

	psf_prev = NULL;
	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
			break;
		psf_prev = psf;
	}
	if (!psf || psf->sf_count[sfmode] == 0) {
		/* source filter not found, or count wrong =>  bug */
		return -ESRCH;
	}
	psf->sf_count[sfmode]--;
	if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
		struct inet6_dev *idev = pmc->idev;

		/* no more filters for this source */
		if (psf_prev)
			psf_prev->sf_next = psf->sf_next;
		else
			pmc->mca_sources = psf->sf_next;
		if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
		    !MLD_V1_SEEN(idev)) {
			psf->sf_crcount = idev->mc_qrv;
			psf->sf_next = pmc->mca_tomb;
			pmc->mca_tomb = psf;
			rv = 1;
		} else
			kfree(psf);
	}
	return rv;
}

1860 1861
static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
			  int sfmode, int sfcount, const struct in6_addr *psfsrc,
L
Linus Torvalds 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
			  int delta)
{
	struct ifmcaddr6 *pmc;
	int	changerec = 0;
	int	i, err;

	if (!idev)
		return -ENODEV;
	read_lock_bh(&idev->lock);
	for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
		if (ipv6_addr_equal(pmca, &pmc->mca_addr))
			break;
	}
	if (!pmc) {
		/* MCA not found?? bug */
		read_unlock_bh(&idev->lock);
		return -ESRCH;
	}
	spin_lock_bh(&pmc->mca_lock);
	sf_markstate(pmc);
	if (!delta) {
		if (!pmc->mca_sfcount[sfmode]) {
			spin_unlock_bh(&pmc->mca_lock);
			read_unlock_bh(&idev->lock);
			return -EINVAL;
		}
		pmc->mca_sfcount[sfmode]--;
	}
	err = 0;
	for (i=0; i<sfcount; i++) {
		int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);

		changerec |= rv > 0;
		if (!err && rv < 0)
			err = rv;
	}
	if (pmc->mca_sfmode == MCAST_EXCLUDE &&
	    pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
	    pmc->mca_sfcount[MCAST_INCLUDE]) {
		struct ip6_sf_list *psf;

		/* filter mode change */
		pmc->mca_sfmode = MCAST_INCLUDE;
		pmc->mca_crcount = idev->mc_qrv;
		idev->mc_ifc_count = pmc->mca_crcount;
		for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
			psf->sf_crcount = 0;
		mld_ifc_event(pmc->idev);
	} else if (sf_setstate(pmc) || changerec)
		mld_ifc_event(pmc->idev);
	spin_unlock_bh(&pmc->mca_lock);
	read_unlock_bh(&idev->lock);
	return err;
}

/*
 * Add multicast single-source filter to the interface list
 */
static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1921
	const struct in6_addr *psfsrc, int delta)
L
Linus Torvalds 已提交
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
{
	struct ip6_sf_list *psf, *psf_prev;

	psf_prev = NULL;
	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
			break;
		psf_prev = psf;
	}
	if (!psf) {
1932
		psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
L
Linus Torvalds 已提交
1933 1934
		if (!psf)
			return -ENOBUFS;
1935

L
Linus Torvalds 已提交
1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
		psf->sf_addr = *psfsrc;
		if (psf_prev) {
			psf_prev->sf_next = psf;
		} else
			pmc->mca_sources = psf;
	}
	psf->sf_count[sfmode]++;
	return 0;
}

static void sf_markstate(struct ifmcaddr6 *pmc)
{
	struct ip6_sf_list *psf;
	int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];

	for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
		if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
			psf->sf_oldin = mca_xcount ==
				psf->sf_count[MCAST_EXCLUDE] &&
				!psf->sf_count[MCAST_INCLUDE];
		} else
			psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
}

static int sf_setstate(struct ifmcaddr6 *pmc)
{
1962
	struct ip6_sf_list *psf, *dpsf;
L
Linus Torvalds 已提交
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
	int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
	int qrv = pmc->idev->mc_qrv;
	int new_in, rv;

	rv = 0;
	for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
		if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
			new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
				!psf->sf_count[MCAST_INCLUDE];
		} else
			new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1974 1975
		if (new_in) {
			if (!psf->sf_oldin) {
1976
				struct ip6_sf_list *prev = NULL;
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005

				for (dpsf=pmc->mca_tomb; dpsf;
				     dpsf=dpsf->sf_next) {
					if (ipv6_addr_equal(&dpsf->sf_addr,
					    &psf->sf_addr))
						break;
					prev = dpsf;
				}
				if (dpsf) {
					if (prev)
						prev->sf_next = dpsf->sf_next;
					else
						pmc->mca_tomb = dpsf->sf_next;
					kfree(dpsf);
				}
				psf->sf_crcount = qrv;
				rv++;
			}
		} else if (psf->sf_oldin) {
			psf->sf_crcount = 0;
			/*
			 * add or update "delete" records if an active filter
			 * is now inactive
			 */
			for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
				if (ipv6_addr_equal(&dpsf->sf_addr,
				    &psf->sf_addr))
					break;
			if (!dpsf) {
2006
				dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
2007 2008 2009 2010 2011 2012 2013 2014
				if (!dpsf)
					continue;
				*dpsf = *psf;
				/* pmc->mca_lock held by callers */
				dpsf->sf_next = pmc->mca_tomb;
				pmc->mca_tomb = dpsf;
			}
			dpsf->sf_crcount = qrv;
L
Linus Torvalds 已提交
2015 2016 2017 2018 2019 2020 2021 2022 2023
			rv++;
		}
	}
	return rv;
}

/*
 * Add multicast source filter list to the interface list
 */
2024 2025
static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
			  int sfmode, int sfcount, const struct in6_addr *psfsrc,
L
Linus Torvalds 已提交
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
			  int delta)
{
	struct ifmcaddr6 *pmc;
	int	isexclude;
	int	i, err;

	if (!idev)
		return -ENODEV;
	read_lock_bh(&idev->lock);
	for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
		if (ipv6_addr_equal(pmca, &pmc->mca_addr))
			break;
	}
	if (!pmc) {
		/* MCA not found?? bug */
		read_unlock_bh(&idev->lock);
		return -ESRCH;
	}
	spin_lock_bh(&pmc->mca_lock);

	sf_markstate(pmc);
	isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
	if (!delta)
		pmc->mca_sfcount[sfmode]++;
	err = 0;
	for (i=0; i<sfcount; i++) {
		err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
		if (err)
			break;
	}
	if (err) {
		int j;

		if (!delta)
			pmc->mca_sfcount[sfmode]--;
		for (j=0; j<i; j++)
			(void) ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
	} else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
		struct ip6_sf_list *psf;

		/* filter mode change */
		if (pmc->mca_sfcount[MCAST_EXCLUDE])
			pmc->mca_sfmode = MCAST_EXCLUDE;
		else if (pmc->mca_sfcount[MCAST_INCLUDE])
			pmc->mca_sfmode = MCAST_INCLUDE;
		/* else no filters; keep old mode for reports */

		pmc->mca_crcount = idev->mc_qrv;
		idev->mc_ifc_count = pmc->mca_crcount;
		for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
			psf->sf_crcount = 0;
		mld_ifc_event(idev);
	} else if (sf_setstate(pmc))
		mld_ifc_event(idev);
	spin_unlock_bh(&pmc->mca_lock);
	read_unlock_bh(&idev->lock);
	return err;
}

static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
{
	struct ip6_sf_list *psf, *nextpsf;

	for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
		nextpsf = psf->sf_next;
		kfree(psf);
	}
	pmc->mca_tomb = NULL;
	for (psf=pmc->mca_sources; psf; psf=nextpsf) {
		nextpsf = psf->sf_next;
		kfree(psf);
	}
	pmc->mca_sources = NULL;
	pmc->mca_sfmode = MCAST_EXCLUDE;
2100
	pmc->mca_sfcount[MCAST_INCLUDE] = 0;
L
Linus Torvalds 已提交
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
	pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
}


static void igmp6_join_group(struct ifmcaddr6 *ma)
{
	unsigned long delay;

	if (ma->mca_flags & MAF_NOREPORT)
		return;

	igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);

	delay = net_random() % IGMP6_UNSOLICITED_IVAL;

	spin_lock_bh(&ma->mca_lock);
	if (del_timer(&ma->mca_timer)) {
		atomic_dec(&ma->mca_refcnt);
		delay = ma->mca_timer.expires - jiffies;
	}

	if (!mod_timer(&ma->mca_timer, jiffies + delay))
		atomic_inc(&ma->mca_refcnt);
	ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
	spin_unlock_bh(&ma->mca_lock);
}

static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
			    struct inet6_dev *idev)
{
	int err;

2133 2134 2135
	/* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
	 * so no other readers or writers of iml or its sflist
	 */
S
Stephen Hemminger 已提交
2136
	if (!iml->sflist) {
L
Linus Torvalds 已提交
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205
		/* any-source empty exclude case */
		return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
	}
	err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
		iml->sflist->sl_count, iml->sflist->sl_addr, 0);
	sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
	iml->sflist = NULL;
	return err;
}

static void igmp6_leave_group(struct ifmcaddr6 *ma)
{
	if (MLD_V1_SEEN(ma->idev)) {
		if (ma->mca_flags & MAF_LAST_REPORTER)
			igmp6_send(&ma->mca_addr, ma->idev->dev,
				ICMPV6_MGM_REDUCTION);
	} else {
		mld_add_delrec(ma->idev, ma);
		mld_ifc_event(ma->idev);
	}
}

static void mld_gq_timer_expire(unsigned long data)
{
	struct inet6_dev *idev = (struct inet6_dev *)data;

	idev->mc_gq_running = 0;
	mld_send_report(idev, NULL);
	__in6_dev_put(idev);
}

static void mld_ifc_timer_expire(unsigned long data)
{
	struct inet6_dev *idev = (struct inet6_dev *)data;

	mld_send_cr(idev);
	if (idev->mc_ifc_count) {
		idev->mc_ifc_count--;
		if (idev->mc_ifc_count)
			mld_ifc_start_timer(idev, idev->mc_maxdelay);
	}
	__in6_dev_put(idev);
}

static void mld_ifc_event(struct inet6_dev *idev)
{
	if (MLD_V1_SEEN(idev))
		return;
	idev->mc_ifc_count = idev->mc_qrv;
	mld_ifc_start_timer(idev, 1);
}


static void igmp6_timer_handler(unsigned long data)
{
	struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;

	if (MLD_V1_SEEN(ma->idev))
		igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
	else
		mld_send_report(ma->idev, ma);

	spin_lock(&ma->mca_lock);
	ma->mca_flags |=  MAF_LAST_REPORTER;
	ma->mca_flags &= ~MAF_TIMER_RUNNING;
	spin_unlock(&ma->mca_lock);
	ma_put(ma);
}

2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
/* Device changing type */

void ipv6_mc_unmap(struct inet6_dev *idev)
{
	struct ifmcaddr6 *i;

	/* Install multicast list, except for all-nodes (already installed) */

	read_lock_bh(&idev->lock);
	for (i = idev->mc_list; i; i = i->next)
		igmp6_group_dropped(i);
	read_unlock_bh(&idev->lock);
}

void ipv6_mc_remap(struct inet6_dev *idev)
{
	ipv6_mc_up(idev);
}

L
Linus Torvalds 已提交
2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267
/* Device going down */

void ipv6_mc_down(struct inet6_dev *idev)
{
	struct ifmcaddr6 *i;

	/* Withdraw multicast list */

	read_lock_bh(&idev->lock);
	idev->mc_ifc_count = 0;
	if (del_timer(&idev->mc_ifc_timer))
		__in6_dev_put(idev);
	idev->mc_gq_running = 0;
	if (del_timer(&idev->mc_gq_timer))
		__in6_dev_put(idev);

	for (i = idev->mc_list; i; i=i->next)
		igmp6_group_dropped(i);
	read_unlock_bh(&idev->lock);

	mld_clear_delrec(idev);
}


/* Device going up */

void ipv6_mc_up(struct inet6_dev *idev)
{
	struct ifmcaddr6 *i;

	/* Install multicast list, except for all-nodes (already installed) */

	read_lock_bh(&idev->lock);
	for (i = idev->mc_list; i; i=i->next)
		igmp6_group_added(i);
	read_unlock_bh(&idev->lock);
}

/* IPv6 device initialization. */

void ipv6_mc_init_dev(struct inet6_dev *idev)
{
	write_lock_bh(&idev->lock);
2268
	spin_lock_init(&idev->mc_lock);
L
Linus Torvalds 已提交
2269
	idev->mc_gq_running = 0;
2270 2271
	setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
			(unsigned long)idev);
L
Linus Torvalds 已提交
2272 2273
	idev->mc_tomb = NULL;
	idev->mc_ifc_count = 0;
2274 2275
	setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
			(unsigned long)idev);
L
Linus Torvalds 已提交
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
	idev->mc_qrv = MLD_QRV_DEFAULT;
	idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
	idev->mc_v1_seen = 0;
	write_unlock_bh(&idev->lock);
}

/*
 *	Device is about to be destroyed: clean up.
 */

void ipv6_mc_destroy_dev(struct inet6_dev *idev)
{
	struct ifmcaddr6 *i;

	/* Deactivate timers */
	ipv6_mc_down(idev);

	/* Delete all-nodes address. */
	/* We cannot call ipv6_dev_mc_dec() directly, our caller in
	 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
	 * fail.
	 */
2298
	__ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
L
Linus Torvalds 已提交
2299

2300 2301
	if (idev->cnf.forwarding)
		__ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
L
Linus Torvalds 已提交
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317

	write_lock_bh(&idev->lock);
	while ((i = idev->mc_list) != NULL) {
		idev->mc_list = i->next;
		write_unlock_bh(&idev->lock);

		igmp6_group_dropped(i);
		ma_put(i);

		write_lock_bh(&idev->lock);
	}
	write_unlock_bh(&idev->lock);
}

#ifdef CONFIG_PROC_FS
struct igmp6_mc_iter_state {
2318
	struct seq_net_private p;
L
Linus Torvalds 已提交
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328
	struct net_device *dev;
	struct inet6_dev *idev;
};

#define igmp6_mc_seq_private(seq)	((struct igmp6_mc_iter_state *)(seq)->private)

static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
{
	struct ifmcaddr6 *im = NULL;
	struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2329
	struct net *net = seq_file_net(seq);
L
Linus Torvalds 已提交
2330

2331
	state->idev = NULL;
2332
	for_each_netdev_rcu(net, state->dev) {
L
Linus Torvalds 已提交
2333
		struct inet6_dev *idev;
2334
		idev = __in6_dev_get(state->dev);
L
Linus Torvalds 已提交
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
		if (!idev)
			continue;
		read_lock_bh(&idev->lock);
		im = idev->mc_list;
		if (im) {
			state->idev = idev;
			break;
		}
		read_unlock_bh(&idev->lock);
	}
	return im;
}

static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
{
	struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);

	im = im->next;
	while (!im) {
2354
		if (likely(state->idev != NULL))
L
Linus Torvalds 已提交
2355
			read_unlock_bh(&state->idev->lock);
2356 2357

		state->dev = next_net_device_rcu(state->dev);
L
Linus Torvalds 已提交
2358 2359 2360 2361
		if (!state->dev) {
			state->idev = NULL;
			break;
		}
2362
		state->idev = __in6_dev_get(state->dev);
L
Linus Torvalds 已提交
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
		if (!state->idev)
			continue;
		read_lock_bh(&state->idev->lock);
		im = state->idev->mc_list;
	}
	return im;
}

static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
{
	struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
	if (im)
		while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
			--pos;
	return pos ? NULL : im;
}

static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2381
	__acquires(RCU)
L
Linus Torvalds 已提交
2382
{
2383
	rcu_read_lock();
L
Linus Torvalds 已提交
2384 2385 2386 2387 2388
	return igmp6_mc_get_idx(seq, *pos);
}

static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
2389 2390
	struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);

L
Linus Torvalds 已提交
2391 2392 2393 2394 2395
	++*pos;
	return im;
}

static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2396
	__releases(RCU)
L
Linus Torvalds 已提交
2397 2398
{
	struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2399

L
Linus Torvalds 已提交
2400 2401 2402 2403 2404
	if (likely(state->idev != NULL)) {
		read_unlock_bh(&state->idev->lock);
		state->idev = NULL;
	}
	state->dev = NULL;
2405
	rcu_read_unlock();
L
Linus Torvalds 已提交
2406 2407 2408 2409 2410 2411 2412 2413
}

static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
{
	struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
	struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);

	seq_printf(seq,
2414
		   "%-4d %-15s %pi6 %5d %08X %ld\n",
L
Linus Torvalds 已提交
2415
		   state->dev->ifindex, state->dev->name,
2416
		   &im->mca_addr,
L
Linus Torvalds 已提交
2417 2418 2419 2420 2421 2422
		   im->mca_users, im->mca_flags,
		   (im->mca_flags&MAF_TIMER_RUNNING) ?
		   jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
	return 0;
}

2423
static const struct seq_operations igmp6_mc_seq_ops = {
L
Linus Torvalds 已提交
2424 2425 2426 2427 2428 2429 2430 2431
	.start	=	igmp6_mc_seq_start,
	.next	=	igmp6_mc_seq_next,
	.stop	=	igmp6_mc_seq_stop,
	.show	=	igmp6_mc_seq_show,
};

static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
{
2432 2433
	return seq_open_net(inode, file, &igmp6_mc_seq_ops,
			    sizeof(struct igmp6_mc_iter_state));
L
Linus Torvalds 已提交
2434 2435
}

2436
static const struct file_operations igmp6_mc_seq_fops = {
L
Linus Torvalds 已提交
2437 2438 2439 2440
	.owner		=	THIS_MODULE,
	.open		=	igmp6_mc_seq_open,
	.read		=	seq_read,
	.llseek		=	seq_lseek,
2441
	.release	=	seq_release_net,
L
Linus Torvalds 已提交
2442 2443 2444
};

struct igmp6_mcf_iter_state {
2445
	struct seq_net_private p;
L
Linus Torvalds 已提交
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457
	struct net_device *dev;
	struct inet6_dev *idev;
	struct ifmcaddr6 *im;
};

#define igmp6_mcf_seq_private(seq)	((struct igmp6_mcf_iter_state *)(seq)->private)

static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
{
	struct ip6_sf_list *psf = NULL;
	struct ifmcaddr6 *im = NULL;
	struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2458
	struct net *net = seq_file_net(seq);
L
Linus Torvalds 已提交
2459

2460 2461
	state->idev = NULL;
	state->im = NULL;
2462
	for_each_netdev_rcu(net, state->dev) {
L
Linus Torvalds 已提交
2463
		struct inet6_dev *idev;
2464
		idev = __in6_dev_get(state->dev);
L
Linus Torvalds 已提交
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492
		if (unlikely(idev == NULL))
			continue;
		read_lock_bh(&idev->lock);
		im = idev->mc_list;
		if (likely(im != NULL)) {
			spin_lock_bh(&im->mca_lock);
			psf = im->mca_sources;
			if (likely(psf != NULL)) {
				state->im = im;
				state->idev = idev;
				break;
			}
			spin_unlock_bh(&im->mca_lock);
		}
		read_unlock_bh(&idev->lock);
	}
	return psf;
}

static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
{
	struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);

	psf = psf->sf_next;
	while (!psf) {
		spin_unlock_bh(&state->im->mca_lock);
		state->im = state->im->next;
		while (!state->im) {
2493
			if (likely(state->idev != NULL))
L
Linus Torvalds 已提交
2494
				read_unlock_bh(&state->idev->lock);
2495 2496

			state->dev = next_net_device_rcu(state->dev);
L
Linus Torvalds 已提交
2497 2498 2499 2500
			if (!state->dev) {
				state->idev = NULL;
				goto out;
			}
2501
			state->idev = __in6_dev_get(state->dev);
L
Linus Torvalds 已提交
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
			if (!state->idev)
				continue;
			read_lock_bh(&state->idev->lock);
			state->im = state->idev->mc_list;
		}
		if (!state->im)
			break;
		spin_lock_bh(&state->im->mca_lock);
		psf = state->im->mca_sources;
	}
out:
	return psf;
}

static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
{
	struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
	if (psf)
		while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
			--pos;
	return pos ? NULL : psf;
}

static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2526
	__acquires(RCU)
L
Linus Torvalds 已提交
2527
{
2528
	rcu_read_lock();
L
Linus Torvalds 已提交
2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
	return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
}

static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
	struct ip6_sf_list *psf;
	if (v == SEQ_START_TOKEN)
		psf = igmp6_mcf_get_first(seq);
	else
		psf = igmp6_mcf_get_next(seq, v);
	++*pos;
	return psf;
}

static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2544
	__releases(RCU)
L
Linus Torvalds 已提交
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555
{
	struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
	if (likely(state->im != NULL)) {
		spin_unlock_bh(&state->im->mca_lock);
		state->im = NULL;
	}
	if (likely(state->idev != NULL)) {
		read_unlock_bh(&state->idev->lock);
		state->idev = NULL;
	}
	state->dev = NULL;
2556
	rcu_read_unlock();
L
Linus Torvalds 已提交
2557 2558 2559 2560 2561 2562 2563 2564
}

static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
{
	struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
	struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);

	if (v == SEQ_START_TOKEN) {
2565
		seq_printf(seq,
L
Linus Torvalds 已提交
2566
			   "%3s %6s "
2567
			   "%32s %32s %6s %6s\n", "Idx",
L
Linus Torvalds 已提交
2568 2569 2570 2571
			   "Device", "Multicast Address",
			   "Source Address", "INC", "EXC");
	} else {
		seq_printf(seq,
2572
			   "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
L
Linus Torvalds 已提交
2573
			   state->dev->ifindex, state->dev->name,
2574 2575
			   &state->im->mca_addr,
			   &psf->sf_addr,
L
Linus Torvalds 已提交
2576 2577 2578 2579 2580 2581
			   psf->sf_count[MCAST_INCLUDE],
			   psf->sf_count[MCAST_EXCLUDE]);
	}
	return 0;
}

2582
static const struct seq_operations igmp6_mcf_seq_ops = {
L
Linus Torvalds 已提交
2583 2584 2585 2586 2587 2588 2589 2590
	.start	=	igmp6_mcf_seq_start,
	.next	=	igmp6_mcf_seq_next,
	.stop	=	igmp6_mcf_seq_stop,
	.show	=	igmp6_mcf_seq_show,
};

static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
{
2591 2592
	return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
			    sizeof(struct igmp6_mcf_iter_state));
L
Linus Torvalds 已提交
2593 2594
}

2595
static const struct file_operations igmp6_mcf_seq_fops = {
L
Linus Torvalds 已提交
2596 2597 2598 2599
	.owner		=	THIS_MODULE,
	.open		=	igmp6_mcf_seq_open,
	.read		=	seq_read,
	.llseek		=	seq_lseek,
2600
	.release	=	seq_release_net,
L
Linus Torvalds 已提交
2601
};
2602

2603
static int __net_init igmp6_proc_init(struct net *net)
2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622
{
	int err;

	err = -ENOMEM;
	if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
		goto out;
	if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
				  &igmp6_mcf_seq_fops))
		goto out_proc_net_igmp6;

	err = 0;
out:
	return err;

out_proc_net_igmp6:
	proc_net_remove(net, "igmp6");
	goto out;
}

2623
static void __net_exit igmp6_proc_exit(struct net *net)
2624 2625 2626 2627 2628
{
	proc_net_remove(net, "mcfilter6");
	proc_net_remove(net, "igmp6");
}
#else
2629
static inline int igmp6_proc_init(struct net *net)
2630 2631 2632
{
	return 0;
}
2633
static inline void igmp6_proc_exit(struct net *net)
2634 2635
{
}
L
Linus Torvalds 已提交
2636 2637
#endif

2638
static int __net_init igmp6_net_init(struct net *net)
L
Linus Torvalds 已提交
2639 2640 2641
{
	int err;

2642 2643
	err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
				   SOCK_RAW, IPPROTO_ICMPV6, net);
L
Linus Torvalds 已提交
2644 2645 2646 2647
	if (err < 0) {
		printk(KERN_ERR
		       "Failed to initialize the IGMP6 control socket (err %d).\n",
		       err);
2648
		goto out;
L
Linus Torvalds 已提交
2649 2650
	}

2651
	inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
L
Linus Torvalds 已提交
2652

2653 2654
	err = igmp6_proc_init(net);
	if (err)
2655 2656 2657 2658 2659
		goto out_sock_create;
out:
	return err;

out_sock_create:
2660
	inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2661
	goto out;
L
Linus Torvalds 已提交
2662 2663
}

2664
static void __net_exit igmp6_net_exit(struct net *net)
L
Linus Torvalds 已提交
2665
{
2666
	inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2667
	igmp6_proc_exit(net);
L
Linus Torvalds 已提交
2668
}
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683

static struct pernet_operations igmp6_net_ops = {
	.init = igmp6_net_init,
	.exit = igmp6_net_exit,
};

int __init igmp6_init(void)
{
	return register_pernet_subsys(&igmp6_net_ops);
}

void igmp6_cleanup(void)
{
	unregister_pernet_subsys(&igmp6_net_ops);
}