mld, igmp: Fix reserved tailroom calculation
[pandora-kernel.git] / net / ipv6 / mcast.c
1 /*
2  *      Multicast support for IPv6
3  *      Linux INET6 implementation
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>
7  *
8  *      Based on linux/ipv4/igmp.c and linux/ipv4/ip_sockglue.c
9  *
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
29 #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>
46 #include <linux/slab.h>
47 #include <net/mld.h>
48
49 #include <linux/netfilter.h>
50 #include <linux/netfilter_ipv6.h>
51
52 #include <net/net_namespace.h>
53 #include <net/sock.h>
54 #include <net/snmp.h>
55
56 #include <net/ipv6.h>
57 #include <net/protocol.h>
58 #include <net/if_inet6.h>
59 #include <net/ndisc.h>
60 #include <net/addrconf.h>
61 #include <net/ip6_route.h>
62 #include <net/inet_common.h>
63
64 #include <net/ip6_checksum.h>
65
66 /* Set to 3 to get tracing... */
67 #define MCAST_DEBUG 2
68
69 #if MCAST_DEBUG >= 3
70 #define MDBG(x) printk x
71 #else
72 #define MDBG(x)
73 #endif
74
75 /* Ensure that we have struct in6_addr aligned on 32bit word. */
76 static void *__mld2_query_bugs[] __attribute__((__unused__)) = {
77         BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),
78         BUILD_BUG_ON_NULL(offsetof(struct mld2_report, mld2r_grec) % 4),
79         BUILD_BUG_ON_NULL(offsetof(struct mld2_grec, grec_mca) % 4)
80 };
81
82 static struct in6_addr mld2_all_mcr = MLD2_ALL_MCR_INIT;
83
84 /* Big mc list lock for all the sockets */
85 static DEFINE_SPINLOCK(ipv6_sk_mc_lock);
86
87 static void igmp6_join_group(struct ifmcaddr6 *ma);
88 static void igmp6_leave_group(struct ifmcaddr6 *ma);
89 static void igmp6_timer_handler(unsigned long data);
90
91 static void mld_gq_timer_expire(unsigned long data);
92 static void mld_ifc_timer_expire(unsigned long data);
93 static void mld_ifc_event(struct inet6_dev *idev);
94 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *pmc);
95 static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *addr);
96 static void mld_clear_delrec(struct inet6_dev *idev);
97 static int sf_setstate(struct ifmcaddr6 *pmc);
98 static void sf_markstate(struct ifmcaddr6 *pmc);
99 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc);
100 static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
101                           int sfmode, int sfcount, const struct in6_addr *psfsrc,
102                           int delta);
103 static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
104                           int sfmode, int sfcount, const struct in6_addr *psfsrc,
105                           int delta);
106 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
107                             struct inet6_dev *idev);
108
109
110 #define IGMP6_UNSOLICITED_IVAL  (10*HZ)
111 #define MLD_QRV_DEFAULT         2
112
113 #define MLD_V1_SEEN(idev) (dev_net((idev)->dev)->ipv6.devconf_all->force_mld_version == 1 || \
114                 (idev)->cnf.force_mld_version == 1 || \
115                 ((idev)->mc_v1_seen && \
116                 time_before(jiffies, (idev)->mc_v1_seen)))
117
118 #define IPV6_MLD_MAX_MSF        64
119
120 int sysctl_mld_max_msf __read_mostly = IPV6_MLD_MAX_MSF;
121
122 /*
123  *      socket join on multicast group
124  */
125
126 #define for_each_pmc_rcu(np, pmc)                               \
127         for (pmc = rcu_dereference(np->ipv6_mc_list);           \
128              pmc != NULL;                                       \
129              pmc = rcu_dereference(pmc->next))
130
131 int ipv6_sock_mc_join(struct sock *sk, int ifindex, const struct in6_addr *addr)
132 {
133         struct net_device *dev = NULL;
134         struct ipv6_mc_socklist *mc_lst;
135         struct ipv6_pinfo *np = inet6_sk(sk);
136         struct net *net = sock_net(sk);
137         int err;
138
139         if (!ipv6_addr_is_multicast(addr))
140                 return -EINVAL;
141
142         rcu_read_lock();
143         for_each_pmc_rcu(np, mc_lst) {
144                 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
145                     ipv6_addr_equal(&mc_lst->addr, addr)) {
146                         rcu_read_unlock();
147                         return -EADDRINUSE;
148                 }
149         }
150         rcu_read_unlock();
151
152         mc_lst = sock_kmalloc(sk, sizeof(struct ipv6_mc_socklist), GFP_KERNEL);
153
154         if (mc_lst == NULL)
155                 return -ENOMEM;
156
157         mc_lst->next = NULL;
158         ipv6_addr_copy(&mc_lst->addr, addr);
159
160         rcu_read_lock();
161         if (ifindex == 0) {
162                 struct rt6_info *rt;
163                 rt = rt6_lookup(net, addr, NULL, 0, 0);
164                 if (rt) {
165                         dev = rt->rt6i_dev;
166                         dst_release(&rt->dst);
167                 }
168         } else
169                 dev = dev_get_by_index_rcu(net, ifindex);
170
171         if (dev == NULL) {
172                 rcu_read_unlock();
173                 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
174                 return -ENODEV;
175         }
176
177         mc_lst->ifindex = dev->ifindex;
178         mc_lst->sfmode = MCAST_EXCLUDE;
179         rwlock_init(&mc_lst->sflock);
180         mc_lst->sflist = NULL;
181
182         /*
183          *      now add/increase the group membership on the device
184          */
185
186         err = ipv6_dev_mc_inc(dev, addr);
187
188         if (err) {
189                 rcu_read_unlock();
190                 sock_kfree_s(sk, mc_lst, sizeof(*mc_lst));
191                 return err;
192         }
193
194         spin_lock(&ipv6_sk_mc_lock);
195         mc_lst->next = np->ipv6_mc_list;
196         rcu_assign_pointer(np->ipv6_mc_list, mc_lst);
197         spin_unlock(&ipv6_sk_mc_lock);
198
199         rcu_read_unlock();
200
201         return 0;
202 }
203
204 /*
205  *      socket leave on multicast group
206  */
207 int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
208 {
209         struct ipv6_pinfo *np = inet6_sk(sk);
210         struct ipv6_mc_socklist *mc_lst;
211         struct ipv6_mc_socklist __rcu **lnk;
212         struct net *net = sock_net(sk);
213
214         spin_lock(&ipv6_sk_mc_lock);
215         for (lnk = &np->ipv6_mc_list;
216              (mc_lst = rcu_dereference_protected(*lnk,
217                         lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
218               lnk = &mc_lst->next) {
219                 if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
220                     ipv6_addr_equal(&mc_lst->addr, addr)) {
221                         struct net_device *dev;
222
223                         *lnk = mc_lst->next;
224                         spin_unlock(&ipv6_sk_mc_lock);
225
226                         rcu_read_lock();
227                         dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
228                         if (dev != NULL) {
229                                 struct inet6_dev *idev = __in6_dev_get(dev);
230
231                                 (void) ip6_mc_leave_src(sk, mc_lst, idev);
232                                 if (idev)
233                                         __ipv6_dev_mc_dec(idev, &mc_lst->addr);
234                         } else
235                                 (void) ip6_mc_leave_src(sk, mc_lst, NULL);
236                         rcu_read_unlock();
237                         atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
238                         kfree_rcu(mc_lst, rcu);
239                         return 0;
240                 }
241         }
242         spin_unlock(&ipv6_sk_mc_lock);
243
244         return -EADDRNOTAVAIL;
245 }
246
247 /* called with rcu_read_lock() */
248 static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
249                                              const struct in6_addr *group,
250                                              int ifindex)
251 {
252         struct net_device *dev = NULL;
253         struct inet6_dev *idev = NULL;
254
255         if (ifindex == 0) {
256                 struct rt6_info *rt = rt6_lookup(net, group, NULL, 0, 0);
257
258                 if (rt) {
259                         dev = rt->rt6i_dev;
260                         dst_release(&rt->dst);
261                 }
262         } else
263                 dev = dev_get_by_index_rcu(net, ifindex);
264
265         if (!dev)
266                 return NULL;
267         idev = __in6_dev_get(dev);
268         if (!idev)
269                 return NULL;
270         read_lock_bh(&idev->lock);
271         if (idev->dead) {
272                 read_unlock_bh(&idev->lock);
273                 return NULL;
274         }
275         return idev;
276 }
277
278 void ipv6_sock_mc_close(struct sock *sk)
279 {
280         struct ipv6_pinfo *np = inet6_sk(sk);
281         struct ipv6_mc_socklist *mc_lst;
282         struct net *net = sock_net(sk);
283
284         spin_lock(&ipv6_sk_mc_lock);
285         while ((mc_lst = rcu_dereference_protected(np->ipv6_mc_list,
286                                 lockdep_is_held(&ipv6_sk_mc_lock))) != NULL) {
287                 struct net_device *dev;
288
289                 np->ipv6_mc_list = mc_lst->next;
290                 spin_unlock(&ipv6_sk_mc_lock);
291
292                 rcu_read_lock();
293                 dev = dev_get_by_index_rcu(net, mc_lst->ifindex);
294                 if (dev) {
295                         struct inet6_dev *idev = __in6_dev_get(dev);
296
297                         (void) ip6_mc_leave_src(sk, mc_lst, idev);
298                         if (idev)
299                                 __ipv6_dev_mc_dec(idev, &mc_lst->addr);
300                 } else
301                         (void) ip6_mc_leave_src(sk, mc_lst, NULL);
302                 rcu_read_unlock();
303
304                 atomic_sub(sizeof(*mc_lst), &sk->sk_omem_alloc);
305                 kfree_rcu(mc_lst, rcu);
306
307                 spin_lock(&ipv6_sk_mc_lock);
308         }
309         spin_unlock(&ipv6_sk_mc_lock);
310 }
311
312 int ip6_mc_source(int add, int omode, struct sock *sk,
313         struct group_source_req *pgsr)
314 {
315         struct in6_addr *source, *group;
316         struct ipv6_mc_socklist *pmc;
317         struct inet6_dev *idev;
318         struct ipv6_pinfo *inet6 = inet6_sk(sk);
319         struct ip6_sf_socklist *psl;
320         struct net *net = sock_net(sk);
321         int i, j, rv;
322         int leavegroup = 0;
323         int pmclocked = 0;
324         int err;
325
326         source = &((struct sockaddr_in6 *)&pgsr->gsr_source)->sin6_addr;
327         group = &((struct sockaddr_in6 *)&pgsr->gsr_group)->sin6_addr;
328
329         if (!ipv6_addr_is_multicast(group))
330                 return -EINVAL;
331
332         rcu_read_lock();
333         idev = ip6_mc_find_dev_rcu(net, group, pgsr->gsr_interface);
334         if (!idev) {
335                 rcu_read_unlock();
336                 return -ENODEV;
337         }
338
339         err = -EADDRNOTAVAIL;
340
341         for_each_pmc_rcu(inet6, pmc) {
342                 if (pgsr->gsr_interface && pmc->ifindex != pgsr->gsr_interface)
343                         continue;
344                 if (ipv6_addr_equal(&pmc->addr, group))
345                         break;
346         }
347         if (!pmc) {             /* must have a prior join */
348                 err = -EINVAL;
349                 goto done;
350         }
351         /* if a source filter was set, must be the same mode as before */
352         if (pmc->sflist) {
353                 if (pmc->sfmode != omode) {
354                         err = -EINVAL;
355                         goto done;
356                 }
357         } else if (pmc->sfmode != omode) {
358                 /* allow mode switches for empty-set filters */
359                 ip6_mc_add_src(idev, group, omode, 0, NULL, 0);
360                 ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
361                 pmc->sfmode = omode;
362         }
363
364         write_lock(&pmc->sflock);
365         pmclocked = 1;
366
367         psl = pmc->sflist;
368         if (!add) {
369                 if (!psl)
370                         goto done;      /* err = -EADDRNOTAVAIL */
371                 rv = !0;
372                 for (i=0; i<psl->sl_count; i++) {
373                         rv = memcmp(&psl->sl_addr[i], source,
374                                 sizeof(struct in6_addr));
375                         if (rv == 0)
376                                 break;
377                 }
378                 if (rv)         /* source not found */
379                         goto done;      /* err = -EADDRNOTAVAIL */
380
381                 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
382                 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
383                         leavegroup = 1;
384                         goto done;
385                 }
386
387                 /* update the interface filter */
388                 ip6_mc_del_src(idev, group, omode, 1, source, 1);
389
390                 for (j=i+1; j<psl->sl_count; j++)
391                         psl->sl_addr[j-1] = psl->sl_addr[j];
392                 psl->sl_count--;
393                 err = 0;
394                 goto done;
395         }
396         /* else, add a new source to the filter */
397
398         if (psl && psl->sl_count >= sysctl_mld_max_msf) {
399                 err = -ENOBUFS;
400                 goto done;
401         }
402         if (!psl || psl->sl_count == psl->sl_max) {
403                 struct ip6_sf_socklist *newpsl;
404                 int count = IP6_SFBLOCK;
405
406                 if (psl)
407                         count += psl->sl_max;
408                 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(count), GFP_ATOMIC);
409                 if (!newpsl) {
410                         err = -ENOBUFS;
411                         goto done;
412                 }
413                 newpsl->sl_max = count;
414                 newpsl->sl_count = count - IP6_SFBLOCK;
415                 if (psl) {
416                         for (i=0; i<psl->sl_count; i++)
417                                 newpsl->sl_addr[i] = psl->sl_addr[i];
418                         sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
419                 }
420                 pmc->sflist = psl = newpsl;
421         }
422         rv = 1; /* > 0 for insert logic below if sl_count is 0 */
423         for (i=0; i<psl->sl_count; i++) {
424                 rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
425                 if (rv == 0)
426                         break;
427         }
428         if (rv == 0)            /* address already there is an error */
429                 goto done;
430         for (j=psl->sl_count-1; j>=i; j--)
431                 psl->sl_addr[j+1] = psl->sl_addr[j];
432         psl->sl_addr[i] = *source;
433         psl->sl_count++;
434         err = 0;
435         /* update the interface list */
436         ip6_mc_add_src(idev, group, omode, 1, source, 1);
437 done:
438         if (pmclocked)
439                 write_unlock(&pmc->sflock);
440         read_unlock_bh(&idev->lock);
441         rcu_read_unlock();
442         if (leavegroup)
443                 return ipv6_sock_mc_drop(sk, pgsr->gsr_interface, group);
444         return err;
445 }
446
447 int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf)
448 {
449         const struct in6_addr *group;
450         struct ipv6_mc_socklist *pmc;
451         struct inet6_dev *idev;
452         struct ipv6_pinfo *inet6 = inet6_sk(sk);
453         struct ip6_sf_socklist *newpsl, *psl;
454         struct net *net = sock_net(sk);
455         int leavegroup = 0;
456         int i, err;
457
458         group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
459
460         if (!ipv6_addr_is_multicast(group))
461                 return -EINVAL;
462         if (gsf->gf_fmode != MCAST_INCLUDE &&
463             gsf->gf_fmode != MCAST_EXCLUDE)
464                 return -EINVAL;
465
466         rcu_read_lock();
467         idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
468
469         if (!idev) {
470                 rcu_read_unlock();
471                 return -ENODEV;
472         }
473
474         err = 0;
475
476         if (gsf->gf_fmode == MCAST_INCLUDE && gsf->gf_numsrc == 0) {
477                 leavegroup = 1;
478                 goto done;
479         }
480
481         for_each_pmc_rcu(inet6, pmc) {
482                 if (pmc->ifindex != gsf->gf_interface)
483                         continue;
484                 if (ipv6_addr_equal(&pmc->addr, group))
485                         break;
486         }
487         if (!pmc) {             /* must have a prior join */
488                 err = -EINVAL;
489                 goto done;
490         }
491         if (gsf->gf_numsrc) {
492                 newpsl = sock_kmalloc(sk, IP6_SFLSIZE(gsf->gf_numsrc),
493                                                           GFP_ATOMIC);
494                 if (!newpsl) {
495                         err = -ENOBUFS;
496                         goto done;
497                 }
498                 newpsl->sl_max = newpsl->sl_count = gsf->gf_numsrc;
499                 for (i=0; i<newpsl->sl_count; ++i) {
500                         struct sockaddr_in6 *psin6;
501
502                         psin6 = (struct sockaddr_in6 *)&gsf->gf_slist[i];
503                         newpsl->sl_addr[i] = psin6->sin6_addr;
504                 }
505                 err = ip6_mc_add_src(idev, group, gsf->gf_fmode,
506                         newpsl->sl_count, newpsl->sl_addr, 0);
507                 if (err) {
508                         sock_kfree_s(sk, newpsl, IP6_SFLSIZE(newpsl->sl_max));
509                         goto done;
510                 }
511         } else {
512                 newpsl = NULL;
513                 (void) ip6_mc_add_src(idev, group, gsf->gf_fmode, 0, NULL, 0);
514         }
515
516         write_lock(&pmc->sflock);
517         psl = pmc->sflist;
518         if (psl) {
519                 (void) ip6_mc_del_src(idev, group, pmc->sfmode,
520                         psl->sl_count, psl->sl_addr, 0);
521                 sock_kfree_s(sk, psl, IP6_SFLSIZE(psl->sl_max));
522         } else
523                 (void) ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0);
524         pmc->sflist = newpsl;
525         pmc->sfmode = gsf->gf_fmode;
526         write_unlock(&pmc->sflock);
527         err = 0;
528 done:
529         read_unlock_bh(&idev->lock);
530         rcu_read_unlock();
531         if (leavegroup)
532                 err = ipv6_sock_mc_drop(sk, gsf->gf_interface, group);
533         return err;
534 }
535
536 int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
537         struct group_filter __user *optval, int __user *optlen)
538 {
539         int err, i, count, copycount;
540         const struct in6_addr *group;
541         struct ipv6_mc_socklist *pmc;
542         struct inet6_dev *idev;
543         struct ipv6_pinfo *inet6 = inet6_sk(sk);
544         struct ip6_sf_socklist *psl;
545         struct net *net = sock_net(sk);
546
547         group = &((struct sockaddr_in6 *)&gsf->gf_group)->sin6_addr;
548
549         if (!ipv6_addr_is_multicast(group))
550                 return -EINVAL;
551
552         rcu_read_lock();
553         idev = ip6_mc_find_dev_rcu(net, group, gsf->gf_interface);
554
555         if (!idev) {
556                 rcu_read_unlock();
557                 return -ENODEV;
558         }
559
560         err = -EADDRNOTAVAIL;
561         /*
562          * changes to the ipv6_mc_list require the socket lock and
563          * a read lock on ip6_sk_mc_lock. We have the socket lock,
564          * so reading the list is safe.
565          */
566
567         for_each_pmc_rcu(inet6, pmc) {
568                 if (pmc->ifindex != gsf->gf_interface)
569                         continue;
570                 if (ipv6_addr_equal(group, &pmc->addr))
571                         break;
572         }
573         if (!pmc)               /* must have a prior join */
574                 goto done;
575         gsf->gf_fmode = pmc->sfmode;
576         psl = pmc->sflist;
577         count = psl ? psl->sl_count : 0;
578         read_unlock_bh(&idev->lock);
579         rcu_read_unlock();
580
581         copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
582         gsf->gf_numsrc = count;
583         if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
584             copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
585                 return -EFAULT;
586         }
587         /* changes to psl require the socket lock, a read lock on
588          * on ipv6_sk_mc_lock and a write lock on pmc->sflock. We
589          * have the socket lock, so reading here is safe.
590          */
591         for (i=0; i<copycount; i++) {
592                 struct sockaddr_in6 *psin6;
593                 struct sockaddr_storage ss;
594
595                 psin6 = (struct sockaddr_in6 *)&ss;
596                 memset(&ss, 0, sizeof(ss));
597                 psin6->sin6_family = AF_INET6;
598                 psin6->sin6_addr = psl->sl_addr[i];
599                 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
600                         return -EFAULT;
601         }
602         return 0;
603 done:
604         read_unlock_bh(&idev->lock);
605         rcu_read_unlock();
606         return err;
607 }
608
609 int inet6_mc_check(struct sock *sk, const struct in6_addr *mc_addr,
610                    const struct in6_addr *src_addr)
611 {
612         struct ipv6_pinfo *np = inet6_sk(sk);
613         struct ipv6_mc_socklist *mc;
614         struct ip6_sf_socklist *psl;
615         int rv = 1;
616
617         rcu_read_lock();
618         for_each_pmc_rcu(np, mc) {
619                 if (ipv6_addr_equal(&mc->addr, mc_addr))
620                         break;
621         }
622         if (!mc) {
623                 rcu_read_unlock();
624                 return 1;
625         }
626         read_lock(&mc->sflock);
627         psl = mc->sflist;
628         if (!psl) {
629                 rv = mc->sfmode == MCAST_EXCLUDE;
630         } else {
631                 int i;
632
633                 for (i=0; i<psl->sl_count; i++) {
634                         if (ipv6_addr_equal(&psl->sl_addr[i], src_addr))
635                                 break;
636                 }
637                 if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
638                         rv = 0;
639                 if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
640                         rv = 0;
641         }
642         read_unlock(&mc->sflock);
643         rcu_read_unlock();
644
645         return rv;
646 }
647
648 static void ma_put(struct ifmcaddr6 *mc)
649 {
650         if (atomic_dec_and_test(&mc->mca_refcnt)) {
651                 in6_dev_put(mc->idev);
652                 kfree(mc);
653         }
654 }
655
656 static void igmp6_group_added(struct ifmcaddr6 *mc)
657 {
658         struct net_device *dev = mc->idev->dev;
659         char buf[MAX_ADDR_LEN];
660
661         spin_lock_bh(&mc->mca_lock);
662         if (!(mc->mca_flags&MAF_LOADED)) {
663                 mc->mca_flags |= MAF_LOADED;
664                 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
665                         dev_mc_add(dev, buf);
666         }
667         spin_unlock_bh(&mc->mca_lock);
668
669         if (!(dev->flags & IFF_UP) || (mc->mca_flags & MAF_NOREPORT))
670                 return;
671
672         if (MLD_V1_SEEN(mc->idev)) {
673                 igmp6_join_group(mc);
674                 return;
675         }
676         /* else v2 */
677
678         mc->mca_crcount = mc->idev->mc_qrv;
679         mld_ifc_event(mc->idev);
680 }
681
682 static void igmp6_group_dropped(struct ifmcaddr6 *mc)
683 {
684         struct net_device *dev = mc->idev->dev;
685         char buf[MAX_ADDR_LEN];
686
687         spin_lock_bh(&mc->mca_lock);
688         if (mc->mca_flags&MAF_LOADED) {
689                 mc->mca_flags &= ~MAF_LOADED;
690                 if (ndisc_mc_map(&mc->mca_addr, buf, dev, 0) == 0)
691                         dev_mc_del(dev, buf);
692         }
693
694         if (mc->mca_flags & MAF_NOREPORT)
695                 goto done;
696         spin_unlock_bh(&mc->mca_lock);
697
698         if (!mc->idev->dead)
699                 igmp6_leave_group(mc);
700
701         spin_lock_bh(&mc->mca_lock);
702         if (del_timer(&mc->mca_timer))
703                 atomic_dec(&mc->mca_refcnt);
704 done:
705         ip6_mc_clear_src(mc);
706         spin_unlock_bh(&mc->mca_lock);
707 }
708
709 /*
710  * deleted ifmcaddr6 manipulation
711  */
712 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im)
713 {
714         struct ifmcaddr6 *pmc;
715
716         /* this is an "ifmcaddr6" for convenience; only the fields below
717          * are actually used. In particular, the refcnt and users are not
718          * used for management of the delete list. Using the same structure
719          * for deleted items allows change reports to use common code with
720          * non-deleted or query-response MCA's.
721          */
722         pmc = kzalloc(sizeof(*pmc), GFP_ATOMIC);
723         if (!pmc)
724                 return;
725
726         spin_lock_bh(&im->mca_lock);
727         spin_lock_init(&pmc->mca_lock);
728         pmc->idev = im->idev;
729         in6_dev_hold(idev);
730         pmc->mca_addr = im->mca_addr;
731         pmc->mca_crcount = idev->mc_qrv;
732         pmc->mca_sfmode = im->mca_sfmode;
733         if (pmc->mca_sfmode == MCAST_INCLUDE) {
734                 struct ip6_sf_list *psf;
735
736                 pmc->mca_tomb = im->mca_tomb;
737                 pmc->mca_sources = im->mca_sources;
738                 im->mca_tomb = im->mca_sources = NULL;
739                 for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
740                         psf->sf_crcount = pmc->mca_crcount;
741         }
742         spin_unlock_bh(&im->mca_lock);
743
744         spin_lock_bh(&idev->mc_lock);
745         pmc->next = idev->mc_tomb;
746         idev->mc_tomb = pmc;
747         spin_unlock_bh(&idev->mc_lock);
748 }
749
750 static void mld_del_delrec(struct inet6_dev *idev, const struct in6_addr *pmca)
751 {
752         struct ifmcaddr6 *pmc, *pmc_prev;
753         struct ip6_sf_list *psf, *psf_next;
754
755         spin_lock_bh(&idev->mc_lock);
756         pmc_prev = NULL;
757         for (pmc=idev->mc_tomb; pmc; pmc=pmc->next) {
758                 if (ipv6_addr_equal(&pmc->mca_addr, pmca))
759                         break;
760                 pmc_prev = pmc;
761         }
762         if (pmc) {
763                 if (pmc_prev)
764                         pmc_prev->next = pmc->next;
765                 else
766                         idev->mc_tomb = pmc->next;
767         }
768         spin_unlock_bh(&idev->mc_lock);
769
770         if (pmc) {
771                 for (psf=pmc->mca_tomb; psf; psf=psf_next) {
772                         psf_next = psf->sf_next;
773                         kfree(psf);
774                 }
775                 in6_dev_put(pmc->idev);
776                 kfree(pmc);
777         }
778 }
779
780 static void mld_clear_delrec(struct inet6_dev *idev)
781 {
782         struct ifmcaddr6 *pmc, *nextpmc;
783
784         spin_lock_bh(&idev->mc_lock);
785         pmc = idev->mc_tomb;
786         idev->mc_tomb = NULL;
787         spin_unlock_bh(&idev->mc_lock);
788
789         for (; pmc; pmc = nextpmc) {
790                 nextpmc = pmc->next;
791                 ip6_mc_clear_src(pmc);
792                 in6_dev_put(pmc->idev);
793                 kfree(pmc);
794         }
795
796         /* clear dead sources, too */
797         read_lock_bh(&idev->lock);
798         for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
799                 struct ip6_sf_list *psf, *psf_next;
800
801                 spin_lock_bh(&pmc->mca_lock);
802                 psf = pmc->mca_tomb;
803                 pmc->mca_tomb = NULL;
804                 spin_unlock_bh(&pmc->mca_lock);
805                 for (; psf; psf=psf_next) {
806                         psf_next = psf->sf_next;
807                         kfree(psf);
808                 }
809         }
810         read_unlock_bh(&idev->lock);
811 }
812
813
814 /*
815  *      device multicast group inc (add if not found)
816  */
817 int ipv6_dev_mc_inc(struct net_device *dev, const struct in6_addr *addr)
818 {
819         struct ifmcaddr6 *mc;
820         struct inet6_dev *idev;
821
822         /* we need to take a reference on idev */
823         idev = in6_dev_get(dev);
824
825         if (idev == NULL)
826                 return -EINVAL;
827
828         write_lock_bh(&idev->lock);
829         if (idev->dead) {
830                 write_unlock_bh(&idev->lock);
831                 in6_dev_put(idev);
832                 return -ENODEV;
833         }
834
835         for (mc = idev->mc_list; mc; mc = mc->next) {
836                 if (ipv6_addr_equal(&mc->mca_addr, addr)) {
837                         mc->mca_users++;
838                         write_unlock_bh(&idev->lock);
839                         ip6_mc_add_src(idev, &mc->mca_addr, MCAST_EXCLUDE, 0,
840                                 NULL, 0);
841                         in6_dev_put(idev);
842                         return 0;
843                 }
844         }
845
846         /*
847          *      not found: create a new one.
848          */
849
850         mc = kzalloc(sizeof(struct ifmcaddr6), GFP_ATOMIC);
851
852         if (mc == NULL) {
853                 write_unlock_bh(&idev->lock);
854                 in6_dev_put(idev);
855                 return -ENOMEM;
856         }
857
858         setup_timer(&mc->mca_timer, igmp6_timer_handler, (unsigned long)mc);
859
860         ipv6_addr_copy(&mc->mca_addr, addr);
861         mc->idev = idev; /* (reference taken) */
862         mc->mca_users = 1;
863         /* mca_stamp should be updated upon changes */
864         mc->mca_cstamp = mc->mca_tstamp = jiffies;
865         atomic_set(&mc->mca_refcnt, 2);
866         spin_lock_init(&mc->mca_lock);
867
868         /* initial mode is (EX, empty) */
869         mc->mca_sfmode = MCAST_EXCLUDE;
870         mc->mca_sfcount[MCAST_EXCLUDE] = 1;
871
872         if (ipv6_addr_is_ll_all_nodes(&mc->mca_addr) ||
873             IPV6_ADDR_MC_SCOPE(&mc->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
874                 mc->mca_flags |= MAF_NOREPORT;
875
876         mc->next = idev->mc_list;
877         idev->mc_list = mc;
878         write_unlock_bh(&idev->lock);
879
880         mld_del_delrec(idev, &mc->mca_addr);
881         igmp6_group_added(mc);
882         ma_put(mc);
883         return 0;
884 }
885
886 /*
887  *      device multicast group del
888  */
889 int __ipv6_dev_mc_dec(struct inet6_dev *idev, const struct in6_addr *addr)
890 {
891         struct ifmcaddr6 *ma, **map;
892
893         write_lock_bh(&idev->lock);
894         for (map = &idev->mc_list; (ma=*map) != NULL; map = &ma->next) {
895                 if (ipv6_addr_equal(&ma->mca_addr, addr)) {
896                         if (--ma->mca_users == 0) {
897                                 *map = ma->next;
898                                 write_unlock_bh(&idev->lock);
899
900                                 igmp6_group_dropped(ma);
901
902                                 ma_put(ma);
903                                 return 0;
904                         }
905                         write_unlock_bh(&idev->lock);
906                         return 0;
907                 }
908         }
909         write_unlock_bh(&idev->lock);
910
911         return -ENOENT;
912 }
913
914 int ipv6_dev_mc_dec(struct net_device *dev, const struct in6_addr *addr)
915 {
916         struct inet6_dev *idev;
917         int err;
918
919         rcu_read_lock();
920
921         idev = __in6_dev_get(dev);
922         if (!idev)
923                 err = -ENODEV;
924         else
925                 err = __ipv6_dev_mc_dec(idev, addr);
926
927         rcu_read_unlock();
928         return err;
929 }
930
931 /*
932  * identify MLD packets for MLD filter exceptions
933  */
934 int ipv6_is_mld(struct sk_buff *skb, int nexthdr)
935 {
936         struct icmp6hdr *pic;
937
938         if (nexthdr != IPPROTO_ICMPV6)
939                 return 0;
940
941         if (!pskb_may_pull(skb, sizeof(struct icmp6hdr)))
942                 return 0;
943
944         pic = icmp6_hdr(skb);
945
946         switch (pic->icmp6_type) {
947         case ICMPV6_MGM_QUERY:
948         case ICMPV6_MGM_REPORT:
949         case ICMPV6_MGM_REDUCTION:
950         case ICMPV6_MLD2_REPORT:
951                 return 1;
952         default:
953                 break;
954         }
955         return 0;
956 }
957
958 /*
959  *      check if the interface/address pair is valid
960  */
961 int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
962                         const struct in6_addr *src_addr)
963 {
964         struct inet6_dev *idev;
965         struct ifmcaddr6 *mc;
966         int rv = 0;
967
968         rcu_read_lock();
969         idev = __in6_dev_get(dev);
970         if (idev) {
971                 read_lock_bh(&idev->lock);
972                 for (mc = idev->mc_list; mc; mc=mc->next) {
973                         if (ipv6_addr_equal(&mc->mca_addr, group))
974                                 break;
975                 }
976                 if (mc) {
977                         if (src_addr && !ipv6_addr_any(src_addr)) {
978                                 struct ip6_sf_list *psf;
979
980                                 spin_lock_bh(&mc->mca_lock);
981                                 for (psf=mc->mca_sources;psf;psf=psf->sf_next) {
982                                         if (ipv6_addr_equal(&psf->sf_addr, src_addr))
983                                                 break;
984                                 }
985                                 if (psf)
986                                         rv = psf->sf_count[MCAST_INCLUDE] ||
987                                                 psf->sf_count[MCAST_EXCLUDE] !=
988                                                 mc->mca_sfcount[MCAST_EXCLUDE];
989                                 else
990                                         rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
991                                 spin_unlock_bh(&mc->mca_lock);
992                         } else
993                                 rv = 1; /* don't filter unspecified source */
994                 }
995                 read_unlock_bh(&idev->lock);
996         }
997         rcu_read_unlock();
998         return rv;
999 }
1000
1001 static void mld_gq_start_timer(struct inet6_dev *idev)
1002 {
1003         int tv = net_random() % idev->mc_maxdelay;
1004
1005         idev->mc_gq_running = 1;
1006         if (!mod_timer(&idev->mc_gq_timer, jiffies+tv+2))
1007                 in6_dev_hold(idev);
1008 }
1009
1010 static void mld_ifc_start_timer(struct inet6_dev *idev, int delay)
1011 {
1012         int tv = net_random() % delay;
1013
1014         if (!mod_timer(&idev->mc_ifc_timer, jiffies+tv+2))
1015                 in6_dev_hold(idev);
1016 }
1017
1018 /*
1019  *      IGMP handling (alias multicast ICMPv6 messages)
1020  */
1021
1022 static void igmp6_group_queried(struct ifmcaddr6 *ma, unsigned long resptime)
1023 {
1024         unsigned long delay = resptime;
1025
1026         /* Do not start timer for these addresses */
1027         if (ipv6_addr_is_ll_all_nodes(&ma->mca_addr) ||
1028             IPV6_ADDR_MC_SCOPE(&ma->mca_addr) < IPV6_ADDR_SCOPE_LINKLOCAL)
1029                 return;
1030
1031         if (del_timer(&ma->mca_timer)) {
1032                 atomic_dec(&ma->mca_refcnt);
1033                 delay = ma->mca_timer.expires - jiffies;
1034         }
1035
1036         if (delay >= resptime) {
1037                 if (resptime)
1038                         delay = net_random() % resptime;
1039                 else
1040                         delay = 1;
1041         }
1042         ma->mca_timer.expires = jiffies + delay;
1043         if (!mod_timer(&ma->mca_timer, jiffies + delay))
1044                 atomic_inc(&ma->mca_refcnt);
1045         ma->mca_flags |= MAF_TIMER_RUNNING;
1046 }
1047
1048 /* mark EXCLUDE-mode sources */
1049 static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
1050         const struct in6_addr *srcs)
1051 {
1052         struct ip6_sf_list *psf;
1053         int i, scount;
1054
1055         scount = 0;
1056         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1057                 if (scount == nsrcs)
1058                         break;
1059                 for (i=0; i<nsrcs; i++) {
1060                         /* skip inactive filters */
1061                         if (psf->sf_count[MCAST_INCLUDE] ||
1062                             pmc->mca_sfcount[MCAST_EXCLUDE] !=
1063                             psf->sf_count[MCAST_EXCLUDE])
1064                                 continue;
1065                         if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1066                                 scount++;
1067                                 break;
1068                         }
1069                 }
1070         }
1071         pmc->mca_flags &= ~MAF_GSQUERY;
1072         if (scount == nsrcs)    /* all sources excluded */
1073                 return 0;
1074         return 1;
1075 }
1076
1077 static int mld_marksources(struct ifmcaddr6 *pmc, int nsrcs,
1078         const struct in6_addr *srcs)
1079 {
1080         struct ip6_sf_list *psf;
1081         int i, scount;
1082
1083         if (pmc->mca_sfmode == MCAST_EXCLUDE)
1084                 return mld_xmarksources(pmc, nsrcs, srcs);
1085
1086         /* mark INCLUDE-mode sources */
1087
1088         scount = 0;
1089         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1090                 if (scount == nsrcs)
1091                         break;
1092                 for (i=0; i<nsrcs; i++) {
1093                         if (ipv6_addr_equal(&srcs[i], &psf->sf_addr)) {
1094                                 psf->sf_gsresp = 1;
1095                                 scount++;
1096                                 break;
1097                         }
1098                 }
1099         }
1100         if (!scount) {
1101                 pmc->mca_flags &= ~MAF_GSQUERY;
1102                 return 0;
1103         }
1104         pmc->mca_flags |= MAF_GSQUERY;
1105         return 1;
1106 }
1107
1108 /* called with rcu_read_lock() */
1109 int igmp6_event_query(struct sk_buff *skb)
1110 {
1111         struct mld2_query *mlh2 = NULL;
1112         struct ifmcaddr6 *ma;
1113         const struct in6_addr *group;
1114         unsigned long max_delay;
1115         struct inet6_dev *idev;
1116         struct mld_msg *mld;
1117         int group_type;
1118         int mark = 0;
1119         int len;
1120
1121         if (!pskb_may_pull(skb, sizeof(struct in6_addr)))
1122                 return -EINVAL;
1123
1124         /* compute payload length excluding extension headers */
1125         len = ntohs(ipv6_hdr(skb)->payload_len) + sizeof(struct ipv6hdr);
1126         len -= skb_network_header_len(skb);
1127
1128         /* Drop queries with not link local source */
1129         if (!(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL))
1130                 return -EINVAL;
1131
1132         idev = __in6_dev_get(skb->dev);
1133
1134         if (idev == NULL)
1135                 return 0;
1136
1137         mld = (struct mld_msg *)icmp6_hdr(skb);
1138         group = &mld->mld_mca;
1139         group_type = ipv6_addr_type(group);
1140
1141         if (group_type != IPV6_ADDR_ANY &&
1142             !(group_type&IPV6_ADDR_MULTICAST))
1143                 return -EINVAL;
1144
1145         if (len == 24) {
1146                 int switchback;
1147                 /* MLDv1 router present */
1148
1149                 /* Translate milliseconds to jiffies */
1150                 max_delay = (ntohs(mld->mld_maxdelay)*HZ)/1000;
1151
1152                 switchback = (idev->mc_qrv + 1) * max_delay;
1153                 idev->mc_v1_seen = jiffies + switchback;
1154
1155                 /* cancel the interface change timer */
1156                 idev->mc_ifc_count = 0;
1157                 if (del_timer(&idev->mc_ifc_timer))
1158                         __in6_dev_put(idev);
1159                 /* clear deleted report items */
1160                 mld_clear_delrec(idev);
1161         } else if (len >= 28) {
1162                 int srcs_offset = sizeof(struct mld2_query) -
1163                                   sizeof(struct icmp6hdr);
1164                 if (!pskb_may_pull(skb, srcs_offset))
1165                         return -EINVAL;
1166
1167                 mlh2 = (struct mld2_query *)skb_transport_header(skb);
1168                 max_delay = (MLDV2_MRC(ntohs(mlh2->mld2q_mrc))*HZ)/1000;
1169                 if (!max_delay)
1170                         max_delay = 1;
1171                 idev->mc_maxdelay = max_delay;
1172                 if (mlh2->mld2q_qrv)
1173                         idev->mc_qrv = mlh2->mld2q_qrv;
1174                 if (group_type == IPV6_ADDR_ANY) { /* general query */
1175                         if (mlh2->mld2q_nsrcs)
1176                                 return -EINVAL; /* no sources allowed */
1177
1178                         mld_gq_start_timer(idev);
1179                         return 0;
1180                 }
1181                 /* mark sources to include, if group & source-specific */
1182                 if (mlh2->mld2q_nsrcs != 0) {
1183                         if (!pskb_may_pull(skb, srcs_offset +
1184                             ntohs(mlh2->mld2q_nsrcs) * sizeof(struct in6_addr)))
1185                                 return -EINVAL;
1186
1187                         mlh2 = (struct mld2_query *)skb_transport_header(skb);
1188                         mark = 1;
1189                 }
1190         } else
1191                 return -EINVAL;
1192
1193         read_lock_bh(&idev->lock);
1194         if (group_type == IPV6_ADDR_ANY) {
1195                 for (ma = idev->mc_list; ma; ma=ma->next) {
1196                         spin_lock_bh(&ma->mca_lock);
1197                         igmp6_group_queried(ma, max_delay);
1198                         spin_unlock_bh(&ma->mca_lock);
1199                 }
1200         } else {
1201                 for (ma = idev->mc_list; ma; ma=ma->next) {
1202                         if (!ipv6_addr_equal(group, &ma->mca_addr))
1203                                 continue;
1204                         spin_lock_bh(&ma->mca_lock);
1205                         if (ma->mca_flags & MAF_TIMER_RUNNING) {
1206                                 /* gsquery <- gsquery && mark */
1207                                 if (!mark)
1208                                         ma->mca_flags &= ~MAF_GSQUERY;
1209                         } else {
1210                                 /* gsquery <- mark */
1211                                 if (mark)
1212                                         ma->mca_flags |= MAF_GSQUERY;
1213                                 else
1214                                         ma->mca_flags &= ~MAF_GSQUERY;
1215                         }
1216                         if (!(ma->mca_flags & MAF_GSQUERY) ||
1217                             mld_marksources(ma, ntohs(mlh2->mld2q_nsrcs), mlh2->mld2q_srcs))
1218                                 igmp6_group_queried(ma, max_delay);
1219                         spin_unlock_bh(&ma->mca_lock);
1220                         break;
1221                 }
1222         }
1223         read_unlock_bh(&idev->lock);
1224
1225         return 0;
1226 }
1227
1228 /* called with rcu_read_lock() */
1229 int igmp6_event_report(struct sk_buff *skb)
1230 {
1231         struct ifmcaddr6 *ma;
1232         struct inet6_dev *idev;
1233         struct mld_msg *mld;
1234         int addr_type;
1235
1236         /* Our own report looped back. Ignore it. */
1237         if (skb->pkt_type == PACKET_LOOPBACK)
1238                 return 0;
1239
1240         /* send our report if the MC router may not have heard this report */
1241         if (skb->pkt_type != PACKET_MULTICAST &&
1242             skb->pkt_type != PACKET_BROADCAST)
1243                 return 0;
1244
1245         if (!pskb_may_pull(skb, sizeof(*mld) - sizeof(struct icmp6hdr)))
1246                 return -EINVAL;
1247
1248         mld = (struct mld_msg *)icmp6_hdr(skb);
1249
1250         /* Drop reports with not link local source */
1251         addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
1252         if (addr_type != IPV6_ADDR_ANY &&
1253             !(addr_type&IPV6_ADDR_LINKLOCAL))
1254                 return -EINVAL;
1255
1256         idev = __in6_dev_get(skb->dev);
1257         if (idev == NULL)
1258                 return -ENODEV;
1259
1260         /*
1261          *      Cancel the timer for this group
1262          */
1263
1264         read_lock_bh(&idev->lock);
1265         for (ma = idev->mc_list; ma; ma=ma->next) {
1266                 if (ipv6_addr_equal(&ma->mca_addr, &mld->mld_mca)) {
1267                         spin_lock(&ma->mca_lock);
1268                         if (del_timer(&ma->mca_timer))
1269                                 atomic_dec(&ma->mca_refcnt);
1270                         ma->mca_flags &= ~(MAF_LAST_REPORTER|MAF_TIMER_RUNNING);
1271                         spin_unlock(&ma->mca_lock);
1272                         break;
1273                 }
1274         }
1275         read_unlock_bh(&idev->lock);
1276         return 0;
1277 }
1278
1279 static int is_in(struct ifmcaddr6 *pmc, struct ip6_sf_list *psf, int type,
1280         int gdeleted, int sdeleted)
1281 {
1282         switch (type) {
1283         case MLD2_MODE_IS_INCLUDE:
1284         case MLD2_MODE_IS_EXCLUDE:
1285                 if (gdeleted || sdeleted)
1286                         return 0;
1287                 if (!((pmc->mca_flags & MAF_GSQUERY) && !psf->sf_gsresp)) {
1288                         if (pmc->mca_sfmode == MCAST_INCLUDE)
1289                                 return 1;
1290                         /* don't include if this source is excluded
1291                          * in all filters
1292                          */
1293                         if (psf->sf_count[MCAST_INCLUDE])
1294                                 return type == MLD2_MODE_IS_INCLUDE;
1295                         return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1296                                 psf->sf_count[MCAST_EXCLUDE];
1297                 }
1298                 return 0;
1299         case MLD2_CHANGE_TO_INCLUDE:
1300                 if (gdeleted || sdeleted)
1301                         return 0;
1302                 return psf->sf_count[MCAST_INCLUDE] != 0;
1303         case MLD2_CHANGE_TO_EXCLUDE:
1304                 if (gdeleted || sdeleted)
1305                         return 0;
1306                 if (pmc->mca_sfcount[MCAST_EXCLUDE] == 0 ||
1307                     psf->sf_count[MCAST_INCLUDE])
1308                         return 0;
1309                 return pmc->mca_sfcount[MCAST_EXCLUDE] ==
1310                         psf->sf_count[MCAST_EXCLUDE];
1311         case MLD2_ALLOW_NEW_SOURCES:
1312                 if (gdeleted || !psf->sf_crcount)
1313                         return 0;
1314                 return (pmc->mca_sfmode == MCAST_INCLUDE) ^ sdeleted;
1315         case MLD2_BLOCK_OLD_SOURCES:
1316                 if (pmc->mca_sfmode == MCAST_INCLUDE)
1317                         return gdeleted || (psf->sf_crcount && sdeleted);
1318                 return psf->sf_crcount && !gdeleted && !sdeleted;
1319         }
1320         return 0;
1321 }
1322
1323 static int
1324 mld_scount(struct ifmcaddr6 *pmc, int type, int gdeleted, int sdeleted)
1325 {
1326         struct ip6_sf_list *psf;
1327         int scount = 0;
1328
1329         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1330                 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
1331                         continue;
1332                 scount++;
1333         }
1334         return scount;
1335 }
1336
1337 static struct sk_buff *mld_newpack(struct inet6_dev *idev, unsigned int mtu)
1338 {
1339         struct net_device *dev = idev->dev;
1340         struct net *net = dev_net(dev);
1341         struct sock *sk = net->ipv6.igmp_sk;
1342         struct sk_buff *skb;
1343         struct mld2_report *pmr;
1344         struct in6_addr addr_buf;
1345         const struct in6_addr *saddr;
1346         int hlen = LL_RESERVED_SPACE(dev);
1347         int tlen = dev->needed_tailroom;
1348         unsigned int size = mtu + hlen + tlen;
1349         int err;
1350         u8 ra[8] = { IPPROTO_ICMPV6, 0,
1351                      IPV6_TLV_ROUTERALERT, 2, 0, 0,
1352                      IPV6_TLV_PADN, 0 };
1353
1354         /* we assume size > sizeof(ra) here */
1355         /* limit our allocations to order-0 page */
1356         size = min_t(int, size, SKB_MAX_ORDER(0, 0));
1357         skb = sock_alloc_send_skb(sk, size, 1, &err);
1358
1359         if (!skb)
1360                 return NULL;
1361
1362         skb_reserve(skb, hlen);
1363         skb_tailroom_reserve(skb, mtu, tlen);
1364
1365         if (__ipv6_get_lladdr(idev, &addr_buf, IFA_F_TENTATIVE)) {
1366                 /* <draft-ietf-magma-mld-source-05.txt>:
1367                  * use unspecified address as the source address
1368                  * when a valid link-local address is not available.
1369                  */
1370                 saddr = &in6addr_any;
1371         } else
1372                 saddr = &addr_buf;
1373
1374         ip6_nd_hdr(sk, skb, dev, saddr, &mld2_all_mcr, NEXTHDR_HOP, 0);
1375
1376         memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1377
1378         skb_set_transport_header(skb, skb_tail_pointer(skb) - skb->data);
1379         skb_put(skb, sizeof(*pmr));
1380         pmr = (struct mld2_report *)skb_transport_header(skb);
1381         pmr->mld2r_type = ICMPV6_MLD2_REPORT;
1382         pmr->mld2r_resv1 = 0;
1383         pmr->mld2r_cksum = 0;
1384         pmr->mld2r_resv2 = 0;
1385         pmr->mld2r_ngrec = 0;
1386         return skb;
1387 }
1388
1389 static void mld_sendpack(struct sk_buff *skb)
1390 {
1391         struct ipv6hdr *pip6 = ipv6_hdr(skb);
1392         struct mld2_report *pmr =
1393                               (struct mld2_report *)skb_transport_header(skb);
1394         int payload_len, mldlen;
1395         struct inet6_dev *idev;
1396         struct net *net = dev_net(skb->dev);
1397         int err;
1398         struct flowi6 fl6;
1399         struct dst_entry *dst;
1400
1401         rcu_read_lock();
1402         idev = __in6_dev_get(skb->dev);
1403         IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len);
1404
1405         payload_len = (skb->tail - skb->network_header) - sizeof(*pip6);
1406         mldlen = skb->tail - skb->transport_header;
1407         pip6->payload_len = htons(payload_len);
1408
1409         pmr->mld2r_cksum = csum_ipv6_magic(&pip6->saddr, &pip6->daddr, mldlen,
1410                                            IPPROTO_ICMPV6,
1411                                            csum_partial(skb_transport_header(skb),
1412                                                         mldlen, 0));
1413
1414         dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1415
1416         if (!dst) {
1417                 err = -ENOMEM;
1418                 goto err_out;
1419         }
1420
1421         icmpv6_flow_init(net->ipv6.igmp_sk, &fl6, ICMPV6_MLD2_REPORT,
1422                          &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1423                          skb->dev->ifindex);
1424
1425         dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
1426         err = 0;
1427         if (IS_ERR(dst)) {
1428                 err = PTR_ERR(dst);
1429                 dst = NULL;
1430         }
1431         skb_dst_set(skb, dst);
1432         if (err)
1433                 goto err_out;
1434
1435         payload_len = skb->len;
1436
1437         err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1438                       dst_output);
1439 out:
1440         if (!err) {
1441                 ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT);
1442                 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1443         } else {
1444                 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1445         }
1446
1447         rcu_read_unlock();
1448         return;
1449
1450 err_out:
1451         kfree_skb(skb);
1452         goto out;
1453 }
1454
1455 static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
1456 {
1457         return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
1458 }
1459
1460 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1461         int type, struct mld2_grec **ppgr)
1462 {
1463         struct net_device *dev = pmc->idev->dev;
1464         struct mld2_report *pmr;
1465         struct mld2_grec *pgr;
1466
1467         if (!skb)
1468                 skb = mld_newpack(pmc->idev, dev->mtu);
1469         if (!skb)
1470                 return NULL;
1471         pgr = (struct mld2_grec *)skb_put(skb, sizeof(struct mld2_grec));
1472         pgr->grec_type = type;
1473         pgr->grec_auxwords = 0;
1474         pgr->grec_nsrcs = 0;
1475         pgr->grec_mca = pmc->mca_addr;  /* structure copy */
1476         pmr = (struct mld2_report *)skb_transport_header(skb);
1477         pmr->mld2r_ngrec = htons(ntohs(pmr->mld2r_ngrec)+1);
1478         *ppgr = pgr;
1479         return skb;
1480 }
1481
1482 #define AVAILABLE(skb)  ((skb) ? skb_availroom(skb) : 0)
1483
1484 static struct sk_buff *add_grec(struct sk_buff *skb, struct ifmcaddr6 *pmc,
1485         int type, int gdeleted, int sdeleted)
1486 {
1487         struct inet6_dev *idev = pmc->idev;
1488         struct net_device *dev = idev->dev;
1489         struct mld2_report *pmr;
1490         struct mld2_grec *pgr = NULL;
1491         struct ip6_sf_list *psf, *psf_next, *psf_prev, **psf_list;
1492         int scount, stotal, first, isquery, truncate;
1493
1494         if (pmc->mca_flags & MAF_NOREPORT)
1495                 return skb;
1496
1497         isquery = type == MLD2_MODE_IS_INCLUDE ||
1498                   type == MLD2_MODE_IS_EXCLUDE;
1499         truncate = type == MLD2_MODE_IS_EXCLUDE ||
1500                     type == MLD2_CHANGE_TO_EXCLUDE;
1501
1502         stotal = scount = 0;
1503
1504         psf_list = sdeleted ? &pmc->mca_tomb : &pmc->mca_sources;
1505
1506         if (!*psf_list)
1507                 goto empty_source;
1508
1509         pmr = skb ? (struct mld2_report *)skb_transport_header(skb) : NULL;
1510
1511         /* EX and TO_EX get a fresh packet, if needed */
1512         if (truncate) {
1513                 if (pmr && pmr->mld2r_ngrec &&
1514                     AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
1515                         if (skb)
1516                                 mld_sendpack(skb);
1517                         skb = mld_newpack(idev, dev->mtu);
1518                 }
1519         }
1520         first = 1;
1521         psf_prev = NULL;
1522         for (psf=*psf_list; psf; psf=psf_next) {
1523                 struct in6_addr *psrc;
1524
1525                 psf_next = psf->sf_next;
1526
1527                 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
1528                         psf_prev = psf;
1529                         continue;
1530                 }
1531
1532                 /* clear marks on query responses */
1533                 if (isquery)
1534                         psf->sf_gsresp = 0;
1535
1536                 if (AVAILABLE(skb) < sizeof(*psrc) +
1537                     first*sizeof(struct mld2_grec)) {
1538                         if (truncate && !first)
1539                                 break;   /* truncate these */
1540                         if (pgr)
1541                                 pgr->grec_nsrcs = htons(scount);
1542                         if (skb)
1543                                 mld_sendpack(skb);
1544                         skb = mld_newpack(idev, dev->mtu);
1545                         first = 1;
1546                         scount = 0;
1547                 }
1548                 if (first) {
1549                         skb = add_grhead(skb, pmc, type, &pgr);
1550                         first = 0;
1551                 }
1552                 if (!skb)
1553                         return NULL;
1554                 psrc = (struct in6_addr *)skb_put(skb, sizeof(*psrc));
1555                 *psrc = psf->sf_addr;
1556                 scount++; stotal++;
1557                 if ((type == MLD2_ALLOW_NEW_SOURCES ||
1558                      type == MLD2_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
1559                         psf->sf_crcount--;
1560                         if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
1561                                 if (psf_prev)
1562                                         psf_prev->sf_next = psf->sf_next;
1563                                 else
1564                                         *psf_list = psf->sf_next;
1565                                 kfree(psf);
1566                                 continue;
1567                         }
1568                 }
1569                 psf_prev = psf;
1570         }
1571
1572 empty_source:
1573         if (!stotal) {
1574                 if (type == MLD2_ALLOW_NEW_SOURCES ||
1575                     type == MLD2_BLOCK_OLD_SOURCES)
1576                         return skb;
1577                 if (pmc->mca_crcount || isquery) {
1578                         /* make sure we have room for group header */
1579                         if (skb && AVAILABLE(skb) < sizeof(struct mld2_grec)) {
1580                                 mld_sendpack(skb);
1581                                 skb = NULL; /* add_grhead will get a new one */
1582                         }
1583                         skb = add_grhead(skb, pmc, type, &pgr);
1584                 }
1585         }
1586         if (pgr)
1587                 pgr->grec_nsrcs = htons(scount);
1588
1589         if (isquery)
1590                 pmc->mca_flags &= ~MAF_GSQUERY; /* clear query state */
1591         return skb;
1592 }
1593
1594 static void mld_send_report(struct inet6_dev *idev, struct ifmcaddr6 *pmc)
1595 {
1596         struct sk_buff *skb = NULL;
1597         int type;
1598
1599         read_lock_bh(&idev->lock);
1600         if (!pmc) {
1601                 for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1602                         if (pmc->mca_flags & MAF_NOREPORT)
1603                                 continue;
1604                         spin_lock_bh(&pmc->mca_lock);
1605                         if (pmc->mca_sfcount[MCAST_EXCLUDE])
1606                                 type = MLD2_MODE_IS_EXCLUDE;
1607                         else
1608                                 type = MLD2_MODE_IS_INCLUDE;
1609                         skb = add_grec(skb, pmc, type, 0, 0);
1610                         spin_unlock_bh(&pmc->mca_lock);
1611                 }
1612         } else {
1613                 spin_lock_bh(&pmc->mca_lock);
1614                 if (pmc->mca_sfcount[MCAST_EXCLUDE])
1615                         type = MLD2_MODE_IS_EXCLUDE;
1616                 else
1617                         type = MLD2_MODE_IS_INCLUDE;
1618                 skb = add_grec(skb, pmc, type, 0, 0);
1619                 spin_unlock_bh(&pmc->mca_lock);
1620         }
1621         read_unlock_bh(&idev->lock);
1622         if (skb)
1623                 mld_sendpack(skb);
1624 }
1625
1626 /*
1627  * remove zero-count source records from a source filter list
1628  */
1629 static void mld_clear_zeros(struct ip6_sf_list **ppsf)
1630 {
1631         struct ip6_sf_list *psf_prev, *psf_next, *psf;
1632
1633         psf_prev = NULL;
1634         for (psf=*ppsf; psf; psf = psf_next) {
1635                 psf_next = psf->sf_next;
1636                 if (psf->sf_crcount == 0) {
1637                         if (psf_prev)
1638                                 psf_prev->sf_next = psf->sf_next;
1639                         else
1640                                 *ppsf = psf->sf_next;
1641                         kfree(psf);
1642                 } else
1643                         psf_prev = psf;
1644         }
1645 }
1646
1647 static void mld_send_cr(struct inet6_dev *idev)
1648 {
1649         struct ifmcaddr6 *pmc, *pmc_prev, *pmc_next;
1650         struct sk_buff *skb = NULL;
1651         int type, dtype;
1652
1653         read_lock_bh(&idev->lock);
1654         spin_lock(&idev->mc_lock);
1655
1656         /* deleted MCA's */
1657         pmc_prev = NULL;
1658         for (pmc=idev->mc_tomb; pmc; pmc=pmc_next) {
1659                 pmc_next = pmc->next;
1660                 if (pmc->mca_sfmode == MCAST_INCLUDE) {
1661                         type = MLD2_BLOCK_OLD_SOURCES;
1662                         dtype = MLD2_BLOCK_OLD_SOURCES;
1663                         skb = add_grec(skb, pmc, type, 1, 0);
1664                         skb = add_grec(skb, pmc, dtype, 1, 1);
1665                 }
1666                 if (pmc->mca_crcount) {
1667                         if (pmc->mca_sfmode == MCAST_EXCLUDE) {
1668                                 type = MLD2_CHANGE_TO_INCLUDE;
1669                                 skb = add_grec(skb, pmc, type, 1, 0);
1670                         }
1671                         pmc->mca_crcount--;
1672                         if (pmc->mca_crcount == 0) {
1673                                 mld_clear_zeros(&pmc->mca_tomb);
1674                                 mld_clear_zeros(&pmc->mca_sources);
1675                         }
1676                 }
1677                 if (pmc->mca_crcount == 0 && !pmc->mca_tomb &&
1678                     !pmc->mca_sources) {
1679                         if (pmc_prev)
1680                                 pmc_prev->next = pmc_next;
1681                         else
1682                                 idev->mc_tomb = pmc_next;
1683                         in6_dev_put(pmc->idev);
1684                         kfree(pmc);
1685                 } else
1686                         pmc_prev = pmc;
1687         }
1688         spin_unlock(&idev->mc_lock);
1689
1690         /* change recs */
1691         for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1692                 spin_lock_bh(&pmc->mca_lock);
1693                 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1694                         type = MLD2_BLOCK_OLD_SOURCES;
1695                         dtype = MLD2_ALLOW_NEW_SOURCES;
1696                 } else {
1697                         type = MLD2_ALLOW_NEW_SOURCES;
1698                         dtype = MLD2_BLOCK_OLD_SOURCES;
1699                 }
1700                 skb = add_grec(skb, pmc, type, 0, 0);
1701                 skb = add_grec(skb, pmc, dtype, 0, 1);  /* deleted sources */
1702
1703                 /* filter mode changes */
1704                 if (pmc->mca_crcount) {
1705                         if (pmc->mca_sfmode == MCAST_EXCLUDE)
1706                                 type = MLD2_CHANGE_TO_EXCLUDE;
1707                         else
1708                                 type = MLD2_CHANGE_TO_INCLUDE;
1709                         skb = add_grec(skb, pmc, type, 0, 0);
1710                         pmc->mca_crcount--;
1711                 }
1712                 spin_unlock_bh(&pmc->mca_lock);
1713         }
1714         read_unlock_bh(&idev->lock);
1715         if (!skb)
1716                 return;
1717         (void) mld_sendpack(skb);
1718 }
1719
1720 static void igmp6_send(struct in6_addr *addr, struct net_device *dev, int type)
1721 {
1722         struct net *net = dev_net(dev);
1723         struct sock *sk = net->ipv6.igmp_sk;
1724         struct inet6_dev *idev;
1725         struct sk_buff *skb;
1726         struct mld_msg *hdr;
1727         const struct in6_addr *snd_addr, *saddr;
1728         struct in6_addr addr_buf;
1729         int hlen = LL_RESERVED_SPACE(dev);
1730         int tlen = dev->needed_tailroom;
1731         int err, len, payload_len, full_len;
1732         u8 ra[8] = { IPPROTO_ICMPV6, 0,
1733                      IPV6_TLV_ROUTERALERT, 2, 0, 0,
1734                      IPV6_TLV_PADN, 0 };
1735         struct flowi6 fl6;
1736         struct dst_entry *dst;
1737
1738         if (type == ICMPV6_MGM_REDUCTION)
1739                 snd_addr = &in6addr_linklocal_allrouters;
1740         else
1741                 snd_addr = addr;
1742
1743         len = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
1744         payload_len = len + sizeof(ra);
1745         full_len = sizeof(struct ipv6hdr) + payload_len;
1746
1747         rcu_read_lock();
1748         IP6_UPD_PO_STATS(net, __in6_dev_get(dev),
1749                       IPSTATS_MIB_OUT, full_len);
1750         rcu_read_unlock();
1751
1752         skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err);
1753
1754         if (skb == NULL) {
1755                 rcu_read_lock();
1756                 IP6_INC_STATS(net, __in6_dev_get(dev),
1757                               IPSTATS_MIB_OUTDISCARDS);
1758                 rcu_read_unlock();
1759                 return;
1760         }
1761
1762         skb_reserve(skb, hlen);
1763
1764         if (ipv6_get_lladdr(dev, &addr_buf, IFA_F_TENTATIVE)) {
1765                 /* <draft-ietf-magma-mld-source-05.txt>:
1766                  * use unspecified address as the source address
1767                  * when a valid link-local address is not available.
1768                  */
1769                 saddr = &in6addr_any;
1770         } else
1771                 saddr = &addr_buf;
1772
1773         ip6_nd_hdr(sk, skb, dev, saddr, snd_addr, NEXTHDR_HOP, payload_len);
1774
1775         memcpy(skb_put(skb, sizeof(ra)), ra, sizeof(ra));
1776
1777         hdr = (struct mld_msg *) skb_put(skb, sizeof(struct mld_msg));
1778         memset(hdr, 0, sizeof(struct mld_msg));
1779         hdr->mld_type = type;
1780         ipv6_addr_copy(&hdr->mld_mca, addr);
1781
1782         hdr->mld_cksum = csum_ipv6_magic(saddr, snd_addr, len,
1783                                          IPPROTO_ICMPV6,
1784                                          csum_partial(hdr, len, 0));
1785
1786         rcu_read_lock();
1787         idev = __in6_dev_get(skb->dev);
1788
1789         dst = icmp6_dst_alloc(skb->dev, NULL, &ipv6_hdr(skb)->daddr);
1790         if (!dst) {
1791                 err = -ENOMEM;
1792                 goto err_out;
1793         }
1794
1795         icmpv6_flow_init(sk, &fl6, type,
1796                          &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
1797                          skb->dev->ifindex);
1798
1799         dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
1800         if (IS_ERR(dst)) {
1801                 err = PTR_ERR(dst);
1802                 goto err_out;
1803         }
1804
1805         skb_dst_set(skb, dst);
1806         err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev,
1807                       dst_output);
1808 out:
1809         if (!err) {
1810                 ICMP6MSGOUT_INC_STATS(net, idev, type);
1811                 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
1812         } else
1813                 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
1814
1815         rcu_read_unlock();
1816         return;
1817
1818 err_out:
1819         kfree_skb(skb);
1820         goto out;
1821 }
1822
1823 static int ip6_mc_del1_src(struct ifmcaddr6 *pmc, int sfmode,
1824         const struct in6_addr *psfsrc)
1825 {
1826         struct ip6_sf_list *psf, *psf_prev;
1827         int rv = 0;
1828
1829         psf_prev = NULL;
1830         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1831                 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1832                         break;
1833                 psf_prev = psf;
1834         }
1835         if (!psf || psf->sf_count[sfmode] == 0) {
1836                 /* source filter not found, or count wrong =>  bug */
1837                 return -ESRCH;
1838         }
1839         psf->sf_count[sfmode]--;
1840         if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1841                 struct inet6_dev *idev = pmc->idev;
1842
1843                 /* no more filters for this source */
1844                 if (psf_prev)
1845                         psf_prev->sf_next = psf->sf_next;
1846                 else
1847                         pmc->mca_sources = psf->sf_next;
1848                 if (psf->sf_oldin && !(pmc->mca_flags & MAF_NOREPORT) &&
1849                     !MLD_V1_SEEN(idev)) {
1850                         psf->sf_crcount = idev->mc_qrv;
1851                         psf->sf_next = pmc->mca_tomb;
1852                         pmc->mca_tomb = psf;
1853                         rv = 1;
1854                 } else
1855                         kfree(psf);
1856         }
1857         return rv;
1858 }
1859
1860 static int ip6_mc_del_src(struct inet6_dev *idev, const struct in6_addr *pmca,
1861                           int sfmode, int sfcount, const struct in6_addr *psfsrc,
1862                           int delta)
1863 {
1864         struct ifmcaddr6 *pmc;
1865         int     changerec = 0;
1866         int     i, err;
1867
1868         if (!idev)
1869                 return -ENODEV;
1870         read_lock_bh(&idev->lock);
1871         for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
1872                 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
1873                         break;
1874         }
1875         if (!pmc) {
1876                 /* MCA not found?? bug */
1877                 read_unlock_bh(&idev->lock);
1878                 return -ESRCH;
1879         }
1880         spin_lock_bh(&pmc->mca_lock);
1881         sf_markstate(pmc);
1882         if (!delta) {
1883                 if (!pmc->mca_sfcount[sfmode]) {
1884                         spin_unlock_bh(&pmc->mca_lock);
1885                         read_unlock_bh(&idev->lock);
1886                         return -EINVAL;
1887                 }
1888                 pmc->mca_sfcount[sfmode]--;
1889         }
1890         err = 0;
1891         for (i=0; i<sfcount; i++) {
1892                 int rv = ip6_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1893
1894                 changerec |= rv > 0;
1895                 if (!err && rv < 0)
1896                         err = rv;
1897         }
1898         if (pmc->mca_sfmode == MCAST_EXCLUDE &&
1899             pmc->mca_sfcount[MCAST_EXCLUDE] == 0 &&
1900             pmc->mca_sfcount[MCAST_INCLUDE]) {
1901                 struct ip6_sf_list *psf;
1902
1903                 /* filter mode change */
1904                 pmc->mca_sfmode = MCAST_INCLUDE;
1905                 pmc->mca_crcount = idev->mc_qrv;
1906                 idev->mc_ifc_count = pmc->mca_crcount;
1907                 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
1908                         psf->sf_crcount = 0;
1909                 mld_ifc_event(pmc->idev);
1910         } else if (sf_setstate(pmc) || changerec)
1911                 mld_ifc_event(pmc->idev);
1912         spin_unlock_bh(&pmc->mca_lock);
1913         read_unlock_bh(&idev->lock);
1914         return err;
1915 }
1916
1917 /*
1918  * Add multicast single-source filter to the interface list
1919  */
1920 static int ip6_mc_add1_src(struct ifmcaddr6 *pmc, int sfmode,
1921         const struct in6_addr *psfsrc, int delta)
1922 {
1923         struct ip6_sf_list *psf, *psf_prev;
1924
1925         psf_prev = NULL;
1926         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1927                 if (ipv6_addr_equal(&psf->sf_addr, psfsrc))
1928                         break;
1929                 psf_prev = psf;
1930         }
1931         if (!psf) {
1932                 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1933                 if (!psf)
1934                         return -ENOBUFS;
1935
1936                 psf->sf_addr = *psfsrc;
1937                 if (psf_prev) {
1938                         psf_prev->sf_next = psf;
1939                 } else
1940                         pmc->mca_sources = psf;
1941         }
1942         psf->sf_count[sfmode]++;
1943         return 0;
1944 }
1945
1946 static void sf_markstate(struct ifmcaddr6 *pmc)
1947 {
1948         struct ip6_sf_list *psf;
1949         int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1950
1951         for (psf=pmc->mca_sources; psf; psf=psf->sf_next)
1952                 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1953                         psf->sf_oldin = mca_xcount ==
1954                                 psf->sf_count[MCAST_EXCLUDE] &&
1955                                 !psf->sf_count[MCAST_INCLUDE];
1956                 } else
1957                         psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1958 }
1959
1960 static int sf_setstate(struct ifmcaddr6 *pmc)
1961 {
1962         struct ip6_sf_list *psf, *dpsf;
1963         int mca_xcount = pmc->mca_sfcount[MCAST_EXCLUDE];
1964         int qrv = pmc->idev->mc_qrv;
1965         int new_in, rv;
1966
1967         rv = 0;
1968         for (psf=pmc->mca_sources; psf; psf=psf->sf_next) {
1969                 if (pmc->mca_sfcount[MCAST_EXCLUDE]) {
1970                         new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1971                                 !psf->sf_count[MCAST_INCLUDE];
1972                 } else
1973                         new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1974                 if (new_in) {
1975                         if (!psf->sf_oldin) {
1976                                 struct ip6_sf_list *prev = NULL;
1977
1978                                 for (dpsf=pmc->mca_tomb; dpsf;
1979                                      dpsf=dpsf->sf_next) {
1980                                         if (ipv6_addr_equal(&dpsf->sf_addr,
1981                                             &psf->sf_addr))
1982                                                 break;
1983                                         prev = dpsf;
1984                                 }
1985                                 if (dpsf) {
1986                                         if (prev)
1987                                                 prev->sf_next = dpsf->sf_next;
1988                                         else
1989                                                 pmc->mca_tomb = dpsf->sf_next;
1990                                         kfree(dpsf);
1991                                 }
1992                                 psf->sf_crcount = qrv;
1993                                 rv++;
1994                         }
1995                 } else if (psf->sf_oldin) {
1996                         psf->sf_crcount = 0;
1997                         /*
1998                          * add or update "delete" records if an active filter
1999                          * is now inactive
2000                          */
2001                         for (dpsf=pmc->mca_tomb; dpsf; dpsf=dpsf->sf_next)
2002                                 if (ipv6_addr_equal(&dpsf->sf_addr,
2003                                     &psf->sf_addr))
2004                                         break;
2005                         if (!dpsf) {
2006                                 dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
2007                                 if (!dpsf)
2008                                         continue;
2009                                 *dpsf = *psf;
2010                                 /* pmc->mca_lock held by callers */
2011                                 dpsf->sf_next = pmc->mca_tomb;
2012                                 pmc->mca_tomb = dpsf;
2013                         }
2014                         dpsf->sf_crcount = qrv;
2015                         rv++;
2016                 }
2017         }
2018         return rv;
2019 }
2020
2021 /*
2022  * Add multicast source filter list to the interface list
2023  */
2024 static int ip6_mc_add_src(struct inet6_dev *idev, const struct in6_addr *pmca,
2025                           int sfmode, int sfcount, const struct in6_addr *psfsrc,
2026                           int delta)
2027 {
2028         struct ifmcaddr6 *pmc;
2029         int     isexclude;
2030         int     i, err;
2031
2032         if (!idev)
2033                 return -ENODEV;
2034         read_lock_bh(&idev->lock);
2035         for (pmc=idev->mc_list; pmc; pmc=pmc->next) {
2036                 if (ipv6_addr_equal(pmca, &pmc->mca_addr))
2037                         break;
2038         }
2039         if (!pmc) {
2040                 /* MCA not found?? bug */
2041                 read_unlock_bh(&idev->lock);
2042                 return -ESRCH;
2043         }
2044         spin_lock_bh(&pmc->mca_lock);
2045
2046         sf_markstate(pmc);
2047         isexclude = pmc->mca_sfmode == MCAST_EXCLUDE;
2048         if (!delta)
2049                 pmc->mca_sfcount[sfmode]++;
2050         err = 0;
2051         for (i=0; i<sfcount; i++) {
2052                 err = ip6_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
2053                 if (err)
2054                         break;
2055         }
2056         if (err) {
2057                 int j;
2058
2059                 if (!delta)
2060                         pmc->mca_sfcount[sfmode]--;
2061                 for (j=0; j<i; j++)
2062                         ip6_mc_del1_src(pmc, sfmode, &psfsrc[j]);
2063         } else if (isexclude != (pmc->mca_sfcount[MCAST_EXCLUDE] != 0)) {
2064                 struct ip6_sf_list *psf;
2065
2066                 /* filter mode change */
2067                 if (pmc->mca_sfcount[MCAST_EXCLUDE])
2068                         pmc->mca_sfmode = MCAST_EXCLUDE;
2069                 else if (pmc->mca_sfcount[MCAST_INCLUDE])
2070                         pmc->mca_sfmode = MCAST_INCLUDE;
2071                 /* else no filters; keep old mode for reports */
2072
2073                 pmc->mca_crcount = idev->mc_qrv;
2074                 idev->mc_ifc_count = pmc->mca_crcount;
2075                 for (psf=pmc->mca_sources; psf; psf = psf->sf_next)
2076                         psf->sf_crcount = 0;
2077                 mld_ifc_event(idev);
2078         } else if (sf_setstate(pmc))
2079                 mld_ifc_event(idev);
2080         spin_unlock_bh(&pmc->mca_lock);
2081         read_unlock_bh(&idev->lock);
2082         return err;
2083 }
2084
2085 static void ip6_mc_clear_src(struct ifmcaddr6 *pmc)
2086 {
2087         struct ip6_sf_list *psf, *nextpsf;
2088
2089         for (psf=pmc->mca_tomb; psf; psf=nextpsf) {
2090                 nextpsf = psf->sf_next;
2091                 kfree(psf);
2092         }
2093         pmc->mca_tomb = NULL;
2094         for (psf=pmc->mca_sources; psf; psf=nextpsf) {
2095                 nextpsf = psf->sf_next;
2096                 kfree(psf);
2097         }
2098         pmc->mca_sources = NULL;
2099         pmc->mca_sfmode = MCAST_EXCLUDE;
2100         pmc->mca_sfcount[MCAST_INCLUDE] = 0;
2101         pmc->mca_sfcount[MCAST_EXCLUDE] = 1;
2102 }
2103
2104
2105 static void igmp6_join_group(struct ifmcaddr6 *ma)
2106 {
2107         unsigned long delay;
2108
2109         if (ma->mca_flags & MAF_NOREPORT)
2110                 return;
2111
2112         igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2113
2114         delay = net_random() % IGMP6_UNSOLICITED_IVAL;
2115
2116         spin_lock_bh(&ma->mca_lock);
2117         if (del_timer(&ma->mca_timer)) {
2118                 atomic_dec(&ma->mca_refcnt);
2119                 delay = ma->mca_timer.expires - jiffies;
2120         }
2121
2122         if (!mod_timer(&ma->mca_timer, jiffies + delay))
2123                 atomic_inc(&ma->mca_refcnt);
2124         ma->mca_flags |= MAF_TIMER_RUNNING | MAF_LAST_REPORTER;
2125         spin_unlock_bh(&ma->mca_lock);
2126 }
2127
2128 static int ip6_mc_leave_src(struct sock *sk, struct ipv6_mc_socklist *iml,
2129                             struct inet6_dev *idev)
2130 {
2131         int err;
2132
2133         /* callers have the socket lock and a write lock on ipv6_sk_mc_lock,
2134          * so no other readers or writers of iml or its sflist
2135          */
2136         if (!iml->sflist) {
2137                 /* any-source empty exclude case */
2138                 return ip6_mc_del_src(idev, &iml->addr, iml->sfmode, 0, NULL, 0);
2139         }
2140         err = ip6_mc_del_src(idev, &iml->addr, iml->sfmode,
2141                 iml->sflist->sl_count, iml->sflist->sl_addr, 0);
2142         sock_kfree_s(sk, iml->sflist, IP6_SFLSIZE(iml->sflist->sl_max));
2143         iml->sflist = NULL;
2144         return err;
2145 }
2146
2147 static void igmp6_leave_group(struct ifmcaddr6 *ma)
2148 {
2149         if (MLD_V1_SEEN(ma->idev)) {
2150                 if (ma->mca_flags & MAF_LAST_REPORTER)
2151                         igmp6_send(&ma->mca_addr, ma->idev->dev,
2152                                 ICMPV6_MGM_REDUCTION);
2153         } else {
2154                 mld_add_delrec(ma->idev, ma);
2155                 mld_ifc_event(ma->idev);
2156         }
2157 }
2158
2159 static void mld_gq_timer_expire(unsigned long data)
2160 {
2161         struct inet6_dev *idev = (struct inet6_dev *)data;
2162
2163         idev->mc_gq_running = 0;
2164         mld_send_report(idev, NULL);
2165         in6_dev_put(idev);
2166 }
2167
2168 static void mld_ifc_timer_expire(unsigned long data)
2169 {
2170         struct inet6_dev *idev = (struct inet6_dev *)data;
2171
2172         mld_send_cr(idev);
2173         if (idev->mc_ifc_count) {
2174                 idev->mc_ifc_count--;
2175                 if (idev->mc_ifc_count)
2176                         mld_ifc_start_timer(idev, idev->mc_maxdelay);
2177         }
2178         in6_dev_put(idev);
2179 }
2180
2181 static void mld_ifc_event(struct inet6_dev *idev)
2182 {
2183         if (MLD_V1_SEEN(idev))
2184                 return;
2185         idev->mc_ifc_count = idev->mc_qrv;
2186         mld_ifc_start_timer(idev, 1);
2187 }
2188
2189
2190 static void igmp6_timer_handler(unsigned long data)
2191 {
2192         struct ifmcaddr6 *ma = (struct ifmcaddr6 *) data;
2193
2194         if (MLD_V1_SEEN(ma->idev))
2195                 igmp6_send(&ma->mca_addr, ma->idev->dev, ICMPV6_MGM_REPORT);
2196         else
2197                 mld_send_report(ma->idev, ma);
2198
2199         spin_lock(&ma->mca_lock);
2200         ma->mca_flags |=  MAF_LAST_REPORTER;
2201         ma->mca_flags &= ~MAF_TIMER_RUNNING;
2202         spin_unlock(&ma->mca_lock);
2203         ma_put(ma);
2204 }
2205
2206 /* Device changing type */
2207
2208 void ipv6_mc_unmap(struct inet6_dev *idev)
2209 {
2210         struct ifmcaddr6 *i;
2211
2212         /* Install multicast list, except for all-nodes (already installed) */
2213
2214         read_lock_bh(&idev->lock);
2215         for (i = idev->mc_list; i; i = i->next)
2216                 igmp6_group_dropped(i);
2217         read_unlock_bh(&idev->lock);
2218 }
2219
2220 void ipv6_mc_remap(struct inet6_dev *idev)
2221 {
2222         ipv6_mc_up(idev);
2223 }
2224
2225 /* Device going down */
2226
2227 void ipv6_mc_down(struct inet6_dev *idev)
2228 {
2229         struct ifmcaddr6 *i;
2230
2231         /* Withdraw multicast list */
2232
2233         read_lock_bh(&idev->lock);
2234         idev->mc_ifc_count = 0;
2235         if (del_timer(&idev->mc_ifc_timer))
2236                 __in6_dev_put(idev);
2237         idev->mc_gq_running = 0;
2238         if (del_timer(&idev->mc_gq_timer))
2239                 __in6_dev_put(idev);
2240
2241         for (i = idev->mc_list; i; i=i->next)
2242                 igmp6_group_dropped(i);
2243         read_unlock_bh(&idev->lock);
2244
2245         mld_clear_delrec(idev);
2246 }
2247
2248
2249 /* Device going up */
2250
2251 void ipv6_mc_up(struct inet6_dev *idev)
2252 {
2253         struct ifmcaddr6 *i;
2254
2255         /* Install multicast list, except for all-nodes (already installed) */
2256
2257         read_lock_bh(&idev->lock);
2258         for (i = idev->mc_list; i; i=i->next)
2259                 igmp6_group_added(i);
2260         read_unlock_bh(&idev->lock);
2261 }
2262
2263 /* IPv6 device initialization. */
2264
2265 void ipv6_mc_init_dev(struct inet6_dev *idev)
2266 {
2267         write_lock_bh(&idev->lock);
2268         spin_lock_init(&idev->mc_lock);
2269         idev->mc_gq_running = 0;
2270         setup_timer(&idev->mc_gq_timer, mld_gq_timer_expire,
2271                         (unsigned long)idev);
2272         idev->mc_tomb = NULL;
2273         idev->mc_ifc_count = 0;
2274         setup_timer(&idev->mc_ifc_timer, mld_ifc_timer_expire,
2275                         (unsigned long)idev);
2276         idev->mc_qrv = MLD_QRV_DEFAULT;
2277         idev->mc_maxdelay = IGMP6_UNSOLICITED_IVAL;
2278         idev->mc_v1_seen = 0;
2279         write_unlock_bh(&idev->lock);
2280 }
2281
2282 /*
2283  *      Device is about to be destroyed: clean up.
2284  */
2285
2286 void ipv6_mc_destroy_dev(struct inet6_dev *idev)
2287 {
2288         struct ifmcaddr6 *i;
2289
2290         /* Deactivate timers */
2291         ipv6_mc_down(idev);
2292
2293         /* Delete all-nodes address. */
2294         /* We cannot call ipv6_dev_mc_dec() directly, our caller in
2295          * addrconf.c has NULL'd out dev->ip6_ptr so in6_dev_get() will
2296          * fail.
2297          */
2298         __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allnodes);
2299
2300         if (idev->cnf.forwarding)
2301                 __ipv6_dev_mc_dec(idev, &in6addr_linklocal_allrouters);
2302
2303         write_lock_bh(&idev->lock);
2304         while ((i = idev->mc_list) != NULL) {
2305                 idev->mc_list = i->next;
2306                 write_unlock_bh(&idev->lock);
2307
2308                 igmp6_group_dropped(i);
2309                 ma_put(i);
2310
2311                 write_lock_bh(&idev->lock);
2312         }
2313         write_unlock_bh(&idev->lock);
2314 }
2315
2316 #ifdef CONFIG_PROC_FS
2317 struct igmp6_mc_iter_state {
2318         struct seq_net_private p;
2319         struct net_device *dev;
2320         struct inet6_dev *idev;
2321 };
2322
2323 #define igmp6_mc_seq_private(seq)       ((struct igmp6_mc_iter_state *)(seq)->private)
2324
2325 static inline struct ifmcaddr6 *igmp6_mc_get_first(struct seq_file *seq)
2326 {
2327         struct ifmcaddr6 *im = NULL;
2328         struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2329         struct net *net = seq_file_net(seq);
2330
2331         state->idev = NULL;
2332         for_each_netdev_rcu(net, state->dev) {
2333                 struct inet6_dev *idev;
2334                 idev = __in6_dev_get(state->dev);
2335                 if (!idev)
2336                         continue;
2337                 read_lock_bh(&idev->lock);
2338                 im = idev->mc_list;
2339                 if (im) {
2340                         state->idev = idev;
2341                         break;
2342                 }
2343                 read_unlock_bh(&idev->lock);
2344         }
2345         return im;
2346 }
2347
2348 static struct ifmcaddr6 *igmp6_mc_get_next(struct seq_file *seq, struct ifmcaddr6 *im)
2349 {
2350         struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2351
2352         im = im->next;
2353         while (!im) {
2354                 if (likely(state->idev != NULL))
2355                         read_unlock_bh(&state->idev->lock);
2356
2357                 state->dev = next_net_device_rcu(state->dev);
2358                 if (!state->dev) {
2359                         state->idev = NULL;
2360                         break;
2361                 }
2362                 state->idev = __in6_dev_get(state->dev);
2363                 if (!state->idev)
2364                         continue;
2365                 read_lock_bh(&state->idev->lock);
2366                 im = state->idev->mc_list;
2367         }
2368         return im;
2369 }
2370
2371 static struct ifmcaddr6 *igmp6_mc_get_idx(struct seq_file *seq, loff_t pos)
2372 {
2373         struct ifmcaddr6 *im = igmp6_mc_get_first(seq);
2374         if (im)
2375                 while (pos && (im = igmp6_mc_get_next(seq, im)) != NULL)
2376                         --pos;
2377         return pos ? NULL : im;
2378 }
2379
2380 static void *igmp6_mc_seq_start(struct seq_file *seq, loff_t *pos)
2381         __acquires(RCU)
2382 {
2383         rcu_read_lock();
2384         return igmp6_mc_get_idx(seq, *pos);
2385 }
2386
2387 static void *igmp6_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2388 {
2389         struct ifmcaddr6 *im = igmp6_mc_get_next(seq, v);
2390
2391         ++*pos;
2392         return im;
2393 }
2394
2395 static void igmp6_mc_seq_stop(struct seq_file *seq, void *v)
2396         __releases(RCU)
2397 {
2398         struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2399
2400         if (likely(state->idev != NULL)) {
2401                 read_unlock_bh(&state->idev->lock);
2402                 state->idev = NULL;
2403         }
2404         state->dev = NULL;
2405         rcu_read_unlock();
2406 }
2407
2408 static int igmp6_mc_seq_show(struct seq_file *seq, void *v)
2409 {
2410         struct ifmcaddr6 *im = (struct ifmcaddr6 *)v;
2411         struct igmp6_mc_iter_state *state = igmp6_mc_seq_private(seq);
2412
2413         seq_printf(seq,
2414                    "%-4d %-15s %pi6 %5d %08X %ld\n",
2415                    state->dev->ifindex, state->dev->name,
2416                    &im->mca_addr,
2417                    im->mca_users, im->mca_flags,
2418                    (im->mca_flags&MAF_TIMER_RUNNING) ?
2419                    jiffies_to_clock_t(im->mca_timer.expires-jiffies) : 0);
2420         return 0;
2421 }
2422
2423 static const struct seq_operations igmp6_mc_seq_ops = {
2424         .start  =       igmp6_mc_seq_start,
2425         .next   =       igmp6_mc_seq_next,
2426         .stop   =       igmp6_mc_seq_stop,
2427         .show   =       igmp6_mc_seq_show,
2428 };
2429
2430 static int igmp6_mc_seq_open(struct inode *inode, struct file *file)
2431 {
2432         return seq_open_net(inode, file, &igmp6_mc_seq_ops,
2433                             sizeof(struct igmp6_mc_iter_state));
2434 }
2435
2436 static const struct file_operations igmp6_mc_seq_fops = {
2437         .owner          =       THIS_MODULE,
2438         .open           =       igmp6_mc_seq_open,
2439         .read           =       seq_read,
2440         .llseek         =       seq_lseek,
2441         .release        =       seq_release_net,
2442 };
2443
2444 struct igmp6_mcf_iter_state {
2445         struct seq_net_private p;
2446         struct net_device *dev;
2447         struct inet6_dev *idev;
2448         struct ifmcaddr6 *im;
2449 };
2450
2451 #define igmp6_mcf_seq_private(seq)      ((struct igmp6_mcf_iter_state *)(seq)->private)
2452
2453 static inline struct ip6_sf_list *igmp6_mcf_get_first(struct seq_file *seq)
2454 {
2455         struct ip6_sf_list *psf = NULL;
2456         struct ifmcaddr6 *im = NULL;
2457         struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2458         struct net *net = seq_file_net(seq);
2459
2460         state->idev = NULL;
2461         state->im = NULL;
2462         for_each_netdev_rcu(net, state->dev) {
2463                 struct inet6_dev *idev;
2464                 idev = __in6_dev_get(state->dev);
2465                 if (unlikely(idev == NULL))
2466                         continue;
2467                 read_lock_bh(&idev->lock);
2468                 im = idev->mc_list;
2469                 if (likely(im != NULL)) {
2470                         spin_lock_bh(&im->mca_lock);
2471                         psf = im->mca_sources;
2472                         if (likely(psf != NULL)) {
2473                                 state->im = im;
2474                                 state->idev = idev;
2475                                 break;
2476                         }
2477                         spin_unlock_bh(&im->mca_lock);
2478                 }
2479                 read_unlock_bh(&idev->lock);
2480         }
2481         return psf;
2482 }
2483
2484 static struct ip6_sf_list *igmp6_mcf_get_next(struct seq_file *seq, struct ip6_sf_list *psf)
2485 {
2486         struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2487
2488         psf = psf->sf_next;
2489         while (!psf) {
2490                 spin_unlock_bh(&state->im->mca_lock);
2491                 state->im = state->im->next;
2492                 while (!state->im) {
2493                         if (likely(state->idev != NULL))
2494                                 read_unlock_bh(&state->idev->lock);
2495
2496                         state->dev = next_net_device_rcu(state->dev);
2497                         if (!state->dev) {
2498                                 state->idev = NULL;
2499                                 goto out;
2500                         }
2501                         state->idev = __in6_dev_get(state->dev);
2502                         if (!state->idev)
2503                                 continue;
2504                         read_lock_bh(&state->idev->lock);
2505                         state->im = state->idev->mc_list;
2506                 }
2507                 if (!state->im)
2508                         break;
2509                 spin_lock_bh(&state->im->mca_lock);
2510                 psf = state->im->mca_sources;
2511         }
2512 out:
2513         return psf;
2514 }
2515
2516 static struct ip6_sf_list *igmp6_mcf_get_idx(struct seq_file *seq, loff_t pos)
2517 {
2518         struct ip6_sf_list *psf = igmp6_mcf_get_first(seq);
2519         if (psf)
2520                 while (pos && (psf = igmp6_mcf_get_next(seq, psf)) != NULL)
2521                         --pos;
2522         return pos ? NULL : psf;
2523 }
2524
2525 static void *igmp6_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2526         __acquires(RCU)
2527 {
2528         rcu_read_lock();
2529         return *pos ? igmp6_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2530 }
2531
2532 static void *igmp6_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2533 {
2534         struct ip6_sf_list *psf;
2535         if (v == SEQ_START_TOKEN)
2536                 psf = igmp6_mcf_get_first(seq);
2537         else
2538                 psf = igmp6_mcf_get_next(seq, v);
2539         ++*pos;
2540         return psf;
2541 }
2542
2543 static void igmp6_mcf_seq_stop(struct seq_file *seq, void *v)
2544         __releases(RCU)
2545 {
2546         struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2547         if (likely(state->im != NULL)) {
2548                 spin_unlock_bh(&state->im->mca_lock);
2549                 state->im = NULL;
2550         }
2551         if (likely(state->idev != NULL)) {
2552                 read_unlock_bh(&state->idev->lock);
2553                 state->idev = NULL;
2554         }
2555         state->dev = NULL;
2556         rcu_read_unlock();
2557 }
2558
2559 static int igmp6_mcf_seq_show(struct seq_file *seq, void *v)
2560 {
2561         struct ip6_sf_list *psf = (struct ip6_sf_list *)v;
2562         struct igmp6_mcf_iter_state *state = igmp6_mcf_seq_private(seq);
2563
2564         if (v == SEQ_START_TOKEN) {
2565                 seq_printf(seq,
2566                            "%3s %6s "
2567                            "%32s %32s %6s %6s\n", "Idx",
2568                            "Device", "Multicast Address",
2569                            "Source Address", "INC", "EXC");
2570         } else {
2571                 seq_printf(seq,
2572                            "%3d %6.6s %pi6 %pi6 %6lu %6lu\n",
2573                            state->dev->ifindex, state->dev->name,
2574                            &state->im->mca_addr,
2575                            &psf->sf_addr,
2576                            psf->sf_count[MCAST_INCLUDE],
2577                            psf->sf_count[MCAST_EXCLUDE]);
2578         }
2579         return 0;
2580 }
2581
2582 static const struct seq_operations igmp6_mcf_seq_ops = {
2583         .start  =       igmp6_mcf_seq_start,
2584         .next   =       igmp6_mcf_seq_next,
2585         .stop   =       igmp6_mcf_seq_stop,
2586         .show   =       igmp6_mcf_seq_show,
2587 };
2588
2589 static int igmp6_mcf_seq_open(struct inode *inode, struct file *file)
2590 {
2591         return seq_open_net(inode, file, &igmp6_mcf_seq_ops,
2592                             sizeof(struct igmp6_mcf_iter_state));
2593 }
2594
2595 static const struct file_operations igmp6_mcf_seq_fops = {
2596         .owner          =       THIS_MODULE,
2597         .open           =       igmp6_mcf_seq_open,
2598         .read           =       seq_read,
2599         .llseek         =       seq_lseek,
2600         .release        =       seq_release_net,
2601 };
2602
2603 static int __net_init igmp6_proc_init(struct net *net)
2604 {
2605         int err;
2606
2607         err = -ENOMEM;
2608         if (!proc_net_fops_create(net, "igmp6", S_IRUGO, &igmp6_mc_seq_fops))
2609                 goto out;
2610         if (!proc_net_fops_create(net, "mcfilter6", S_IRUGO,
2611                                   &igmp6_mcf_seq_fops))
2612                 goto out_proc_net_igmp6;
2613
2614         err = 0;
2615 out:
2616         return err;
2617
2618 out_proc_net_igmp6:
2619         proc_net_remove(net, "igmp6");
2620         goto out;
2621 }
2622
2623 static void __net_exit igmp6_proc_exit(struct net *net)
2624 {
2625         proc_net_remove(net, "mcfilter6");
2626         proc_net_remove(net, "igmp6");
2627 }
2628 #else
2629 static inline int igmp6_proc_init(struct net *net)
2630 {
2631         return 0;
2632 }
2633 static inline void igmp6_proc_exit(struct net *net)
2634 {
2635 }
2636 #endif
2637
2638 static int __net_init igmp6_net_init(struct net *net)
2639 {
2640         int err;
2641
2642         err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6,
2643                                    SOCK_RAW, IPPROTO_ICMPV6, net);
2644         if (err < 0) {
2645                 printk(KERN_ERR
2646                        "Failed to initialize the IGMP6 control socket (err %d).\n",
2647                        err);
2648                 goto out;
2649         }
2650
2651         inet6_sk(net->ipv6.igmp_sk)->hop_limit = 1;
2652
2653         err = igmp6_proc_init(net);
2654         if (err)
2655                 goto out_sock_create;
2656 out:
2657         return err;
2658
2659 out_sock_create:
2660         inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2661         goto out;
2662 }
2663
2664 static void __net_exit igmp6_net_exit(struct net *net)
2665 {
2666         inet_ctl_sock_destroy(net->ipv6.igmp_sk);
2667         igmp6_proc_exit(net);
2668 }
2669
2670 static struct pernet_operations igmp6_net_ops = {
2671         .init = igmp6_net_init,
2672         .exit = igmp6_net_exit,
2673 };
2674
2675 int __init igmp6_init(void)
2676 {
2677         return register_pernet_subsys(&igmp6_net_ops);
2678 }
2679
2680 void igmp6_cleanup(void)
2681 {
2682         unregister_pernet_subsys(&igmp6_net_ops);
2683 }