[NET]: Conversions from kmalloc+memset to k(z|c)alloc.
[pandora-kernel.git] / net / ipv4 / igmp.c
1 /*
2  *      Linux NET3:     Internet Group Management Protocol  [IGMP]
3  *
4  *      This code implements the IGMP protocol as defined in RFC1112. There has
5  *      been a further revision of this protocol since which is now supported.
6  *
7  *      If you have trouble with this module be careful what gcc you have used,
8  *      the older version didn't come out right using gcc 2.5.8, the newer one
9  *      seems to fall out with gcc 2.6.2.
10  *
11  *      Version: $Id: igmp.c,v 1.47 2002/02/01 22:01:03 davem Exp $
12  *
13  *      Authors:
14  *              Alan Cox <Alan.Cox@linux.org>
15  *
16  *      This program is free software; you can redistribute it and/or
17  *      modify it under the terms of the GNU General Public License
18  *      as published by the Free Software Foundation; either version
19  *      2 of the License, or (at your option) any later version.
20  *
21  *      Fixes:
22  *
23  *              Alan Cox        :       Added lots of __inline__ to optimise
24  *                                      the memory usage of all the tiny little
25  *                                      functions.
26  *              Alan Cox        :       Dumped the header building experiment.
27  *              Alan Cox        :       Minor tweaks ready for multicast routing
28  *                                      and extended IGMP protocol.
29  *              Alan Cox        :       Removed a load of inline directives. Gcc 2.5.8
30  *                                      writes utterly bogus code otherwise (sigh)
31  *                                      fixed IGMP loopback to behave in the manner
32  *                                      desired by mrouted, fixed the fact it has been
33  *                                      broken since 1.3.6 and cleaned up a few minor
34  *                                      points.
35  *
36  *              Chih-Jen Chang  :       Tried to revise IGMP to Version 2
37  *              Tsu-Sheng Tsao          E-mail: chihjenc@scf.usc.edu and tsusheng@scf.usc.edu
38  *                                      The enhancements are mainly based on Steve Deering's 
39  *                                      ipmulti-3.5 source code.
40  *              Chih-Jen Chang  :       Added the igmp_get_mrouter_info and
41  *              Tsu-Sheng Tsao          igmp_set_mrouter_info to keep track of
42  *                                      the mrouted version on that device.
43  *              Chih-Jen Chang  :       Added the max_resp_time parameter to
44  *              Tsu-Sheng Tsao          igmp_heard_query(). Using this parameter
45  *                                      to identify the multicast router version
46  *                                      and do what the IGMP version 2 specified.
47  *              Chih-Jen Chang  :       Added a timer to revert to IGMP V2 router
48  *              Tsu-Sheng Tsao          if the specified time expired.
49  *              Alan Cox        :       Stop IGMP from 0.0.0.0 being accepted.
50  *              Alan Cox        :       Use GFP_ATOMIC in the right places.
51  *              Christian Daudt :       igmp timer wasn't set for local group
52  *                                      memberships but was being deleted, 
53  *                                      which caused a "del_timer() called 
54  *                                      from %p with timer not initialized\n"
55  *                                      message (960131).
56  *              Christian Daudt :       removed del_timer from 
57  *                                      igmp_timer_expire function (960205).
58  *             Christian Daudt :       igmp_heard_report now only calls
59  *                                     igmp_timer_expire if tm->running is
60  *                                     true (960216).
61  *              Malcolm Beattie :       ttl comparison wrong in igmp_rcv made
62  *                                      igmp_heard_query never trigger. Expiry
63  *                                      miscalculation fixed in igmp_heard_query
64  *                                      and random() made to return unsigned to
65  *                                      prevent negative expiry times.
66  *              Alexey Kuznetsov:       Wrong group leaving behaviour, backport
67  *                                      fix from pending 2.1.x patches.
68  *              Alan Cox:               Forget to enable FDDI support earlier.
69  *              Alexey Kuznetsov:       Fixed leaving groups on device down.
70  *              Alexey Kuznetsov:       Accordance to igmp-v2-06 draft.
71  *              David L Stevens:        IGMPv3 support, with help from
72  *                                      Vinay Kulkarni
73  */
74
75 #include <linux/module.h>
76 #include <asm/uaccess.h>
77 #include <asm/system.h>
78 #include <linux/types.h>
79 #include <linux/kernel.h>
80 #include <linux/jiffies.h>
81 #include <linux/string.h>
82 #include <linux/socket.h>
83 #include <linux/sockios.h>
84 #include <linux/in.h>
85 #include <linux/inet.h>
86 #include <linux/netdevice.h>
87 #include <linux/skbuff.h>
88 #include <linux/inetdevice.h>
89 #include <linux/igmp.h>
90 #include <linux/if_arp.h>
91 #include <linux/rtnetlink.h>
92 #include <linux/times.h>
93
94 #include <net/arp.h>
95 #include <net/ip.h>
96 #include <net/protocol.h>
97 #include <net/route.h>
98 #include <net/sock.h>
99 #include <net/checksum.h>
100 #include <linux/netfilter_ipv4.h>
101 #ifdef CONFIG_IP_MROUTE
102 #include <linux/mroute.h>
103 #endif
104 #ifdef CONFIG_PROC_FS
105 #include <linux/proc_fs.h>
106 #include <linux/seq_file.h>
107 #endif
108
109 #define IP_MAX_MEMBERSHIPS      20
110 #define IP_MAX_MSF              10
111
112 #ifdef CONFIG_IP_MULTICAST
113 /* Parameter names and values are taken from igmp-v2-06 draft */
114
115 #define IGMP_V1_Router_Present_Timeout          (400*HZ)
116 #define IGMP_V2_Router_Present_Timeout          (400*HZ)
117 #define IGMP_Unsolicited_Report_Interval        (10*HZ)
118 #define IGMP_Query_Response_Interval            (10*HZ)
119 #define IGMP_Unsolicited_Report_Count           2
120
121
122 #define IGMP_Initial_Report_Delay               (1)
123
124 /* IGMP_Initial_Report_Delay is not from IGMP specs!
125  * IGMP specs require to report membership immediately after
126  * joining a group, but we delay the first report by a
127  * small interval. It seems more natural and still does not
128  * contradict to specs provided this delay is small enough.
129  */
130
131 #define IGMP_V1_SEEN(in_dev) (ipv4_devconf.force_igmp_version == 1 || \
132                 (in_dev)->cnf.force_igmp_version == 1 || \
133                 ((in_dev)->mr_v1_seen && \
134                 time_before(jiffies, (in_dev)->mr_v1_seen)))
135 #define IGMP_V2_SEEN(in_dev) (ipv4_devconf.force_igmp_version == 2 || \
136                 (in_dev)->cnf.force_igmp_version == 2 || \
137                 ((in_dev)->mr_v2_seen && \
138                 time_before(jiffies, (in_dev)->mr_v2_seen)))
139
140 static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im);
141 static void igmpv3_del_delrec(struct in_device *in_dev, __u32 multiaddr);
142 static void igmpv3_clear_delrec(struct in_device *in_dev);
143 static int sf_setstate(struct ip_mc_list *pmc);
144 static void sf_markstate(struct ip_mc_list *pmc);
145 #endif
146 static void ip_mc_clear_src(struct ip_mc_list *pmc);
147 static int ip_mc_add_src(struct in_device *in_dev, __u32 *pmca, int sfmode,
148                          int sfcount, __u32 *psfsrc, int delta);
149
150 static void ip_ma_put(struct ip_mc_list *im)
151 {
152         if (atomic_dec_and_test(&im->refcnt)) {
153                 in_dev_put(im->interface);
154                 kfree(im);
155         }
156 }
157
158 #ifdef CONFIG_IP_MULTICAST
159
160 /*
161  *      Timer management
162  */
163
164 static __inline__ void igmp_stop_timer(struct ip_mc_list *im)
165 {
166         spin_lock_bh(&im->lock);
167         if (del_timer(&im->timer))
168                 atomic_dec(&im->refcnt);
169         im->tm_running=0;
170         im->reporter = 0;
171         im->unsolicit_count = 0;
172         spin_unlock_bh(&im->lock);
173 }
174
175 /* It must be called with locked im->lock */
176 static void igmp_start_timer(struct ip_mc_list *im, int max_delay)
177 {
178         int tv=net_random() % max_delay;
179
180         im->tm_running=1;
181         if (!mod_timer(&im->timer, jiffies+tv+2))
182                 atomic_inc(&im->refcnt);
183 }
184
185 static void igmp_gq_start_timer(struct in_device *in_dev)
186 {
187         int tv = net_random() % in_dev->mr_maxdelay;
188
189         in_dev->mr_gq_running = 1;
190         if (!mod_timer(&in_dev->mr_gq_timer, jiffies+tv+2))
191                 in_dev_hold(in_dev);
192 }
193
194 static void igmp_ifc_start_timer(struct in_device *in_dev, int delay)
195 {
196         int tv = net_random() % delay;
197
198         if (!mod_timer(&in_dev->mr_ifc_timer, jiffies+tv+2))
199                 in_dev_hold(in_dev);
200 }
201
202 static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
203 {
204         spin_lock_bh(&im->lock);
205         im->unsolicit_count = 0;
206         if (del_timer(&im->timer)) {
207                 if ((long)(im->timer.expires-jiffies) < max_delay) {
208                         add_timer(&im->timer);
209                         im->tm_running=1;
210                         spin_unlock_bh(&im->lock);
211                         return;
212                 }
213                 atomic_dec(&im->refcnt);
214         }
215         igmp_start_timer(im, max_delay);
216         spin_unlock_bh(&im->lock);
217 }
218
219
220 /*
221  *      Send an IGMP report.
222  */
223
224 #define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
225
226
227 static int is_in(struct ip_mc_list *pmc, struct ip_sf_list *psf, int type,
228         int gdeleted, int sdeleted)
229 {
230         switch (type) {
231         case IGMPV3_MODE_IS_INCLUDE:
232         case IGMPV3_MODE_IS_EXCLUDE:
233                 if (gdeleted || sdeleted)
234                         return 0;
235                 if (!(pmc->gsquery && !psf->sf_gsresp)) {
236                         if (pmc->sfmode == MCAST_INCLUDE)
237                                 return 1;
238                         /* don't include if this source is excluded
239                          * in all filters
240                          */
241                         if (psf->sf_count[MCAST_INCLUDE])
242                                 return type == IGMPV3_MODE_IS_INCLUDE;
243                         return pmc->sfcount[MCAST_EXCLUDE] ==
244                                 psf->sf_count[MCAST_EXCLUDE];
245                 }
246                 return 0;
247         case IGMPV3_CHANGE_TO_INCLUDE:
248                 if (gdeleted || sdeleted)
249                         return 0;
250                 return psf->sf_count[MCAST_INCLUDE] != 0;
251         case IGMPV3_CHANGE_TO_EXCLUDE:
252                 if (gdeleted || sdeleted)
253                         return 0;
254                 if (pmc->sfcount[MCAST_EXCLUDE] == 0 ||
255                     psf->sf_count[MCAST_INCLUDE])
256                         return 0;
257                 return pmc->sfcount[MCAST_EXCLUDE] ==
258                         psf->sf_count[MCAST_EXCLUDE];
259         case IGMPV3_ALLOW_NEW_SOURCES:
260                 if (gdeleted || !psf->sf_crcount)
261                         return 0;
262                 return (pmc->sfmode == MCAST_INCLUDE) ^ sdeleted;
263         case IGMPV3_BLOCK_OLD_SOURCES:
264                 if (pmc->sfmode == MCAST_INCLUDE)
265                         return gdeleted || (psf->sf_crcount && sdeleted);
266                 return psf->sf_crcount && !gdeleted && !sdeleted;
267         }
268         return 0;
269 }
270
271 static int
272 igmp_scount(struct ip_mc_list *pmc, int type, int gdeleted, int sdeleted)
273 {
274         struct ip_sf_list *psf;
275         int scount = 0;
276
277         for (psf=pmc->sources; psf; psf=psf->sf_next) {
278                 if (!is_in(pmc, psf, type, gdeleted, sdeleted))
279                         continue;
280                 scount++;
281         }
282         return scount;
283 }
284
285 static struct sk_buff *igmpv3_newpack(struct net_device *dev, int size)
286 {
287         struct sk_buff *skb;
288         struct rtable *rt;
289         struct iphdr *pip;
290         struct igmpv3_report *pig;
291
292         skb = alloc_skb(size + LL_RESERVED_SPACE(dev), GFP_ATOMIC);
293         if (skb == NULL)
294                 return NULL;
295
296         {
297                 struct flowi fl = { .oif = dev->ifindex,
298                                     .nl_u = { .ip4_u = {
299                                     .daddr = IGMPV3_ALL_MCR } },
300                                     .proto = IPPROTO_IGMP };
301                 if (ip_route_output_key(&rt, &fl)) {
302                         kfree_skb(skb);
303                         return NULL;
304                 }
305         }
306         if (rt->rt_src == 0) {
307                 kfree_skb(skb);
308                 ip_rt_put(rt);
309                 return NULL;
310         }
311
312         skb->dst = &rt->u.dst;
313         skb->dev = dev;
314
315         skb_reserve(skb, LL_RESERVED_SPACE(dev));
316
317         skb->nh.iph = pip =(struct iphdr *)skb_put(skb, sizeof(struct iphdr)+4);
318
319         pip->version  = 4;
320         pip->ihl      = (sizeof(struct iphdr)+4)>>2;
321         pip->tos      = 0xc0;
322         pip->frag_off = htons(IP_DF);
323         pip->ttl      = 1;
324         pip->daddr    = rt->rt_dst;
325         pip->saddr    = rt->rt_src;
326         pip->protocol = IPPROTO_IGMP;
327         pip->tot_len  = 0;      /* filled in later */
328         ip_select_ident(pip, &rt->u.dst, NULL);
329         ((u8*)&pip[1])[0] = IPOPT_RA;
330         ((u8*)&pip[1])[1] = 4;
331         ((u8*)&pip[1])[2] = 0;
332         ((u8*)&pip[1])[3] = 0;
333
334         pig =(struct igmpv3_report *)skb_put(skb, sizeof(*pig));
335         skb->h.igmph = (struct igmphdr *)pig;
336         pig->type = IGMPV3_HOST_MEMBERSHIP_REPORT;
337         pig->resv1 = 0;
338         pig->csum = 0;
339         pig->resv2 = 0;
340         pig->ngrec = 0;
341         return skb;
342 }
343
344 static int igmpv3_sendpack(struct sk_buff *skb)
345 {
346         struct iphdr *pip = skb->nh.iph;
347         struct igmphdr *pig = skb->h.igmph;
348         int iplen, igmplen;
349
350         iplen = skb->tail - (unsigned char *)skb->nh.iph;
351         pip->tot_len = htons(iplen);
352         ip_send_check(pip);
353
354         igmplen = skb->tail - (unsigned char *)skb->h.igmph;
355         pig->csum = ip_compute_csum((void *)skb->h.igmph, igmplen);
356
357         return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, skb->dev,
358                        dst_output);
359 }
360
361 static int grec_size(struct ip_mc_list *pmc, int type, int gdel, int sdel)
362 {
363         return sizeof(struct igmpv3_grec) + 4*igmp_scount(pmc,type,gdel,sdel);
364 }
365
366 static struct sk_buff *add_grhead(struct sk_buff *skb, struct ip_mc_list *pmc,
367         int type, struct igmpv3_grec **ppgr)
368 {
369         struct net_device *dev = pmc->interface->dev;
370         struct igmpv3_report *pih;
371         struct igmpv3_grec *pgr;
372
373         if (!skb)
374                 skb = igmpv3_newpack(dev, dev->mtu);
375         if (!skb)
376                 return NULL;
377         pgr = (struct igmpv3_grec *)skb_put(skb, sizeof(struct igmpv3_grec));
378         pgr->grec_type = type;
379         pgr->grec_auxwords = 0;
380         pgr->grec_nsrcs = 0;
381         pgr->grec_mca = pmc->multiaddr;
382         pih = (struct igmpv3_report *)skb->h.igmph;
383         pih->ngrec = htons(ntohs(pih->ngrec)+1);
384         *ppgr = pgr;
385         return skb;
386 }
387
388 #define AVAILABLE(skb) ((skb) ? ((skb)->dev ? (skb)->dev->mtu - (skb)->len : \
389         skb_tailroom(skb)) : 0)
390
391 static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
392         int type, int gdeleted, int sdeleted)
393 {
394         struct net_device *dev = pmc->interface->dev;
395         struct igmpv3_report *pih;
396         struct igmpv3_grec *pgr = NULL;
397         struct ip_sf_list *psf, *psf_next, *psf_prev, **psf_list;
398         int scount, stotal, first, isquery, truncate;
399
400         if (pmc->multiaddr == IGMP_ALL_HOSTS)
401                 return skb;
402
403         isquery = type == IGMPV3_MODE_IS_INCLUDE ||
404                   type == IGMPV3_MODE_IS_EXCLUDE;
405         truncate = type == IGMPV3_MODE_IS_EXCLUDE ||
406                     type == IGMPV3_CHANGE_TO_EXCLUDE;
407
408         stotal = scount = 0;
409
410         psf_list = sdeleted ? &pmc->tomb : &pmc->sources;
411
412         if (!*psf_list)
413                 goto empty_source;
414
415         pih = skb ? (struct igmpv3_report *)skb->h.igmph : NULL;
416
417         /* EX and TO_EX get a fresh packet, if needed */
418         if (truncate) {
419                 if (pih && pih->ngrec &&
420                     AVAILABLE(skb) < grec_size(pmc, type, gdeleted, sdeleted)) {
421                         if (skb)
422                                 igmpv3_sendpack(skb);
423                         skb = igmpv3_newpack(dev, dev->mtu);
424                 }
425         }
426         first = 1;
427         psf_prev = NULL;
428         for (psf=*psf_list; psf; psf=psf_next) {
429                 u32 *psrc;
430
431                 psf_next = psf->sf_next;
432
433                 if (!is_in(pmc, psf, type, gdeleted, sdeleted)) {
434                         psf_prev = psf;
435                         continue;
436                 }
437
438                 /* clear marks on query responses */
439                 if (isquery)
440                         psf->sf_gsresp = 0;
441
442                 if (AVAILABLE(skb) < sizeof(u32) +
443                     first*sizeof(struct igmpv3_grec)) {
444                         if (truncate && !first)
445                                 break;   /* truncate these */
446                         if (pgr)
447                                 pgr->grec_nsrcs = htons(scount);
448                         if (skb)
449                                 igmpv3_sendpack(skb);
450                         skb = igmpv3_newpack(dev, dev->mtu);
451                         first = 1;
452                         scount = 0;
453                 }
454                 if (first) {
455                         skb = add_grhead(skb, pmc, type, &pgr);
456                         first = 0;
457                 }
458                 psrc = (u32 *)skb_put(skb, sizeof(u32));
459                 *psrc = psf->sf_inaddr;
460                 scount++; stotal++;
461                 if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
462                      type == IGMPV3_BLOCK_OLD_SOURCES) && psf->sf_crcount) {
463                         psf->sf_crcount--;
464                         if ((sdeleted || gdeleted) && psf->sf_crcount == 0) {
465                                 if (psf_prev)
466                                         psf_prev->sf_next = psf->sf_next;
467                                 else
468                                         *psf_list = psf->sf_next;
469                                 kfree(psf);
470                                 continue;
471                         }
472                 }
473                 psf_prev = psf;
474         }
475
476 empty_source:
477         if (!stotal) {
478                 if (type == IGMPV3_ALLOW_NEW_SOURCES ||
479                     type == IGMPV3_BLOCK_OLD_SOURCES)
480                         return skb;
481                 if (pmc->crcount || isquery) {
482                         /* make sure we have room for group header */
483                         if (skb && AVAILABLE(skb)<sizeof(struct igmpv3_grec)) {
484                                 igmpv3_sendpack(skb);
485                                 skb = NULL; /* add_grhead will get a new one */
486                         }
487                         skb = add_grhead(skb, pmc, type, &pgr);
488                 }
489         }
490         if (pgr)
491                 pgr->grec_nsrcs = htons(scount);
492
493         if (isquery)
494                 pmc->gsquery = 0;       /* clear query state on report */
495         return skb;
496 }
497
498 static int igmpv3_send_report(struct in_device *in_dev, struct ip_mc_list *pmc)
499 {
500         struct sk_buff *skb = NULL;
501         int type;
502
503         if (!pmc) {
504                 read_lock(&in_dev->mc_list_lock);
505                 for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
506                         if (pmc->multiaddr == IGMP_ALL_HOSTS)
507                                 continue;
508                         spin_lock_bh(&pmc->lock);
509                         if (pmc->sfcount[MCAST_EXCLUDE])
510                                 type = IGMPV3_MODE_IS_EXCLUDE;
511                         else
512                                 type = IGMPV3_MODE_IS_INCLUDE;
513                         skb = add_grec(skb, pmc, type, 0, 0);
514                         spin_unlock_bh(&pmc->lock);
515                 }
516                 read_unlock(&in_dev->mc_list_lock);
517         } else {
518                 spin_lock_bh(&pmc->lock);
519                 if (pmc->sfcount[MCAST_EXCLUDE])
520                         type = IGMPV3_MODE_IS_EXCLUDE;
521                 else
522                         type = IGMPV3_MODE_IS_INCLUDE;
523                 skb = add_grec(skb, pmc, type, 0, 0);
524                 spin_unlock_bh(&pmc->lock);
525         }
526         if (!skb)
527                 return 0;
528         return igmpv3_sendpack(skb);
529 }
530
531 /*
532  * remove zero-count source records from a source filter list
533  */
534 static void igmpv3_clear_zeros(struct ip_sf_list **ppsf)
535 {
536         struct ip_sf_list *psf_prev, *psf_next, *psf;
537
538         psf_prev = NULL;
539         for (psf=*ppsf; psf; psf = psf_next) {
540                 psf_next = psf->sf_next;
541                 if (psf->sf_crcount == 0) {
542                         if (psf_prev)
543                                 psf_prev->sf_next = psf->sf_next;
544                         else
545                                 *ppsf = psf->sf_next;
546                         kfree(psf);
547                 } else
548                         psf_prev = psf;
549         }
550 }
551
552 static void igmpv3_send_cr(struct in_device *in_dev)
553 {
554         struct ip_mc_list *pmc, *pmc_prev, *pmc_next;
555         struct sk_buff *skb = NULL;
556         int type, dtype;
557
558         read_lock(&in_dev->mc_list_lock);
559         spin_lock_bh(&in_dev->mc_tomb_lock);
560
561         /* deleted MCA's */
562         pmc_prev = NULL;
563         for (pmc=in_dev->mc_tomb; pmc; pmc=pmc_next) {
564                 pmc_next = pmc->next;
565                 if (pmc->sfmode == MCAST_INCLUDE) {
566                         type = IGMPV3_BLOCK_OLD_SOURCES;
567                         dtype = IGMPV3_BLOCK_OLD_SOURCES;
568                         skb = add_grec(skb, pmc, type, 1, 0);
569                         skb = add_grec(skb, pmc, dtype, 1, 1);
570                 }
571                 if (pmc->crcount) {
572                         if (pmc->sfmode == MCAST_EXCLUDE) {
573                                 type = IGMPV3_CHANGE_TO_INCLUDE;
574                                 skb = add_grec(skb, pmc, type, 1, 0);
575                         }
576                         pmc->crcount--;
577                         if (pmc->crcount == 0) {
578                                 igmpv3_clear_zeros(&pmc->tomb);
579                                 igmpv3_clear_zeros(&pmc->sources);
580                         }
581                 }
582                 if (pmc->crcount == 0 && !pmc->tomb && !pmc->sources) {
583                         if (pmc_prev)
584                                 pmc_prev->next = pmc_next;
585                         else
586                                 in_dev->mc_tomb = pmc_next;
587                         in_dev_put(pmc->interface);
588                         kfree(pmc);
589                 } else
590                         pmc_prev = pmc;
591         }
592         spin_unlock_bh(&in_dev->mc_tomb_lock);
593
594         /* change recs */
595         for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
596                 spin_lock_bh(&pmc->lock);
597                 if (pmc->sfcount[MCAST_EXCLUDE]) {
598                         type = IGMPV3_BLOCK_OLD_SOURCES;
599                         dtype = IGMPV3_ALLOW_NEW_SOURCES;
600                 } else {
601                         type = IGMPV3_ALLOW_NEW_SOURCES;
602                         dtype = IGMPV3_BLOCK_OLD_SOURCES;
603                 }
604                 skb = add_grec(skb, pmc, type, 0, 0);
605                 skb = add_grec(skb, pmc, dtype, 0, 1);  /* deleted sources */
606
607                 /* filter mode changes */
608                 if (pmc->crcount) {
609                         if (pmc->sfmode == MCAST_EXCLUDE)
610                                 type = IGMPV3_CHANGE_TO_EXCLUDE;
611                         else
612                                 type = IGMPV3_CHANGE_TO_INCLUDE;
613                         skb = add_grec(skb, pmc, type, 0, 0);
614                         pmc->crcount--;
615                 }
616                 spin_unlock_bh(&pmc->lock);
617         }
618         read_unlock(&in_dev->mc_list_lock);
619
620         if (!skb)
621                 return;
622         (void) igmpv3_sendpack(skb);
623 }
624
625 static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,
626         int type)
627 {
628         struct sk_buff *skb;
629         struct iphdr *iph;
630         struct igmphdr *ih;
631         struct rtable *rt;
632         struct net_device *dev = in_dev->dev;
633         u32     group = pmc ? pmc->multiaddr : 0;
634         u32     dst;
635
636         if (type == IGMPV3_HOST_MEMBERSHIP_REPORT)
637                 return igmpv3_send_report(in_dev, pmc);
638         else if (type == IGMP_HOST_LEAVE_MESSAGE)
639                 dst = IGMP_ALL_ROUTER;
640         else
641                 dst = group;
642
643         {
644                 struct flowi fl = { .oif = dev->ifindex,
645                                     .nl_u = { .ip4_u = { .daddr = dst } },
646                                     .proto = IPPROTO_IGMP };
647                 if (ip_route_output_key(&rt, &fl))
648                         return -1;
649         }
650         if (rt->rt_src == 0) {
651                 ip_rt_put(rt);
652                 return -1;
653         }
654
655         skb=alloc_skb(IGMP_SIZE+LL_RESERVED_SPACE(dev), GFP_ATOMIC);
656         if (skb == NULL) {
657                 ip_rt_put(rt);
658                 return -1;
659         }
660
661         skb->dst = &rt->u.dst;
662
663         skb_reserve(skb, LL_RESERVED_SPACE(dev));
664
665         skb->nh.iph = iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr)+4);
666
667         iph->version  = 4;
668         iph->ihl      = (sizeof(struct iphdr)+4)>>2;
669         iph->tos      = 0xc0;
670         iph->frag_off = htons(IP_DF);
671         iph->ttl      = 1;
672         iph->daddr    = dst;
673         iph->saddr    = rt->rt_src;
674         iph->protocol = IPPROTO_IGMP;
675         iph->tot_len  = htons(IGMP_SIZE);
676         ip_select_ident(iph, &rt->u.dst, NULL);
677         ((u8*)&iph[1])[0] = IPOPT_RA;
678         ((u8*)&iph[1])[1] = 4;
679         ((u8*)&iph[1])[2] = 0;
680         ((u8*)&iph[1])[3] = 0;
681         ip_send_check(iph);
682
683         ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
684         ih->type=type;
685         ih->code=0;
686         ih->csum=0;
687         ih->group=group;
688         ih->csum=ip_compute_csum((void *)ih, sizeof(struct igmphdr));
689
690         return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
691                        dst_output);
692 }
693
694 static void igmp_gq_timer_expire(unsigned long data)
695 {
696         struct in_device *in_dev = (struct in_device *)data;
697
698         in_dev->mr_gq_running = 0;
699         igmpv3_send_report(in_dev, NULL);
700         __in_dev_put(in_dev);
701 }
702
703 static void igmp_ifc_timer_expire(unsigned long data)
704 {
705         struct in_device *in_dev = (struct in_device *)data;
706
707         igmpv3_send_cr(in_dev);
708         if (in_dev->mr_ifc_count) {
709                 in_dev->mr_ifc_count--;
710                 igmp_ifc_start_timer(in_dev, IGMP_Unsolicited_Report_Interval);
711         }
712         __in_dev_put(in_dev);
713 }
714
715 static void igmp_ifc_event(struct in_device *in_dev)
716 {
717         if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
718                 return;
719         in_dev->mr_ifc_count = in_dev->mr_qrv ? in_dev->mr_qrv : 
720                 IGMP_Unsolicited_Report_Count;
721         igmp_ifc_start_timer(in_dev, 1);
722 }
723
724
725 static void igmp_timer_expire(unsigned long data)
726 {
727         struct ip_mc_list *im=(struct ip_mc_list *)data;
728         struct in_device *in_dev = im->interface;
729
730         spin_lock(&im->lock);
731         im->tm_running=0;
732
733         if (im->unsolicit_count) {
734                 im->unsolicit_count--;
735                 igmp_start_timer(im, IGMP_Unsolicited_Report_Interval);
736         }
737         im->reporter = 1;
738         spin_unlock(&im->lock);
739
740         if (IGMP_V1_SEEN(in_dev))
741                 igmp_send_report(in_dev, im, IGMP_HOST_MEMBERSHIP_REPORT);
742         else if (IGMP_V2_SEEN(in_dev))
743                 igmp_send_report(in_dev, im, IGMPV2_HOST_MEMBERSHIP_REPORT);
744         else
745                 igmp_send_report(in_dev, im, IGMPV3_HOST_MEMBERSHIP_REPORT);
746
747         ip_ma_put(im);
748 }
749
750 /* mark EXCLUDE-mode sources */
751 static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
752 {
753         struct ip_sf_list *psf;
754         int i, scount;
755
756         scount = 0;
757         for (psf=pmc->sources; psf; psf=psf->sf_next) {
758                 if (scount == nsrcs)
759                         break;
760                 for (i=0; i<nsrcs; i++) {
761                         /* skip inactive filters */
762                         if (pmc->sfcount[MCAST_INCLUDE] ||
763                             pmc->sfcount[MCAST_EXCLUDE] !=
764                             psf->sf_count[MCAST_EXCLUDE])
765                                 continue;
766                         if (srcs[i] == psf->sf_inaddr) {
767                                 scount++;
768                                 break;
769                         }
770                 }
771         }
772         pmc->gsquery = 0;
773         if (scount == nsrcs)    /* all sources excluded */
774                 return 0;
775         return 1;
776 }
777
778 static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
779 {
780         struct ip_sf_list *psf;
781         int i, scount;
782
783         if (pmc->sfmode == MCAST_EXCLUDE)
784                 return igmp_xmarksources(pmc, nsrcs, srcs);
785
786         /* mark INCLUDE-mode sources */
787         scount = 0;
788         for (psf=pmc->sources; psf; psf=psf->sf_next) {
789                 if (scount == nsrcs)
790                         break;
791                 for (i=0; i<nsrcs; i++)
792                         if (srcs[i] == psf->sf_inaddr) {
793                                 psf->sf_gsresp = 1;
794                                 scount++;
795                                 break;
796                         }
797         }
798         if (!scount) {
799                 pmc->gsquery = 0;
800                 return 0;
801         }
802         pmc->gsquery = 1;
803         return 1;
804 }
805
806 static void igmp_heard_report(struct in_device *in_dev, u32 group)
807 {
808         struct ip_mc_list *im;
809
810         /* Timers are only set for non-local groups */
811
812         if (group == IGMP_ALL_HOSTS)
813                 return;
814
815         read_lock(&in_dev->mc_list_lock);
816         for (im=in_dev->mc_list; im!=NULL; im=im->next) {
817                 if (im->multiaddr == group) {
818                         igmp_stop_timer(im);
819                         break;
820                 }
821         }
822         read_unlock(&in_dev->mc_list_lock);
823 }
824
825 static void igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb,
826         int len)
827 {
828         struct igmphdr          *ih = skb->h.igmph;
829         struct igmpv3_query *ih3 = (struct igmpv3_query *)ih;
830         struct ip_mc_list       *im;
831         u32                     group = ih->group;
832         int                     max_delay;
833         int                     mark = 0;
834
835
836         if (len == 8) {
837                 if (ih->code == 0) {
838                         /* Alas, old v1 router presents here. */
839         
840                         max_delay = IGMP_Query_Response_Interval;
841                         in_dev->mr_v1_seen = jiffies +
842                                 IGMP_V1_Router_Present_Timeout;
843                         group = 0;
844                 } else {
845                         /* v2 router present */
846                         max_delay = ih->code*(HZ/IGMP_TIMER_SCALE);
847                         in_dev->mr_v2_seen = jiffies +
848                                 IGMP_V2_Router_Present_Timeout;
849                 }
850                 /* cancel the interface change timer */
851                 in_dev->mr_ifc_count = 0;
852                 if (del_timer(&in_dev->mr_ifc_timer))
853                         __in_dev_put(in_dev);
854                 /* clear deleted report items */
855                 igmpv3_clear_delrec(in_dev);
856         } else if (len < 12) {
857                 return; /* ignore bogus packet; freed by caller */
858         } else { /* v3 */
859                 if (!pskb_may_pull(skb, sizeof(struct igmpv3_query)))
860                         return;
861                 
862                 ih3 = (struct igmpv3_query *) skb->h.raw;
863                 if (ih3->nsrcs) {
864                         if (!pskb_may_pull(skb, sizeof(struct igmpv3_query) 
865                                            + ntohs(ih3->nsrcs)*sizeof(__u32)))
866                                 return;
867                         ih3 = (struct igmpv3_query *) skb->h.raw;
868                 }
869
870                 max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE);
871                 if (!max_delay)
872                         max_delay = 1;  /* can't mod w/ 0 */
873                 in_dev->mr_maxdelay = max_delay;
874                 if (ih3->qrv)
875                         in_dev->mr_qrv = ih3->qrv;
876                 if (!group) { /* general query */
877                         if (ih3->nsrcs)
878                                 return; /* no sources allowed */
879                         igmp_gq_start_timer(in_dev);
880                         return;
881                 }
882                 /* mark sources to include, if group & source-specific */
883                 mark = ih3->nsrcs != 0;
884         }
885
886         /*
887          * - Start the timers in all of our membership records
888          *   that the query applies to for the interface on
889          *   which the query arrived excl. those that belong
890          *   to a "local" group (224.0.0.X)
891          * - For timers already running check if they need to
892          *   be reset.
893          * - Use the igmp->igmp_code field as the maximum
894          *   delay possible
895          */
896         read_lock(&in_dev->mc_list_lock);
897         for (im=in_dev->mc_list; im!=NULL; im=im->next) {
898                 int changed;
899
900                 if (group && group != im->multiaddr)
901                         continue;
902                 if (im->multiaddr == IGMP_ALL_HOSTS)
903                         continue;
904                 spin_lock_bh(&im->lock);
905                 if (im->tm_running)
906                         im->gsquery = im->gsquery && mark;
907                 else
908                         im->gsquery = mark;
909                 changed = !im->gsquery ||
910                         igmp_marksources(im, ntohs(ih3->nsrcs), ih3->srcs);
911                 spin_unlock_bh(&im->lock);
912                 if (changed)
913                         igmp_mod_timer(im, max_delay);
914         }
915         read_unlock(&in_dev->mc_list_lock);
916 }
917
918 int igmp_rcv(struct sk_buff *skb)
919 {
920         /* This basically follows the spec line by line -- see RFC1112 */
921         struct igmphdr *ih;
922         struct in_device *in_dev = in_dev_get(skb->dev);
923         int len = skb->len;
924
925         if (in_dev==NULL) {
926                 kfree_skb(skb);
927                 return 0;
928         }
929
930         if (!pskb_may_pull(skb, sizeof(struct igmphdr)))
931                 goto drop;
932
933         switch (skb->ip_summed) {
934         case CHECKSUM_HW:
935                 if (!(u16)csum_fold(skb->csum))
936                         break;
937                 /* fall through */
938         case CHECKSUM_NONE:
939                 skb->csum = 0;
940                 if (__skb_checksum_complete(skb))
941                         goto drop;
942         }
943
944         ih = skb->h.igmph;
945         switch (ih->type) {
946         case IGMP_HOST_MEMBERSHIP_QUERY:
947                 igmp_heard_query(in_dev, skb, len);
948                 break;
949         case IGMP_HOST_MEMBERSHIP_REPORT:
950         case IGMPV2_HOST_MEMBERSHIP_REPORT:
951         case IGMPV3_HOST_MEMBERSHIP_REPORT:
952                 /* Is it our report looped back? */
953                 if (((struct rtable*)skb->dst)->fl.iif == 0)
954                         break;
955                 /* don't rely on MC router hearing unicast reports */
956                 if (skb->pkt_type == PACKET_MULTICAST ||
957                     skb->pkt_type == PACKET_BROADCAST)
958                         igmp_heard_report(in_dev, ih->group);
959                 break;
960         case IGMP_PIM:
961 #ifdef CONFIG_IP_PIMSM_V1
962                 in_dev_put(in_dev);
963                 return pim_rcv_v1(skb);
964 #endif
965         case IGMP_DVMRP:
966         case IGMP_TRACE:
967         case IGMP_HOST_LEAVE_MESSAGE:
968         case IGMP_MTRACE:
969         case IGMP_MTRACE_RESP:
970                 break;
971         default:
972                 break;
973         }
974
975 drop:
976         in_dev_put(in_dev);
977         kfree_skb(skb);
978         return 0;
979 }
980
981 #endif
982
983
984 /*
985  *      Add a filter to a device
986  */
987
988 static void ip_mc_filter_add(struct in_device *in_dev, u32 addr)
989 {
990         char buf[MAX_ADDR_LEN];
991         struct net_device *dev = in_dev->dev;
992
993         /* Checking for IFF_MULTICAST here is WRONG-WRONG-WRONG.
994            We will get multicast token leakage, when IFF_MULTICAST
995            is changed. This check should be done in dev->set_multicast_list
996            routine. Something sort of:
997            if (dev->mc_list && dev->flags&IFF_MULTICAST) { do it; }
998            --ANK
999            */
1000         if (arp_mc_map(addr, buf, dev, 0) == 0)
1001                 dev_mc_add(dev,buf,dev->addr_len,0);
1002 }
1003
1004 /*
1005  *      Remove a filter from a device
1006  */
1007
1008 static void ip_mc_filter_del(struct in_device *in_dev, u32 addr)
1009 {
1010         char buf[MAX_ADDR_LEN];
1011         struct net_device *dev = in_dev->dev;
1012
1013         if (arp_mc_map(addr, buf, dev, 0) == 0)
1014                 dev_mc_delete(dev,buf,dev->addr_len,0);
1015 }
1016
1017 #ifdef CONFIG_IP_MULTICAST
1018 /*
1019  * deleted ip_mc_list manipulation
1020  */
1021 static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im)
1022 {
1023         struct ip_mc_list *pmc;
1024
1025         /* this is an "ip_mc_list" for convenience; only the fields below
1026          * are actually used. In particular, the refcnt and users are not
1027          * used for management of the delete list. Using the same structure
1028          * for deleted items allows change reports to use common code with
1029          * non-deleted or query-response MCA's.
1030          */
1031         pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
1032         if (!pmc)
1033                 return;
1034         spin_lock_bh(&im->lock);
1035         pmc->interface = im->interface;
1036         in_dev_hold(in_dev);
1037         pmc->multiaddr = im->multiaddr;
1038         pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1039                 IGMP_Unsolicited_Report_Count;
1040         pmc->sfmode = im->sfmode;
1041         if (pmc->sfmode == MCAST_INCLUDE) {
1042                 struct ip_sf_list *psf;
1043
1044                 pmc->tomb = im->tomb;
1045                 pmc->sources = im->sources;
1046                 im->tomb = im->sources = NULL;
1047                 for (psf=pmc->sources; psf; psf=psf->sf_next)
1048                         psf->sf_crcount = pmc->crcount;
1049         }
1050         spin_unlock_bh(&im->lock);
1051
1052         spin_lock_bh(&in_dev->mc_tomb_lock);
1053         pmc->next = in_dev->mc_tomb;
1054         in_dev->mc_tomb = pmc;
1055         spin_unlock_bh(&in_dev->mc_tomb_lock);
1056 }
1057
1058 static void igmpv3_del_delrec(struct in_device *in_dev, __u32 multiaddr)
1059 {
1060         struct ip_mc_list *pmc, *pmc_prev;
1061         struct ip_sf_list *psf, *psf_next;
1062
1063         spin_lock_bh(&in_dev->mc_tomb_lock);
1064         pmc_prev = NULL;
1065         for (pmc=in_dev->mc_tomb; pmc; pmc=pmc->next) {
1066                 if (pmc->multiaddr == multiaddr)
1067                         break;
1068                 pmc_prev = pmc;
1069         }
1070         if (pmc) {
1071                 if (pmc_prev)
1072                         pmc_prev->next = pmc->next;
1073                 else
1074                         in_dev->mc_tomb = pmc->next;
1075         }
1076         spin_unlock_bh(&in_dev->mc_tomb_lock);
1077         if (pmc) {
1078                 for (psf=pmc->tomb; psf; psf=psf_next) {
1079                         psf_next = psf->sf_next;
1080                         kfree(psf);
1081                 }
1082                 in_dev_put(pmc->interface);
1083                 kfree(pmc);
1084         }
1085 }
1086
1087 static void igmpv3_clear_delrec(struct in_device *in_dev)
1088 {
1089         struct ip_mc_list *pmc, *nextpmc;
1090
1091         spin_lock_bh(&in_dev->mc_tomb_lock);
1092         pmc = in_dev->mc_tomb;
1093         in_dev->mc_tomb = NULL;
1094         spin_unlock_bh(&in_dev->mc_tomb_lock);
1095
1096         for (; pmc; pmc = nextpmc) {
1097                 nextpmc = pmc->next;
1098                 ip_mc_clear_src(pmc);
1099                 in_dev_put(pmc->interface);
1100                 kfree(pmc);
1101         }
1102         /* clear dead sources, too */
1103         read_lock(&in_dev->mc_list_lock);
1104         for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1105                 struct ip_sf_list *psf, *psf_next;
1106
1107                 spin_lock_bh(&pmc->lock);
1108                 psf = pmc->tomb;
1109                 pmc->tomb = NULL;
1110                 spin_unlock_bh(&pmc->lock);
1111                 for (; psf; psf=psf_next) {
1112                         psf_next = psf->sf_next;
1113                         kfree(psf);
1114                 }
1115         }
1116         read_unlock(&in_dev->mc_list_lock);
1117 }
1118 #endif
1119
1120 static void igmp_group_dropped(struct ip_mc_list *im)
1121 {
1122         struct in_device *in_dev = im->interface;
1123 #ifdef CONFIG_IP_MULTICAST
1124         int reporter;
1125 #endif
1126
1127         if (im->loaded) {
1128                 im->loaded = 0;
1129                 ip_mc_filter_del(in_dev, im->multiaddr);
1130         }
1131
1132 #ifdef CONFIG_IP_MULTICAST
1133         if (im->multiaddr == IGMP_ALL_HOSTS)
1134                 return;
1135
1136         reporter = im->reporter;
1137         igmp_stop_timer(im);
1138
1139         if (!in_dev->dead) {
1140                 if (IGMP_V1_SEEN(in_dev))
1141                         goto done;
1142                 if (IGMP_V2_SEEN(in_dev)) {
1143                         if (reporter)
1144                                 igmp_send_report(in_dev, im, IGMP_HOST_LEAVE_MESSAGE);
1145                         goto done;
1146                 }
1147                 /* IGMPv3 */
1148                 igmpv3_add_delrec(in_dev, im);
1149
1150                 igmp_ifc_event(in_dev);
1151         }
1152 done:
1153 #endif
1154         ip_mc_clear_src(im);
1155 }
1156
1157 static void igmp_group_added(struct ip_mc_list *im)
1158 {
1159         struct in_device *in_dev = im->interface;
1160
1161         if (im->loaded == 0) {
1162                 im->loaded = 1;
1163                 ip_mc_filter_add(in_dev, im->multiaddr);
1164         }
1165
1166 #ifdef CONFIG_IP_MULTICAST
1167         if (im->multiaddr == IGMP_ALL_HOSTS)
1168                 return;
1169
1170         if (in_dev->dead)
1171                 return;
1172         if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev)) {
1173                 spin_lock_bh(&im->lock);
1174                 igmp_start_timer(im, IGMP_Initial_Report_Delay);
1175                 spin_unlock_bh(&im->lock);
1176                 return;
1177         }
1178         /* else, v3 */
1179
1180         im->crcount = in_dev->mr_qrv ? in_dev->mr_qrv :
1181                 IGMP_Unsolicited_Report_Count;
1182         igmp_ifc_event(in_dev);
1183 #endif
1184 }
1185
1186
1187 /*
1188  *      Multicast list managers
1189  */
1190
1191
1192 /*
1193  *      A socket has joined a multicast group on device dev.
1194  */
1195
1196 void ip_mc_inc_group(struct in_device *in_dev, u32 addr)
1197 {
1198         struct ip_mc_list *im;
1199
1200         ASSERT_RTNL();
1201
1202         for (im=in_dev->mc_list; im; im=im->next) {
1203                 if (im->multiaddr == addr) {
1204                         im->users++;
1205                         ip_mc_add_src(in_dev, &addr, MCAST_EXCLUDE, 0, NULL, 0);
1206                         goto out;
1207                 }
1208         }
1209
1210         im = kmalloc(sizeof(*im), GFP_KERNEL);
1211         if (!im)
1212                 goto out;
1213
1214         im->users=1;
1215         im->interface=in_dev;
1216         in_dev_hold(in_dev);
1217         im->multiaddr=addr;
1218         /* initial mode is (EX, empty) */
1219         im->sfmode = MCAST_EXCLUDE;
1220         im->sfcount[MCAST_INCLUDE] = 0;
1221         im->sfcount[MCAST_EXCLUDE] = 1;
1222         im->sources = NULL;
1223         im->tomb = NULL;
1224         im->crcount = 0;
1225         atomic_set(&im->refcnt, 1);
1226         spin_lock_init(&im->lock);
1227 #ifdef CONFIG_IP_MULTICAST
1228         im->tm_running=0;
1229         init_timer(&im->timer);
1230         im->timer.data=(unsigned long)im;
1231         im->timer.function=&igmp_timer_expire;
1232         im->unsolicit_count = IGMP_Unsolicited_Report_Count;
1233         im->reporter = 0;
1234         im->gsquery = 0;
1235 #endif
1236         im->loaded = 0;
1237         write_lock_bh(&in_dev->mc_list_lock);
1238         im->next=in_dev->mc_list;
1239         in_dev->mc_list=im;
1240         write_unlock_bh(&in_dev->mc_list_lock);
1241 #ifdef CONFIG_IP_MULTICAST
1242         igmpv3_del_delrec(in_dev, im->multiaddr);
1243 #endif
1244         igmp_group_added(im);
1245         if (!in_dev->dead)
1246                 ip_rt_multicast_event(in_dev);
1247 out:
1248         return;
1249 }
1250
1251 /*
1252  *      A socket has left a multicast group on device dev
1253  */
1254
1255 void ip_mc_dec_group(struct in_device *in_dev, u32 addr)
1256 {
1257         struct ip_mc_list *i, **ip;
1258         
1259         ASSERT_RTNL();
1260         
1261         for (ip=&in_dev->mc_list; (i=*ip)!=NULL; ip=&i->next) {
1262                 if (i->multiaddr==addr) {
1263                         if (--i->users == 0) {
1264                                 write_lock_bh(&in_dev->mc_list_lock);
1265                                 *ip = i->next;
1266                                 write_unlock_bh(&in_dev->mc_list_lock);
1267                                 igmp_group_dropped(i);
1268
1269                                 if (!in_dev->dead)
1270                                         ip_rt_multicast_event(in_dev);
1271
1272                                 ip_ma_put(i);
1273                                 return;
1274                         }
1275                         break;
1276                 }
1277         }
1278 }
1279
1280 /* Device going down */
1281
1282 void ip_mc_down(struct in_device *in_dev)
1283 {
1284         struct ip_mc_list *i;
1285
1286         ASSERT_RTNL();
1287
1288         for (i=in_dev->mc_list; i; i=i->next)
1289                 igmp_group_dropped(i);
1290
1291 #ifdef CONFIG_IP_MULTICAST
1292         in_dev->mr_ifc_count = 0;
1293         if (del_timer(&in_dev->mr_ifc_timer))
1294                 __in_dev_put(in_dev);
1295         in_dev->mr_gq_running = 0;
1296         if (del_timer(&in_dev->mr_gq_timer))
1297                 __in_dev_put(in_dev);
1298         igmpv3_clear_delrec(in_dev);
1299 #endif
1300
1301         ip_mc_dec_group(in_dev, IGMP_ALL_HOSTS);
1302 }
1303
1304 void ip_mc_init_dev(struct in_device *in_dev)
1305 {
1306         ASSERT_RTNL();
1307
1308         in_dev->mc_tomb = NULL;
1309 #ifdef CONFIG_IP_MULTICAST
1310         in_dev->mr_gq_running = 0;
1311         init_timer(&in_dev->mr_gq_timer);
1312         in_dev->mr_gq_timer.data=(unsigned long) in_dev;
1313         in_dev->mr_gq_timer.function=&igmp_gq_timer_expire;
1314         in_dev->mr_ifc_count = 0;
1315         init_timer(&in_dev->mr_ifc_timer);
1316         in_dev->mr_ifc_timer.data=(unsigned long) in_dev;
1317         in_dev->mr_ifc_timer.function=&igmp_ifc_timer_expire;
1318         in_dev->mr_qrv = IGMP_Unsolicited_Report_Count;
1319 #endif
1320
1321         rwlock_init(&in_dev->mc_list_lock);
1322         spin_lock_init(&in_dev->mc_tomb_lock);
1323 }
1324
1325 /* Device going up */
1326
1327 void ip_mc_up(struct in_device *in_dev)
1328 {
1329         struct ip_mc_list *i;
1330
1331         ASSERT_RTNL();
1332
1333         ip_mc_inc_group(in_dev, IGMP_ALL_HOSTS);
1334
1335         for (i=in_dev->mc_list; i; i=i->next)
1336                 igmp_group_added(i);
1337 }
1338
1339 /*
1340  *      Device is about to be destroyed: clean up.
1341  */
1342
1343 void ip_mc_destroy_dev(struct in_device *in_dev)
1344 {
1345         struct ip_mc_list *i;
1346
1347         ASSERT_RTNL();
1348
1349         /* Deactivate timers */
1350         ip_mc_down(in_dev);
1351
1352         write_lock_bh(&in_dev->mc_list_lock);
1353         while ((i = in_dev->mc_list) != NULL) {
1354                 in_dev->mc_list = i->next;
1355                 write_unlock_bh(&in_dev->mc_list_lock);
1356
1357                 igmp_group_dropped(i);
1358                 ip_ma_put(i);
1359
1360                 write_lock_bh(&in_dev->mc_list_lock);
1361         }
1362         write_unlock_bh(&in_dev->mc_list_lock);
1363 }
1364
1365 static struct in_device * ip_mc_find_dev(struct ip_mreqn *imr)
1366 {
1367         struct flowi fl = { .nl_u = { .ip4_u =
1368                                       { .daddr = imr->imr_multiaddr.s_addr } } };
1369         struct rtable *rt;
1370         struct net_device *dev = NULL;
1371         struct in_device *idev = NULL;
1372
1373         if (imr->imr_ifindex) {
1374                 idev = inetdev_by_index(imr->imr_ifindex);
1375                 if (idev)
1376                         __in_dev_put(idev);
1377                 return idev;
1378         }
1379         if (imr->imr_address.s_addr) {
1380                 dev = ip_dev_find(imr->imr_address.s_addr);
1381                 if (!dev)
1382                         return NULL;
1383                 dev_put(dev);
1384         }
1385
1386         if (!dev && !ip_route_output_key(&rt, &fl)) {
1387                 dev = rt->u.dst.dev;
1388                 ip_rt_put(rt);
1389         }
1390         if (dev) {
1391                 imr->imr_ifindex = dev->ifindex;
1392                 idev = __in_dev_get_rtnl(dev);
1393         }
1394         return idev;
1395 }
1396
1397 /*
1398  *      Join a socket to a group
1399  */
1400 int sysctl_igmp_max_memberships = IP_MAX_MEMBERSHIPS;
1401 int sysctl_igmp_max_msf = IP_MAX_MSF;
1402
1403
1404 static int ip_mc_del1_src(struct ip_mc_list *pmc, int sfmode,
1405         __u32 *psfsrc)
1406 {
1407         struct ip_sf_list *psf, *psf_prev;
1408         int rv = 0;
1409
1410         psf_prev = NULL;
1411         for (psf=pmc->sources; psf; psf=psf->sf_next) {
1412                 if (psf->sf_inaddr == *psfsrc)
1413                         break;
1414                 psf_prev = psf;
1415         }
1416         if (!psf || psf->sf_count[sfmode] == 0) {
1417                 /* source filter not found, or count wrong =>  bug */
1418                 return -ESRCH;
1419         }
1420         psf->sf_count[sfmode]--;
1421         if (psf->sf_count[sfmode] == 0) {
1422                 ip_rt_multicast_event(pmc->interface);
1423         }
1424         if (!psf->sf_count[MCAST_INCLUDE] && !psf->sf_count[MCAST_EXCLUDE]) {
1425 #ifdef CONFIG_IP_MULTICAST
1426                 struct in_device *in_dev = pmc->interface;
1427 #endif
1428
1429                 /* no more filters for this source */
1430                 if (psf_prev)
1431                         psf_prev->sf_next = psf->sf_next;
1432                 else
1433                         pmc->sources = psf->sf_next;
1434 #ifdef CONFIG_IP_MULTICAST
1435                 if (psf->sf_oldin &&
1436                     !IGMP_V1_SEEN(in_dev) && !IGMP_V2_SEEN(in_dev)) {
1437                         psf->sf_crcount = in_dev->mr_qrv ? in_dev->mr_qrv : 
1438                                 IGMP_Unsolicited_Report_Count;
1439                         psf->sf_next = pmc->tomb;
1440                         pmc->tomb = psf;
1441                         rv = 1;
1442                 } else
1443 #endif
1444                         kfree(psf);
1445         }
1446         return rv;
1447 }
1448
1449 #ifndef CONFIG_IP_MULTICAST
1450 #define igmp_ifc_event(x)       do { } while (0)
1451 #endif
1452
1453 static int ip_mc_del_src(struct in_device *in_dev, __u32 *pmca, int sfmode,
1454                          int sfcount, __u32 *psfsrc, int delta)
1455 {
1456         struct ip_mc_list *pmc;
1457         int     changerec = 0;
1458         int     i, err;
1459
1460         if (!in_dev)
1461                 return -ENODEV;
1462         read_lock(&in_dev->mc_list_lock);
1463         for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1464                 if (*pmca == pmc->multiaddr)
1465                         break;
1466         }
1467         if (!pmc) {
1468                 /* MCA not found?? bug */
1469                 read_unlock(&in_dev->mc_list_lock);
1470                 return -ESRCH;
1471         }
1472         spin_lock_bh(&pmc->lock);
1473         read_unlock(&in_dev->mc_list_lock);
1474 #ifdef CONFIG_IP_MULTICAST
1475         sf_markstate(pmc);
1476 #endif
1477         if (!delta) {
1478                 err = -EINVAL;
1479                 if (!pmc->sfcount[sfmode])
1480                         goto out_unlock;
1481                 pmc->sfcount[sfmode]--;
1482         }
1483         err = 0;
1484         for (i=0; i<sfcount; i++) {
1485                 int rv = ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1486
1487                 changerec |= rv > 0;
1488                 if (!err && rv < 0)
1489                         err = rv;
1490         }
1491         if (pmc->sfmode == MCAST_EXCLUDE &&
1492             pmc->sfcount[MCAST_EXCLUDE] == 0 &&
1493             pmc->sfcount[MCAST_INCLUDE]) {
1494 #ifdef CONFIG_IP_MULTICAST
1495                 struct ip_sf_list *psf;
1496 #endif
1497
1498                 /* filter mode change */
1499                 pmc->sfmode = MCAST_INCLUDE;
1500 #ifdef CONFIG_IP_MULTICAST
1501                 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv : 
1502                         IGMP_Unsolicited_Report_Count;
1503                 in_dev->mr_ifc_count = pmc->crcount;
1504                 for (psf=pmc->sources; psf; psf = psf->sf_next)
1505                         psf->sf_crcount = 0;
1506                 igmp_ifc_event(pmc->interface);
1507         } else if (sf_setstate(pmc) || changerec) {
1508                 igmp_ifc_event(pmc->interface);
1509 #endif
1510         }
1511 out_unlock:
1512         spin_unlock_bh(&pmc->lock);
1513         return err;
1514 }
1515
1516 /*
1517  * Add multicast single-source filter to the interface list
1518  */
1519 static int ip_mc_add1_src(struct ip_mc_list *pmc, int sfmode,
1520         __u32 *psfsrc, int delta)
1521 {
1522         struct ip_sf_list *psf, *psf_prev;
1523
1524         psf_prev = NULL;
1525         for (psf=pmc->sources; psf; psf=psf->sf_next) {
1526                 if (psf->sf_inaddr == *psfsrc)
1527                         break;
1528                 psf_prev = psf;
1529         }
1530         if (!psf) {
1531                 psf = kzalloc(sizeof(*psf), GFP_ATOMIC);
1532                 if (!psf)
1533                         return -ENOBUFS;
1534                 psf->sf_inaddr = *psfsrc;
1535                 if (psf_prev) {
1536                         psf_prev->sf_next = psf;
1537                 } else
1538                         pmc->sources = psf;
1539         }
1540         psf->sf_count[sfmode]++;
1541         if (psf->sf_count[sfmode] == 1) {
1542                 ip_rt_multicast_event(pmc->interface);
1543         }
1544         return 0;
1545 }
1546
1547 #ifdef CONFIG_IP_MULTICAST
1548 static void sf_markstate(struct ip_mc_list *pmc)
1549 {
1550         struct ip_sf_list *psf;
1551         int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1552
1553         for (psf=pmc->sources; psf; psf=psf->sf_next)
1554                 if (pmc->sfcount[MCAST_EXCLUDE]) {
1555                         psf->sf_oldin = mca_xcount ==
1556                                 psf->sf_count[MCAST_EXCLUDE] &&
1557                                 !psf->sf_count[MCAST_INCLUDE];
1558                 } else
1559                         psf->sf_oldin = psf->sf_count[MCAST_INCLUDE] != 0;
1560 }
1561
1562 static int sf_setstate(struct ip_mc_list *pmc)
1563 {
1564         struct ip_sf_list *psf, *dpsf;
1565         int mca_xcount = pmc->sfcount[MCAST_EXCLUDE];
1566         int qrv = pmc->interface->mr_qrv;
1567         int new_in, rv;
1568
1569         rv = 0;
1570         for (psf=pmc->sources; psf; psf=psf->sf_next) {
1571                 if (pmc->sfcount[MCAST_EXCLUDE]) {
1572                         new_in = mca_xcount == psf->sf_count[MCAST_EXCLUDE] &&
1573                                 !psf->sf_count[MCAST_INCLUDE];
1574                 } else
1575                         new_in = psf->sf_count[MCAST_INCLUDE] != 0;
1576                 if (new_in) {
1577                         if (!psf->sf_oldin) {
1578                                 struct ip_sf_list *prev = NULL;
1579
1580                                 for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next) {
1581                                         if (dpsf->sf_inaddr == psf->sf_inaddr)
1582                                                 break;
1583                                         prev = dpsf;
1584                                 }
1585                                 if (dpsf) {
1586                                         if (prev)
1587                                                 prev->sf_next = dpsf->sf_next;
1588                                         else
1589                                                 pmc->tomb = dpsf->sf_next;
1590                                         kfree(dpsf);
1591                                 }
1592                                 psf->sf_crcount = qrv;
1593                                 rv++;
1594                         }
1595                 } else if (psf->sf_oldin) {
1596
1597                         psf->sf_crcount = 0;
1598                         /*
1599                          * add or update "delete" records if an active filter
1600                          * is now inactive
1601                          */
1602                         for (dpsf=pmc->tomb; dpsf; dpsf=dpsf->sf_next)
1603                                 if (dpsf->sf_inaddr == psf->sf_inaddr)
1604                                         break;
1605                         if (!dpsf) {
1606                                 dpsf = (struct ip_sf_list *)
1607                                         kmalloc(sizeof(*dpsf), GFP_ATOMIC);
1608                                 if (!dpsf)
1609                                         continue;
1610                                 *dpsf = *psf;
1611                                 /* pmc->lock held by callers */
1612                                 dpsf->sf_next = pmc->tomb;
1613                                 pmc->tomb = dpsf;
1614                         }
1615                         dpsf->sf_crcount = qrv;
1616                         rv++;
1617                 }
1618         }
1619         return rv;
1620 }
1621 #endif
1622
1623 /*
1624  * Add multicast source filter list to the interface list
1625  */
1626 static int ip_mc_add_src(struct in_device *in_dev, __u32 *pmca, int sfmode,
1627                          int sfcount, __u32 *psfsrc, int delta)
1628 {
1629         struct ip_mc_list *pmc;
1630         int     isexclude;
1631         int     i, err;
1632
1633         if (!in_dev)
1634                 return -ENODEV;
1635         read_lock(&in_dev->mc_list_lock);
1636         for (pmc=in_dev->mc_list; pmc; pmc=pmc->next) {
1637                 if (*pmca == pmc->multiaddr)
1638                         break;
1639         }
1640         if (!pmc) {
1641                 /* MCA not found?? bug */
1642                 read_unlock(&in_dev->mc_list_lock);
1643                 return -ESRCH;
1644         }
1645         spin_lock_bh(&pmc->lock);
1646         read_unlock(&in_dev->mc_list_lock);
1647
1648 #ifdef CONFIG_IP_MULTICAST
1649         sf_markstate(pmc);
1650 #endif
1651         isexclude = pmc->sfmode == MCAST_EXCLUDE;
1652         if (!delta)
1653                 pmc->sfcount[sfmode]++;
1654         err = 0;
1655         for (i=0; i<sfcount; i++) {
1656                 err = ip_mc_add1_src(pmc, sfmode, &psfsrc[i], delta);
1657                 if (err)
1658                         break;
1659         }
1660         if (err) {
1661                 int j;
1662
1663                 pmc->sfcount[sfmode]--;
1664                 for (j=0; j<i; j++)
1665                         (void) ip_mc_del1_src(pmc, sfmode, &psfsrc[i]);
1666         } else if (isexclude != (pmc->sfcount[MCAST_EXCLUDE] != 0)) {
1667 #ifdef CONFIG_IP_MULTICAST
1668                 struct in_device *in_dev = pmc->interface;
1669                 struct ip_sf_list *psf;
1670 #endif
1671
1672                 /* filter mode change */
1673                 if (pmc->sfcount[MCAST_EXCLUDE])
1674                         pmc->sfmode = MCAST_EXCLUDE;
1675                 else if (pmc->sfcount[MCAST_INCLUDE])
1676                         pmc->sfmode = MCAST_INCLUDE;
1677 #ifdef CONFIG_IP_MULTICAST
1678                 /* else no filters; keep old mode for reports */
1679
1680                 pmc->crcount = in_dev->mr_qrv ? in_dev->mr_qrv : 
1681                         IGMP_Unsolicited_Report_Count;
1682                 in_dev->mr_ifc_count = pmc->crcount;
1683                 for (psf=pmc->sources; psf; psf = psf->sf_next)
1684                         psf->sf_crcount = 0;
1685                 igmp_ifc_event(in_dev);
1686         } else if (sf_setstate(pmc)) {
1687                 igmp_ifc_event(in_dev);
1688 #endif
1689         }
1690         spin_unlock_bh(&pmc->lock);
1691         return err;
1692 }
1693
1694 static void ip_mc_clear_src(struct ip_mc_list *pmc)
1695 {
1696         struct ip_sf_list *psf, *nextpsf;
1697
1698         for (psf=pmc->tomb; psf; psf=nextpsf) {
1699                 nextpsf = psf->sf_next;
1700                 kfree(psf);
1701         }
1702         pmc->tomb = NULL;
1703         for (psf=pmc->sources; psf; psf=nextpsf) {
1704                 nextpsf = psf->sf_next;
1705                 kfree(psf);
1706         }
1707         pmc->sources = NULL;
1708         pmc->sfmode = MCAST_EXCLUDE;
1709         pmc->sfcount[MCAST_INCLUDE] = 0;
1710         pmc->sfcount[MCAST_EXCLUDE] = 1;
1711 }
1712
1713
1714 /*
1715  * Join a multicast group
1716  */
1717 int ip_mc_join_group(struct sock *sk , struct ip_mreqn *imr)
1718 {
1719         int err;
1720         u32 addr = imr->imr_multiaddr.s_addr;
1721         struct ip_mc_socklist *iml=NULL, *i;
1722         struct in_device *in_dev;
1723         struct inet_sock *inet = inet_sk(sk);
1724         int ifindex;
1725         int count = 0;
1726
1727         if (!MULTICAST(addr))
1728                 return -EINVAL;
1729
1730         rtnl_lock();
1731
1732         in_dev = ip_mc_find_dev(imr);
1733
1734         if (!in_dev) {
1735                 iml = NULL;
1736                 err = -ENODEV;
1737                 goto done;
1738         }
1739
1740         err = -EADDRINUSE;
1741         ifindex = imr->imr_ifindex;
1742         for (i = inet->mc_list; i; i = i->next) {
1743                 if (i->multi.imr_multiaddr.s_addr == addr &&
1744                     i->multi.imr_ifindex == ifindex)
1745                         goto done;
1746                 count++;
1747         }
1748         err = -ENOBUFS;
1749         if (count >= sysctl_igmp_max_memberships)
1750                 goto done;
1751         iml = sock_kmalloc(sk,sizeof(*iml),GFP_KERNEL);
1752         if (iml == NULL)
1753                 goto done;
1754
1755         memcpy(&iml->multi, imr, sizeof(*imr));
1756         iml->next = inet->mc_list;
1757         iml->sflist = NULL;
1758         iml->sfmode = MCAST_EXCLUDE;
1759         inet->mc_list = iml;
1760         ip_mc_inc_group(in_dev, addr);
1761         err = 0;
1762 done:
1763         rtnl_unlock();
1764         return err;
1765 }
1766
1767 static int ip_mc_leave_src(struct sock *sk, struct ip_mc_socklist *iml,
1768                            struct in_device *in_dev)
1769 {
1770         int err;
1771
1772         if (iml->sflist == 0) {
1773                 /* any-source empty exclude case */
1774                 return ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1775                         iml->sfmode, 0, NULL, 0);
1776         }
1777         err = ip_mc_del_src(in_dev, &iml->multi.imr_multiaddr.s_addr,
1778                         iml->sfmode, iml->sflist->sl_count,
1779                         iml->sflist->sl_addr, 0);
1780         sock_kfree_s(sk, iml->sflist, IP_SFLSIZE(iml->sflist->sl_max));
1781         iml->sflist = NULL;
1782         return err;
1783 }
1784
1785 /*
1786  *      Ask a socket to leave a group.
1787  */
1788
1789 int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr)
1790 {
1791         struct inet_sock *inet = inet_sk(sk);
1792         struct ip_mc_socklist *iml, **imlp;
1793         struct in_device *in_dev;
1794         u32 group = imr->imr_multiaddr.s_addr;
1795         u32 ifindex;
1796
1797         rtnl_lock();
1798         in_dev = ip_mc_find_dev(imr);
1799         if (!in_dev) {
1800                 rtnl_unlock();
1801                 return -ENODEV;
1802         }
1803         ifindex = imr->imr_ifindex;
1804         for (imlp = &inet->mc_list; (iml = *imlp) != NULL; imlp = &iml->next) {
1805                 if (iml->multi.imr_multiaddr.s_addr == group &&
1806                     iml->multi.imr_ifindex == ifindex) {
1807                         (void) ip_mc_leave_src(sk, iml, in_dev);
1808
1809                         *imlp = iml->next;
1810
1811                         ip_mc_dec_group(in_dev, group);
1812                         rtnl_unlock();
1813                         sock_kfree_s(sk, iml, sizeof(*iml));
1814                         return 0;
1815                 }
1816         }
1817         rtnl_unlock();
1818         return -EADDRNOTAVAIL;
1819 }
1820
1821 int ip_mc_source(int add, int omode, struct sock *sk, struct
1822         ip_mreq_source *mreqs, int ifindex)
1823 {
1824         int err;
1825         struct ip_mreqn imr;
1826         u32 addr = mreqs->imr_multiaddr;
1827         struct ip_mc_socklist *pmc;
1828         struct in_device *in_dev = NULL;
1829         struct inet_sock *inet = inet_sk(sk);
1830         struct ip_sf_socklist *psl;
1831         int leavegroup = 0;
1832         int i, j, rv;
1833
1834         if (!MULTICAST(addr))
1835                 return -EINVAL;
1836
1837         rtnl_lock();
1838
1839         imr.imr_multiaddr.s_addr = mreqs->imr_multiaddr;
1840         imr.imr_address.s_addr = mreqs->imr_interface;
1841         imr.imr_ifindex = ifindex;
1842         in_dev = ip_mc_find_dev(&imr);
1843
1844         if (!in_dev) {
1845                 err = -ENODEV;
1846                 goto done;
1847         }
1848         err = -EADDRNOTAVAIL;
1849
1850         for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
1851                 if (pmc->multi.imr_multiaddr.s_addr == imr.imr_multiaddr.s_addr
1852                     && pmc->multi.imr_ifindex == imr.imr_ifindex)
1853                         break;
1854         }
1855         if (!pmc) {             /* must have a prior join */
1856                 err = -EINVAL;
1857                 goto done;
1858         }
1859         /* if a source filter was set, must be the same mode as before */
1860         if (pmc->sflist) {
1861                 if (pmc->sfmode != omode) {
1862                         err = -EINVAL;
1863                         goto done;
1864                 }
1865         } else if (pmc->sfmode != omode) {
1866                 /* allow mode switches for empty-set filters */
1867                 ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, NULL, 0);
1868                 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0, 
1869                         NULL, 0);
1870                 pmc->sfmode = omode;
1871         }
1872
1873         psl = pmc->sflist;
1874         if (!add) {
1875                 if (!psl)
1876                         goto done;      /* err = -EADDRNOTAVAIL */
1877                 rv = !0;
1878                 for (i=0; i<psl->sl_count; i++) {
1879                         rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
1880                                 sizeof(__u32));
1881                         if (rv == 0)
1882                                 break;
1883                 }
1884                 if (rv)         /* source not found */
1885                         goto done;      /* err = -EADDRNOTAVAIL */
1886
1887                 /* special case - (INCLUDE, empty) == LEAVE_GROUP */
1888                 if (psl->sl_count == 1 && omode == MCAST_INCLUDE) {
1889                         leavegroup = 1;
1890                         goto done;
1891                 }
1892
1893                 /* update the interface filter */
1894                 ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, omode, 1, 
1895                         &mreqs->imr_sourceaddr, 1);
1896
1897                 for (j=i+1; j<psl->sl_count; j++)
1898                         psl->sl_addr[j-1] = psl->sl_addr[j];
1899                 psl->sl_count--;
1900                 err = 0;
1901                 goto done;
1902         }
1903         /* else, add a new source to the filter */
1904
1905         if (psl && psl->sl_count >= sysctl_igmp_max_msf) {
1906                 err = -ENOBUFS;
1907                 goto done;
1908         }
1909         if (!psl || psl->sl_count == psl->sl_max) {
1910                 struct ip_sf_socklist *newpsl;
1911                 int count = IP_SFBLOCK;
1912
1913                 if (psl)
1914                         count += psl->sl_max;
1915                 newpsl = sock_kmalloc(sk, IP_SFLSIZE(count), GFP_KERNEL);
1916                 if (!newpsl) {
1917                         err = -ENOBUFS;
1918                         goto done;
1919                 }
1920                 newpsl->sl_max = count;
1921                 newpsl->sl_count = count - IP_SFBLOCK;
1922                 if (psl) {
1923                         for (i=0; i<psl->sl_count; i++)
1924                                 newpsl->sl_addr[i] = psl->sl_addr[i];
1925                         sock_kfree_s(sk, psl, IP_SFLSIZE(psl->sl_max));
1926                 }
1927                 pmc->sflist = psl = newpsl;
1928         }
1929         rv = 1; /* > 0 for insert logic below if sl_count is 0 */
1930         for (i=0; i<psl->sl_count; i++) {
1931                 rv = memcmp(&psl->sl_addr[i], &mreqs->imr_sourceaddr,
1932                         sizeof(__u32));
1933                 if (rv == 0)
1934                         break;
1935         }
1936         if (rv == 0)            /* address already there is an error */
1937                 goto done;
1938         for (j=psl->sl_count-1; j>=i; j--)
1939                 psl->sl_addr[j+1] = psl->sl_addr[j];
1940         psl->sl_addr[i] = mreqs->imr_sourceaddr;
1941         psl->sl_count++;
1942         err = 0;
1943         /* update the interface list */
1944         ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 1, 
1945                 &mreqs->imr_sourceaddr, 1);
1946 done:
1947         rtnl_unlock();
1948         if (leavegroup)
1949                 return ip_mc_leave_group(sk, &imr);
1950         return err;
1951 }
1952
1953 int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf, int ifindex)
1954 {
1955         int err = 0;
1956         struct ip_mreqn imr;
1957         u32 addr = msf->imsf_multiaddr;
1958         struct ip_mc_socklist *pmc;
1959         struct in_device *in_dev;
1960         struct inet_sock *inet = inet_sk(sk);
1961         struct ip_sf_socklist *newpsl, *psl;
1962         int leavegroup = 0;
1963
1964         if (!MULTICAST(addr))
1965                 return -EINVAL;
1966         if (msf->imsf_fmode != MCAST_INCLUDE &&
1967             msf->imsf_fmode != MCAST_EXCLUDE)
1968                 return -EINVAL;
1969
1970         rtnl_lock();
1971
1972         imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
1973         imr.imr_address.s_addr = msf->imsf_interface;
1974         imr.imr_ifindex = ifindex;
1975         in_dev = ip_mc_find_dev(&imr);
1976
1977         if (!in_dev) {
1978                 err = -ENODEV;
1979                 goto done;
1980         }
1981
1982         /* special case - (INCLUDE, empty) == LEAVE_GROUP */
1983         if (msf->imsf_fmode == MCAST_INCLUDE && msf->imsf_numsrc == 0) {
1984                 leavegroup = 1;
1985                 goto done;
1986         }
1987
1988         for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
1989                 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
1990                     pmc->multi.imr_ifindex == imr.imr_ifindex)
1991                         break;
1992         }
1993         if (!pmc) {             /* must have a prior join */
1994                 err = -EINVAL;
1995                 goto done;
1996         }
1997         if (msf->imsf_numsrc) {
1998                 newpsl = sock_kmalloc(sk, IP_SFLSIZE(msf->imsf_numsrc),
1999                                                            GFP_KERNEL);
2000                 if (!newpsl) {
2001                         err = -ENOBUFS;
2002                         goto done;
2003                 }
2004                 newpsl->sl_max = newpsl->sl_count = msf->imsf_numsrc;
2005                 memcpy(newpsl->sl_addr, msf->imsf_slist,
2006                         msf->imsf_numsrc * sizeof(msf->imsf_slist[0]));
2007                 err = ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2008                         msf->imsf_fmode, newpsl->sl_count, newpsl->sl_addr, 0);
2009                 if (err) {
2010                         sock_kfree_s(sk, newpsl, IP_SFLSIZE(newpsl->sl_max));
2011                         goto done;
2012                 }
2013         } else {
2014                 newpsl = NULL;
2015                 (void) ip_mc_add_src(in_dev, &msf->imsf_multiaddr,
2016                                      msf->imsf_fmode, 0, NULL, 0);
2017         }
2018         psl = pmc->sflist;
2019         if (psl) {
2020                 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2021                         psl->sl_count, psl->sl_addr, 0);
2022                 sock_kfree_s(sk, psl, IP_SFLSIZE(psl->sl_max));
2023         } else
2024                 (void) ip_mc_del_src(in_dev, &msf->imsf_multiaddr, pmc->sfmode,
2025                         0, NULL, 0);
2026         pmc->sflist = newpsl;
2027         pmc->sfmode = msf->imsf_fmode;
2028         err = 0;
2029 done:
2030         rtnl_unlock();
2031         if (leavegroup)
2032                 err = ip_mc_leave_group(sk, &imr);
2033         return err;
2034 }
2035
2036 int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
2037         struct ip_msfilter __user *optval, int __user *optlen)
2038 {
2039         int err, len, count, copycount;
2040         struct ip_mreqn imr;
2041         u32 addr = msf->imsf_multiaddr;
2042         struct ip_mc_socklist *pmc;
2043         struct in_device *in_dev;
2044         struct inet_sock *inet = inet_sk(sk);
2045         struct ip_sf_socklist *psl;
2046
2047         if (!MULTICAST(addr))
2048                 return -EINVAL;
2049
2050         rtnl_lock();
2051
2052         imr.imr_multiaddr.s_addr = msf->imsf_multiaddr;
2053         imr.imr_address.s_addr = msf->imsf_interface;
2054         imr.imr_ifindex = 0;
2055         in_dev = ip_mc_find_dev(&imr);
2056
2057         if (!in_dev) {
2058                 err = -ENODEV;
2059                 goto done;
2060         }
2061         err = -EADDRNOTAVAIL;
2062
2063         for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2064                 if (pmc->multi.imr_multiaddr.s_addr == msf->imsf_multiaddr &&
2065                     pmc->multi.imr_ifindex == imr.imr_ifindex)
2066                         break;
2067         }
2068         if (!pmc)               /* must have a prior join */
2069                 goto done;
2070         msf->imsf_fmode = pmc->sfmode;
2071         psl = pmc->sflist;
2072         rtnl_unlock();
2073         if (!psl) {
2074                 len = 0;
2075                 count = 0;
2076         } else {
2077                 count = psl->sl_count;
2078         }
2079         copycount = count < msf->imsf_numsrc ? count : msf->imsf_numsrc;
2080         len = copycount * sizeof(psl->sl_addr[0]);
2081         msf->imsf_numsrc = count;
2082         if (put_user(IP_MSFILTER_SIZE(copycount), optlen) ||
2083             copy_to_user(optval, msf, IP_MSFILTER_SIZE(0))) {
2084                 return -EFAULT;
2085         }
2086         if (len &&
2087             copy_to_user(&optval->imsf_slist[0], psl->sl_addr, len))
2088                 return -EFAULT;
2089         return 0;
2090 done:
2091         rtnl_unlock();
2092         return err;
2093 }
2094
2095 int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
2096         struct group_filter __user *optval, int __user *optlen)
2097 {
2098         int err, i, count, copycount;
2099         struct sockaddr_in *psin;
2100         u32 addr;
2101         struct ip_mc_socklist *pmc;
2102         struct inet_sock *inet = inet_sk(sk);
2103         struct ip_sf_socklist *psl;
2104
2105         psin = (struct sockaddr_in *)&gsf->gf_group;
2106         if (psin->sin_family != AF_INET)
2107                 return -EINVAL;
2108         addr = psin->sin_addr.s_addr;
2109         if (!MULTICAST(addr))
2110                 return -EINVAL;
2111
2112         rtnl_lock();
2113
2114         err = -EADDRNOTAVAIL;
2115
2116         for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2117                 if (pmc->multi.imr_multiaddr.s_addr == addr &&
2118                     pmc->multi.imr_ifindex == gsf->gf_interface)
2119                         break;
2120         }
2121         if (!pmc)               /* must have a prior join */
2122                 goto done;
2123         gsf->gf_fmode = pmc->sfmode;
2124         psl = pmc->sflist;
2125         rtnl_unlock();
2126         count = psl ? psl->sl_count : 0;
2127         copycount = count < gsf->gf_numsrc ? count : gsf->gf_numsrc;
2128         gsf->gf_numsrc = count;
2129         if (put_user(GROUP_FILTER_SIZE(copycount), optlen) ||
2130             copy_to_user(optval, gsf, GROUP_FILTER_SIZE(0))) {
2131                 return -EFAULT;
2132         }
2133         for (i=0; i<copycount; i++) {
2134                 struct sockaddr_in *psin;
2135                 struct sockaddr_storage ss;
2136
2137                 psin = (struct sockaddr_in *)&ss;
2138                 memset(&ss, 0, sizeof(ss));
2139                 psin->sin_family = AF_INET;
2140                 psin->sin_addr.s_addr = psl->sl_addr[i];
2141                 if (copy_to_user(&optval->gf_slist[i], &ss, sizeof(ss)))
2142                         return -EFAULT;
2143         }
2144         return 0;
2145 done:
2146         rtnl_unlock();
2147         return err;
2148 }
2149
2150 /*
2151  * check if a multicast source filter allows delivery for a given <src,dst,intf>
2152  */
2153 int ip_mc_sf_allow(struct sock *sk, u32 loc_addr, u32 rmt_addr, int dif)
2154 {
2155         struct inet_sock *inet = inet_sk(sk);
2156         struct ip_mc_socklist *pmc;
2157         struct ip_sf_socklist *psl;
2158         int i;
2159
2160         if (!MULTICAST(loc_addr))
2161                 return 1;
2162
2163         for (pmc=inet->mc_list; pmc; pmc=pmc->next) {
2164                 if (pmc->multi.imr_multiaddr.s_addr == loc_addr &&
2165                     pmc->multi.imr_ifindex == dif)
2166                         break;
2167         }
2168         if (!pmc)
2169                 return 1;
2170         psl = pmc->sflist;
2171         if (!psl)
2172                 return pmc->sfmode == MCAST_EXCLUDE;
2173
2174         for (i=0; i<psl->sl_count; i++) {
2175                 if (psl->sl_addr[i] == rmt_addr)
2176                         break;
2177         }
2178         if (pmc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
2179                 return 0;
2180         if (pmc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
2181                 return 0;
2182         return 1;
2183 }
2184
2185 /*
2186  *      A socket is closing.
2187  */
2188
2189 void ip_mc_drop_socket(struct sock *sk)
2190 {
2191         struct inet_sock *inet = inet_sk(sk);
2192         struct ip_mc_socklist *iml;
2193
2194         if (inet->mc_list == NULL)
2195                 return;
2196
2197         rtnl_lock();
2198         while ((iml = inet->mc_list) != NULL) {
2199                 struct in_device *in_dev;
2200                 inet->mc_list = iml->next;
2201
2202                 if ((in_dev = inetdev_by_index(iml->multi.imr_ifindex)) != NULL) {
2203                         (void) ip_mc_leave_src(sk, iml, in_dev);
2204                         ip_mc_dec_group(in_dev, iml->multi.imr_multiaddr.s_addr);
2205                         in_dev_put(in_dev);
2206                 }
2207                 sock_kfree_s(sk, iml, sizeof(*iml));
2208
2209         }
2210         rtnl_unlock();
2211 }
2212
2213 int ip_check_mc(struct in_device *in_dev, u32 mc_addr, u32 src_addr, u16 proto)
2214 {
2215         struct ip_mc_list *im;
2216         struct ip_sf_list *psf;
2217         int rv = 0;
2218
2219         read_lock(&in_dev->mc_list_lock);
2220         for (im=in_dev->mc_list; im; im=im->next) {
2221                 if (im->multiaddr == mc_addr)
2222                         break;
2223         }
2224         if (im && proto == IPPROTO_IGMP) {
2225                 rv = 1;
2226         } else if (im) {
2227                 if (src_addr) {
2228                         for (psf=im->sources; psf; psf=psf->sf_next) {
2229                                 if (psf->sf_inaddr == src_addr)
2230                                         break;
2231                         }
2232                         if (psf)
2233                                 rv = psf->sf_count[MCAST_INCLUDE] ||
2234                                         psf->sf_count[MCAST_EXCLUDE] !=
2235                                         im->sfcount[MCAST_EXCLUDE];
2236                         else
2237                                 rv = im->sfcount[MCAST_EXCLUDE] != 0;
2238                 } else
2239                         rv = 1; /* unspecified source; tentatively allow */
2240         }
2241         read_unlock(&in_dev->mc_list_lock);
2242         return rv;
2243 }
2244
2245 #if defined(CONFIG_PROC_FS)
2246 struct igmp_mc_iter_state {
2247         struct net_device *dev;
2248         struct in_device *in_dev;
2249 };
2250
2251 #define igmp_mc_seq_private(seq)        ((struct igmp_mc_iter_state *)(seq)->private)
2252
2253 static inline struct ip_mc_list *igmp_mc_get_first(struct seq_file *seq)
2254 {
2255         struct ip_mc_list *im = NULL;
2256         struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2257
2258         for (state->dev = dev_base, state->in_dev = NULL;
2259              state->dev; 
2260              state->dev = state->dev->next) {
2261                 struct in_device *in_dev;
2262                 in_dev = in_dev_get(state->dev);
2263                 if (!in_dev)
2264                         continue;
2265                 read_lock(&in_dev->mc_list_lock);
2266                 im = in_dev->mc_list;
2267                 if (im) {
2268                         state->in_dev = in_dev;
2269                         break;
2270                 }
2271                 read_unlock(&in_dev->mc_list_lock);
2272                 in_dev_put(in_dev);
2273         }
2274         return im;
2275 }
2276
2277 static struct ip_mc_list *igmp_mc_get_next(struct seq_file *seq, struct ip_mc_list *im)
2278 {
2279         struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2280         im = im->next;
2281         while (!im) {
2282                 if (likely(state->in_dev != NULL)) {
2283                         read_unlock(&state->in_dev->mc_list_lock);
2284                         in_dev_put(state->in_dev);
2285                 }
2286                 state->dev = state->dev->next;
2287                 if (!state->dev) {
2288                         state->in_dev = NULL;
2289                         break;
2290                 }
2291                 state->in_dev = in_dev_get(state->dev);
2292                 if (!state->in_dev)
2293                         continue;
2294                 read_lock(&state->in_dev->mc_list_lock);
2295                 im = state->in_dev->mc_list;
2296         }
2297         return im;
2298 }
2299
2300 static struct ip_mc_list *igmp_mc_get_idx(struct seq_file *seq, loff_t pos)
2301 {
2302         struct ip_mc_list *im = igmp_mc_get_first(seq);
2303         if (im)
2304                 while (pos && (im = igmp_mc_get_next(seq, im)) != NULL)
2305                         --pos;
2306         return pos ? NULL : im;
2307 }
2308
2309 static void *igmp_mc_seq_start(struct seq_file *seq, loff_t *pos)
2310 {
2311         read_lock(&dev_base_lock);
2312         return *pos ? igmp_mc_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2313 }
2314
2315 static void *igmp_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2316 {
2317         struct ip_mc_list *im;
2318         if (v == SEQ_START_TOKEN)
2319                 im = igmp_mc_get_first(seq);
2320         else
2321                 im = igmp_mc_get_next(seq, v);
2322         ++*pos;
2323         return im;
2324 }
2325
2326 static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
2327 {
2328         struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2329         if (likely(state->in_dev != NULL)) {
2330                 read_unlock(&state->in_dev->mc_list_lock);
2331                 in_dev_put(state->in_dev);
2332                 state->in_dev = NULL;
2333         }
2334         state->dev = NULL;
2335         read_unlock(&dev_base_lock);
2336 }
2337
2338 static int igmp_mc_seq_show(struct seq_file *seq, void *v)
2339 {
2340         if (v == SEQ_START_TOKEN)
2341                 seq_puts(seq, 
2342                          "Idx\tDevice    : Count Querier\tGroup    Users Timer\tReporter\n");
2343         else {
2344                 struct ip_mc_list *im = (struct ip_mc_list *)v;
2345                 struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
2346                 char   *querier;
2347 #ifdef CONFIG_IP_MULTICAST
2348                 querier = IGMP_V1_SEEN(state->in_dev) ? "V1" :
2349                           IGMP_V2_SEEN(state->in_dev) ? "V2" :
2350                           "V3";
2351 #else
2352                 querier = "NONE";
2353 #endif
2354
2355                 if (state->in_dev->mc_list == im) {
2356                         seq_printf(seq, "%d\t%-10s: %5d %7s\n",
2357                                    state->dev->ifindex, state->dev->name, state->dev->mc_count, querier);
2358                 }
2359
2360                 seq_printf(seq,
2361                            "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n",
2362                            im->multiaddr, im->users,
2363                            im->tm_running, im->tm_running ?
2364                            jiffies_to_clock_t(im->timer.expires-jiffies) : 0,
2365                            im->reporter);
2366         }
2367         return 0;
2368 }
2369
2370 static struct seq_operations igmp_mc_seq_ops = {
2371         .start  =       igmp_mc_seq_start,
2372         .next   =       igmp_mc_seq_next,
2373         .stop   =       igmp_mc_seq_stop,
2374         .show   =       igmp_mc_seq_show,
2375 };
2376
2377 static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2378 {
2379         struct seq_file *seq;
2380         int rc = -ENOMEM;
2381         struct igmp_mc_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
2382
2383         if (!s)
2384                 goto out;
2385         rc = seq_open(file, &igmp_mc_seq_ops);
2386         if (rc)
2387                 goto out_kfree;
2388
2389         seq = file->private_data;
2390         seq->private = s;
2391 out:
2392         return rc;
2393 out_kfree:
2394         kfree(s);
2395         goto out;
2396 }
2397
2398 static struct file_operations igmp_mc_seq_fops = {
2399         .owner          =       THIS_MODULE,
2400         .open           =       igmp_mc_seq_open,
2401         .read           =       seq_read,
2402         .llseek         =       seq_lseek,
2403         .release        =       seq_release_private,
2404 };
2405
2406 struct igmp_mcf_iter_state {
2407         struct net_device *dev;
2408         struct in_device *idev;
2409         struct ip_mc_list *im;
2410 };
2411
2412 #define igmp_mcf_seq_private(seq)       ((struct igmp_mcf_iter_state *)(seq)->private)
2413
2414 static inline struct ip_sf_list *igmp_mcf_get_first(struct seq_file *seq)
2415 {
2416         struct ip_sf_list *psf = NULL;
2417         struct ip_mc_list *im = NULL;
2418         struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2419
2420         for (state->dev = dev_base, state->idev = NULL, state->im = NULL;
2421              state->dev; 
2422              state->dev = state->dev->next) {
2423                 struct in_device *idev;
2424                 idev = in_dev_get(state->dev);
2425                 if (unlikely(idev == NULL))
2426                         continue;
2427                 read_lock(&idev->mc_list_lock);
2428                 im = idev->mc_list;
2429                 if (likely(im != NULL)) {
2430                         spin_lock_bh(&im->lock);
2431                         psf = im->sources;
2432                         if (likely(psf != NULL)) {
2433                                 state->im = im;
2434                                 state->idev = idev;
2435                                 break;
2436                         }
2437                         spin_unlock_bh(&im->lock);
2438                 }
2439                 read_unlock(&idev->mc_list_lock);
2440                 in_dev_put(idev);
2441         }
2442         return psf;
2443 }
2444
2445 static struct ip_sf_list *igmp_mcf_get_next(struct seq_file *seq, struct ip_sf_list *psf)
2446 {
2447         struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2448
2449         psf = psf->sf_next;
2450         while (!psf) {
2451                 spin_unlock_bh(&state->im->lock);
2452                 state->im = state->im->next;
2453                 while (!state->im) {
2454                         if (likely(state->idev != NULL)) {
2455                                 read_unlock(&state->idev->mc_list_lock);
2456                                 in_dev_put(state->idev);
2457                         }
2458                         state->dev = state->dev->next;
2459                         if (!state->dev) {
2460                                 state->idev = NULL;
2461                                 goto out;
2462                         }
2463                         state->idev = in_dev_get(state->dev);
2464                         if (!state->idev)
2465                                 continue;
2466                         read_lock(&state->idev->mc_list_lock);
2467                         state->im = state->idev->mc_list;
2468                 }
2469                 if (!state->im)
2470                         break;
2471                 spin_lock_bh(&state->im->lock);
2472                 psf = state->im->sources;
2473         }
2474 out:
2475         return psf;
2476 }
2477
2478 static struct ip_sf_list *igmp_mcf_get_idx(struct seq_file *seq, loff_t pos)
2479 {
2480         struct ip_sf_list *psf = igmp_mcf_get_first(seq);
2481         if (psf)
2482                 while (pos && (psf = igmp_mcf_get_next(seq, psf)) != NULL)
2483                         --pos;
2484         return pos ? NULL : psf;
2485 }
2486
2487 static void *igmp_mcf_seq_start(struct seq_file *seq, loff_t *pos)
2488 {
2489         read_lock(&dev_base_lock);
2490         return *pos ? igmp_mcf_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2491 }
2492
2493 static void *igmp_mcf_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2494 {
2495         struct ip_sf_list *psf;
2496         if (v == SEQ_START_TOKEN)
2497                 psf = igmp_mcf_get_first(seq);
2498         else
2499                 psf = igmp_mcf_get_next(seq, v);
2500         ++*pos;
2501         return psf;
2502 }
2503
2504 static void igmp_mcf_seq_stop(struct seq_file *seq, void *v)
2505 {
2506         struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2507         if (likely(state->im != NULL)) {
2508                 spin_unlock_bh(&state->im->lock);
2509                 state->im = NULL;
2510         }
2511         if (likely(state->idev != NULL)) {
2512                 read_unlock(&state->idev->mc_list_lock);
2513                 in_dev_put(state->idev);
2514                 state->idev = NULL;
2515         }
2516         state->dev = NULL;
2517         read_unlock(&dev_base_lock);
2518 }
2519
2520 static int igmp_mcf_seq_show(struct seq_file *seq, void *v)
2521 {
2522         struct ip_sf_list *psf = (struct ip_sf_list *)v;
2523         struct igmp_mcf_iter_state *state = igmp_mcf_seq_private(seq);
2524
2525         if (v == SEQ_START_TOKEN) {
2526                 seq_printf(seq, 
2527                            "%3s %6s "
2528                            "%10s %10s %6s %6s\n", "Idx",
2529                            "Device", "MCA",
2530                            "SRC", "INC", "EXC");
2531         } else {
2532                 seq_printf(seq,
2533                            "%3d %6.6s 0x%08x "
2534                            "0x%08x %6lu %6lu\n", 
2535                            state->dev->ifindex, state->dev->name, 
2536                            ntohl(state->im->multiaddr),
2537                            ntohl(psf->sf_inaddr),
2538                            psf->sf_count[MCAST_INCLUDE],
2539                            psf->sf_count[MCAST_EXCLUDE]);
2540         }
2541         return 0;
2542 }
2543
2544 static struct seq_operations igmp_mcf_seq_ops = {
2545         .start  =       igmp_mcf_seq_start,
2546         .next   =       igmp_mcf_seq_next,
2547         .stop   =       igmp_mcf_seq_stop,
2548         .show   =       igmp_mcf_seq_show,
2549 };
2550
2551 static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2552 {
2553         struct seq_file *seq;
2554         int rc = -ENOMEM;
2555         struct igmp_mcf_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
2556
2557         if (!s)
2558                 goto out;
2559         rc = seq_open(file, &igmp_mcf_seq_ops);
2560         if (rc)
2561                 goto out_kfree;
2562
2563         seq = file->private_data;
2564         seq->private = s;
2565 out:
2566         return rc;
2567 out_kfree:
2568         kfree(s);
2569         goto out;
2570 }
2571
2572 static struct file_operations igmp_mcf_seq_fops = {
2573         .owner          =       THIS_MODULE,
2574         .open           =       igmp_mcf_seq_open,
2575         .read           =       seq_read,
2576         .llseek         =       seq_lseek,
2577         .release        =       seq_release_private,
2578 };
2579
2580 int __init igmp_mc_proc_init(void)
2581 {
2582         proc_net_fops_create("igmp", S_IRUGO, &igmp_mc_seq_fops);
2583         proc_net_fops_create("mcfilter", S_IRUGO, &igmp_mcf_seq_fops);
2584         return 0;
2585 }
2586 #endif
2587
2588 EXPORT_SYMBOL(ip_mc_dec_group);
2589 EXPORT_SYMBOL(ip_mc_inc_group);
2590 EXPORT_SYMBOL(ip_mc_join_group);