blob: 036598835c636ee6de233cbc09f235ea3f4ebe53 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IP multicast routing support for mrouted 3.6/3.8
3 *
4 * (c) 1995 Alan Cox, <alan@redhat.com>
5 * Linux Consultancy and Custom Driver Development
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * Version: $Id: ipmr.c,v 1.65 2001/10/31 21:55:54 davem Exp $
13 *
14 * Fixes:
15 * Michael Chastain : Incorrect size of copying.
16 * Alan Cox : Added the cache manager code
17 * Alan Cox : Fixed the clone/copy bug and device race.
18 * Mike McLagan : Routing by source
19 * Malcolm Beattie : Buffer handling fixes.
20 * Alexey Kuznetsov : Double buffer free and other fixes.
21 * SVR Anand : Fixed several multicast bugs and problems.
22 * Alexey Kuznetsov : Status, optimisations and more.
23 * Brad Parker : Better behaviour on mrouted upcall
24 * overflow.
25 * Carlos Picoto : PIMv1 Support
26 * Pavlin Ivanov Radoslavov: PIMv2 Registers must checksum only PIM header
27 * Relax this requrement to work with older peers.
28 *
29 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/system.h>
32#include <asm/uaccess.h>
33#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080034#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
36#include <linux/timer.h>
37#include <linux/mm.h>
38#include <linux/kernel.h>
39#include <linux/fcntl.h>
40#include <linux/stat.h>
41#include <linux/socket.h>
42#include <linux/in.h>
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <linux/inetdevice.h>
46#include <linux/igmp.h>
47#include <linux/proc_fs.h>
48#include <linux/seq_file.h>
49#include <linux/mroute.h>
50#include <linux/init.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080051#include <linux/if_ether.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020052#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <net/ip.h>
54#include <net/protocol.h>
55#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020056#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <net/sock.h>
58#include <net/icmp.h>
59#include <net/udp.h>
60#include <net/raw.h>
61#include <linux/notifier.h>
62#include <linux/if_arp.h>
63#include <linux/netfilter_ipv4.h>
64#include <net/ipip.h>
65#include <net/checksum.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070066#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
69#define CONFIG_IP_PIMSM 1
70#endif
71
72static struct sock *mroute_socket;
73
74
75/* Big lock, protecting vif table, mrt cache and mroute socket state.
76 Note that the changes are semaphored via rtnl_lock.
77 */
78
79static DEFINE_RWLOCK(mrt_lock);
80
81/*
82 * Multicast router control variables
83 */
84
85static struct vif_device vif_table[MAXVIFS]; /* Devices */
86static int maxvif;
87
88#define VIF_EXISTS(idx) (vif_table[idx].dev != NULL)
89
90static int mroute_do_assert; /* Set in PIM assert */
91static int mroute_do_pim;
92
93static struct mfc_cache *mfc_cache_array[MFC_LINES]; /* Forwarding cache */
94
95static struct mfc_cache *mfc_unres_queue; /* Queue of unresolved entries */
96static atomic_t cache_resolve_queue_len; /* Size of unresolved */
97
98/* Special spinlock for queue of unresolved entries */
99static DEFINE_SPINLOCK(mfc_unres_lock);
100
101/* We return to original Alan's scheme. Hash table of resolved
102 entries is changed only in process context and protected
103 with weak lock mrt_lock. Queue of unresolved entries is protected
104 with strong spinlock mfc_unres_lock.
105
106 In this case data path is free of exclusive locks at all.
107 */
108
Christoph Lametere18b8902006-12-06 20:33:20 -0800109static struct kmem_cache *mrt_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static int ip_mr_forward(struct sk_buff *skb, struct mfc_cache *cache, int local);
112static int ipmr_cache_report(struct sk_buff *pkt, vifi_t vifi, int assert);
113static int ipmr_fill_mroute(struct sk_buff *skb, struct mfc_cache *c, struct rtmsg *rtm);
114
115#ifdef CONFIG_IP_PIMSM_V2
116static struct net_protocol pim_protocol;
117#endif
118
119static struct timer_list ipmr_expire_timer;
120
121/* Service routines creating virtual interfaces: DVMRP tunnels and PIMREG */
122
123static
124struct net_device *ipmr_new_tunnel(struct vifctl *v)
125{
126 struct net_device *dev;
127
128 dev = __dev_get_by_name("tunl0");
129
130 if (dev) {
131 int err;
132 struct ifreq ifr;
133 mm_segment_t oldfs;
134 struct ip_tunnel_parm p;
135 struct in_device *in_dev;
136
137 memset(&p, 0, sizeof(p));
138 p.iph.daddr = v->vifc_rmt_addr.s_addr;
139 p.iph.saddr = v->vifc_lcl_addr.s_addr;
140 p.iph.version = 4;
141 p.iph.ihl = 5;
142 p.iph.protocol = IPPROTO_IPIP;
143 sprintf(p.name, "dvmrp%d", v->vifc_vifi);
144 ifr.ifr_ifru.ifru_data = (void*)&p;
145
146 oldfs = get_fs(); set_fs(KERNEL_DS);
147 err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
148 set_fs(oldfs);
149
150 dev = NULL;
151
152 if (err == 0 && (dev = __dev_get_by_name(p.name)) != NULL) {
153 dev->flags |= IFF_MULTICAST;
154
Herbert Xue5ed6392005-10-03 14:35:55 -0700155 in_dev = __in_dev_get_rtnl(dev);
Herbert Xu71e27da2007-06-04 23:36:06 -0700156 if (in_dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto failure;
Herbert Xu71e27da2007-06-04 23:36:06 -0700158
159 ipv4_devconf_setall(in_dev);
160 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (dev_open(dev))
163 goto failure;
164 }
165 }
166 return dev;
167
168failure:
169 /* allow the register to be completed before unregistering. */
170 rtnl_unlock();
171 rtnl_lock();
172
173 unregister_netdevice(dev);
174 return NULL;
175}
176
177#ifdef CONFIG_IP_PIMSM
178
179static int reg_vif_num = -1;
180
181static int reg_vif_xmit(struct sk_buff *skb, struct net_device *dev)
182{
183 read_lock(&mrt_lock);
Patrick McHardy2941a482006-01-08 22:05:26 -0800184 ((struct net_device_stats*)netdev_priv(dev))->tx_bytes += skb->len;
185 ((struct net_device_stats*)netdev_priv(dev))->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 ipmr_cache_report(skb, reg_vif_num, IGMPMSG_WHOLEPKT);
187 read_unlock(&mrt_lock);
188 kfree_skb(skb);
189 return 0;
190}
191
192static struct net_device_stats *reg_vif_get_stats(struct net_device *dev)
193{
Patrick McHardy2941a482006-01-08 22:05:26 -0800194 return (struct net_device_stats*)netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197static void reg_vif_setup(struct net_device *dev)
198{
199 dev->type = ARPHRD_PIMREG;
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800200 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dev->flags = IFF_NOARP;
202 dev->hard_start_xmit = reg_vif_xmit;
203 dev->get_stats = reg_vif_get_stats;
204 dev->destructor = free_netdev;
205}
206
207static struct net_device *ipmr_reg_vif(void)
208{
209 struct net_device *dev;
210 struct in_device *in_dev;
211
212 dev = alloc_netdev(sizeof(struct net_device_stats), "pimreg",
213 reg_vif_setup);
214
215 if (dev == NULL)
216 return NULL;
217
218 if (register_netdevice(dev)) {
219 free_netdev(dev);
220 return NULL;
221 }
222 dev->iflink = 0;
223
Herbert Xu71e27da2007-06-04 23:36:06 -0700224 rcu_read_lock();
225 if ((in_dev = __in_dev_get_rcu(dev)) == NULL) {
226 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 goto failure;
Herbert Xu71e27da2007-06-04 23:36:06 -0700228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Herbert Xu71e27da2007-06-04 23:36:06 -0700230 ipv4_devconf_setall(in_dev);
231 IPV4_DEVCONF(in_dev->cnf, RP_FILTER) = 0;
232 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (dev_open(dev))
235 goto failure;
236
237 return dev;
238
239failure:
240 /* allow the register to be completed before unregistering. */
241 rtnl_unlock();
242 rtnl_lock();
243
244 unregister_netdevice(dev);
245 return NULL;
246}
247#endif
248
249/*
250 * Delete a VIF entry
251 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int vif_delete(int vifi)
254{
255 struct vif_device *v;
256 struct net_device *dev;
257 struct in_device *in_dev;
258
259 if (vifi < 0 || vifi >= maxvif)
260 return -EADDRNOTAVAIL;
261
262 v = &vif_table[vifi];
263
264 write_lock_bh(&mrt_lock);
265 dev = v->dev;
266 v->dev = NULL;
267
268 if (!dev) {
269 write_unlock_bh(&mrt_lock);
270 return -EADDRNOTAVAIL;
271 }
272
273#ifdef CONFIG_IP_PIMSM
274 if (vifi == reg_vif_num)
275 reg_vif_num = -1;
276#endif
277
278 if (vifi+1 == maxvif) {
279 int tmp;
280 for (tmp=vifi-1; tmp>=0; tmp--) {
281 if (VIF_EXISTS(tmp))
282 break;
283 }
284 maxvif = tmp+1;
285 }
286
287 write_unlock_bh(&mrt_lock);
288
289 dev_set_allmulti(dev, -1);
290
Herbert Xue5ed6392005-10-03 14:35:55 -0700291 if ((in_dev = __in_dev_get_rtnl(dev)) != NULL) {
Herbert Xu42f811b2007-06-04 23:34:44 -0700292 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 ip_rt_multicast_event(in_dev);
294 }
295
296 if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER))
297 unregister_netdevice(dev);
298
299 dev_put(dev);
300 return 0;
301}
302
303/* Destroy an unresolved cache entry, killing queued skbs
304 and reporting error to netlink readers.
305 */
306
307static void ipmr_destroy_unres(struct mfc_cache *c)
308{
309 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700310 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 atomic_dec(&cache_resolve_queue_len);
313
Stephen Hemminger132adf52007-03-08 20:44:43 -0800314 while ((skb=skb_dequeue(&c->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700315 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
317 nlh->nlmsg_type = NLMSG_ERROR;
318 nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
319 skb_trim(skb, nlh->nlmsg_len);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700320 e = NLMSG_DATA(nlh);
321 e->error = -ETIMEDOUT;
322 memset(&e->msg, 0, sizeof(e->msg));
Thomas Graf2942e902006-08-15 00:30:25 -0700323
324 rtnl_unicast(skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 } else
326 kfree_skb(skb);
327 }
328
329 kmem_cache_free(mrt_cachep, c);
330}
331
332
333/* Single timer process for all the unresolved queue. */
334
335static void ipmr_expire_process(unsigned long dummy)
336{
337 unsigned long now;
338 unsigned long expires;
339 struct mfc_cache *c, **cp;
340
341 if (!spin_trylock(&mfc_unres_lock)) {
342 mod_timer(&ipmr_expire_timer, jiffies+HZ/10);
343 return;
344 }
345
346 if (atomic_read(&cache_resolve_queue_len) == 0)
347 goto out;
348
349 now = jiffies;
350 expires = 10*HZ;
351 cp = &mfc_unres_queue;
352
353 while ((c=*cp) != NULL) {
354 if (time_after(c->mfc_un.unres.expires, now)) {
355 unsigned long interval = c->mfc_un.unres.expires - now;
356 if (interval < expires)
357 expires = interval;
358 cp = &c->next;
359 continue;
360 }
361
362 *cp = c->next;
363
364 ipmr_destroy_unres(c);
365 }
366
367 if (atomic_read(&cache_resolve_queue_len))
368 mod_timer(&ipmr_expire_timer, jiffies + expires);
369
370out:
371 spin_unlock(&mfc_unres_lock);
372}
373
374/* Fill oifs list. It is called under write locked mrt_lock. */
375
Baruch Evend1b04c02005-07-30 17:41:59 -0700376static void ipmr_update_thresholds(struct mfc_cache *cache, unsigned char *ttls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 int vifi;
379
380 cache->mfc_un.res.minvif = MAXVIFS;
381 cache->mfc_un.res.maxvif = 0;
382 memset(cache->mfc_un.res.ttls, 255, MAXVIFS);
383
384 for (vifi=0; vifi<maxvif; vifi++) {
385 if (VIF_EXISTS(vifi) && ttls[vifi] && ttls[vifi] < 255) {
386 cache->mfc_un.res.ttls[vifi] = ttls[vifi];
387 if (cache->mfc_un.res.minvif > vifi)
388 cache->mfc_un.res.minvif = vifi;
389 if (cache->mfc_un.res.maxvif <= vifi)
390 cache->mfc_un.res.maxvif = vifi + 1;
391 }
392 }
393}
394
395static int vif_add(struct vifctl *vifc, int mrtsock)
396{
397 int vifi = vifc->vifc_vifi;
398 struct vif_device *v = &vif_table[vifi];
399 struct net_device *dev;
400 struct in_device *in_dev;
401
402 /* Is vif busy ? */
403 if (VIF_EXISTS(vifi))
404 return -EADDRINUSE;
405
406 switch (vifc->vifc_flags) {
407#ifdef CONFIG_IP_PIMSM
408 case VIFF_REGISTER:
409 /*
410 * Special Purpose VIF in PIM
411 * All the packets will be sent to the daemon
412 */
413 if (reg_vif_num >= 0)
414 return -EADDRINUSE;
415 dev = ipmr_reg_vif();
416 if (!dev)
417 return -ENOBUFS;
418 break;
419#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900420 case VIFF_TUNNEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 dev = ipmr_new_tunnel(vifc);
422 if (!dev)
423 return -ENOBUFS;
424 break;
425 case 0:
Stephen Hemminger15333062006-03-20 22:32:28 -0800426 dev = ip_dev_find(vifc->vifc_lcl_addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (!dev)
428 return -EADDRNOTAVAIL;
Stephen Hemminger15333062006-03-20 22:32:28 -0800429 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
431 default:
432 return -EINVAL;
433 }
434
Herbert Xue5ed6392005-10-03 14:35:55 -0700435 if ((in_dev = __in_dev_get_rtnl(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return -EADDRNOTAVAIL;
Herbert Xu42f811b2007-06-04 23:34:44 -0700437 IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 dev_set_allmulti(dev, +1);
439 ip_rt_multicast_event(in_dev);
440
441 /*
442 * Fill in the VIF structures
443 */
444 v->rate_limit=vifc->vifc_rate_limit;
445 v->local=vifc->vifc_lcl_addr.s_addr;
446 v->remote=vifc->vifc_rmt_addr.s_addr;
447 v->flags=vifc->vifc_flags;
448 if (!mrtsock)
449 v->flags |= VIFF_STATIC;
450 v->threshold=vifc->vifc_threshold;
451 v->bytes_in = 0;
452 v->bytes_out = 0;
453 v->pkt_in = 0;
454 v->pkt_out = 0;
455 v->link = dev->ifindex;
456 if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER))
457 v->link = dev->iflink;
458
459 /* And finish update writing critical data */
460 write_lock_bh(&mrt_lock);
461 dev_hold(dev);
462 v->dev=dev;
463#ifdef CONFIG_IP_PIMSM
464 if (v->flags&VIFF_REGISTER)
465 reg_vif_num = vifi;
466#endif
467 if (vifi+1 > maxvif)
468 maxvif = vifi+1;
469 write_unlock_bh(&mrt_lock);
470 return 0;
471}
472
Al Viro114c7842006-09-27 18:39:29 -0700473static struct mfc_cache *ipmr_cache_find(__be32 origin, __be32 mcastgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 int line=MFC_HASH(mcastgrp,origin);
476 struct mfc_cache *c;
477
478 for (c=mfc_cache_array[line]; c; c = c->next) {
479 if (c->mfc_origin==origin && c->mfc_mcastgrp==mcastgrp)
480 break;
481 }
482 return c;
483}
484
485/*
486 * Allocate a multicast cache entry
487 */
488static struct mfc_cache *ipmr_cache_alloc(void)
489{
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800490 struct mfc_cache *c=kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
Stephen Hemminger132adf52007-03-08 20:44:43 -0800491 if (c==NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 c->mfc_un.res.minvif = MAXVIFS;
494 return c;
495}
496
497static struct mfc_cache *ipmr_cache_alloc_unres(void)
498{
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800499 struct mfc_cache *c=kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC);
Stephen Hemminger132adf52007-03-08 20:44:43 -0800500 if (c==NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 skb_queue_head_init(&c->mfc_un.unres.unresolved);
503 c->mfc_un.unres.expires = jiffies + 10*HZ;
504 return c;
505}
506
507/*
508 * A cache entry has gone into a resolved state from queued
509 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511static void ipmr_cache_resolve(struct mfc_cache *uc, struct mfc_cache *c)
512{
513 struct sk_buff *skb;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700514 struct nlmsgerr *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /*
517 * Play the pending entries through our router
518 */
519
Stephen Hemminger132adf52007-03-08 20:44:43 -0800520 while ((skb=__skb_dequeue(&uc->mfc_un.unres.unresolved))) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700521 if (ip_hdr(skb)->version == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
523
524 if (ipmr_fill_mroute(skb, c, NLMSG_DATA(nlh)) > 0) {
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700525 nlh->nlmsg_len = (skb_tail_pointer(skb) -
526 (u8 *)nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
528 nlh->nlmsg_type = NLMSG_ERROR;
529 nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
530 skb_trim(skb, nlh->nlmsg_len);
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700531 e = NLMSG_DATA(nlh);
532 e->error = -EMSGSIZE;
533 memset(&e->msg, 0, sizeof(e->msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Thomas Graf2942e902006-08-15 00:30:25 -0700535
536 rtnl_unicast(skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 } else
538 ip_mr_forward(skb, c, 0);
539 }
540}
541
542/*
543 * Bounce a cache query up to mrouted. We could use netlink for this but mrouted
544 * expects the following bizarre scheme.
545 *
546 * Called under mrt_lock.
547 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549static int ipmr_cache_report(struct sk_buff *pkt, vifi_t vifi, int assert)
550{
551 struct sk_buff *skb;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300552 const int ihl = ip_hdrlen(pkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct igmphdr *igmp;
554 struct igmpmsg *msg;
555 int ret;
556
557#ifdef CONFIG_IP_PIMSM
558 if (assert == IGMPMSG_WHOLEPKT)
559 skb = skb_realloc_headroom(pkt, sizeof(struct iphdr));
560 else
561#endif
562 skb = alloc_skb(128, GFP_ATOMIC);
563
Stephen Hemminger132adf52007-03-08 20:44:43 -0800564 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return -ENOBUFS;
566
567#ifdef CONFIG_IP_PIMSM
568 if (assert == IGMPMSG_WHOLEPKT) {
569 /* Ugly, but we have no choice with this interface.
570 Duplicate old header, fix ihl, length etc.
571 And all this only to mangle msg->im_msgtype and
572 to set msg->im_mbz to "mbz" :-)
573 */
Arnaldo Carvalho de Melo878c8142007-03-11 22:38:29 -0300574 skb_push(skb, sizeof(struct iphdr));
575 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300576 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo0272ffc2007-03-12 20:05:39 -0300577 msg = (struct igmpmsg *)skb_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700578 memcpy(msg, skb_network_header(pkt), sizeof(struct iphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 msg->im_msgtype = IGMPMSG_WHOLEPKT;
580 msg->im_mbz = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900581 msg->im_vif = reg_vif_num;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700582 ip_hdr(skb)->ihl = sizeof(struct iphdr) >> 2;
583 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(pkt)->tot_len) +
584 sizeof(struct iphdr));
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900585 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900587 {
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
590 * Copy the IP header
591 */
592
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700593 skb->network_header = skb->tail;
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -0300594 skb_put(skb, ihl);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300595 skb_copy_to_linear_data(skb, pkt->data, ihl);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700596 ip_hdr(skb)->protocol = 0; /* Flag to the kernel this is a route add */
597 msg = (struct igmpmsg *)skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 msg->im_vif = vifi;
599 skb->dst = dst_clone(pkt->dst);
600
601 /*
602 * Add our header
603 */
604
605 igmp=(struct igmphdr *)skb_put(skb,sizeof(struct igmphdr));
606 igmp->type =
607 msg->im_msgtype = assert;
608 igmp->code = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700609 ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700610 skb->transport_header = skb->network_header;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 if (mroute_socket == NULL) {
614 kfree_skb(skb);
615 return -EINVAL;
616 }
617
618 /*
619 * Deliver to mrouted
620 */
621 if ((ret=sock_queue_rcv_skb(mroute_socket,skb))<0) {
622 if (net_ratelimit())
623 printk(KERN_WARNING "mroute: pending queue full, dropping entries.\n");
624 kfree_skb(skb);
625 }
626
627 return ret;
628}
629
630/*
631 * Queue a packet for resolution. It gets locked cache entry!
632 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static int
635ipmr_cache_unresolved(vifi_t vifi, struct sk_buff *skb)
636{
637 int err;
638 struct mfc_cache *c;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700639 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 spin_lock_bh(&mfc_unres_lock);
642 for (c=mfc_unres_queue; c; c=c->next) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700643 if (c->mfc_mcastgrp == iph->daddr &&
644 c->mfc_origin == iph->saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 break;
646 }
647
648 if (c == NULL) {
649 /*
650 * Create a new entry if allowable
651 */
652
653 if (atomic_read(&cache_resolve_queue_len)>=10 ||
654 (c=ipmr_cache_alloc_unres())==NULL) {
655 spin_unlock_bh(&mfc_unres_lock);
656
657 kfree_skb(skb);
658 return -ENOBUFS;
659 }
660
661 /*
662 * Fill in the new cache entry
663 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700664 c->mfc_parent = -1;
665 c->mfc_origin = iph->saddr;
666 c->mfc_mcastgrp = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /*
669 * Reflect first query at mrouted.
670 */
671 if ((err = ipmr_cache_report(skb, vifi, IGMPMSG_NOCACHE))<0) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900672 /* If the report failed throw the cache entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 out - Brad Parker
674 */
675 spin_unlock_bh(&mfc_unres_lock);
676
677 kmem_cache_free(mrt_cachep, c);
678 kfree_skb(skb);
679 return err;
680 }
681
682 atomic_inc(&cache_resolve_queue_len);
683 c->next = mfc_unres_queue;
684 mfc_unres_queue = c;
685
686 mod_timer(&ipmr_expire_timer, c->mfc_un.unres.expires);
687 }
688
689 /*
690 * See if we can append the packet
691 */
692 if (c->mfc_un.unres.unresolved.qlen>3) {
693 kfree_skb(skb);
694 err = -ENOBUFS;
695 } else {
696 skb_queue_tail(&c->mfc_un.unres.unresolved,skb);
697 err = 0;
698 }
699
700 spin_unlock_bh(&mfc_unres_lock);
701 return err;
702}
703
704/*
705 * MFC cache manipulation by user space mroute daemon
706 */
707
708static int ipmr_mfc_delete(struct mfcctl *mfc)
709{
710 int line;
711 struct mfc_cache *c, **cp;
712
713 line=MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
714
715 for (cp=&mfc_cache_array[line]; (c=*cp) != NULL; cp = &c->next) {
716 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
717 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) {
718 write_lock_bh(&mrt_lock);
719 *cp = c->next;
720 write_unlock_bh(&mrt_lock);
721
722 kmem_cache_free(mrt_cachep, c);
723 return 0;
724 }
725 }
726 return -ENOENT;
727}
728
729static int ipmr_mfc_add(struct mfcctl *mfc, int mrtsock)
730{
731 int line;
732 struct mfc_cache *uc, *c, **cp;
733
734 line=MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
735
736 for (cp=&mfc_cache_array[line]; (c=*cp) != NULL; cp = &c->next) {
737 if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
738 c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr)
739 break;
740 }
741
742 if (c != NULL) {
743 write_lock_bh(&mrt_lock);
744 c->mfc_parent = mfc->mfcc_parent;
Baruch Evend1b04c02005-07-30 17:41:59 -0700745 ipmr_update_thresholds(c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!mrtsock)
747 c->mfc_flags |= MFC_STATIC;
748 write_unlock_bh(&mrt_lock);
749 return 0;
750 }
751
Stephen Hemminger132adf52007-03-08 20:44:43 -0800752 if (!MULTICAST(mfc->mfcc_mcastgrp.s_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return -EINVAL;
754
755 c=ipmr_cache_alloc();
756 if (c==NULL)
757 return -ENOMEM;
758
759 c->mfc_origin=mfc->mfcc_origin.s_addr;
760 c->mfc_mcastgrp=mfc->mfcc_mcastgrp.s_addr;
761 c->mfc_parent=mfc->mfcc_parent;
Baruch Evend1b04c02005-07-30 17:41:59 -0700762 ipmr_update_thresholds(c, mfc->mfcc_ttls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!mrtsock)
764 c->mfc_flags |= MFC_STATIC;
765
766 write_lock_bh(&mrt_lock);
767 c->next = mfc_cache_array[line];
768 mfc_cache_array[line] = c;
769 write_unlock_bh(&mrt_lock);
770
771 /*
772 * Check to see if we resolved a queued list. If so we
773 * need to send on the frames and tidy up.
774 */
775 spin_lock_bh(&mfc_unres_lock);
776 for (cp = &mfc_unres_queue; (uc=*cp) != NULL;
777 cp = &uc->next) {
778 if (uc->mfc_origin == c->mfc_origin &&
779 uc->mfc_mcastgrp == c->mfc_mcastgrp) {
780 *cp = uc->next;
781 if (atomic_dec_and_test(&cache_resolve_queue_len))
782 del_timer(&ipmr_expire_timer);
783 break;
784 }
785 }
786 spin_unlock_bh(&mfc_unres_lock);
787
788 if (uc) {
789 ipmr_cache_resolve(uc, c);
790 kmem_cache_free(mrt_cachep, uc);
791 }
792 return 0;
793}
794
795/*
796 * Close the multicast socket, and clear the vif tables etc
797 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799static void mroute_clean_tables(struct sock *sk)
800{
801 int i;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /*
804 * Shut down all active vif entries
805 */
Stephen Hemminger132adf52007-03-08 20:44:43 -0800806 for (i=0; i<maxvif; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!(vif_table[i].flags&VIFF_STATIC))
808 vif_delete(i);
809 }
810
811 /*
812 * Wipe the cache
813 */
814 for (i=0;i<MFC_LINES;i++) {
815 struct mfc_cache *c, **cp;
816
817 cp = &mfc_cache_array[i];
818 while ((c = *cp) != NULL) {
819 if (c->mfc_flags&MFC_STATIC) {
820 cp = &c->next;
821 continue;
822 }
823 write_lock_bh(&mrt_lock);
824 *cp = c->next;
825 write_unlock_bh(&mrt_lock);
826
827 kmem_cache_free(mrt_cachep, c);
828 }
829 }
830
831 if (atomic_read(&cache_resolve_queue_len) != 0) {
832 struct mfc_cache *c;
833
834 spin_lock_bh(&mfc_unres_lock);
835 while (mfc_unres_queue != NULL) {
836 c = mfc_unres_queue;
837 mfc_unres_queue = c->next;
838 spin_unlock_bh(&mfc_unres_lock);
839
840 ipmr_destroy_unres(c);
841
842 spin_lock_bh(&mfc_unres_lock);
843 }
844 spin_unlock_bh(&mfc_unres_lock);
845 }
846}
847
848static void mrtsock_destruct(struct sock *sk)
849{
850 rtnl_lock();
851 if (sk == mroute_socket) {
Herbert Xu42f811b2007-06-04 23:34:44 -0700852 IPV4_DEVCONF_ALL(MC_FORWARDING)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 write_lock_bh(&mrt_lock);
855 mroute_socket=NULL;
856 write_unlock_bh(&mrt_lock);
857
858 mroute_clean_tables(sk);
859 }
860 rtnl_unlock();
861}
862
863/*
864 * Socket options and virtual interface manipulation. The whole
865 * virtual interface system is a complete heap, but unfortunately
866 * that's how BSD mrouted happens to think. Maybe one day with a proper
867 * MOSPF/PIM router set up we can clean this up.
868 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870int ip_mroute_setsockopt(struct sock *sk,int optname,char __user *optval,int optlen)
871{
872 int ret;
873 struct vifctl vif;
874 struct mfcctl mfc;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900875
Stephen Hemminger132adf52007-03-08 20:44:43 -0800876 if (optname != MRT_INIT) {
877 if (sk != mroute_socket && !capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -EACCES;
879 }
880
Stephen Hemminger132adf52007-03-08 20:44:43 -0800881 switch (optname) {
882 case MRT_INIT:
883 if (sk->sk_type != SOCK_RAW ||
884 inet_sk(sk)->num != IPPROTO_IGMP)
885 return -EOPNOTSUPP;
886 if (optlen!=sizeof(int))
887 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Stephen Hemminger132adf52007-03-08 20:44:43 -0800889 rtnl_lock();
890 if (mroute_socket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 rtnl_unlock();
Stephen Hemminger132adf52007-03-08 20:44:43 -0800892 return -EADDRINUSE;
893 }
894
895 ret = ip_ra_control(sk, 1, mrtsock_destruct);
896 if (ret == 0) {
897 write_lock_bh(&mrt_lock);
898 mroute_socket=sk;
899 write_unlock_bh(&mrt_lock);
900
Herbert Xu42f811b2007-06-04 23:34:44 -0700901 IPV4_DEVCONF_ALL(MC_FORWARDING)++;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800902 }
903 rtnl_unlock();
904 return ret;
905 case MRT_DONE:
906 if (sk!=mroute_socket)
907 return -EACCES;
908 return ip_ra_control(sk, 0, NULL);
909 case MRT_ADD_VIF:
910 case MRT_DEL_VIF:
911 if (optlen!=sizeof(vif))
912 return -EINVAL;
913 if (copy_from_user(&vif,optval,sizeof(vif)))
914 return -EFAULT;
915 if (vif.vifc_vifi >= MAXVIFS)
916 return -ENFILE;
917 rtnl_lock();
918 if (optname==MRT_ADD_VIF) {
919 ret = vif_add(&vif, sk==mroute_socket);
920 } else {
921 ret = vif_delete(vif.vifc_vifi);
922 }
923 rtnl_unlock();
924 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /*
927 * Manipulate the forwarding caches. These live
928 * in a sort of kernel/user symbiosis.
929 */
Stephen Hemminger132adf52007-03-08 20:44:43 -0800930 case MRT_ADD_MFC:
931 case MRT_DEL_MFC:
932 if (optlen!=sizeof(mfc))
933 return -EINVAL;
934 if (copy_from_user(&mfc,optval, sizeof(mfc)))
935 return -EFAULT;
936 rtnl_lock();
937 if (optname==MRT_DEL_MFC)
938 ret = ipmr_mfc_delete(&mfc);
939 else
940 ret = ipmr_mfc_add(&mfc, sk==mroute_socket);
941 rtnl_unlock();
942 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /*
944 * Control PIM assert.
945 */
Stephen Hemminger132adf52007-03-08 20:44:43 -0800946 case MRT_ASSERT:
947 {
948 int v;
949 if (get_user(v,(int __user *)optval))
950 return -EFAULT;
951 mroute_do_assert=(v)?1:0;
952 return 0;
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#ifdef CONFIG_IP_PIMSM
Stephen Hemminger132adf52007-03-08 20:44:43 -0800955 case MRT_PIM:
956 {
957 int v, ret;
958 if (get_user(v,(int __user *)optval))
959 return -EFAULT;
960 v = (v)?1:0;
961 rtnl_lock();
962 ret = 0;
963 if (v != mroute_do_pim) {
964 mroute_do_pim = v;
965 mroute_do_assert = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966#ifdef CONFIG_IP_PIMSM_V2
Stephen Hemminger132adf52007-03-08 20:44:43 -0800967 if (mroute_do_pim)
968 ret = inet_add_protocol(&pim_protocol,
969 IPPROTO_PIM);
970 else
971 ret = inet_del_protocol(&pim_protocol,
972 IPPROTO_PIM);
973 if (ret < 0)
974 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Stephen Hemminger132adf52007-03-08 20:44:43 -0800977 rtnl_unlock();
978 return ret;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980#endif
Stephen Hemminger132adf52007-03-08 20:44:43 -0800981 /*
982 * Spurious command, or MRT_VERSION which you cannot
983 * set.
984 */
985 default:
986 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988}
989
990/*
991 * Getsock opt support for the multicast routing system.
992 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994int ip_mroute_getsockopt(struct sock *sk,int optname,char __user *optval,int __user *optlen)
995{
996 int olr;
997 int val;
998
Stephen Hemminger132adf52007-03-08 20:44:43 -0800999 if (optname!=MRT_VERSION &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000#ifdef CONFIG_IP_PIMSM
1001 optname!=MRT_PIM &&
1002#endif
1003 optname!=MRT_ASSERT)
1004 return -ENOPROTOOPT;
1005
1006 if (get_user(olr, optlen))
1007 return -EFAULT;
1008
1009 olr = min_t(unsigned int, olr, sizeof(int));
1010 if (olr < 0)
1011 return -EINVAL;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001012
Stephen Hemminger132adf52007-03-08 20:44:43 -08001013 if (put_user(olr,optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return -EFAULT;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001015 if (optname==MRT_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 val=0x0305;
1017#ifdef CONFIG_IP_PIMSM
Stephen Hemminger132adf52007-03-08 20:44:43 -08001018 else if (optname==MRT_PIM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 val=mroute_do_pim;
1020#endif
1021 else
1022 val=mroute_do_assert;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001023 if (copy_to_user(optval,&val,olr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return -EFAULT;
1025 return 0;
1026}
1027
1028/*
1029 * The IP multicast ioctl support routines.
1030 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
1033{
1034 struct sioc_sg_req sr;
1035 struct sioc_vif_req vr;
1036 struct vif_device *vif;
1037 struct mfc_cache *c;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001038
Stephen Hemminger132adf52007-03-08 20:44:43 -08001039 switch (cmd) {
1040 case SIOCGETVIFCNT:
1041 if (copy_from_user(&vr,arg,sizeof(vr)))
1042 return -EFAULT;
1043 if (vr.vifi>=maxvif)
1044 return -EINVAL;
1045 read_lock(&mrt_lock);
1046 vif=&vif_table[vr.vifi];
1047 if (VIF_EXISTS(vr.vifi)) {
1048 vr.icount=vif->pkt_in;
1049 vr.ocount=vif->pkt_out;
1050 vr.ibytes=vif->bytes_in;
1051 vr.obytes=vif->bytes_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 read_unlock(&mrt_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001053
1054 if (copy_to_user(arg,&vr,sizeof(vr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return -EFAULT;
Stephen Hemminger132adf52007-03-08 20:44:43 -08001056 return 0;
1057 }
1058 read_unlock(&mrt_lock);
1059 return -EADDRNOTAVAIL;
1060 case SIOCGETSGCNT:
1061 if (copy_from_user(&sr,arg,sizeof(sr)))
1062 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Stephen Hemminger132adf52007-03-08 20:44:43 -08001064 read_lock(&mrt_lock);
1065 c = ipmr_cache_find(sr.src.s_addr, sr.grp.s_addr);
1066 if (c) {
1067 sr.pktcnt = c->mfc_un.res.pkt;
1068 sr.bytecnt = c->mfc_un.res.bytes;
1069 sr.wrong_if = c->mfc_un.res.wrong_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 read_unlock(&mrt_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001071
1072 if (copy_to_user(arg,&sr,sizeof(sr)))
1073 return -EFAULT;
1074 return 0;
1075 }
1076 read_unlock(&mrt_lock);
1077 return -EADDRNOTAVAIL;
1078 default:
1079 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081}
1082
1083
1084static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
1085{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001086 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 struct vif_device *v;
1088 int ct;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001089
1090 if (dev->nd_net != &init_net)
1091 return NOTIFY_DONE;
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (event != NETDEV_UNREGISTER)
1094 return NOTIFY_DONE;
1095 v=&vif_table[0];
Stephen Hemminger132adf52007-03-08 20:44:43 -08001096 for (ct=0;ct<maxvif;ct++,v++) {
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001097 if (v->dev==dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 vif_delete(ct);
1099 }
1100 return NOTIFY_DONE;
1101}
1102
1103
1104static struct notifier_block ip_mr_notifier={
1105 .notifier_call = ipmr_device_event,
1106};
1107
1108/*
1109 * Encapsulate a packet by attaching a valid IPIP header to it.
1110 * This avoids tunnel drivers and other mess and gives us the speed so
1111 * important for multicast video.
1112 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001113
Al Viro114c7842006-09-27 18:39:29 -07001114static void ip_encap(struct sk_buff *skb, __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001116 struct iphdr *iph;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001117 struct iphdr *old_iph = ip_hdr(skb);
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001118
1119 skb_push(skb, sizeof(struct iphdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001120 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Melo8856dfa2007-03-10 19:40:39 -03001121 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001122 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 iph->version = 4;
Arnaldo Carvalho de Meloe023dd62007-03-12 20:09:36 -03001125 iph->tos = old_iph->tos;
1126 iph->ttl = old_iph->ttl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 iph->frag_off = 0;
1128 iph->daddr = daddr;
1129 iph->saddr = saddr;
1130 iph->protocol = IPPROTO_IPIP;
1131 iph->ihl = 5;
1132 iph->tot_len = htons(skb->len);
1133 ip_select_ident(iph, skb->dst, NULL);
1134 ip_send_check(iph);
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1137 nf_reset(skb);
1138}
1139
1140static inline int ipmr_forward_finish(struct sk_buff *skb)
1141{
1142 struct ip_options * opt = &(IPCB(skb)->opt);
1143
1144 IP_INC_STATS_BH(IPSTATS_MIB_OUTFORWDATAGRAMS);
1145
1146 if (unlikely(opt->optlen))
1147 ip_forward_options(skb);
1148
1149 return dst_output(skb);
1150}
1151
1152/*
1153 * Processing handlers for ipmr_forward
1154 */
1155
1156static void ipmr_queue_xmit(struct sk_buff *skb, struct mfc_cache *c, int vifi)
1157{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001158 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 struct vif_device *vif = &vif_table[vifi];
1160 struct net_device *dev;
1161 struct rtable *rt;
1162 int encap = 0;
1163
1164 if (vif->dev == NULL)
1165 goto out_free;
1166
1167#ifdef CONFIG_IP_PIMSM
1168 if (vif->flags & VIFF_REGISTER) {
1169 vif->pkt_out++;
1170 vif->bytes_out+=skb->len;
Patrick McHardy2941a482006-01-08 22:05:26 -08001171 ((struct net_device_stats*)netdev_priv(vif->dev))->tx_bytes += skb->len;
1172 ((struct net_device_stats*)netdev_priv(vif->dev))->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 ipmr_cache_report(skb, vifi, IGMPMSG_WHOLEPKT);
1174 kfree_skb(skb);
1175 return;
1176 }
1177#endif
1178
1179 if (vif->flags&VIFF_TUNNEL) {
1180 struct flowi fl = { .oif = vif->link,
1181 .nl_u = { .ip4_u =
1182 { .daddr = vif->remote,
1183 .saddr = vif->local,
1184 .tos = RT_TOS(iph->tos) } },
1185 .proto = IPPROTO_IPIP };
1186 if (ip_route_output_key(&rt, &fl))
1187 goto out_free;
1188 encap = sizeof(struct iphdr);
1189 } else {
1190 struct flowi fl = { .oif = vif->link,
1191 .nl_u = { .ip4_u =
1192 { .daddr = iph->daddr,
1193 .tos = RT_TOS(iph->tos) } },
1194 .proto = IPPROTO_IPIP };
1195 if (ip_route_output_key(&rt, &fl))
1196 goto out_free;
1197 }
1198
1199 dev = rt->u.dst.dev;
1200
1201 if (skb->len+encap > dst_mtu(&rt->u.dst) && (ntohs(iph->frag_off) & IP_DF)) {
1202 /* Do not fragment multicasts. Alas, IPv4 does not
1203 allow to send ICMP, so that packets will disappear
1204 to blackhole.
1205 */
1206
1207 IP_INC_STATS_BH(IPSTATS_MIB_FRAGFAILS);
1208 ip_rt_put(rt);
1209 goto out_free;
1210 }
1211
1212 encap += LL_RESERVED_SPACE(dev) + rt->u.dst.header_len;
1213
1214 if (skb_cow(skb, encap)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001215 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 goto out_free;
1217 }
1218
1219 vif->pkt_out++;
1220 vif->bytes_out+=skb->len;
1221
1222 dst_release(skb->dst);
1223 skb->dst = &rt->u.dst;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001224 ip_decrease_ttl(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* FIXME: forward and output firewalls used to be called here.
1227 * What do we do with netfilter? -- RR */
1228 if (vif->flags & VIFF_TUNNEL) {
1229 ip_encap(skb, vif->local, vif->remote);
1230 /* FIXME: extra output firewall step used to be here. --RR */
Patrick McHardy2941a482006-01-08 22:05:26 -08001231 ((struct ip_tunnel *)netdev_priv(vif->dev))->stat.tx_packets++;
1232 ((struct ip_tunnel *)netdev_priv(vif->dev))->stat.tx_bytes+=skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234
1235 IPCB(skb)->flags |= IPSKB_FORWARDED;
1236
1237 /*
1238 * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
1239 * not only before forwarding, but after forwarding on all output
1240 * interfaces. It is clear, if mrouter runs a multicasting
1241 * program, it should receive packets not depending to what interface
1242 * program is joined.
1243 * If we will not make it, the program will have to join on all
1244 * interfaces. On the other hand, multihoming host (or router, but
1245 * not mrouter) cannot join to more than one interface - it will
1246 * result in receiving multiple packets.
1247 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001248 NF_HOOK(PF_INET, NF_IP_FORWARD, skb, skb->dev, dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 ipmr_forward_finish);
1250 return;
1251
1252out_free:
1253 kfree_skb(skb);
1254 return;
1255}
1256
1257static int ipmr_find_vif(struct net_device *dev)
1258{
1259 int ct;
1260 for (ct=maxvif-1; ct>=0; ct--) {
1261 if (vif_table[ct].dev == dev)
1262 break;
1263 }
1264 return ct;
1265}
1266
1267/* "local" means that we should preserve one skb (for local delivery) */
1268
1269static int ip_mr_forward(struct sk_buff *skb, struct mfc_cache *cache, int local)
1270{
1271 int psend = -1;
1272 int vif, ct;
1273
1274 vif = cache->mfc_parent;
1275 cache->mfc_un.res.pkt++;
1276 cache->mfc_un.res.bytes += skb->len;
1277
1278 /*
1279 * Wrong interface: drop packet and (maybe) send PIM assert.
1280 */
1281 if (vif_table[vif].dev != skb->dev) {
1282 int true_vifi;
1283
1284 if (((struct rtable*)skb->dst)->fl.iif == 0) {
1285 /* It is our own packet, looped back.
1286 Very complicated situation...
1287
1288 The best workaround until routing daemons will be
1289 fixed is not to redistribute packet, if it was
1290 send through wrong interface. It means, that
1291 multicast applications WILL NOT work for
1292 (S,G), which have default multicast route pointing
1293 to wrong oif. In any case, it is not a good
1294 idea to use multicasting applications on router.
1295 */
1296 goto dont_forward;
1297 }
1298
1299 cache->mfc_un.res.wrong_if++;
1300 true_vifi = ipmr_find_vif(skb->dev);
1301
1302 if (true_vifi >= 0 && mroute_do_assert &&
1303 /* pimsm uses asserts, when switching from RPT to SPT,
1304 so that we cannot check that packet arrived on an oif.
1305 It is bad, but otherwise we would need to move pretty
1306 large chunk of pimd to kernel. Ough... --ANK
1307 */
1308 (mroute_do_pim || cache->mfc_un.res.ttls[true_vifi] < 255) &&
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001309 time_after(jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 cache->mfc_un.res.last_assert + MFC_ASSERT_THRESH)) {
1311 cache->mfc_un.res.last_assert = jiffies;
1312 ipmr_cache_report(skb, true_vifi, IGMPMSG_WRONGVIF);
1313 }
1314 goto dont_forward;
1315 }
1316
1317 vif_table[vif].pkt_in++;
1318 vif_table[vif].bytes_in+=skb->len;
1319
1320 /*
1321 * Forward the frame
1322 */
1323 for (ct = cache->mfc_un.res.maxvif-1; ct >= cache->mfc_un.res.minvif; ct--) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001324 if (ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (psend != -1) {
1326 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1327 if (skb2)
1328 ipmr_queue_xmit(skb2, cache, psend);
1329 }
1330 psend=ct;
1331 }
1332 }
1333 if (psend != -1) {
1334 if (local) {
1335 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1336 if (skb2)
1337 ipmr_queue_xmit(skb2, cache, psend);
1338 } else {
1339 ipmr_queue_xmit(skb, cache, psend);
1340 return 0;
1341 }
1342 }
1343
1344dont_forward:
1345 if (!local)
1346 kfree_skb(skb);
1347 return 0;
1348}
1349
1350
1351/*
1352 * Multicast packets for forwarding arrive here
1353 */
1354
1355int ip_mr_input(struct sk_buff *skb)
1356{
1357 struct mfc_cache *cache;
1358 int local = ((struct rtable*)skb->dst)->rt_flags&RTCF_LOCAL;
1359
1360 /* Packet is looped back after forward, it should not be
1361 forwarded second time, but still can be delivered locally.
1362 */
1363 if (IPCB(skb)->flags&IPSKB_FORWARDED)
1364 goto dont_forward;
1365
1366 if (!local) {
1367 if (IPCB(skb)->opt.router_alert) {
1368 if (ip_call_ra_chain(skb))
1369 return 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001370 } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* IGMPv1 (and broken IGMPv2 implementations sort of
1372 Cisco IOS <= 11.2(8)) do not put router alert
1373 option to IGMP packets destined to routable
1374 groups. It is very bad, because it means
1375 that we can forward NO IGMP messages.
1376 */
1377 read_lock(&mrt_lock);
1378 if (mroute_socket) {
Patrick McHardy2715bcf2005-06-21 14:06:24 -07001379 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 raw_rcv(mroute_socket, skb);
1381 read_unlock(&mrt_lock);
1382 return 0;
1383 }
1384 read_unlock(&mrt_lock);
1385 }
1386 }
1387
1388 read_lock(&mrt_lock);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001389 cache = ipmr_cache_find(ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /*
1392 * No usable cache entry
1393 */
1394 if (cache==NULL) {
1395 int vif;
1396
1397 if (local) {
1398 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
1399 ip_local_deliver(skb);
1400 if (skb2 == NULL) {
1401 read_unlock(&mrt_lock);
1402 return -ENOBUFS;
1403 }
1404 skb = skb2;
1405 }
1406
1407 vif = ipmr_find_vif(skb->dev);
1408 if (vif >= 0) {
1409 int err = ipmr_cache_unresolved(vif, skb);
1410 read_unlock(&mrt_lock);
1411
1412 return err;
1413 }
1414 read_unlock(&mrt_lock);
1415 kfree_skb(skb);
1416 return -ENODEV;
1417 }
1418
1419 ip_mr_forward(skb, cache, local);
1420
1421 read_unlock(&mrt_lock);
1422
1423 if (local)
1424 return ip_local_deliver(skb);
1425
1426 return 0;
1427
1428dont_forward:
1429 if (local)
1430 return ip_local_deliver(skb);
1431 kfree_skb(skb);
1432 return 0;
1433}
1434
1435#ifdef CONFIG_IP_PIMSM_V1
1436/*
1437 * Handle IGMP messages of PIMv1
1438 */
1439
1440int pim_rcv_v1(struct sk_buff * skb)
1441{
1442 struct igmphdr *pim;
1443 struct iphdr *encap;
1444 struct net_device *reg_dev = NULL;
1445
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001446 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(*encap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto drop;
1448
Arnaldo Carvalho de Melod9edf9e2007-03-13 14:19:23 -03001449 pim = igmp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001451 if (!mroute_do_pim ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 skb->len < sizeof(*pim) + sizeof(*encap) ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001453 pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 goto drop;
1455
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001456 encap = (struct iphdr *)(skb_transport_header(skb) +
1457 sizeof(struct igmphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 Check that:
1460 a. packet is really destinted to a multicast group
1461 b. packet is not a NULL-REGISTER
1462 c. packet is not truncated
1463 */
1464 if (!MULTICAST(encap->daddr) ||
1465 encap->tot_len == 0 ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001466 ntohs(encap->tot_len) + sizeof(*pim) > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 goto drop;
1468
1469 read_lock(&mrt_lock);
1470 if (reg_vif_num >= 0)
1471 reg_dev = vif_table[reg_vif_num].dev;
1472 if (reg_dev)
1473 dev_hold(reg_dev);
1474 read_unlock(&mrt_lock);
1475
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001476 if (reg_dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 goto drop;
1478
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001479 skb->mac_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 skb_pull(skb, (u8*)encap - skb->data);
Arnaldo Carvalho de Melo31c77112007-03-10 19:04:55 -03001481 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 skb->dev = reg_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 skb->protocol = htons(ETH_P_IP);
1484 skb->ip_summed = 0;
1485 skb->pkt_type = PACKET_HOST;
1486 dst_release(skb->dst);
1487 skb->dst = NULL;
Patrick McHardy2941a482006-01-08 22:05:26 -08001488 ((struct net_device_stats*)netdev_priv(reg_dev))->rx_bytes += skb->len;
1489 ((struct net_device_stats*)netdev_priv(reg_dev))->rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 nf_reset(skb);
1491 netif_rx(skb);
1492 dev_put(reg_dev);
1493 return 0;
1494 drop:
1495 kfree_skb(skb);
1496 return 0;
1497}
1498#endif
1499
1500#ifdef CONFIG_IP_PIMSM_V2
1501static int pim_rcv(struct sk_buff * skb)
1502{
1503 struct pimreghdr *pim;
1504 struct iphdr *encap;
1505 struct net_device *reg_dev = NULL;
1506
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001507 if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(*encap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 goto drop;
1509
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001510 pim = (struct pimreghdr *)skb_transport_header(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001511 if (pim->type != ((PIM_VERSION<<4)|(PIM_REGISTER)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 (pim->flags&PIM_NULL_REGISTER) ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001513 (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
Al Virod3bc23e2006-11-14 21:24:49 -08001514 csum_fold(skb_checksum(skb, 0, skb->len, 0))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 goto drop;
1516
1517 /* check if the inner packet is destined to mcast group */
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001518 encap = (struct iphdr *)(skb_transport_header(skb) +
1519 sizeof(struct pimreghdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (!MULTICAST(encap->daddr) ||
1521 encap->tot_len == 0 ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001522 ntohs(encap->tot_len) + sizeof(*pim) > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 goto drop;
1524
1525 read_lock(&mrt_lock);
1526 if (reg_vif_num >= 0)
1527 reg_dev = vif_table[reg_vif_num].dev;
1528 if (reg_dev)
1529 dev_hold(reg_dev);
1530 read_unlock(&mrt_lock);
1531
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001532 if (reg_dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 goto drop;
1534
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001535 skb->mac_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 skb_pull(skb, (u8*)encap - skb->data);
Arnaldo Carvalho de Melo31c77112007-03-10 19:04:55 -03001537 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 skb->dev = reg_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 skb->protocol = htons(ETH_P_IP);
1540 skb->ip_summed = 0;
1541 skb->pkt_type = PACKET_HOST;
1542 dst_release(skb->dst);
Patrick McHardy2941a482006-01-08 22:05:26 -08001543 ((struct net_device_stats*)netdev_priv(reg_dev))->rx_bytes += skb->len;
1544 ((struct net_device_stats*)netdev_priv(reg_dev))->rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 skb->dst = NULL;
1546 nf_reset(skb);
1547 netif_rx(skb);
1548 dev_put(reg_dev);
1549 return 0;
1550 drop:
1551 kfree_skb(skb);
1552 return 0;
1553}
1554#endif
1555
1556static int
1557ipmr_fill_mroute(struct sk_buff *skb, struct mfc_cache *c, struct rtmsg *rtm)
1558{
1559 int ct;
1560 struct rtnexthop *nhp;
1561 struct net_device *dev = vif_table[c->mfc_parent].dev;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001562 u8 *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 struct rtattr *mp_head;
1564
1565 if (dev)
1566 RTA_PUT(skb, RTA_IIF, 4, &dev->ifindex);
1567
1568 mp_head = (struct rtattr*)skb_put(skb, RTA_LENGTH(0));
1569
1570 for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
1571 if (c->mfc_un.res.ttls[ct] < 255) {
1572 if (skb_tailroom(skb) < RTA_ALIGN(RTA_ALIGN(sizeof(*nhp)) + 4))
1573 goto rtattr_failure;
1574 nhp = (struct rtnexthop*)skb_put(skb, RTA_ALIGN(sizeof(*nhp)));
1575 nhp->rtnh_flags = 0;
1576 nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
1577 nhp->rtnh_ifindex = vif_table[ct].dev->ifindex;
1578 nhp->rtnh_len = sizeof(*nhp);
1579 }
1580 }
1581 mp_head->rta_type = RTA_MULTIPATH;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001582 mp_head->rta_len = skb_tail_pointer(skb) - (u8 *)mp_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 rtm->rtm_type = RTN_MULTICAST;
1584 return 1;
1585
1586rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001587 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return -EMSGSIZE;
1589}
1590
1591int ipmr_get_route(struct sk_buff *skb, struct rtmsg *rtm, int nowait)
1592{
1593 int err;
1594 struct mfc_cache *cache;
1595 struct rtable *rt = (struct rtable*)skb->dst;
1596
1597 read_lock(&mrt_lock);
1598 cache = ipmr_cache_find(rt->rt_src, rt->rt_dst);
1599
1600 if (cache==NULL) {
Alexey Kuznetsov72287492006-07-25 16:45:12 -07001601 struct sk_buff *skb2;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001602 struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 struct net_device *dev;
1604 int vif;
1605
1606 if (nowait) {
1607 read_unlock(&mrt_lock);
1608 return -EAGAIN;
1609 }
1610
1611 dev = skb->dev;
1612 if (dev == NULL || (vif = ipmr_find_vif(dev)) < 0) {
1613 read_unlock(&mrt_lock);
1614 return -ENODEV;
1615 }
Alexey Kuznetsov72287492006-07-25 16:45:12 -07001616 skb2 = skb_clone(skb, GFP_ATOMIC);
1617 if (!skb2) {
1618 read_unlock(&mrt_lock);
1619 return -ENOMEM;
1620 }
1621
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001622 skb_push(skb2, sizeof(struct iphdr));
1623 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001624 iph = ip_hdr(skb2);
1625 iph->ihl = sizeof(struct iphdr) >> 2;
1626 iph->saddr = rt->rt_src;
1627 iph->daddr = rt->rt_dst;
1628 iph->version = 0;
Alexey Kuznetsov72287492006-07-25 16:45:12 -07001629 err = ipmr_cache_unresolved(vif, skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 read_unlock(&mrt_lock);
1631 return err;
1632 }
1633
1634 if (!nowait && (rtm->rtm_flags&RTM_F_NOTIFY))
1635 cache->mfc_flags |= MFC_NOTIFY;
1636 err = ipmr_fill_mroute(skb, cache, rtm);
1637 read_unlock(&mrt_lock);
1638 return err;
1639}
1640
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001641#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642/*
1643 * The /proc interfaces to multicast routing /proc/ip_mr_cache /proc/ip_mr_vif
1644 */
1645struct ipmr_vif_iter {
1646 int ct;
1647};
1648
1649static struct vif_device *ipmr_vif_seq_idx(struct ipmr_vif_iter *iter,
1650 loff_t pos)
1651{
1652 for (iter->ct = 0; iter->ct < maxvif; ++iter->ct) {
Stephen Hemminger132adf52007-03-08 20:44:43 -08001653 if (!VIF_EXISTS(iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 continue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001655 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return &vif_table[iter->ct];
1657 }
1658 return NULL;
1659}
1660
1661static void *ipmr_vif_seq_start(struct seq_file *seq, loff_t *pos)
1662{
1663 read_lock(&mrt_lock);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001664 return *pos ? ipmr_vif_seq_idx(seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 : SEQ_START_TOKEN;
1666}
1667
1668static void *ipmr_vif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1669{
1670 struct ipmr_vif_iter *iter = seq->private;
1671
1672 ++*pos;
1673 if (v == SEQ_START_TOKEN)
1674 return ipmr_vif_seq_idx(iter, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 while (++iter->ct < maxvif) {
Stephen Hemminger132adf52007-03-08 20:44:43 -08001677 if (!VIF_EXISTS(iter->ct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 continue;
1679 return &vif_table[iter->ct];
1680 }
1681 return NULL;
1682}
1683
1684static void ipmr_vif_seq_stop(struct seq_file *seq, void *v)
1685{
1686 read_unlock(&mrt_lock);
1687}
1688
1689static int ipmr_vif_seq_show(struct seq_file *seq, void *v)
1690{
1691 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001692 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 "Interface BytesIn PktsIn BytesOut PktsOut Flags Local Remote\n");
1694 } else {
1695 const struct vif_device *vif = v;
1696 const char *name = vif->dev ? vif->dev->name : "none";
1697
1698 seq_printf(seq,
1699 "%2Zd %-10s %8ld %7ld %8ld %7ld %05X %08X %08X\n",
1700 vif - vif_table,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001701 name, vif->bytes_in, vif->pkt_in,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 vif->bytes_out, vif->pkt_out,
1703 vif->flags, vif->local, vif->remote);
1704 }
1705 return 0;
1706}
1707
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001708static const struct seq_operations ipmr_vif_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 .start = ipmr_vif_seq_start,
1710 .next = ipmr_vif_seq_next,
1711 .stop = ipmr_vif_seq_stop,
1712 .show = ipmr_vif_seq_show,
1713};
1714
1715static int ipmr_vif_open(struct inode *inode, struct file *file)
1716{
1717 struct seq_file *seq;
1718 int rc = -ENOMEM;
1719 struct ipmr_vif_iter *s = kmalloc(sizeof(*s), GFP_KERNEL);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (!s)
1722 goto out;
1723
1724 rc = seq_open(file, &ipmr_vif_seq_ops);
1725 if (rc)
1726 goto out_kfree;
1727
1728 s->ct = 0;
1729 seq = file->private_data;
1730 seq->private = s;
1731out:
1732 return rc;
1733out_kfree:
1734 kfree(s);
1735 goto out;
1736
1737}
1738
Arjan van de Ven9a321442007-02-12 00:55:35 -08001739static const struct file_operations ipmr_vif_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 .owner = THIS_MODULE,
1741 .open = ipmr_vif_open,
1742 .read = seq_read,
1743 .llseek = seq_lseek,
1744 .release = seq_release_private,
1745};
1746
1747struct ipmr_mfc_iter {
1748 struct mfc_cache **cache;
1749 int ct;
1750};
1751
1752
1753static struct mfc_cache *ipmr_mfc_seq_idx(struct ipmr_mfc_iter *it, loff_t pos)
1754{
1755 struct mfc_cache *mfc;
1756
1757 it->cache = mfc_cache_array;
1758 read_lock(&mrt_lock);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001759 for (it->ct = 0; it->ct < MFC_LINES; it->ct++)
Stephen Hemminger132adf52007-03-08 20:44:43 -08001760 for (mfc = mfc_cache_array[it->ct]; mfc; mfc = mfc->next)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001761 if (pos-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return mfc;
1763 read_unlock(&mrt_lock);
1764
1765 it->cache = &mfc_unres_queue;
1766 spin_lock_bh(&mfc_unres_lock);
Stephen Hemminger132adf52007-03-08 20:44:43 -08001767 for (mfc = mfc_unres_queue; mfc; mfc = mfc->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (pos-- == 0)
1769 return mfc;
1770 spin_unlock_bh(&mfc_unres_lock);
1771
1772 it->cache = NULL;
1773 return NULL;
1774}
1775
1776
1777static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos)
1778{
1779 struct ipmr_mfc_iter *it = seq->private;
1780 it->cache = NULL;
1781 it->ct = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001782 return *pos ? ipmr_mfc_seq_idx(seq->private, *pos - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 : SEQ_START_TOKEN;
1784}
1785
1786static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1787{
1788 struct mfc_cache *mfc = v;
1789 struct ipmr_mfc_iter *it = seq->private;
1790
1791 ++*pos;
1792
1793 if (v == SEQ_START_TOKEN)
1794 return ipmr_mfc_seq_idx(seq->private, 0);
1795
1796 if (mfc->next)
1797 return mfc->next;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001798
1799 if (it->cache == &mfc_unres_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto end_of_list;
1801
1802 BUG_ON(it->cache != mfc_cache_array);
1803
1804 while (++it->ct < MFC_LINES) {
1805 mfc = mfc_cache_array[it->ct];
1806 if (mfc)
1807 return mfc;
1808 }
1809
1810 /* exhausted cache_array, show unresolved */
1811 read_unlock(&mrt_lock);
1812 it->cache = &mfc_unres_queue;
1813 it->ct = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 spin_lock_bh(&mfc_unres_lock);
1816 mfc = mfc_unres_queue;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001817 if (mfc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return mfc;
1819
1820 end_of_list:
1821 spin_unlock_bh(&mfc_unres_lock);
1822 it->cache = NULL;
1823
1824 return NULL;
1825}
1826
1827static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v)
1828{
1829 struct ipmr_mfc_iter *it = seq->private;
1830
1831 if (it->cache == &mfc_unres_queue)
1832 spin_unlock_bh(&mfc_unres_lock);
1833 else if (it->cache == mfc_cache_array)
1834 read_unlock(&mrt_lock);
1835}
1836
1837static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)
1838{
1839 int n;
1840
1841 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001842 seq_puts(seq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 "Group Origin Iif Pkts Bytes Wrong Oifs\n");
1844 } else {
1845 const struct mfc_cache *mfc = v;
1846 const struct ipmr_mfc_iter *it = seq->private;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 seq_printf(seq, "%08lX %08lX %-3d %8ld %8ld %8ld",
1849 (unsigned long) mfc->mfc_mcastgrp,
1850 (unsigned long) mfc->mfc_origin,
1851 mfc->mfc_parent,
1852 mfc->mfc_un.res.pkt,
1853 mfc->mfc_un.res.bytes,
1854 mfc->mfc_un.res.wrong_if);
1855
1856 if (it->cache != &mfc_unres_queue) {
Stephen Hemminger132adf52007-03-08 20:44:43 -08001857 for (n = mfc->mfc_un.res.minvif;
1858 n < mfc->mfc_un.res.maxvif; n++ ) {
1859 if (VIF_EXISTS(n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 && mfc->mfc_un.res.ttls[n] < 255)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001861 seq_printf(seq,
1862 " %2d:%-3d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 n, mfc->mfc_un.res.ttls[n]);
1864 }
1865 }
1866 seq_putc(seq, '\n');
1867 }
1868 return 0;
1869}
1870
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001871static const struct seq_operations ipmr_mfc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 .start = ipmr_mfc_seq_start,
1873 .next = ipmr_mfc_seq_next,
1874 .stop = ipmr_mfc_seq_stop,
1875 .show = ipmr_mfc_seq_show,
1876};
1877
1878static int ipmr_mfc_open(struct inode *inode, struct file *file)
1879{
1880 struct seq_file *seq;
1881 int rc = -ENOMEM;
1882 struct ipmr_mfc_iter *s = kmalloc(sizeof(*s), GFP_KERNEL);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 if (!s)
1885 goto out;
1886
1887 rc = seq_open(file, &ipmr_mfc_seq_ops);
1888 if (rc)
1889 goto out_kfree;
1890
1891 seq = file->private_data;
1892 seq->private = s;
1893out:
1894 return rc;
1895out_kfree:
1896 kfree(s);
1897 goto out;
1898
1899}
1900
Arjan van de Ven9a321442007-02-12 00:55:35 -08001901static const struct file_operations ipmr_mfc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 .owner = THIS_MODULE,
1903 .open = ipmr_mfc_open,
1904 .read = seq_read,
1905 .llseek = seq_lseek,
1906 .release = seq_release_private,
1907};
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001908#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910#ifdef CONFIG_IP_PIMSM_V2
1911static struct net_protocol pim_protocol = {
1912 .handler = pim_rcv,
1913};
1914#endif
1915
1916
1917/*
1918 * Setup for IP multicast routing
1919 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921void __init ip_mr_init(void)
1922{
1923 mrt_cachep = kmem_cache_create("ip_mrt_cache",
1924 sizeof(struct mfc_cache),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07001925 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001926 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 init_timer(&ipmr_expire_timer);
1928 ipmr_expire_timer.function=ipmr_expire_process;
1929 register_netdevice_notifier(&ip_mr_notifier);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001930#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001931 proc_net_fops_create(&init_net, "ip_mr_vif", 0, &ipmr_vif_fops);
1932 proc_net_fops_create(&init_net, "ip_mr_cache", 0, &ipmr_mfc_fops);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}