blob: 08b367c6b9cfe2cb268cf7ec603ecc8f5c588a86 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Multicast support for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09008 * Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/* Changes:
17 *
18 * yoshfuji : fix format of router-alert option
19 * YOSHIFUJI Hideaki @USAGI:
20 * Fixed source address for MLD message based on
21 * <draft-ietf-magma-mld-source-05.txt>.
22 * YOSHIFUJI Hideaki @USAGI:
23 * - Ignore Queries for invalid addresses.
24 * - MLD for link-local addresses.
25 * David L Stevens <dlstevens@us.ibm.com>:
26 * - MLDv2 support
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/errno.h>
31#include <linux/types.h>
32#include <linux/string.h>
33#include <linux/socket.h>
34#include <linux/sockios.h>
35#include <linux/jiffies.h>
36#include <linux/times.h>
37#include <linux/net.h>
38#include <linux/in.h>
39#include <linux/in6.h>
40#include <linux/netdevice.h>
41#include <linux/if_arp.h>
42#include <linux/route.h>
43#include <linux/init.h>
44#include <linux/proc_fs.h>
45#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +020047#include <linux/pkt_sched.h>
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090048#include <net/mld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <linux/netfilter.h>
51#include <linux/netfilter_ipv6.h>
52
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020053#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/sock.h>
55#include <net/snmp.h>
56
57#include <net/ipv6.h>
58#include <net/protocol.h>
59#include <net/if_inet6.h>
60#include <net/ndisc.h>
61#include <net/addrconf.h>
62#include <net/ip6_route.h>
Denis V. Lunev1ed85162008-04-03 14:31:03 -070063#include <net/inet_common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <net/ip6_checksum.h>
66
67/* Set to 3 to get tracing... */
68#define MCAST_DEBUG 2
69
70#if MCAST_DEBUG >= 3
71#define MDBG(x) printk x
72#else
73#define MDBG(x)
74#endif
75
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +090076/* Ensure that we have struct in6_addr aligned on 32bit word. */
77static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
78 BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
79 BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
80 BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
84
85/* Big mc list lock for all the sockets */
Eric Dumazet456b61b2010-11-23 13:12:15 +000086static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void igmp6_join_group(struct ifmcaddr6 *ma);
89static void igmp6_leave_group(struct ifmcaddr6 *ma);
90static void igmp6_timer_handler(unsigned long data);
91
92static void mld_gq_timer_expire(unsigned long data);
93static void mld_ifc_timer_expire(unsigned long data);
94static void mld_ifc_event(struct inet6_dev *idev);
95static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +000096static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static void mld_clear_delrec(struct inet6_dev *idev);
Daniel Borkmann6c567b72013-09-04 00:19:38 +020098static bool mld_in_v1_mode(const struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int sf_setstate(struct ifmcaddr6 *pmc);
100static void sf_markstate(struct ifmcaddr6 *pmc);
101static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000102static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
103 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int delta);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000105static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
106 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int delta);
108static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
109 struct inet6_dev *idev);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define MLD_QRV_DEFAULT 2
Daniel Borkmann89225d12013-09-04 00:19:37 +0200112/* RFC3810, 9.2. Query Interval */
113#define MLD_QI_DEFAULT (125 * HZ)
114/* RFC3810, 9.3. Query Response Interval */
115#define MLD_QRI_DEFAULT (10 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Daniel Borkmann9fd07842013-08-20 12:22:02 +0200117/* RFC3810, 8.1 Query Version Distinctions */
118#define MLD_V1_QUERY_LEN 24
119#define MLD_V2_QUERY_LEN_MIN 28
120
David L Stevens6f4353d2005-12-26 17:03:46 -0800121#define IPV6_MLD_MAX_MSF 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Brian Haleyab32ea52006-09-22 14:15:41 -0700123int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * socket join on multicast group
127 */
128
Eric Dumazet456b61b2010-11-23 13:12:15 +0000129#define for_each_pmc_rcu(np, pmc) \
130 for (pmc = rcu_dereference(np->ipv6_mc_list); \
131 pmc != NULL; \
132 pmc = rcu_dereference(pmc->next))
133
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200134static int unsolicited_report_interval(struct inet6_dev *idev)
135{
136 int iv;
137
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200138 if (mld_in_v1_mode(idev))
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200139 iv = idev->cnf.mldv1_unsolicited_report_interval;
140 else
141 iv = idev->cnf.mldv2_unsolicited_report_interval;
142
143 return iv > 0 ? iv : 1;
144}
145
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900146int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct net_device *dev = NULL;
149 struct ipv6_mc_socklist *mc_lst;
150 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900151 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int err;
153
154 if (!ipv6_addr_is_multicast(addr))
155 return -EINVAL;
156
Eric Dumazet456b61b2010-11-23 13:12:15 +0000157 rcu_read_lock();
158 for_each_pmc_rcu(np, mc_lst) {
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700159 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
160 ipv6_addr_equal(&mc_lst->addr, addr)) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000161 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700162 return -EADDRINUSE;
163 }
164 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000165 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
168
169 if (mc_lst == NULL)
170 return -ENOMEM;
171
172 mc_lst->next = NULL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000173 mc_lst->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Dumazet96b52e62010-06-07 21:05:02 +0000175 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (ifindex == 0) {
177 struct rt6_info *rt;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800178 rt = rt6_lookup(net, addr, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500180 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000181 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000184 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 if (dev == NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000187 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
189 return -ENODEV;
190 }
191
192 mc_lst->ifindex = dev->ifindex;
193 mc_lst->sfmode = MCAST_EXCLUDE;
YOSHIFUJI Hideaki196433c2006-01-04 13:56:31 -0800194 rwlock_init(&mc_lst->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 mc_lst->sflist = NULL;
196
197 /*
198 * now add/increase the group membership on the device
199 */
200
201 err = ipv6_dev_mc_inc(dev, addr);
202
203 if (err) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000204 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return err;
207 }
208
Eric Dumazet456b61b2010-11-23 13:12:15 +0000209 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 mc_lst->next = np->ipv6_mc_list;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000211 rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
212 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Eric Dumazet96b52e62010-06-07 21:05:02 +0000214 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 return 0;
217}
218
219/*
220 * socket leave on multicast group
221 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900222int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000225 struct ipv6_mc_socklist *mc_lst;
226 struct ipv6_mc_socklist __rcu **lnk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900227 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Li Weia858d642012-07-17 15:28:59 +0800229 if (!ipv6_addr_is_multicast(addr))
230 return -EINVAL;
231
Eric Dumazet456b61b2010-11-23 13:12:15 +0000232 spin_lock(&ipv6_sk_mc_lock);
233 for (lnk = &np->ipv6_mc_list;
234 (mc_lst = rcu_dereference_protected(*lnk,
235 lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
236 lnk = &mc_lst->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
238 ipv6_addr_equal(&mc_lst->addr, addr)) {
239 struct net_device *dev;
240
241 *lnk = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000242 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Eric Dumazet96b52e62010-06-07 21:05:02 +0000244 rcu_read_lock();
245 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800246 if (dev != NULL) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000247 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
David L Stevensacd6e002006-08-17 16:27:39 -0700249 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000250 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700252 } else
253 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000254 rcu_read_unlock();
Eric Dumazet456b61b2010-11-23 13:12:15 +0000255 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800256 kfree_rcu(mc_lst, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
258 }
259 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000260 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
David L Stevens9951f032005-07-08 17:47:28 -0700262 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Eric Dumazet96b52e62010-06-07 21:05:02 +0000265/* called with rcu_read_lock() */
266static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000267 const struct in6_addr *group,
Eric Dumazet96b52e62010-06-07 21:05:02 +0000268 int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct net_device *dev = NULL;
271 struct inet6_dev *idev = NULL;
272
273 if (ifindex == 0) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000274 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (rt) {
David S. Millerd1918542011-12-28 20:19:20 -0500277 dev = rt->dst.dev;
Amerigo Wang94e187c2012-10-29 00:13:19 +0000278 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 } else
Eric Dumazet96b52e62010-06-07 21:05:02 +0000281 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (!dev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000284 return NULL;
285 idev = __in6_dev_get(dev);
Ilpo Järvinen448eb712008-12-14 23:15:21 -0800286 if (!idev)
Joe Perches8a22c992010-11-14 17:05:00 +0000287 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 read_lock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000289 if (idev->dead) {
290 read_unlock_bh(&idev->lock);
291 return NULL;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return idev;
294}
295
296void ipv6_sock_mc_close(struct sock *sk)
297{
298 struct ipv6_pinfo *np = inet6_sk(sk);
299 struct ipv6_mc_socklist *mc_lst;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900300 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Eric Dumazet0e1efe92012-12-05 09:18:10 +0000302 if (!rcu_access_pointer(np->ipv6_mc_list))
303 return;
304
Eric Dumazet456b61b2010-11-23 13:12:15 +0000305 spin_lock(&ipv6_sk_mc_lock);
306 while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
307 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct net_device *dev;
309
310 np->ipv6_mc_list = mc_lst->next;
Eric Dumazet456b61b2010-11-23 13:12:15 +0000311 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Eric Dumazet96b52e62010-06-07 21:05:02 +0000313 rcu_read_lock();
314 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (dev) {
Eric Dumazet96b52e62010-06-07 21:05:02 +0000316 struct inet6_dev *idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
David L Stevensacd6e002006-08-17 16:27:39 -0700318 (void) ip6_mc_leave_src(sk, mc_lst, idev);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000319 if (idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
David L Stevensacd6e002006-08-17 16:27:39 -0700321 } else
322 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000323 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Eric Dumazet456b61b2010-11-23 13:12:15 +0000325 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
Lai Jiangshane3cbf282011-03-18 12:00:50 +0800326 kfree_rcu(mc_lst, rcu);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000327
328 spin_lock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
Eric Dumazet456b61b2010-11-23 13:12:15 +0000330 spin_unlock(&ipv6_sk_mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333int ip6_mc_source(int add, int omode, struct sock *sk,
334 struct group_source_req *pgsr)
335{
336 struct in6_addr *source, *group;
337 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 struct inet6_dev *idev;
339 struct ipv6_pinfo *inet6 = inet6_sk(sk);
340 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900341 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 int i, j, rv;
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700343 int leavegroup = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800344 int pmclocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 int err;
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
348 group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
349
350 if (!ipv6_addr_is_multicast(group))
351 return -EINVAL;
352
Eric Dumazet96b52e62010-06-07 21:05:02 +0000353 rcu_read_lock();
354 idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
355 if (!idev) {
356 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 err = -EADDRNOTAVAIL;
361
Eric Dumazet456b61b2010-11-23 13:12:15 +0000362 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
364 continue;
365 if (ipv6_addr_equal(&pmc->addr, group))
366 break;
367 }
David L Stevens917f2f12005-07-08 17:45:16 -0700368 if (!pmc) { /* must have a prior join */
369 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* if a source filter was set, must be the same mode as before */
373 if (pmc->sflist) {
David L Stevens917f2f12005-07-08 17:45:16 -0700374 if (pmc->sfmode != omode) {
375 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 } else if (pmc->sfmode != omode) {
379 /* allow mode switches for empty-set filters */
380 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
381 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
382 pmc->sfmode = omode;
383 }
384
Eric Dumazet96b52e62010-06-07 21:05:02 +0000385 write_lock(&pmc->sflock);
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800386 pmclocked = 1;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 psl = pmc->sflist;
389 if (!add) {
390 if (!psl)
David L Stevens917f2f12005-07-08 17:45:16 -0700391 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 rv = !0;
393 for (i=0; i<psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000394 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (rv == 0)
396 break;
397 }
398 if (rv) /* source not found */
David L Stevens917f2f12005-07-08 17:45:16 -0700399 goto done; /* err = -EADDRNOTAVAIL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700401 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
402 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
403 leavegroup = 1;
404 goto done;
405 }
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* update the interface filter */
408 ip6_mc_del_src(idev, group, omode, 1, source, 1);
409
410 for (j=i+1; j<psl->sl_count; j++)
411 psl->sl_addr[j-1] = psl->sl_addr[j];
412 psl->sl_count--;
413 err = 0;
414 goto done;
415 }
416 /* else, add a new source to the filter */
417
418 if (psl && psl->sl_count >= sysctl_mld_max_msf) {
419 err = -ENOBUFS;
420 goto done;
421 }
422 if (!psl || psl->sl_count == psl->sl_max) {
423 struct ip6_sf_socklist *newpsl;
424 int count = IP6_SFBLOCK;
425
426 if (psl)
427 count += psl->sl_max;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800428 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (!newpsl) {
430 err = -ENOBUFS;
431 goto done;
432 }
433 newpsl->sl_max = count;
434 newpsl->sl_count = count - IP6_SFBLOCK;
435 if (psl) {
436 for (i=0; i<psl->sl_count; i++)
437 newpsl->sl_addr[i] = psl->sl_addr[i];
438 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
439 }
440 pmc->sflist = psl = newpsl;
441 }
442 rv = 1; /* > 0 for insert logic below if sl_count is 0 */
443 for (i=0; i<psl->sl_count; i++) {
YOSHIFUJI Hideaki / 吉藤英明07c2fec2013-01-29 12:48:23 +0000444 rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
Jean Sacren56db1c52013-02-03 21:34:10 +0000445 if (rv == 0) /* There is an error in the address. */
446 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 for (j=psl->sl_count-1; j>=i; j--)
449 psl->sl_addr[j+1] = psl->sl_addr[j];
450 psl->sl_addr[i] = *source;
451 psl->sl_count++;
452 err = 0;
453 /* update the interface list */
454 ip6_mc_add_src(idev, group, omode, 1, source, 1);
455done:
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800456 if (pmclocked)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000457 write_unlock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000459 rcu_read_unlock();
David L Stevensc9e3e8b2005-06-21 13:58:25 -0700460 if (leavegroup)
461 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return err;
463}
464
465int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
466{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000467 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct ipv6_mc_socklist *pmc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct inet6_dev *idev;
470 struct ipv6_pinfo *inet6 = inet6_sk(sk);
471 struct ip6_sf_socklist *newpsl, *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900472 struct net *net = sock_net(sk);
David L Stevens9951f032005-07-08 17:47:28 -0700473 int leavegroup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int i, err;
475
476 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
477
478 if (!ipv6_addr_is_multicast(group))
479 return -EINVAL;
480 if (gsf->gf_fmode != MCAST_INCLUDE &&
481 gsf->gf_fmode != MCAST_EXCLUDE)
482 return -EINVAL;
483
Eric Dumazet96b52e62010-06-07 21:05:02 +0000484 rcu_read_lock();
485 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Eric Dumazet96b52e62010-06-07 21:05:02 +0000487 if (!idev) {
488 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
David S. Miller9c059892005-07-08 21:44:39 -0700492 err = 0;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800493
David L Stevens9951f032005-07-08 17:47:28 -0700494 if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
495 leavegroup = 1;
496 goto done;
497 }
498
Eric Dumazet456b61b2010-11-23 13:12:15 +0000499 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (pmc->ifindex != gsf->gf_interface)
501 continue;
502 if (ipv6_addr_equal(&pmc->addr, group))
503 break;
504 }
David L Stevens917f2f12005-07-08 17:45:16 -0700505 if (!pmc) { /* must have a prior join */
506 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto done;
David L Stevens917f2f12005-07-08 17:45:16 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (gsf->gf_numsrc) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800510 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
511 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!newpsl) {
513 err = -ENOBUFS;
514 goto done;
515 }
516 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
517 for (i=0; i<newpsl->sl_count; ++i) {
518 struct sockaddr_in6 *psin6;
519
520 psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
521 newpsl->sl_addr[i] = psin6->sin6_addr;
522 }
523 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
524 newpsl->sl_count, newpsl->sl_addr, 0);
525 if (err) {
526 sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
527 goto done;
528 }
Yan Zheng8713dbf2005-10-28 08:02:08 +0800529 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 newpsl = NULL;
Yan Zheng8713dbf2005-10-28 08:02:08 +0800531 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
532 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800533
Eric Dumazet96b52e62010-06-07 21:05:02 +0000534 write_lock(&pmc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 psl = pmc->sflist;
536 if (psl) {
537 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
538 psl->sl_count, psl->sl_addr, 0);
539 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
540 } else
541 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
542 pmc->sflist = newpsl;
543 pmc->sfmode = gsf->gf_fmode;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000544 write_unlock(&pmc->sflock);
David L Stevens917f2f12005-07-08 17:45:16 -0700545 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546done:
547 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000548 rcu_read_unlock();
David L Stevens9951f032005-07-08 17:47:28 -0700549 if (leavegroup)
550 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return err;
552}
553
554int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
555 struct group_filter __user *optval, int __user *optlen)
556{
557 int err, i, count, copycount;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000558 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct ipv6_mc_socklist *pmc;
560 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct ipv6_pinfo *inet6 = inet6_sk(sk);
562 struct ip6_sf_socklist *psl;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900563 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
566
567 if (!ipv6_addr_is_multicast(group))
568 return -EINVAL;
569
Eric Dumazet96b52e62010-06-07 21:05:02 +0000570 rcu_read_lock();
571 idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Eric Dumazet96b52e62010-06-07 21:05:02 +0000573 if (!idev) {
574 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return -ENODEV;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 err = -EADDRNOTAVAIL;
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800579 /*
580 * changes to the ipv6_mc_list require the socket lock and
581 * a read lock on ip6_sk_mc_lock. We have the socket lock,
582 * so reading the list is safe.
583 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Dumazet456b61b2010-11-23 13:12:15 +0000585 for_each_pmc_rcu(inet6, pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (pmc->ifindex != gsf->gf_interface)
587 continue;
588 if (ipv6_addr_equal(group, &pmc->addr))
589 break;
590 }
591 if (!pmc) /* must have a prior join */
592 goto done;
593 gsf->gf_fmode = pmc->sfmode;
594 psl = pmc->sflist;
595 count = psl ? psl->sl_count : 0;
596 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000597 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
600 gsf->gf_numsrc = count;
601 if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
602 copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
603 return -EFAULT;
604 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800605 /* changes to psl require the socket lock, a read lock on
606 * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
607 * have the socket lock, so reading here is safe.
608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 for (i=0; i<copycount; i++) {
610 struct sockaddr_in6 *psin6;
611 struct sockaddr_storage ss;
612
613 psin6 = (struct sockaddr_in6 *)&ss;
614 memset(&ss, 0, sizeof(ss));
615 psin6->sin6_family = AF_INET6;
616 psin6->sin6_addr = psl->sl_addr[i];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900617 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return -EFAULT;
619 }
620 return 0;
621done:
622 read_unlock_bh(&idev->lock);
Eric Dumazet96b52e62010-06-07 21:05:02 +0000623 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return err;
625}
626
Eric Dumazeta50feda2012-05-18 18:57:34 +0000627bool inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
628 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct ipv6_pinfo *np = inet6_sk(sk);
631 struct ipv6_mc_socklist *mc;
632 struct ip6_sf_socklist *psl;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000633 bool rv = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Eric Dumazet456b61b2010-11-23 13:12:15 +0000635 rcu_read_lock();
636 for_each_pmc_rcu(np, mc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (ipv6_addr_equal(&mc->addr, mc_addr))
638 break;
639 }
640 if (!mc) {
Eric Dumazet456b61b2010-11-23 13:12:15 +0000641 rcu_read_unlock();
Eric Dumazeta50feda2012-05-18 18:57:34 +0000642 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800644 read_lock(&mc->sflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 psl = mc->sflist;
646 if (!psl) {
647 rv = mc->sfmode == MCAST_EXCLUDE;
648 } else {
649 int i;
650
651 for (i=0; i<psl->sl_count; i++) {
652 if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
653 break;
654 }
655 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000656 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000658 rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -0800660 read_unlock(&mc->sflock);
Eric Dumazet456b61b2010-11-23 13:12:15 +0000661 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 return rv;
664}
665
666static void ma_put(struct ifmcaddr6 *mc)
667{
668 if (atomic_dec_and_test(&mc->mca_refcnt)) {
669 in6_dev_put(mc->idev);
670 kfree(mc);
671 }
672}
673
674static void igmp6_group_added(struct ifmcaddr6 *mc)
675{
676 struct net_device *dev = mc->idev->dev;
677 char buf[MAX_ADDR_LEN];
678
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000679 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
680 IPV6_ADDR_SCOPE_LINKLOCAL)
681 return;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 spin_lock_bh(&mc->mca_lock);
684 if (!(mc->mca_flags&MAF_LOADED)) {
685 mc->mca_flags |= MAF_LOADED;
686 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000687 dev_mc_add(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689 spin_unlock_bh(&mc->mca_lock);
690
691 if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
692 return;
693
Daniel Borkmann6c567b72013-09-04 00:19:38 +0200694 if (mld_in_v1_mode(mc->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 igmp6_join_group(mc);
696 return;
697 }
698 /* else v2 */
699
700 mc->mca_crcount = mc->idev->mc_qrv;
701 mld_ifc_event(mc->idev);
702}
703
704static void igmp6_group_dropped(struct ifmcaddr6 *mc)
705{
706 struct net_device *dev = mc->idev->dev;
707 char buf[MAX_ADDR_LEN];
708
YOSHIFUJI Hideaki / 吉藤英明ec16ef22013-02-09 04:29:58 +0000709 if (IPV6_ADDR_MC_SCOPE(&mc->mca_addr) <
710 IPV6_ADDR_SCOPE_LINKLOCAL)
711 return;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 spin_lock_bh(&mc->mca_lock);
714 if (mc->mca_flags&MAF_LOADED) {
715 mc->mca_flags &= ~MAF_LOADED;
716 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000717 dev_mc_del(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
720 if (mc->mca_flags & MAF_NOREPORT)
721 goto done;
722 spin_unlock_bh(&mc->mca_lock);
723
724 if (!mc->idev->dead)
725 igmp6_leave_group(mc);
726
727 spin_lock_bh(&mc->mca_lock);
728 if (del_timer(&mc->mca_timer))
729 atomic_dec(&mc->mca_refcnt);
730done:
731 ip6_mc_clear_src(mc);
732 spin_unlock_bh(&mc->mca_lock);
733}
734
735/*
736 * deleted ifmcaddr6 manipulation
737 */
738static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
739{
740 struct ifmcaddr6 *pmc;
741
742 /* this is an "ifmcaddr6" for convenience; only the fields below
743 * are actually used. In particular, the refcnt and users are not
744 * used for management of the delete list. Using the same structure
745 * for deleted items allows change reports to use common code with
746 * non-deleted or query-response MCA's.
747 */
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800748 pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (!pmc)
750 return;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 spin_lock_bh(&im->mca_lock);
753 spin_lock_init(&pmc->mca_lock);
754 pmc->idev = im->idev;
755 in6_dev_hold(idev);
756 pmc->mca_addr = im->mca_addr;
757 pmc->mca_crcount = idev->mc_qrv;
758 pmc->mca_sfmode = im->mca_sfmode;
759 if (pmc->mca_sfmode == MCAST_INCLUDE) {
760 struct ip6_sf_list *psf;
761
762 pmc->mca_tomb = im->mca_tomb;
763 pmc->mca_sources = im->mca_sources;
764 im->mca_tomb = im->mca_sources = NULL;
765 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
766 psf->sf_crcount = pmc->mca_crcount;
767 }
768 spin_unlock_bh(&im->mca_lock);
769
Stephen Hemminger6457d262010-02-17 18:48:44 -0800770 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 pmc->next = idev->mc_tomb;
772 idev->mc_tomb = pmc;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800773 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000776static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 struct ifmcaddr6 *pmc, *pmc_prev;
779 struct ip6_sf_list *psf, *psf_next;
780
Stephen Hemminger6457d262010-02-17 18:48:44 -0800781 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 pmc_prev = NULL;
783 for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
784 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
785 break;
786 pmc_prev = pmc;
787 }
788 if (pmc) {
789 if (pmc_prev)
790 pmc_prev->next = pmc->next;
791 else
792 idev->mc_tomb = pmc->next;
793 }
Stephen Hemminger6457d262010-02-17 18:48:44 -0800794 spin_unlock_bh(&idev->mc_lock);
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (pmc) {
797 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
798 psf_next = psf->sf_next;
799 kfree(psf);
800 }
801 in6_dev_put(pmc->idev);
802 kfree(pmc);
803 }
804}
805
806static void mld_clear_delrec(struct inet6_dev *idev)
807{
808 struct ifmcaddr6 *pmc, *nextpmc;
809
Stephen Hemminger6457d262010-02-17 18:48:44 -0800810 spin_lock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 pmc = idev->mc_tomb;
812 idev->mc_tomb = NULL;
Stephen Hemminger6457d262010-02-17 18:48:44 -0800813 spin_unlock_bh(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 for (; pmc; pmc = nextpmc) {
816 nextpmc = pmc->next;
817 ip6_mc_clear_src(pmc);
818 in6_dev_put(pmc->idev);
819 kfree(pmc);
820 }
821
822 /* clear dead sources, too */
823 read_lock_bh(&idev->lock);
824 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
825 struct ip6_sf_list *psf, *psf_next;
826
827 spin_lock_bh(&pmc->mca_lock);
828 psf = pmc->mca_tomb;
829 pmc->mca_tomb = NULL;
830 spin_unlock_bh(&pmc->mca_lock);
831 for (; psf; psf=psf_next) {
832 psf_next = psf->sf_next;
833 kfree(psf);
834 }
835 }
836 read_unlock_bh(&idev->lock);
837}
838
839
840/*
841 * device multicast group inc (add if not found)
842 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900843int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 struct ifmcaddr6 *mc;
846 struct inet6_dev *idev;
847
Eric Dumazet96b52e62010-06-07 21:05:02 +0000848 /* we need to take a reference on idev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 idev = in6_dev_get(dev);
850
851 if (idev == NULL)
852 return -EINVAL;
853
854 write_lock_bh(&idev->lock);
855 if (idev->dead) {
856 write_unlock_bh(&idev->lock);
857 in6_dev_put(idev);
858 return -ENODEV;
859 }
860
861 for (mc = idev->mc_list; mc; mc = mc->next) {
862 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
863 mc->mca_users++;
864 write_unlock_bh(&idev->lock);
865 ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
866 NULL, 0);
867 in6_dev_put(idev);
868 return 0;
869 }
870 }
871
872 /*
873 * not found: create a new one.
874 */
875
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800876 mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (mc == NULL) {
879 write_unlock_bh(&idev->lock);
880 in6_dev_put(idev);
881 return -ENOMEM;
882 }
883
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800884 setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000886 mc->mca_addr = *addr;
Eric Dumazet96b52e62010-06-07 21:05:02 +0000887 mc->idev = idev; /* (reference taken) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 mc->mca_users = 1;
889 /* mca_stamp should be updated upon changes */
890 mc->mca_cstamp = mc->mca_tstamp = jiffies;
891 atomic_set(&mc->mca_refcnt, 2);
892 spin_lock_init(&mc->mca_lock);
893
894 /* initial mode is (EX, empty) */
895 mc->mca_sfmode = MCAST_EXCLUDE;
896 mc->mca_sfcount[MCAST_EXCLUDE] = 1;
897
898 if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
899 IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
900 mc->mca_flags |= MAF_NOREPORT;
901
902 mc->next = idev->mc_list;
903 idev->mc_list = mc;
904 write_unlock_bh(&idev->lock);
905
906 mld_del_delrec(idev, &mc->mca_addr);
907 igmp6_group_added(mc);
908 ma_put(mc);
909 return 0;
910}
911
912/*
913 * device multicast group del
914 */
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900915int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct ifmcaddr6 *ma, **map;
918
919 write_lock_bh(&idev->lock);
920 for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
921 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
922 if (--ma->mca_users == 0) {
923 *map = ma->next;
924 write_unlock_bh(&idev->lock);
925
926 igmp6_group_dropped(ma);
927
928 ma_put(ma);
929 return 0;
930 }
931 write_unlock_bh(&idev->lock);
932 return 0;
933 }
934 }
935 write_unlock_bh(&idev->lock);
936
937 return -ENOENT;
938}
939
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900940int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Eric Dumazet96b52e62010-06-07 21:05:02 +0000942 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 int err;
944
Eric Dumazet96b52e62010-06-07 21:05:02 +0000945 rcu_read_lock();
946
947 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!idev)
Eric Dumazet96b52e62010-06-07 21:05:02 +0000949 err = -ENODEV;
950 else
951 err = __ipv6_dev_mc_dec(idev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Eric Dumazet96b52e62010-06-07 21:05:02 +0000953 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return err;
955}
956
957/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * check if the interface/address pair is valid
959 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000960bool ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
961 const struct in6_addr *src_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 struct inet6_dev *idev;
964 struct ifmcaddr6 *mc;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000965 bool rv = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Eric Dumazet96b52e62010-06-07 21:05:02 +0000967 rcu_read_lock();
968 idev = __in6_dev_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (idev) {
970 read_lock_bh(&idev->lock);
971 for (mc = idev->mc_list; mc; mc=mc->next) {
972 if (ipv6_addr_equal(&mc->mca_addr, group))
973 break;
974 }
975 if (mc) {
976 if (src_addr && !ipv6_addr_any(src_addr)) {
977 struct ip6_sf_list *psf;
978
979 spin_lock_bh(&mc->mca_lock);
980 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
981 if (ipv6_addr_equal(&psf->sf_addr, src_addr))
982 break;
983 }
984 if (psf)
985 rv = psf->sf_count[MCAST_INCLUDE] ||
986 psf->sf_count[MCAST_EXCLUDE] !=
987 mc->mca_sfcount[MCAST_EXCLUDE];
988 else
989 rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
990 spin_unlock_bh(&mc->mca_lock);
991 } else
Eric Dumazeta50feda2012-05-18 18:57:34 +0000992 rv = true; /* don't filter unspecified source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
Eric Dumazet96b52e62010-06-07 21:05:02 +0000996 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return rv;
998}
999
1000static void mld_gq_start_timer(struct inet6_dev *idev)
1001{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001002 unsigned long tv = prandom_u32() % idev->mc_maxdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 idev->mc_gq_running = 1;
1005 if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1006 in6_dev_hold(idev);
1007}
1008
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001009static void mld_gq_stop_timer(struct inet6_dev *idev)
1010{
1011 idev->mc_gq_running = 0;
1012 if (del_timer(&idev->mc_gq_timer))
1013 __in6_dev_put(idev);
1014}
1015
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001016static void mld_ifc_start_timer(struct inet6_dev *idev, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001018 unsigned long tv = prandom_u32() % delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1021 in6_dev_hold(idev);
1022}
1023
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001024static void mld_ifc_stop_timer(struct inet6_dev *idev)
1025{
1026 idev->mc_ifc_count = 0;
1027 if (del_timer(&idev->mc_ifc_timer))
1028 __in6_dev_put(idev);
1029}
1030
Daniel Borkmannc2cef4e2013-08-20 12:22:01 +02001031static void mld_dad_start_timer(struct inet6_dev *idev, unsigned long delay)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001032{
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001033 unsigned long tv = prandom_u32() % delay;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02001034
1035 if (!mod_timer(&idev->mc_dad_timer, jiffies+tv+2))
1036 in6_dev_hold(idev);
1037}
1038
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001039static void mld_dad_stop_timer(struct inet6_dev *idev)
1040{
1041 if (del_timer(&idev->mc_dad_timer))
1042 __in6_dev_put(idev);
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
1046 * IGMP handling (alias multicast ICMPv6 messages)
1047 */
1048
1049static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1050{
1051 unsigned long delay = resptime;
1052
1053 /* Do not start timer for these addresses */
1054 if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1055 IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1056 return;
1057
1058 if (del_timer(&ma->mca_timer)) {
1059 atomic_dec(&ma->mca_refcnt);
1060 delay = ma->mca_timer.expires - jiffies;
1061 }
1062
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001063 if (delay >= resptime)
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001064 delay = prandom_u32() % resptime;
Daniel Borkmanncc7f7ab2013-09-04 00:19:41 +02001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 ma->mca_timer.expires = jiffies + delay;
1067 if (!mod_timer(&ma->mca_timer, jiffies + delay))
1068 atomic_inc(&ma->mca_refcnt);
1069 ma->mca_flags |= MAF_TIMER_RUNNING;
1070}
1071
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001072/* mark EXCLUDE-mode sources */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001073static bool mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1074 const struct in6_addr *srcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct ip6_sf_list *psf;
1077 int i, scount;
1078
1079 scount = 0;
1080 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1081 if (scount == nsrcs)
1082 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001083 for (i=0; i<nsrcs; i++) {
1084 /* skip inactive filters */
Yan, Zhenge05c4ad32011-08-23 22:54:37 +00001085 if (psf->sf_count[MCAST_INCLUDE] ||
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001086 pmc->mca_sfcount[MCAST_EXCLUDE] !=
1087 psf->sf_count[MCAST_EXCLUDE])
RongQing.Lice713ee2012-04-05 17:36:29 +08001088 break;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001089 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1090 scount++;
1091 break;
1092 }
1093 }
1094 }
1095 pmc->mca_flags &= ~MAF_GSQUERY;
1096 if (scount == nsrcs) /* all sources excluded */
Eric Dumazeta50feda2012-05-18 18:57:34 +00001097 return false;
1098 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001099}
1100
Eric Dumazeta50feda2012-05-18 18:57:34 +00001101static bool mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1102 const struct in6_addr *srcs)
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001103{
1104 struct ip6_sf_list *psf;
1105 int i, scount;
1106
1107 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1108 return mld_xmarksources(pmc, nsrcs, srcs);
1109
1110 /* mark INCLUDE-mode sources */
1111
1112 scount = 0;
1113 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1114 if (scount == nsrcs)
1115 break;
1116 for (i=0; i<nsrcs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1118 psf->sf_gsresp = 1;
1119 scount++;
1120 break;
1121 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001124 if (!scount) {
1125 pmc->mca_flags &= ~MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001126 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001127 }
1128 pmc->mca_flags |= MAF_GSQUERY;
Eric Dumazeta50feda2012-05-18 18:57:34 +00001129 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001132static int mld_force_mld_version(const struct inet6_dev *idev)
1133{
1134 /* Normally, both are 0 here. If enforcement to a particular is
1135 * being used, individual device enforcement will have a lower
1136 * precedence over 'all' device (.../conf/all/force_mld_version).
1137 */
1138
1139 if (dev_net(idev->dev)->ipv6.devconf_all->force_mld_version != 0)
1140 return dev_net(idev->dev)->ipv6.devconf_all->force_mld_version;
1141 else
1142 return idev->cnf.force_mld_version;
1143}
1144
1145static bool mld_in_v2_mode_only(const struct inet6_dev *idev)
1146{
1147 return mld_force_mld_version(idev) == 2;
1148}
1149
1150static bool mld_in_v1_mode_only(const struct inet6_dev *idev)
1151{
1152 return mld_force_mld_version(idev) == 1;
1153}
1154
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001155static bool mld_in_v1_mode(const struct inet6_dev *idev)
1156{
Daniel Borkmann58c0ecf2013-09-04 00:19:40 +02001157 if (mld_in_v2_mode_only(idev))
1158 return false;
1159 if (mld_in_v1_mode_only(idev))
Daniel Borkmann6c567b72013-09-04 00:19:38 +02001160 return true;
1161 if (idev->mc_v1_seen && time_before(jiffies, idev->mc_v1_seen))
1162 return true;
1163
1164 return false;
1165}
1166
Daniel Borkmann89225d12013-09-04 00:19:37 +02001167static void mld_set_v1_mode(struct inet6_dev *idev)
1168{
1169 /* RFC3810, relevant sections:
1170 * - 9.1. Robustness Variable
1171 * - 9.2. Query Interval
1172 * - 9.3. Query Response Interval
1173 * - 9.12. Older Version Querier Present Timeout
1174 */
1175 unsigned long switchback;
1176
1177 switchback = (idev->mc_qrv * idev->mc_qi) + idev->mc_qri;
1178
1179 idev->mc_v1_seen = jiffies + switchback;
1180}
1181
1182static void mld_update_qrv(struct inet6_dev *idev,
1183 const struct mld2_query *mlh2)
1184{
1185 /* RFC3810, relevant sections:
1186 * - 5.1.8. QRV (Querier's Robustness Variable)
1187 * - 9.1. Robustness Variable
1188 */
1189
1190 /* The value of the Robustness Variable MUST NOT be zero,
1191 * and SHOULD NOT be one. Catch this here if we ever run
1192 * into such a case in future.
1193 */
1194 WARN_ON(idev->mc_qrv == 0);
1195
1196 if (mlh2->mld2q_qrv > 0)
1197 idev->mc_qrv = mlh2->mld2q_qrv;
1198
1199 if (unlikely(idev->mc_qrv < 2)) {
1200 net_warn_ratelimited("IPv6: MLD: clamping QRV from %u to %u!\n",
1201 idev->mc_qrv, MLD_QRV_DEFAULT);
1202 idev->mc_qrv = MLD_QRV_DEFAULT;
1203 }
1204}
1205
1206static void mld_update_qi(struct inet6_dev *idev,
1207 const struct mld2_query *mlh2)
1208{
1209 /* RFC3810, relevant sections:
1210 * - 5.1.9. QQIC (Querier's Query Interval Code)
1211 * - 9.2. Query Interval
1212 * - 9.12. Older Version Querier Present Timeout
1213 * (the [Query Interval] in the last Query received)
1214 */
1215 unsigned long mc_qqi;
1216
1217 if (mlh2->mld2q_qqic < 128) {
1218 mc_qqi = mlh2->mld2q_qqic;
1219 } else {
1220 unsigned long mc_man, mc_exp;
1221
1222 mc_exp = MLDV2_QQIC_EXP(mlh2->mld2q_qqic);
1223 mc_man = MLDV2_QQIC_MAN(mlh2->mld2q_qqic);
1224
1225 mc_qqi = (mc_man | 0x10) << (mc_exp + 3);
1226 }
1227
1228 idev->mc_qi = mc_qqi * HZ;
1229}
1230
1231static void mld_update_qri(struct inet6_dev *idev,
1232 const struct mld2_query *mlh2)
1233{
1234 /* RFC3810, relevant sections:
1235 * - 5.1.3. Maximum Response Code
1236 * - 9.3. Query Response Interval
1237 */
Daniel Borkmanne3f5b172013-09-04 00:19:39 +02001238 idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2));
Daniel Borkmann89225d12013-09-04 00:19:37 +02001239}
1240
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001241static int mld_process_v1(struct inet6_dev *idev, struct mld_msg *mld,
1242 unsigned long *max_delay)
1243{
1244 unsigned long mldv1_md;
1245
1246 /* Ignore v1 queries */
1247 if (mld_in_v2_mode_only(idev))
1248 return -EINVAL;
1249
1250 /* MLDv1 router present */
1251 mldv1_md = ntohs(mld->mld_maxdelay);
1252 *max_delay = max(msecs_to_jiffies(mldv1_md), 1UL);
1253
1254 mld_set_v1_mode(idev);
1255
1256 /* cancel MLDv2 report timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001257 mld_gq_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001258 /* cancel the interface change timer */
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02001259 mld_ifc_stop_timer(idev);
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001260 /* clear deleted report items */
1261 mld_clear_delrec(idev);
1262
1263 return 0;
1264}
1265
1266static int mld_process_v2(struct inet6_dev *idev, struct mld2_query *mld,
1267 unsigned long *max_delay)
1268{
1269 /* hosts need to stay in MLDv1 mode, discard MLDv2 queries */
1270 if (mld_in_v1_mode(idev))
1271 return -EINVAL;
1272
1273 *max_delay = max(msecs_to_jiffies(mldv2_mrc(mld)), 1UL);
1274
1275 mld_update_qrv(idev, mld);
1276 mld_update_qi(idev, mld);
1277 mld_update_qri(idev, mld);
1278
1279 idev->mc_maxdelay = *max_delay;
1280
1281 return 0;
1282}
1283
Eric Dumazet96b52e62010-06-07 21:05:02 +00001284/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285int igmp6_event_query(struct sk_buff *skb)
1286{
Yan Zheng97300b52005-10-31 20:09:45 +08001287 struct mld2_query *mlh2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct ifmcaddr6 *ma;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001289 const struct in6_addr *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 unsigned long max_delay;
1291 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001292 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 int group_type;
1294 int mark = 0;
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001295 int len, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1298 return -EINVAL;
1299
1300 /* compute payload length excluding extension headers */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001301 len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001302 len -= skb_network_header_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /* Drop queries with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001305 if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return -EINVAL;
1307
Eric Dumazet96b52e62010-06-07 21:05:02 +00001308 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (idev == NULL)
1310 return 0;
1311
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001312 mld = (struct mld_msg *)icmp6_hdr(skb);
1313 group = &mld->mld_mca;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 group_type = ipv6_addr_type(group);
1315
1316 if (group_type != IPV6_ADDR_ANY &&
Eric Dumazet96b52e62010-06-07 21:05:02 +00001317 !(group_type&IPV6_ADDR_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001320 if (len == MLD_V1_QUERY_LEN) {
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001321 err = mld_process_v1(idev, mld, &max_delay);
1322 if (err < 0)
1323 return err;
Daniel Borkmann9fd07842013-08-20 12:22:02 +02001324 } else if (len >= MLD_V2_QUERY_LEN_MIN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001325 int srcs_offset = sizeof(struct mld2_query) -
Yan Zheng97300b52005-10-31 20:09:45 +08001326 sizeof(struct icmp6hdr);
Daniel Borkmann89225d12013-09-04 00:19:37 +02001327
Eric Dumazet96b52e62010-06-07 21:05:02 +00001328 if (!pskb_may_pull(skb, srcs_offset))
Yan Zheng97300b52005-10-31 20:09:45 +08001329 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001330
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001331 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Daniel Borkmann84698962013-08-20 12:22:00 +02001332
Daniel Borkmann2b7c1212013-09-04 00:19:42 +02001333 err = mld_process_v2(idev, mlh2, &max_delay);
1334 if (err < 0)
1335 return err;
Daniel Borkmann89225d12013-09-04 00:19:37 +02001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (group_type == IPV6_ADDR_ANY) { /* general query */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001338 if (mlh2->mld2q_nsrcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EINVAL; /* no sources allowed */
Eric Dumazet96b52e62010-06-07 21:05:02 +00001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 mld_gq_start_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return 0;
1343 }
1344 /* mark sources to include, if group & source-specific */
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001345 if (mlh2->mld2q_nsrcs != 0) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001346 if (!pskb_may_pull(skb, srcs_offset +
Eric Dumazet96b52e62010-06-07 21:05:02 +00001347 ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
Yan Zheng97300b52005-10-31 20:09:45 +08001348 return -EINVAL;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001349
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001350 mlh2 = (struct mld2_query *)skb_transport_header(skb);
Yan Zheng97300b52005-10-31 20:09:45 +08001351 mark = 1;
1352 }
Eric Dumazet96b52e62010-06-07 21:05:02 +00001353 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 read_lock_bh(&idev->lock);
1357 if (group_type == IPV6_ADDR_ANY) {
1358 for (ma = idev->mc_list; ma; ma=ma->next) {
1359 spin_lock_bh(&ma->mca_lock);
1360 igmp6_group_queried(ma, max_delay);
1361 spin_unlock_bh(&ma->mca_lock);
1362 }
1363 } else {
1364 for (ma = idev->mc_list; ma; ma=ma->next) {
David L Stevens7add2a42006-01-24 13:06:39 -08001365 if (!ipv6_addr_equal(group, &ma->mca_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 continue;
1367 spin_lock_bh(&ma->mca_lock);
1368 if (ma->mca_flags & MAF_TIMER_RUNNING) {
1369 /* gsquery <- gsquery && mark */
1370 if (!mark)
1371 ma->mca_flags &= ~MAF_GSQUERY;
1372 } else {
1373 /* gsquery <- mark */
1374 if (mark)
1375 ma->mca_flags |= MAF_GSQUERY;
1376 else
1377 ma->mca_flags &= ~MAF_GSQUERY;
1378 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001379 if (!(ma->mca_flags & MAF_GSQUERY) ||
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001380 mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001381 igmp6_group_queried(ma, max_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 spin_unlock_bh(&ma->mca_lock);
David L Stevens7add2a42006-01-24 13:06:39 -08001383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385 }
1386 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 return 0;
1389}
1390
Eric Dumazet96b52e62010-06-07 21:05:02 +00001391/* called with rcu_read_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392int igmp6_event_report(struct sk_buff *skb)
1393{
1394 struct ifmcaddr6 *ma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 struct inet6_dev *idev;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001396 struct mld_msg *mld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 int addr_type;
1398
1399 /* Our own report looped back. Ignore it. */
1400 if (skb->pkt_type == PACKET_LOOPBACK)
1401 return 0;
1402
David Stevens24c69272005-12-02 20:32:59 -08001403 /* send our report if the MC router may not have heard this report */
1404 if (skb->pkt_type != PACKET_MULTICAST &&
1405 skb->pkt_type != PACKET_BROADCAST)
1406 return 0;
1407
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001408 if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return -EINVAL;
1410
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001411 mld = (struct mld_msg *)icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 /* Drop reports with not link local source */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001414 addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001415 if (addr_type != IPV6_ADDR_ANY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 !(addr_type&IPV6_ADDR_LINKLOCAL))
1417 return -EINVAL;
1418
Eric Dumazet96b52e62010-06-07 21:05:02 +00001419 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (idev == NULL)
1421 return -ENODEV;
1422
1423 /*
1424 * Cancel the timer for this group
1425 */
1426
1427 read_lock_bh(&idev->lock);
1428 for (ma = idev->mc_list; ma; ma=ma->next) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001429 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 spin_lock(&ma->mca_lock);
1431 if (del_timer(&ma->mca_timer))
1432 atomic_dec(&ma->mca_refcnt);
1433 ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1434 spin_unlock(&ma->mca_lock);
1435 break;
1436 }
1437 }
1438 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return 0;
1440}
1441
Eric Dumazeta50feda2012-05-18 18:57:34 +00001442static bool is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1443 int gdeleted, int sdeleted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 switch (type) {
1446 case MLD2_MODE_IS_INCLUDE:
1447 case MLD2_MODE_IS_EXCLUDE:
1448 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001449 return false;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001450 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1451 if (pmc->mca_sfmode == MCAST_INCLUDE)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001452 return true;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001453 /* don't include if this source is excluded
1454 * in all filters
1455 */
1456 if (psf->sf_count[MCAST_INCLUDE])
David L Stevens7add2a42006-01-24 13:06:39 -08001457 return type == MLD2_MODE_IS_INCLUDE;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001458 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1459 psf->sf_count[MCAST_EXCLUDE];
1460 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001461 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 case MLD2_CHANGE_TO_INCLUDE:
1463 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001464 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return psf->sf_count[MCAST_INCLUDE] != 0;
1466 case MLD2_CHANGE_TO_EXCLUDE:
1467 if (gdeleted || sdeleted)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001468 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1470 psf->sf_count[MCAST_INCLUDE])
Eric Dumazeta50feda2012-05-18 18:57:34 +00001471 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1473 psf->sf_count[MCAST_EXCLUDE];
1474 case MLD2_ALLOW_NEW_SOURCES:
1475 if (gdeleted || !psf->sf_crcount)
Eric Dumazeta50feda2012-05-18 18:57:34 +00001476 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1478 case MLD2_BLOCK_OLD_SOURCES:
1479 if (pmc->mca_sfmode == MCAST_INCLUDE)
1480 return gdeleted || (psf->sf_crcount && sdeleted);
1481 return psf->sf_crcount && !gdeleted && !sdeleted;
1482 }
Eric Dumazeta50feda2012-05-18 18:57:34 +00001483 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486static int
1487mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1488{
1489 struct ip6_sf_list *psf;
1490 int scount = 0;
1491
1492 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1493 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1494 continue;
1495 scount++;
1496 }
1497 return scount;
1498}
1499
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001500static void ip6_mc_hdr(struct sock *sk, struct sk_buff *skb,
1501 struct net_device *dev,
1502 const struct in6_addr *saddr,
1503 const struct in6_addr *daddr,
1504 int proto, int len)
1505{
1506 struct ipv6hdr *hdr;
1507
1508 skb->protocol = htons(ETH_P_IPV6);
1509 skb->dev = dev;
1510
1511 skb_reset_network_header(skb);
1512 skb_put(skb, sizeof(struct ipv6hdr));
1513 hdr = ipv6_hdr(skb);
1514
1515 ip6_flow_hdr(hdr, 0, 0);
1516
1517 hdr->payload_len = htons(len);
1518 hdr->nexthdr = proto;
1519 hdr->hop_limit = inet6_sk(sk)->hop_limit;
1520
1521 hdr->saddr = *saddr;
1522 hdr->daddr = *daddr;
1523}
1524
Amerigo Wang89657792013-06-29 21:30:49 +08001525static struct sk_buff *mld_newpack(struct inet6_dev *idev, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Amerigo Wang89657792013-06-29 21:30:49 +08001527 struct net_device *dev = idev->dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001528 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001529 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 struct sk_buff *skb;
1531 struct mld2_report *pmr;
1532 struct in6_addr addr_buf;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001533 const struct in6_addr *saddr;
Herbert Xua7ae1992011-11-18 02:20:04 +00001534 int hlen = LL_RESERVED_SPACE(dev);
1535 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 int err;
1537 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1538 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1539 IPV6_TLV_PADN, 0 };
1540
1541 /* we assume size > sizeof(ra) here */
Herbert Xua7ae1992011-11-18 02:20:04 +00001542 size += hlen + tlen;
Eric Dumazet72e09ad2010-06-05 03:03:30 -07001543 /* limit our allocations to order-0 page */
1544 size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1545 skb = sock_alloc_send_skb(sk, size, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001547 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return NULL;
1549
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001550 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001551 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Amerigo Wang89657792013-06-29 21:30:49 +08001553 if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001555 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * when a valid link-local address is not available.
1557 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001558 saddr = &in6addr_any;
1559 } else
1560 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001562 ip6_mc_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1565
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001566 skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melod10ba342007-03-14 21:05:37 -03001567 skb_put(skb, sizeof(*pmr));
1568 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001569 pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1570 pmr->mld2r_resv1 = 0;
1571 pmr->mld2r_cksum = 0;
1572 pmr->mld2r_resv2 = 0;
1573 pmr->mld2r_ngrec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return skb;
1575}
1576
1577static void mld_sendpack(struct sk_buff *skb)
1578{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001579 struct ipv6hdr *pip6 = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001580 struct mld2_report *pmr =
1581 (struct mld2_report *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int payload_len, mldlen;
Eric Dumazet96b52e62010-06-07 21:05:02 +00001583 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001584 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int err;
David S. Miller4c9483b2011-03-12 16:22:43 -05001586 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001587 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Eric Dumazet96b52e62010-06-07 21:05:02 +00001589 rcu_read_lock();
1590 idev = __in6_dev_get(skb->dev);
Neil Hormanedf391f2009-04-27 02:45:02 -07001591 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1592
Simon Horman29a3cad2013-05-28 20:34:26 +00001593 payload_len = (skb_tail_pointer(skb) - skb_network_header(skb)) -
1594 sizeof(*pip6);
1595 mldlen = skb_tail_pointer(skb) - skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 pip6->payload_len = htons(payload_len);
1597
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001598 pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1599 IPPROTO_ICMPV6,
1600 csum_partial(skb_transport_header(skb),
1601 mldlen, 0));
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001602
David S. Miller4c9483b2011-03-12 16:22:43 -05001603 icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001604 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1605 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001606 dst = icmp6_dst_alloc(skb->dev, &fl6);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001607
David S. Miller452edd52011-03-02 13:27:41 -08001608 err = 0;
1609 if (IS_ERR(dst)) {
1610 err = PTR_ERR(dst);
1611 dst = NULL;
1612 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001613 skb_dst_set(skb, dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001614 if (err)
1615 goto err_out;
1616
Neil Hormanedf391f2009-04-27 02:45:02 -07001617 payload_len = skb->len;
1618
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001619 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001620 dst_output);
1621out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (!err) {
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001623 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1624 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1625 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, payload_len);
1626 } else {
1627 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Eric Dumazet96b52e62010-06-07 21:05:02 +00001630 rcu_read_unlock();
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001631 return;
1632
1633err_out:
1634 kfree_skb(skb);
1635 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1639{
Yan Zhengfab10fe2005-10-05 12:08:13 -07001640 return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
1643static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1644 int type, struct mld2_grec **ppgr)
1645{
1646 struct net_device *dev = pmc->idev->dev;
1647 struct mld2_report *pmr;
1648 struct mld2_grec *pgr;
1649
1650 if (!skb)
Amerigo Wang89657792013-06-29 21:30:49 +08001651 skb = mld_newpack(pmc->idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (!skb)
1653 return NULL;
1654 pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1655 pgr->grec_type = type;
1656 pgr->grec_auxwords = 0;
1657 pgr->grec_nsrcs = 0;
1658 pgr->grec_mca = pmc->mca_addr; /* structure copy */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001659 pmr = (struct mld2_report *)skb_transport_header(skb);
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001660 pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 *ppgr = pgr;
1662 return skb;
1663}
1664
1665#define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
1666 skb_tailroom(skb)) : 0)
1667
1668static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001669 int type, int gdeleted, int sdeleted, int crsend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Amerigo Wang89657792013-06-29 21:30:49 +08001671 struct inet6_dev *idev = pmc->idev;
1672 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 struct mld2_report *pmr;
1674 struct mld2_grec *pgr = NULL;
1675 struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001676 int scount, stotal, first, isquery, truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if (pmc->mca_flags & MAF_NOREPORT)
1679 return skb;
1680
1681 isquery = type == MLD2_MODE_IS_INCLUDE ||
1682 type == MLD2_MODE_IS_EXCLUDE;
1683 truncate = type == MLD2_MODE_IS_EXCLUDE ||
1684 type == MLD2_CHANGE_TO_EXCLUDE;
1685
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001686 stotal = scount = 0;
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1689
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001690 if (!*psf_list)
1691 goto empty_source;
1692
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001693 pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 /* EX and TO_EX get a fresh packet, if needed */
1696 if (truncate) {
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001697 if (pmr && pmr->mld2r_ngrec &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1699 if (skb)
1700 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001701 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703 }
1704 first = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 psf_prev = NULL;
1706 for (psf=*psf_list; psf; psf=psf_next) {
1707 struct in6_addr *psrc;
1708
1709 psf_next = psf->sf_next;
1710
1711 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1712 psf_prev = psf;
1713 continue;
1714 }
1715
1716 /* clear marks on query responses */
1717 if (isquery)
1718 psf->sf_gsresp = 0;
1719
1720 if (AVAILABLE(skb) < sizeof(*psrc) +
1721 first*sizeof(struct mld2_grec)) {
1722 if (truncate && !first)
1723 break; /* truncate these */
1724 if (pgr)
1725 pgr->grec_nsrcs = htons(scount);
1726 if (skb)
1727 mld_sendpack(skb);
Amerigo Wang89657792013-06-29 21:30:49 +08001728 skb = mld_newpack(idev, dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 first = 1;
1730 scount = 0;
1731 }
1732 if (first) {
1733 skb = add_grhead(skb, pmc, type, &pgr);
1734 first = 0;
1735 }
Alexey Dobriyancc63f702007-02-06 14:35:25 -08001736 if (!skb)
1737 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1739 *psrc = psf->sf_addr;
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001740 scount++; stotal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1742 type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1743 psf->sf_crcount--;
1744 if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1745 if (psf_prev)
1746 psf_prev->sf_next = psf->sf_next;
1747 else
1748 *psf_list = psf->sf_next;
1749 kfree(psf);
1750 continue;
1751 }
1752 }
1753 psf_prev = psf;
1754 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001755
1756empty_source:
1757 if (!stotal) {
1758 if (type == MLD2_ALLOW_NEW_SOURCES ||
1759 type == MLD2_BLOCK_OLD_SOURCES)
1760 return skb;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001761 if (pmc->mca_crcount || isquery || crsend) {
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001762 /* make sure we have room for group header */
1763 if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1764 mld_sendpack(skb);
1765 skb = NULL; /* add_grhead will get a new one */
1766 }
1767 skb = add_grhead(skb, pmc, type, &pgr);
1768 }
1769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (pgr)
1771 pgr->grec_nsrcs = htons(scount);
1772
1773 if (isquery)
1774 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1775 return skb;
1776}
1777
1778static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1779{
1780 struct sk_buff *skb = NULL;
1781 int type;
1782
Amerigo Wang89657792013-06-29 21:30:49 +08001783 read_lock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!pmc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1786 if (pmc->mca_flags & MAF_NOREPORT)
1787 continue;
1788 spin_lock_bh(&pmc->mca_lock);
1789 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1790 type = MLD2_MODE_IS_EXCLUDE;
1791 else
1792 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001793 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 spin_unlock_bh(&pmc->mca_lock);
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 } else {
1797 spin_lock_bh(&pmc->mca_lock);
1798 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1799 type = MLD2_MODE_IS_EXCLUDE;
1800 else
1801 type = MLD2_MODE_IS_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001802 skb = add_grec(skb, pmc, type, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 spin_unlock_bh(&pmc->mca_lock);
1804 }
Amerigo Wang89657792013-06-29 21:30:49 +08001805 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (skb)
1807 mld_sendpack(skb);
1808}
1809
1810/*
1811 * remove zero-count source records from a source filter list
1812 */
1813static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1814{
1815 struct ip6_sf_list *psf_prev, *psf_next, *psf;
1816
1817 psf_prev = NULL;
1818 for (psf=*ppsf; psf; psf = psf_next) {
1819 psf_next = psf->sf_next;
1820 if (psf->sf_crcount == 0) {
1821 if (psf_prev)
1822 psf_prev->sf_next = psf->sf_next;
1823 else
1824 *ppsf = psf->sf_next;
1825 kfree(psf);
1826 } else
1827 psf_prev = psf;
1828 }
1829}
1830
1831static void mld_send_cr(struct inet6_dev *idev)
1832{
1833 struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1834 struct sk_buff *skb = NULL;
1835 int type, dtype;
1836
1837 read_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08001838 spin_lock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 /* deleted MCA's */
1841 pmc_prev = NULL;
1842 for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1843 pmc_next = pmc->next;
1844 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1845 type = MLD2_BLOCK_OLD_SOURCES;
1846 dtype = MLD2_BLOCK_OLD_SOURCES;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001847 skb = add_grec(skb, pmc, type, 1, 0, 0);
1848 skb = add_grec(skb, pmc, dtype, 1, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1852 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001853 skb = add_grec(skb, pmc, type, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001855 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (pmc->mca_crcount == 0) {
1857 mld_clear_zeros(&pmc->mca_tomb);
1858 mld_clear_zeros(&pmc->mca_sources);
1859 }
1860 }
1861 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1862 !pmc->mca_sources) {
1863 if (pmc_prev)
1864 pmc_prev->next = pmc_next;
1865 else
1866 idev->mc_tomb = pmc_next;
1867 in6_dev_put(pmc->idev);
1868 kfree(pmc);
1869 } else
1870 pmc_prev = pmc;
1871 }
Stephen Hemminger6457d262010-02-17 18:48:44 -08001872 spin_unlock(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 /* change recs */
1875 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1876 spin_lock_bh(&pmc->mca_lock);
1877 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1878 type = MLD2_BLOCK_OLD_SOURCES;
1879 dtype = MLD2_ALLOW_NEW_SOURCES;
1880 } else {
1881 type = MLD2_ALLOW_NEW_SOURCES;
1882 dtype = MLD2_BLOCK_OLD_SOURCES;
1883 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001884 skb = add_grec(skb, pmc, type, 0, 0, 0);
1885 skb = add_grec(skb, pmc, dtype, 0, 1, 0); /* deleted sources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 /* filter mode changes */
1888 if (pmc->mca_crcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (pmc->mca_sfmode == MCAST_EXCLUDE)
1890 type = MLD2_CHANGE_TO_EXCLUDE;
1891 else
1892 type = MLD2_CHANGE_TO_INCLUDE;
Flavio Leitner6a7cc412014-01-16 19:27:59 -02001893 skb = add_grec(skb, pmc, type, 0, 0, 0);
David L Stevens5ab4a6c2005-12-27 14:03:00 -08001894 pmc->mca_crcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896 spin_unlock_bh(&pmc->mca_lock);
1897 }
1898 read_unlock_bh(&idev->lock);
1899 if (!skb)
1900 return;
1901 (void) mld_sendpack(skb);
1902}
1903
1904static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1905{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001906 struct net *net = dev_net(dev);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08001907 struct sock *sk = net->ipv6.igmp_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct inet6_dev *idev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001909 struct sk_buff *skb;
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001910 struct mld_msg *hdr;
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001911 const struct in6_addr *snd_addr, *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct in6_addr addr_buf;
Herbert Xua7ae1992011-11-18 02:20:04 +00001913 int hlen = LL_RESERVED_SPACE(dev);
1914 int tlen = dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 int err, len, payload_len, full_len;
1916 u8 ra[8] = { IPPROTO_ICMPV6, 0,
1917 IPV6_TLV_ROUTERALERT, 2, 0, 0,
1918 IPV6_TLV_PADN, 0 };
David S. Miller4c9483b2011-03-12 16:22:43 -05001919 struct flowi6 fl6;
Eric Dumazetadf30902009-06-02 05:19:30 +00001920 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09001922 if (type == ICMPV6_MGM_REDUCTION)
1923 snd_addr = &in6addr_linklocal_allrouters;
1924 else
1925 snd_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1928 payload_len = len + sizeof(ra);
1929 full_len = sizeof(struct ipv6hdr) + payload_len;
1930
Neil Hormanedf391f2009-04-27 02:45:02 -07001931 rcu_read_lock();
1932 IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1933 IPSTATS_MIB_OUT, full_len);
1934 rcu_read_unlock();
1935
Herbert Xua7ae1992011-11-18 02:20:04 +00001936 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 if (skb == NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001939 rcu_read_lock();
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001940 IP6_INC_STATS(net, __in6_dev_get(dev),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001941 IPSTATS_MIB_OUTDISCARDS);
1942 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return;
1944 }
Hannes Frederic Sowa9d4a0312013-07-26 17:05:16 +02001945 skb->priority = TC_PRIO_CONTROL;
Herbert Xua7ae1992011-11-18 02:20:04 +00001946 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Neil Horman95c385b2007-04-25 17:08:10 -07001948 if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /* <draft-ietf-magma-mld-source-05.txt>:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001950 * use unspecified address as the source address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * when a valid link-local address is not available.
1952 */
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09001953 saddr = &in6addr_any;
1954 } else
1955 saddr = &addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
YOSHIFUJI Hideaki / 吉藤英明2576f172013-01-21 06:48:19 +00001957 ip6_mc_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1960
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001961 hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1962 memset(hdr, 0, sizeof(struct mld_msg));
1963 hdr->mld_type = type;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001964 hdr->mld_mca = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
YOSHIFUJI Hideaki6e7cb832010-04-18 12:42:05 +09001966 hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1967 IPPROTO_ICMPV6,
1968 csum_partial(hdr, len, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Eric Dumazet96b52e62010-06-07 21:05:02 +00001970 rcu_read_lock();
1971 idev = __in6_dev_get(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
David S. Miller4c9483b2011-03-12 16:22:43 -05001973 icmpv6_flow_init(sk, &fl6, type,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001974 &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1975 skb->dev->ifindex);
YOSHIFUJI Hideaki / 吉藤英明12fd84f2013-01-18 02:00:24 +00001976 dst = icmp6_dst_alloc(skb->dev, &fl6);
David S. Miller452edd52011-03-02 13:27:41 -08001977 if (IS_ERR(dst)) {
1978 err = PTR_ERR(dst);
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001979 goto err_out;
David S. Miller452edd52011-03-02 13:27:41 -08001980 }
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001981
Eric Dumazetadf30902009-06-02 05:19:30 +00001982 skb_dst_set(skb, dst);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +01001983 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001984 dst_output);
1985out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (!err) {
Denis V. Lunev5c5d2442008-10-08 10:33:50 -07001987 ICMP6MSGOUT_INC_STATS(net, idev, type);
Denis V. Luneva862f6a2008-10-08 10:33:06 -07001988 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
Neil Hormanedf391f2009-04-27 02:45:02 -07001989 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 } else
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001991 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Eric Dumazet96b52e62010-06-07 21:05:02 +00001993 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return;
YOSHIFUJI Hideaki41927172007-12-06 17:40:56 -08001995
1996err_out:
1997 kfree_skb(skb);
1998 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002001static void mld_send_initial_cr(struct inet6_dev *idev)
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002002{
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002003 struct sk_buff *skb;
2004 struct ifmcaddr6 *pmc;
2005 int type;
2006
2007 if (mld_in_v1_mode(idev))
2008 return;
2009
2010 skb = NULL;
2011 read_lock_bh(&idev->lock);
2012 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2013 spin_lock_bh(&pmc->mca_lock);
2014 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2015 type = MLD2_CHANGE_TO_EXCLUDE;
2016 else
2017 type = MLD2_CHANGE_TO_INCLUDE;
2018 skb = add_grec(skb, pmc, type, 0, 0, 1);
2019 spin_unlock_bh(&pmc->mca_lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002020 }
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002021 read_unlock_bh(&idev->lock);
2022 if (skb)
2023 mld_sendpack(skb);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002024}
2025
2026void ipv6_mc_dad_complete(struct inet6_dev *idev)
2027{
2028 idev->mc_dad_count = idev->mc_qrv;
2029 if (idev->mc_dad_count) {
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002030 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002031 idev->mc_dad_count--;
2032 if (idev->mc_dad_count)
2033 mld_dad_start_timer(idev, idev->mc_maxdelay);
2034 }
2035}
2036
2037static void mld_dad_timer_expire(unsigned long data)
2038{
2039 struct inet6_dev *idev = (struct inet6_dev *)data;
2040
Flavio Leitner6a7cc412014-01-16 19:27:59 -02002041 mld_send_initial_cr(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002042 if (idev->mc_dad_count) {
2043 idev->mc_dad_count--;
2044 if (idev->mc_dad_count)
2045 mld_dad_start_timer(idev, idev->mc_maxdelay);
2046 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002047 in6_dev_put(idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002051 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
2053 struct ip6_sf_list *psf, *psf_prev;
2054 int rv = 0;
2055
2056 psf_prev = NULL;
2057 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2058 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2059 break;
2060 psf_prev = psf;
2061 }
2062 if (!psf || psf->sf_count[sfmode] == 0) {
2063 /* source filter not found, or count wrong => bug */
2064 return -ESRCH;
2065 }
2066 psf->sf_count[sfmode]--;
2067 if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
2068 struct inet6_dev *idev = pmc->idev;
2069
2070 /* no more filters for this source */
2071 if (psf_prev)
2072 psf_prev->sf_next = psf->sf_next;
2073 else
2074 pmc->mca_sources = psf->sf_next;
2075 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002076 !mld_in_v1_mode(idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 psf->sf_crcount = idev->mc_qrv;
2078 psf->sf_next = pmc->mca_tomb;
2079 pmc->mca_tomb = psf;
2080 rv = 1;
2081 } else
2082 kfree(psf);
2083 }
2084 return rv;
2085}
2086
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002087static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2088 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 int delta)
2090{
2091 struct ifmcaddr6 *pmc;
2092 int changerec = 0;
2093 int i, err;
2094
2095 if (!idev)
2096 return -ENODEV;
2097 read_lock_bh(&idev->lock);
2098 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2099 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2100 break;
2101 }
2102 if (!pmc) {
2103 /* MCA not found?? bug */
2104 read_unlock_bh(&idev->lock);
2105 return -ESRCH;
2106 }
2107 spin_lock_bh(&pmc->mca_lock);
2108 sf_markstate(pmc);
2109 if (!delta) {
2110 if (!pmc->mca_sfcount[sfmode]) {
2111 spin_unlock_bh(&pmc->mca_lock);
2112 read_unlock_bh(&idev->lock);
2113 return -EINVAL;
2114 }
2115 pmc->mca_sfcount[sfmode]--;
2116 }
2117 err = 0;
2118 for (i=0; i<sfcount; i++) {
2119 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
2120
2121 changerec |= rv > 0;
2122 if (!err && rv < 0)
2123 err = rv;
2124 }
2125 if (pmc->mca_sfmode == MCAST_EXCLUDE &&
2126 pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
2127 pmc->mca_sfcount[MCAST_INCLUDE]) {
2128 struct ip6_sf_list *psf;
2129
2130 /* filter mode change */
2131 pmc->mca_sfmode = MCAST_INCLUDE;
2132 pmc->mca_crcount = idev->mc_qrv;
2133 idev->mc_ifc_count = pmc->mca_crcount;
2134 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2135 psf->sf_crcount = 0;
2136 mld_ifc_event(pmc->idev);
2137 } else if (sf_setstate(pmc) || changerec)
2138 mld_ifc_event(pmc->idev);
2139 spin_unlock_bh(&pmc->mca_lock);
2140 read_unlock_bh(&idev->lock);
2141 return err;
2142}
2143
2144/*
2145 * Add multicast single-source filter to the interface list
2146 */
2147static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
Jun Zhao99d2f472011-11-30 06:21:05 +00002148 const struct in6_addr *psfsrc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
2150 struct ip6_sf_list *psf, *psf_prev;
2151
2152 psf_prev = NULL;
2153 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2154 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
2155 break;
2156 psf_prev = psf;
2157 }
2158 if (!psf) {
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002159 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (!psf)
2161 return -ENOBUFS;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 psf->sf_addr = *psfsrc;
2164 if (psf_prev) {
2165 psf_prev->sf_next = psf;
2166 } else
2167 pmc->mca_sources = psf;
2168 }
2169 psf->sf_count[sfmode]++;
2170 return 0;
2171}
2172
2173static void sf_markstate(struct ifmcaddr6 *pmc)
2174{
2175 struct ip6_sf_list *psf;
2176 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2177
2178 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
2179 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2180 psf->sf_oldin = mca_xcount ==
2181 psf->sf_count[MCAST_EXCLUDE] &&
2182 !psf->sf_count[MCAST_INCLUDE];
2183 } else
2184 psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
2185}
2186
2187static int sf_setstate(struct ifmcaddr6 *pmc)
2188{
David L Stevens7add2a42006-01-24 13:06:39 -08002189 struct ip6_sf_list *psf, *dpsf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
2191 int qrv = pmc->idev->mc_qrv;
2192 int new_in, rv;
2193
2194 rv = 0;
2195 for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
2196 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
2197 new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
2198 !psf->sf_count[MCAST_INCLUDE];
2199 } else
2200 new_in = psf->sf_count[MCAST_INCLUDE] != 0;
David L Stevens7add2a42006-01-24 13:06:39 -08002201 if (new_in) {
2202 if (!psf->sf_oldin) {
Al Viroe80e28b2006-02-03 20:10:03 -05002203 struct ip6_sf_list *prev = NULL;
David L Stevens7add2a42006-01-24 13:06:39 -08002204
2205 for (dpsf=pmc->mca_tomb; dpsf;
2206 dpsf=dpsf->sf_next) {
2207 if (ipv6_addr_equal(&dpsf->sf_addr,
2208 &psf->sf_addr))
2209 break;
2210 prev = dpsf;
2211 }
2212 if (dpsf) {
2213 if (prev)
2214 prev->sf_next = dpsf->sf_next;
2215 else
2216 pmc->mca_tomb = dpsf->sf_next;
2217 kfree(dpsf);
2218 }
2219 psf->sf_crcount = qrv;
2220 rv++;
2221 }
2222 } else if (psf->sf_oldin) {
2223 psf->sf_crcount = 0;
2224 /*
2225 * add or update "delete" records if an active filter
2226 * is now inactive
2227 */
2228 for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2229 if (ipv6_addr_equal(&dpsf->sf_addr,
2230 &psf->sf_addr))
2231 break;
2232 if (!dpsf) {
Joe Perches5d553542010-05-31 17:23:22 +00002233 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
David L Stevens7add2a42006-01-24 13:06:39 -08002234 if (!dpsf)
2235 continue;
2236 *dpsf = *psf;
2237 /* pmc->mca_lock held by callers */
2238 dpsf->sf_next = pmc->mca_tomb;
2239 pmc->mca_tomb = dpsf;
2240 }
2241 dpsf->sf_crcount = qrv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 rv++;
2243 }
2244 }
2245 return rv;
2246}
2247
2248/*
2249 * Add multicast source filter list to the interface list
2250 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002251static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2252 int sfmode, int sfcount, const struct in6_addr *psfsrc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 int delta)
2254{
2255 struct ifmcaddr6 *pmc;
2256 int isexclude;
2257 int i, err;
2258
2259 if (!idev)
2260 return -ENODEV;
2261 read_lock_bh(&idev->lock);
2262 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2263 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2264 break;
2265 }
2266 if (!pmc) {
2267 /* MCA not found?? bug */
2268 read_unlock_bh(&idev->lock);
2269 return -ESRCH;
2270 }
2271 spin_lock_bh(&pmc->mca_lock);
2272
2273 sf_markstate(pmc);
2274 isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2275 if (!delta)
2276 pmc->mca_sfcount[sfmode]++;
2277 err = 0;
2278 for (i=0; i<sfcount; i++) {
Jun Zhao99d2f472011-11-30 06:21:05 +00002279 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (err)
2281 break;
2282 }
2283 if (err) {
2284 int j;
2285
2286 if (!delta)
2287 pmc->mca_sfcount[sfmode]--;
2288 for (j=0; j<i; j++)
RongQing.Li78d50212012-04-04 16:47:04 +00002289 ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct ip6_sf_list *psf;
2292
2293 /* filter mode change */
2294 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2295 pmc->mca_sfmode = MCAST_EXCLUDE;
2296 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2297 pmc->mca_sfmode = MCAST_INCLUDE;
2298 /* else no filters; keep old mode for reports */
2299
2300 pmc->mca_crcount = idev->mc_qrv;
2301 idev->mc_ifc_count = pmc->mca_crcount;
2302 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2303 psf->sf_crcount = 0;
2304 mld_ifc_event(idev);
2305 } else if (sf_setstate(pmc))
2306 mld_ifc_event(idev);
2307 spin_unlock_bh(&pmc->mca_lock);
2308 read_unlock_bh(&idev->lock);
2309 return err;
2310}
2311
2312static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2313{
2314 struct ip6_sf_list *psf, *nextpsf;
2315
2316 for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2317 nextpsf = psf->sf_next;
2318 kfree(psf);
2319 }
2320 pmc->mca_tomb = NULL;
2321 for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2322 nextpsf = psf->sf_next;
2323 kfree(psf);
2324 }
2325 pmc->mca_sources = NULL;
2326 pmc->mca_sfmode = MCAST_EXCLUDE;
Denis Lukianovde9daad2005-09-14 20:53:42 -07002327 pmc->mca_sfcount[MCAST_INCLUDE] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2329}
2330
2331
2332static void igmp6_join_group(struct ifmcaddr6 *ma)
2333{
2334 unsigned long delay;
2335
2336 if (ma->mca_flags & MAF_NOREPORT)
2337 return;
2338
2339 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2340
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05002341 delay = prandom_u32() % unsolicited_report_interval(ma->idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 spin_lock_bh(&ma->mca_lock);
2344 if (del_timer(&ma->mca_timer)) {
2345 atomic_dec(&ma->mca_refcnt);
2346 delay = ma->mca_timer.expires - jiffies;
2347 }
2348
2349 if (!mod_timer(&ma->mca_timer, jiffies + delay))
2350 atomic_inc(&ma->mca_refcnt);
2351 ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2352 spin_unlock_bh(&ma->mca_lock);
2353}
2354
2355static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2356 struct inet6_dev *idev)
2357{
2358 int err;
2359
David L Stevens5ab4a6c2005-12-27 14:03:00 -08002360 /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2361 * so no other readers or writers of iml or its sflist
2362 */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002363 if (!iml->sflist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 /* any-source empty exclude case */
2365 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2366 }
2367 err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2368 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2369 sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2370 iml->sflist = NULL;
2371 return err;
2372}
2373
2374static void igmp6_leave_group(struct ifmcaddr6 *ma)
2375{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002376 if (mld_in_v1_mode(ma->idev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (ma->mca_flags & MAF_LAST_REPORTER)
2378 igmp6_send(&ma->mca_addr, ma->idev->dev,
2379 ICMPV6_MGM_REDUCTION);
2380 } else {
2381 mld_add_delrec(ma->idev, ma);
2382 mld_ifc_event(ma->idev);
2383 }
2384}
2385
2386static void mld_gq_timer_expire(unsigned long data)
2387{
2388 struct inet6_dev *idev = (struct inet6_dev *)data;
2389
2390 idev->mc_gq_running = 0;
2391 mld_send_report(idev, NULL);
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002392 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395static void mld_ifc_timer_expire(unsigned long data)
2396{
2397 struct inet6_dev *idev = (struct inet6_dev *)data;
2398
2399 mld_send_cr(idev);
2400 if (idev->mc_ifc_count) {
2401 idev->mc_ifc_count--;
2402 if (idev->mc_ifc_count)
2403 mld_ifc_start_timer(idev, idev->mc_maxdelay);
2404 }
Salam Noureddine9260d3e2013-09-29 13:41:34 -07002405 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
2408static void mld_ifc_event(struct inet6_dev *idev)
2409{
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002410 if (mld_in_v1_mode(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return;
2412 idev->mc_ifc_count = idev->mc_qrv;
2413 mld_ifc_start_timer(idev, 1);
2414}
2415
2416
2417static void igmp6_timer_handler(unsigned long data)
2418{
2419 struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2420
Daniel Borkmann6c567b72013-09-04 00:19:38 +02002421 if (mld_in_v1_mode(ma->idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2423 else
2424 mld_send_report(ma->idev, ma);
2425
2426 spin_lock(&ma->mca_lock);
2427 ma->mca_flags |= MAF_LAST_REPORTER;
2428 ma->mca_flags &= ~MAF_TIMER_RUNNING;
2429 spin_unlock(&ma->mca_lock);
2430 ma_put(ma);
2431}
2432
Moni Shoua75c78502009-09-15 02:37:40 -07002433/* Device changing type */
2434
2435void ipv6_mc_unmap(struct inet6_dev *idev)
2436{
2437 struct ifmcaddr6 *i;
2438
2439 /* Install multicast list, except for all-nodes (already installed) */
2440
2441 read_lock_bh(&idev->lock);
2442 for (i = idev->mc_list; i; i = i->next)
2443 igmp6_group_dropped(i);
2444 read_unlock_bh(&idev->lock);
2445}
2446
2447void ipv6_mc_remap(struct inet6_dev *idev)
2448{
2449 ipv6_mc_up(idev);
2450}
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452/* Device going down */
2453
2454void ipv6_mc_down(struct inet6_dev *idev)
2455{
2456 struct ifmcaddr6 *i;
2457
2458 /* Withdraw multicast list */
2459
2460 read_lock_bh(&idev->lock);
Daniel Borkmannb4af8de2013-09-04 00:19:43 +02002461 mld_ifc_stop_timer(idev);
2462 mld_gq_stop_timer(idev);
2463 mld_dad_stop_timer(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 for (i = idev->mc_list; i; i=i->next)
2466 igmp6_group_dropped(i);
2467 read_unlock_bh(&idev->lock);
2468
2469 mld_clear_delrec(idev);
2470}
2471
2472
2473/* Device going up */
2474
2475void ipv6_mc_up(struct inet6_dev *idev)
2476{
2477 struct ifmcaddr6 *i;
2478
2479 /* Install multicast list, except for all-nodes (already installed) */
2480
2481 read_lock_bh(&idev->lock);
2482 for (i = idev->mc_list; i; i=i->next)
2483 igmp6_group_added(i);
2484 read_unlock_bh(&idev->lock);
2485}
2486
2487/* IPv6 device initialization. */
2488
2489void ipv6_mc_init_dev(struct inet6_dev *idev)
2490{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 write_lock_bh(&idev->lock);
Stephen Hemminger6457d262010-02-17 18:48:44 -08002492 spin_lock_init(&idev->mc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 idev->mc_gq_running = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002494 setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2495 (unsigned long)idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 idev->mc_tomb = NULL;
2497 idev->mc_ifc_count = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002498 setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2499 (unsigned long)idev);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02002500 setup_timer(&idev->mc_dad_timer, mld_dad_timer_expire,
2501 (unsigned long)idev);
Daniel Borkmann89225d12013-09-04 00:19:37 +02002502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 idev->mc_qrv = MLD_QRV_DEFAULT;
Daniel Borkmann89225d12013-09-04 00:19:37 +02002504 idev->mc_qi = MLD_QI_DEFAULT;
2505 idev->mc_qri = MLD_QRI_DEFAULT;
2506
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02002507 idev->mc_maxdelay = unsolicited_report_interval(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 idev->mc_v1_seen = 0;
2509 write_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
2511
2512/*
2513 * Device is about to be destroyed: clean up.
2514 */
2515
2516void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2517{
2518 struct ifmcaddr6 *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 /* Deactivate timers */
2521 ipv6_mc_down(idev);
2522
2523 /* Delete all-nodes address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2525 * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2526 * fail.
2527 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002528 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09002530 if (idev->cnf.forwarding)
2531 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 write_lock_bh(&idev->lock);
2534 while ((i = idev->mc_list) != NULL) {
2535 idev->mc_list = i->next;
2536 write_unlock_bh(&idev->lock);
2537
2538 igmp6_group_dropped(i);
2539 ma_put(i);
2540
2541 write_lock_bh(&idev->lock);
2542 }
2543 write_unlock_bh(&idev->lock);
2544}
2545
2546#ifdef CONFIG_PROC_FS
2547struct igmp6_mc_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002548 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 struct net_device *dev;
2550 struct inet6_dev *idev;
2551};
2552
2553#define igmp6_mc_seq_private(seq) ((struct igmp6_mc_iter_state *)(seq)->private)
2554
2555static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2556{
2557 struct ifmcaddr6 *im = NULL;
2558 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002559 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Pavel Emelianov7562f872007-05-03 15:13:45 -07002561 state->idev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002562 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002564 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 if (!idev)
2566 continue;
2567 read_lock_bh(&idev->lock);
2568 im = idev->mc_list;
2569 if (im) {
2570 state->idev = idev;
2571 break;
2572 }
2573 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
2575 return im;
2576}
2577
2578static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2579{
2580 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2581
2582 im = im->next;
2583 while (!im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002584 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002586
2587 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (!state->dev) {
2589 state->idev = NULL;
2590 break;
2591 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002592 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 if (!state->idev)
2594 continue;
2595 read_lock_bh(&state->idev->lock);
2596 im = state->idev->mc_list;
2597 }
2598 return im;
2599}
2600
2601static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2602{
2603 struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2604 if (im)
2605 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2606 --pos;
2607 return pos ? NULL : im;
2608}
2609
2610static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002611 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
Eric Dumazetce81b762009-11-11 17:34:30 +00002613 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return igmp6_mc_get_idx(seq, *pos);
2615}
2616
2617static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2618{
Eric Dumazetce81b762009-11-11 17:34:30 +00002619 struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 ++*pos;
2622 return im;
2623}
2624
2625static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002626 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
2628 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
Eric Dumazetce81b762009-11-11 17:34:30 +00002629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 if (likely(state->idev != NULL)) {
2631 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 state->idev = NULL;
2633 }
2634 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002635 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636}
2637
2638static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2639{
2640 struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2641 struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2642
2643 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002644 "%-4d %-15s %pi6 %5d %08X %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002646 &im->mca_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 im->mca_users, im->mca_flags,
2648 (im->mca_flags&MAF_TIMER_RUNNING) ?
2649 jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2650 return 0;
2651}
2652
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002653static const struct seq_operations igmp6_mc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 .start = igmp6_mc_seq_start,
2655 .next = igmp6_mc_seq_next,
2656 .stop = igmp6_mc_seq_stop,
2657 .show = igmp6_mc_seq_show,
2658};
2659
2660static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2661{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002662 return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2663 sizeof(struct igmp6_mc_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
Arjan van de Ven9a321442007-02-12 00:55:35 -08002666static const struct file_operations igmp6_mc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 .owner = THIS_MODULE,
2668 .open = igmp6_mc_seq_open,
2669 .read = seq_read,
2670 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002671 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672};
2673
2674struct igmp6_mcf_iter_state {
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002675 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 struct net_device *dev;
2677 struct inet6_dev *idev;
2678 struct ifmcaddr6 *im;
2679};
2680
2681#define igmp6_mcf_seq_private(seq) ((struct igmp6_mcf_iter_state *)(seq)->private)
2682
2683static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2684{
2685 struct ip6_sf_list *psf = NULL;
2686 struct ifmcaddr6 *im = NULL;
2687 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002688 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Pavel Emelianov7562f872007-05-03 15:13:45 -07002690 state->idev = NULL;
2691 state->im = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002692 for_each_netdev_rcu(net, state->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 struct inet6_dev *idev;
Eric Dumazetce81b762009-11-11 17:34:30 +00002694 idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 if (unlikely(idev == NULL))
2696 continue;
2697 read_lock_bh(&idev->lock);
2698 im = idev->mc_list;
2699 if (likely(im != NULL)) {
2700 spin_lock_bh(&im->mca_lock);
2701 psf = im->mca_sources;
2702 if (likely(psf != NULL)) {
2703 state->im = im;
2704 state->idev = idev;
2705 break;
2706 }
2707 spin_unlock_bh(&im->mca_lock);
2708 }
2709 read_unlock_bh(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
2711 return psf;
2712}
2713
2714static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2715{
2716 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2717
2718 psf = psf->sf_next;
2719 while (!psf) {
2720 spin_unlock_bh(&state->im->mca_lock);
2721 state->im = state->im->next;
2722 while (!state->im) {
Eric Dumazetce81b762009-11-11 17:34:30 +00002723 if (likely(state->idev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 read_unlock_bh(&state->idev->lock);
Eric Dumazetce81b762009-11-11 17:34:30 +00002725
2726 state->dev = next_net_device_rcu(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 if (!state->dev) {
2728 state->idev = NULL;
2729 goto out;
2730 }
Eric Dumazetce81b762009-11-11 17:34:30 +00002731 state->idev = __in6_dev_get(state->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 if (!state->idev)
2733 continue;
2734 read_lock_bh(&state->idev->lock);
2735 state->im = state->idev->mc_list;
2736 }
2737 if (!state->im)
2738 break;
2739 spin_lock_bh(&state->im->mca_lock);
2740 psf = state->im->mca_sources;
2741 }
2742out:
2743 return psf;
2744}
2745
2746static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2747{
2748 struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2749 if (psf)
2750 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2751 --pos;
2752 return pos ? NULL : psf;
2753}
2754
2755static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetce81b762009-11-11 17:34:30 +00002756 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
Eric Dumazetce81b762009-11-11 17:34:30 +00002758 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2760}
2761
2762static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2763{
2764 struct ip6_sf_list *psf;
2765 if (v == SEQ_START_TOKEN)
2766 psf = igmp6_mcf_get_first(seq);
2767 else
2768 psf = igmp6_mcf_get_next(seq, v);
2769 ++*pos;
2770 return psf;
2771}
2772
2773static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetce81b762009-11-11 17:34:30 +00002774 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
2776 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2777 if (likely(state->im != NULL)) {
2778 spin_unlock_bh(&state->im->mca_lock);
2779 state->im = NULL;
2780 }
2781 if (likely(state->idev != NULL)) {
2782 read_unlock_bh(&state->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 state->idev = NULL;
2784 }
2785 state->dev = NULL;
Eric Dumazetce81b762009-11-11 17:34:30 +00002786 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788
2789static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2790{
2791 struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2792 struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2793
2794 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002795 seq_printf(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 "%3s %6s "
YOSHIFUJI Hideaki9343e792006-01-17 02:10:53 -08002797 "%32s %32s %6s %6s\n", "Idx",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 "Device", "Multicast Address",
2799 "Source Address", "INC", "EXC");
2800 } else {
2801 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002802 "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 state->dev->ifindex, state->dev->name,
Harvey Harrisonb0711952008-10-28 16:05:40 -07002804 &state->im->mca_addr,
2805 &psf->sf_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 psf->sf_count[MCAST_INCLUDE],
2807 psf->sf_count[MCAST_EXCLUDE]);
2808 }
2809 return 0;
2810}
2811
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002812static const struct seq_operations igmp6_mcf_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 .start = igmp6_mcf_seq_start,
2814 .next = igmp6_mcf_seq_next,
2815 .stop = igmp6_mcf_seq_stop,
2816 .show = igmp6_mcf_seq_show,
2817};
2818
2819static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2820{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002821 return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2822 sizeof(struct igmp6_mcf_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
Arjan van de Ven9a321442007-02-12 00:55:35 -08002825static const struct file_operations igmp6_mcf_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 .owner = THIS_MODULE,
2827 .open = igmp6_mcf_seq_open,
2828 .read = seq_read,
2829 .llseek = seq_lseek,
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002830 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831};
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002832
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002833static int __net_init igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002834{
2835 int err;
2836
2837 err = -ENOMEM;
Gao fengd4beaa62013-02-18 01:34:54 +00002838 if (!proc_create("igmp6", S_IRUGO, net->proc_net, &igmp6_mc_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002839 goto out;
Gao fengd4beaa62013-02-18 01:34:54 +00002840 if (!proc_create("mcfilter6", S_IRUGO, net->proc_net,
2841 &igmp6_mcf_seq_fops))
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002842 goto out_proc_net_igmp6;
2843
2844 err = 0;
2845out:
2846 return err;
2847
2848out_proc_net_igmp6:
Gao fengece31ff2013-02-18 01:34:56 +00002849 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002850 goto out;
2851}
2852
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002853static void __net_exit igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002854{
Gao fengece31ff2013-02-18 01:34:56 +00002855 remove_proc_entry("mcfilter6", net->proc_net);
2856 remove_proc_entry("igmp6", net->proc_net);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002857}
2858#else
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002859static inline int igmp6_proc_init(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002860{
2861 return 0;
2862}
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002863static inline void igmp6_proc_exit(struct net *net)
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002864{
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002865}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866#endif
2867
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002868static int __net_init igmp6_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 int err;
2871
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002872 err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2873 SOCK_RAW, IPPROTO_ICMPV6, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002875 pr_err("Failed to initialize the IGMP6 control socket (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 err);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002877 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 }
2879
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002880 inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002882 err = igmp6_proc_init(net);
2883 if (err)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002884 goto out_sock_create;
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002885out:
2886 return err;
2887
2888out_sock_create:
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002889 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002890 goto out;
2891}
2892
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002893static void __net_exit igmp6_net_exit(struct net *net)
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002894{
Denis V. Lunev1ed85162008-04-03 14:31:03 -07002895 inet_ctl_sock_destroy(net->ipv6.igmp_sk);
Daniel Lezcanoea82edf2008-03-21 04:10:53 -07002896 igmp6_proc_exit(net);
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002897}
2898
2899static struct pernet_operations igmp6_net_ops = {
2900 .init = igmp6_net_init,
2901 .exit = igmp6_net_exit,
2902};
2903
2904int __init igmp6_init(void)
2905{
2906 return register_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908
2909void igmp6_cleanup(void)
2910{
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -08002911 unregister_pernet_subsys(&igmp6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912}