1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
|
/*
* Linux NET3: Internet Group Management Protocol [IGMP]
*
* This code implements the IGMP protocol as defined in RFC1112. There has
* been a further revision of this protocol since which is now supported.
*
* If you have trouble with this module be careful what gcc you have used,
* the older version didn't come out right using gcc 2.5.8, the newer one
* seems to fall out with gcc 2.6.2.
*
* Authors:
* Alan Cox <Alan.Cox@linux.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
* Fixes:
*
* Alan Cox : Added lots of __inline__ to optimise
* the memory usage of all the tiny little
* functions.
* Alan Cox : Dumped the header building experiment.
* Alan Cox : Minor tweaks ready for multicast routing
* and extended IGMP protocol.
* Alan Cox : Removed a load of inline directives. Gcc 2.5.8
* writes utterly bogus code otherwise (sigh)
* fixed IGMP loopback to behave in the manner
* desired by mrouted, fixed the fact it has been
* broken since 1.3.6 and cleaned up a few minor
* points.
*
* Chih-Jen Chang : Tried to revise IGMP to Version 2
* Tsu-Sheng Tsao E-mail: chihjenc@scf.usc.edu and tsusheng@scf.usc.edu
* The enhancements are mainly based on Steve Deering's
* ipmulti-3.5 source code.
* Chih-Jen Chang : Added the igmp_get_mrouter_info and
* Tsu-Sheng Tsao igmp_set_mrouter_info to keep track of
* the mrouted version on that device.
* Chih-Jen Chang : Added the max_resp_time parameter to
* Tsu-Sheng Tsao igmp_heard_query(). Using this parameter
* to identify the multicast router version
* and do what the IGMP version 2 specified.
* Chih-Jen Chang : Added a timer to revert to IGMP V2 router
* Tsu-Sheng Tsao if the specified time expired.
* Alan Cox : Stop IGMP from 0.0.0.0 being accepted.
* Alan Cox : Use GFP_ATOMIC in the right places.
* Christian Daudt : igmp timer wasn't set for local group
* memberships but was being deleted,
* which caused a "del_timer() called
* from %p with timer not initialized\n"
* message (960131).
* Christian Daudt : removed del_timer from
* igmp_timer_expire function (960205).
* Christian Daudt : igmp_heard_report now only calls
* igmp_timer_expire if tm->running is
* true (960216).
* Malcolm Beattie : ttl comparison wrong in igmp_rcv made
* igmp_heard_query never trigger. Expiry
* miscalculation fixed in igmp_heard_query
* and random() made to return unsigned to
* prevent negative expiry times.
* Alexey Kuznetsov: Wrong group leaving behaviour, backport
* fix from pending 2.1.x patches.
* Alan Cox: Forget to enable FDDI support earlier.
* Alexey Kuznetsov: Fixed leaving groups on device down.
*/
#include <asm/uaccess.h>
#include <asm/system.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <net/ip.h>
#include <net/protocol.h>
#include <net/route.h>
#include <linux/skbuff.h>
#include <net/sock.h>
#include <linux/igmp.h>
#include <net/checksum.h>
int sysctl_igmp_max_host_report_delay = IGMP_MAX_HOST_REPORT_DELAY;
int sysctl_igmp_timer_scale = IGMP_TIMER_SCALE;
int sysctl_igmp_age_threshold = IGMP_AGE_THRESHOLD;
/*
* If time expired, change the router type to IGMP_NEW_ROUTER.
*/
static void ip_router_timer_expire(unsigned long data)
{
struct ip_router_info *i=(struct ip_router_info *)data;
del_timer(&i->timer);
i->type=IGMP_NEW_ROUTER; /* Revert to new multicast router */
i->time=0;
}
/*
* Multicast router info manager
*/
struct ip_router_info *ip_router_info_head=(struct ip_router_info *)0;
/*
* Get the multicast router info on that device
*/
static struct ip_router_info *igmp_get_mrouter_info(struct device *dev)
{
register struct ip_router_info *i;
for(i=ip_router_info_head;i!=NULL;i=i->next)
{
if (i->dev == dev)
{
return i;
}
}
/*
* Not found. Create a new entry. The default is IGMP V2 router
*/
i=(struct ip_router_info *)kmalloc(sizeof(*i), GFP_ATOMIC);
if(i==NULL)
return NULL;
i->dev = dev;
i->type = IGMP_NEW_ROUTER;
i->time = sysctl_igmp_age_threshold;
i->next = ip_router_info_head;
ip_router_info_head = i;
init_timer(&i->timer);
i->timer.data=(unsigned long)i;
i->timer.function=&ip_router_timer_expire;
return i;
}
/*
* Set the multicast router info on that device
*/
static struct ip_router_info *igmp_set_mrouter_info(struct device *dev,int type,int time)
{
register struct ip_router_info *i;
for(i=ip_router_info_head;i!=NULL;i=i->next)
{
if (i->dev == dev)
{
if(i->type==IGMP_OLD_ROUTER)
{
del_timer(&i->timer);
}
i->type = type;
i->time = time;
if(i->type==IGMP_OLD_ROUTER)
{
i->timer.expires=jiffies+i->time*HZ;
add_timer(&i->timer);
}
return i;
}
}
/*
* Not found. Create a new entry.
*/
i=(struct ip_router_info *)kmalloc(sizeof(*i), GFP_ATOMIC);
if(i==NULL)
return NULL;
i->dev = dev;
i->type = type;
i->time = time;
i->next = ip_router_info_head;
ip_router_info_head = i;
init_timer(&i->timer);
i->timer.data=(unsigned long)i;
i->timer.function=&ip_router_timer_expire;
if(i->type==IGMP_OLD_ROUTER)
{
i->timer.expires=jiffies+i->time*HZ;
add_timer(&i->timer);
}
return i;
}
/*
* Timer management
*/
static void igmp_stop_timer(struct ip_mc_list *im)
{
if (im->tm_running)
{
del_timer(&im->timer);
im->tm_running=0;
}
else
printk(KERN_DEBUG "igmp_stop_timer() called with timer not running by %p\n",__builtin_return_address(0));
}
extern __inline__ unsigned int random(void)
{
static unsigned long seed=152L;
seed=seed*69069L+1;
return seed^jiffies;
}
/*
* Inlined as it's only called once.
*/
static void igmp_start_timer(struct ip_mc_list *im,unsigned char max_resp_time)
{
int tv;
if(im->tm_running)
return;
tv=random()%(max_resp_time*HZ/sysctl_igmp_timer_scale); /* Pick a number any number 8) */
im->timer.expires=jiffies+tv;
im->tm_running=1;
add_timer(&im->timer);
}
/*
* Send an IGMP report.
*/
#define IGMP_SIZE (sizeof(struct igmphdr)+sizeof(struct iphdr)+4)
static void igmp_send_report(struct device *dev, u32 group, int type)
{
struct sk_buff *skb;
struct iphdr *iph;
struct igmphdr *ih;
struct rtable *rt;
if (ip_route_output(&rt, group, 0, 0, dev))
return;
skb=alloc_skb(IGMP_SIZE+dev->hard_header_len+15, GFP_ATOMIC);
if (skb == NULL) {
ip_rt_put(rt);
return;
}
skb->dst = &rt->u.dst;
skb_reserve(skb, (dev->hard_header_len+15)&~15);
ip_ll_header(skb);
skb->nh.iph = iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr)+4);
iph->version = 4;
iph->ihl = (sizeof(struct iphdr)+4)>>2;
iph->tos = 0;
iph->frag_off = 0;
iph->ttl = 1;
iph->daddr = group;
iph->saddr = rt->rt_src;
iph->protocol = IPPROTO_IGMP;
iph->tot_len = htons(IGMP_SIZE);
iph->id = htons(ip_id_count++);
((u8*)&iph[1])[0] = IPOPT_RA;
((u8*)&iph[1])[1] = 4;
((u8*)&iph[1])[2] = 0;
((u8*)&iph[1])[3] = 0;
ip_send_check(iph);
ih = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr));
ih->type=type;
ih->code=0;
ih->csum=0;
ih->group=group;
ih->csum=ip_compute_csum((void *)ih, sizeof(struct igmphdr));
skb->dst->output(skb);
}
static void igmp_timer_expire(unsigned long data)
{
struct ip_mc_list *im=(struct ip_mc_list *)data;
struct ip_router_info *r;
im->tm_running=0;
r=igmp_get_mrouter_info(im->interface);
if(r==NULL)
return;
if(r->type==IGMP_NEW_ROUTER)
igmp_send_report(im->interface, im->multiaddr, IGMP_HOST_NEW_MEMBERSHIP_REPORT);
else
igmp_send_report(im->interface, im->multiaddr, IGMP_HOST_MEMBERSHIP_REPORT);
im->reporter = 1;
}
static void igmp_init_timer(struct ip_mc_list *im)
{
im->tm_running=0;
init_timer(&im->timer);
im->timer.data=(unsigned long)im;
im->timer.function=&igmp_timer_expire;
}
static void igmp_heard_report(struct device *dev, u32 group, u32 source)
{
struct ip_mc_list *im;
/* Timers are only set for non-local groups */
if (LOCAL_MCAST(group))
return;
for (im=dev->ip_mc_list; im!=NULL; im=im->next) {
if (im->multiaddr == group) {
if (im->tm_running)
igmp_stop_timer(im);
if (source != dev->pa_addr)
im->reporter = 0;
return;
}
}
}
static void igmp_heard_query(struct device *dev, unsigned char max_resp_time,
u32 group)
{
struct ip_mc_list *im;
int mrouter_type;
/*
* The max_resp_time is in units of 1/10 second.
*/
if(max_resp_time>0) {
mrouter_type=IGMP_NEW_ROUTER;
if (igmp_set_mrouter_info(dev,mrouter_type,0)==NULL)
return;
/*
* - Start the timers in all of our membership records
* that the query applies to for the interface on
* which the query arrived excl. those that belong
* to a "local" group (224.0.0.X)
* - For timers already running check if they need to
* be reset.
* - Use the igmp->igmp_code field as the maximum
* delay possible
*/
for(im=dev->ip_mc_list;im!=NULL;im=im->next) {
if (group && group != im->multiaddr)
continue;
if(im->tm_running) {
if(im->timer.expires>jiffies+max_resp_time*HZ/sysctl_igmp_timer_scale) {
igmp_stop_timer(im);
igmp_start_timer(im,max_resp_time);
}
} else if (!LOCAL_MCAST(im->multiaddr))
igmp_start_timer(im,max_resp_time);
}
} else {
mrouter_type=IGMP_OLD_ROUTER;
max_resp_time=sysctl_igmp_max_host_report_delay*sysctl_igmp_timer_scale;
if(igmp_set_mrouter_info(dev,mrouter_type,sysctl_igmp_age_threshold)==NULL)
return;
/*
* Start the timers in all of our membership records for
* the interface on which the query arrived, except those
* that are already running and those that belong to a
* "local" group (224.0.0.X).
*/
for(im=dev->ip_mc_list;im!=NULL;im=im->next) {
if(!im->tm_running && !LOCAL_MCAST(im->multiaddr))
igmp_start_timer(im,max_resp_time);
}
}
}
/*
* Map a multicast IP onto multicast MAC for type ethernet.
*/
extern __inline__ void ip_mc_map(unsigned long addr, char *buf)
{
addr=ntohl(addr);
buf[0]=0x01;
buf[1]=0x00;
buf[2]=0x5e;
buf[5]=addr&0xFF;
addr>>=8;
buf[4]=addr&0xFF;
addr>>=8;
buf[3]=addr&0x7F;
}
/*
* Add a filter to a device
*/
void ip_mc_filter_add(struct device *dev, unsigned long addr)
{
char buf[6];
ip_rt_multicast_event(dev);
if(!(dev->flags & IFF_MULTICAST))
return;
if(dev->type!=ARPHRD_ETHER && dev->type!=ARPHRD_FDDI)
return; /* Only do ethernet or FDDI for now */
ip_mc_map(addr,buf);
dev_mc_add(dev,buf,ETH_ALEN,0);
}
/*
* Remove a filter from a device
*/
void ip_mc_filter_del(struct device *dev, unsigned long addr)
{
char buf[6];
ip_rt_multicast_event(dev);
if(dev->type!=ARPHRD_ETHER && dev->type!=ARPHRD_FDDI)
return; /* Only do ethernet or FDDI for now */
ip_mc_map(addr,buf);
dev_mc_delete(dev,buf,ETH_ALEN,0);
}
extern __inline__ void igmp_group_dropped(struct ip_mc_list *im)
{
del_timer(&im->timer);
if (im->reporter)
igmp_send_report(im->interface, im->multiaddr, IGMP_HOST_LEAVE_MESSAGE);
ip_mc_filter_del(im->interface, im->multiaddr);
}
extern __inline__ void igmp_group_added(struct ip_mc_list *im)
{
struct ip_router_info *r;
igmp_init_timer(im);
ip_mc_filter_add(im->interface, im->multiaddr);
r=igmp_get_mrouter_info(im->interface);
if(r==NULL)
return;
if(r->type==IGMP_NEW_ROUTER)
igmp_send_report(im->interface, im->multiaddr, IGMP_HOST_NEW_MEMBERSHIP_REPORT);
else
igmp_send_report(im->interface, im->multiaddr, IGMP_HOST_MEMBERSHIP_REPORT);
}
int igmp_rcv(struct sk_buff *skb, unsigned short len)
{
/* This basically follows the spec line by line -- see RFC1112 */
struct igmphdr *ih = skb->h.igmph;
if (len < sizeof(struct igmphdr) || ip_compute_csum((void *)ih, len)) {
kfree_skb(skb, FREE_READ);
return 0;
}
switch (ih->type) {
case IGMP_HOST_MEMBERSHIP_QUERY:
igmp_heard_query(skb->dev, ih->code, ih->group);
break;
case IGMP_HOST_MEMBERSHIP_REPORT:
case IGMP_HOST_NEW_MEMBERSHIP_REPORT:
igmp_heard_report(skb->dev, ih->group, skb->nh.iph->saddr);
break;
case IGMP_DVMRP:
case IGMP_PIM:
case IGMP_TRACE:
case IGMP_HOST_LEAVE_MESSAGE:
case IGMP_MTRACE:
case IGMP_MTRACE_RESP:
break;
default:
NETDEBUG(printk(KERN_DEBUG "Unknown IGMP type=%d\n", ih->type));
}
kfree_skb(skb, FREE_READ);
return 0;
}
/*
* Multicast list managers
*/
/*
* A socket has joined a multicast group on device dev.
*/
static void ip_mc_inc_group(struct device *dev, unsigned long addr)
{
struct ip_mc_list *i;
for(i=dev->ip_mc_list;i!=NULL;i=i->next)
{
if(i->multiaddr==addr)
{
i->users++;
return;
}
}
i=(struct ip_mc_list *)kmalloc(sizeof(*i), GFP_KERNEL);
if(!i)
return;
i->users=1;
i->interface=dev;
i->multiaddr=addr;
i->next=dev->ip_mc_list;
igmp_group_added(i);
dev->ip_mc_list=i;
}
/*
* A socket has left a multicast group on device dev
*/
static void ip_mc_dec_group(struct device *dev, unsigned long addr)
{
struct ip_mc_list **i;
for(i=&(dev->ip_mc_list);(*i)!=NULL;i=&(*i)->next)
{
if((*i)->multiaddr==addr)
{
if(--((*i)->users) == 0)
{
struct ip_mc_list *tmp= *i;
igmp_group_dropped(tmp);
*i=(*i)->next;
kfree_s(tmp,sizeof(*tmp));
}
return;
}
}
}
/*
* Device going down: Clean up.
*/
void ip_mc_drop_device(struct device *dev)
{
struct ip_mc_list *i;
struct ip_mc_list *j;
start_bh_atomic();
for(i=dev->ip_mc_list;i!=NULL;i=j)
{
j=i->next;
if(i->tm_running)
del_timer(&i->timer);
kfree_s(i,sizeof(*i));
}
dev->ip_mc_list=NULL;
end_bh_atomic();
}
/*
* Device going up. Make sure it is in all hosts
*/
void ip_mc_allhost(struct device *dev)
{
struct ip_mc_list *i;
for(i=dev->ip_mc_list;i!=NULL;i=i->next)
if(i->multiaddr==IGMP_ALL_HOSTS)
return;
i=(struct ip_mc_list *)kmalloc(sizeof(*i), GFP_KERNEL);
if(!i)
return;
i->users=1;
i->interface=dev;
i->multiaddr=IGMP_ALL_HOSTS;
i->tm_running=0;
i->next=dev->ip_mc_list;
dev->ip_mc_list=i;
ip_mc_filter_add(i->interface, i->multiaddr);
}
/*
* Join a socket to a group
*/
int ip_mc_join_group(struct sock *sk , struct device *dev, unsigned long addr)
{
int unused= -1;
int i;
if(!MULTICAST(addr))
return -EINVAL;
if(sk->ip_mc_list==NULL)
{
if((sk->ip_mc_list=(struct ip_mc_socklist *)kmalloc(sizeof(*sk->ip_mc_list), GFP_KERNEL))==NULL)
return -ENOMEM;
memset(sk->ip_mc_list,'\0',sizeof(*sk->ip_mc_list));
}
for(i=0;i<IP_MAX_MEMBERSHIPS;i++)
{
if(sk->ip_mc_list->multiaddr[i]==addr && sk->ip_mc_list->multidev[i]==dev)
return -EADDRINUSE;
if(sk->ip_mc_list->multidev[i]==NULL)
unused=i;
}
if(unused==-1)
return -ENOBUFS;
sk->ip_mc_list->multiaddr[unused]=addr;
sk->ip_mc_list->multidev[unused]=dev;
ip_mc_inc_group(dev,addr);
return 0;
}
/*
* Ask a socket to leave a group.
*/
int ip_mc_leave_group(struct sock *sk, struct device *dev, unsigned long addr)
{
int i;
if(!MULTICAST(addr))
return -EINVAL;
if(sk->ip_mc_list==NULL)
return -EADDRNOTAVAIL;
for(i=0;i<IP_MAX_MEMBERSHIPS;i++)
{
if(sk->ip_mc_list->multiaddr[i]==addr && sk->ip_mc_list->multidev[i]==dev)
{
sk->ip_mc_list->multidev[i]=NULL;
ip_mc_dec_group(dev,addr);
return 0;
}
}
return -EADDRNOTAVAIL;
}
/*
* A socket is closing.
*/
void ip_mc_drop_socket(struct sock *sk)
{
int i;
if(sk->ip_mc_list==NULL)
return;
for(i=0;i<IP_MAX_MEMBERSHIPS;i++)
{
if(sk->ip_mc_list->multidev[i])
{
ip_mc_dec_group(sk->ip_mc_list->multidev[i], sk->ip_mc_list->multiaddr[i]);
sk->ip_mc_list->multidev[i]=NULL;
}
}
kfree_s(sk->ip_mc_list,sizeof(*sk->ip_mc_list));
sk->ip_mc_list=NULL;
}
/*
* Write an multicast group list table for the IGMP daemon to
* read.
*/
int ip_mc_procinfo(char *buffer, char **start, off_t offset, int length, int dummy)
{
off_t pos=0, begin=0;
struct ip_mc_list *im;
unsigned long flags;
int len=0;
struct device *dev;
len=sprintf(buffer,"Device : Count\tGroup Users Timer\tReporter\n");
save_flags(flags);
cli();
for(dev = dev_base; dev; dev = dev->next)
{
if(dev->flags&IFF_UP)
{
len+=sprintf(buffer+len,"%-10s: %5d\n",
dev->name, dev->mc_count);
for(im = dev->ip_mc_list; im; im = im->next)
{
len+=sprintf(buffer+len,
"\t\t\t%08lX %5d %d:%08lX\t%d\n",
im->multiaddr, im->users,
im->tm_running, im->timer.expires-jiffies, im->reporter);
pos=begin+len;
if(pos<offset)
{
len=0;
begin=pos;
}
if(pos>offset+length)
break;
}
}
}
restore_flags(flags);
*start=buffer+(offset-begin);
len-=(offset-begin);
if(len>length)
len=length;
return len;
}
|