ipmr.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:39k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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. #include <linux/config.h>
  31. #include <asm/system.h>
  32. #include <asm/uaccess.h>
  33. #include <linux/types.h>
  34. #include <linux/sched.h>
  35. #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/mroute.h>
  49. #include <linux/init.h>
  50. #include <net/ip.h>
  51. #include <net/protocol.h>
  52. #include <linux/skbuff.h>
  53. #include <net/sock.h>
  54. #include <net/icmp.h>
  55. #include <net/udp.h>
  56. #include <net/raw.h>
  57. #include <linux/notifier.h>
  58. #include <linux/if_arp.h>
  59. #include <linux/netfilter_ipv4.h>
  60. #include <net/ipip.h>
  61. #include <net/checksum.h>
  62. #if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
  63. #define CONFIG_IP_PIMSM 1
  64. #endif
  65. static struct sock *mroute_socket;
  66. /* Big lock, protecting vif table, mrt cache and mroute socket state.
  67.    Note that the changes are semaphored via rtnl_lock.
  68.  */
  69. static rwlock_t mrt_lock = RW_LOCK_UNLOCKED;
  70. /*
  71.  * Multicast router control variables
  72.  */
  73. static struct vif_device vif_table[MAXVIFS]; /* Devices  */
  74. static int maxvif;
  75. #define VIF_EXISTS(idx) (vif_table[idx].dev != NULL)
  76. int mroute_do_assert; /* Set in PIM assert */
  77. int mroute_do_pim;
  78. static struct mfc_cache *mfc_cache_array[MFC_LINES]; /* Forwarding cache */
  79. static struct mfc_cache *mfc_unres_queue; /* Queue of unresolved entries */
  80. atomic_t cache_resolve_queue_len; /* Size of unresolved */
  81. /* Special spinlock for queue of unresolved entries */
  82. static spinlock_t mfc_unres_lock = SPIN_LOCK_UNLOCKED;
  83. /* We return to original Alan's scheme. Hash table of resolved
  84.    entries is changed only in process context and protected
  85.    with weak lock mrt_lock. Queue of unresolved entries is protected
  86.    with strong spinlock mfc_unres_lock.
  87.    In this case data path is free of exclusive locks at all.
  88.  */
  89. kmem_cache_t *mrt_cachep;
  90. static int ip_mr_forward(struct sk_buff *skb, struct mfc_cache *cache, int local);
  91. static int ipmr_cache_report(struct sk_buff *pkt, vifi_t vifi, int assert);
  92. static int ipmr_fill_mroute(struct sk_buff *skb, struct mfc_cache *c, struct rtmsg *rtm);
  93. extern struct inet_protocol pim_protocol;
  94. static struct timer_list ipmr_expire_timer;
  95. /* Service routines creating virtual interfaces: DVMRP tunnels and PIMREG */
  96. static
  97. struct net_device *ipmr_new_tunnel(struct vifctl *v)
  98. {
  99. struct net_device  *dev;
  100. dev = __dev_get_by_name("tunl0");
  101. if (dev) {
  102. int err;
  103. struct ifreq ifr;
  104. mm_segment_t oldfs;
  105. struct ip_tunnel_parm p;
  106. struct in_device  *in_dev;
  107. memset(&p, 0, sizeof(p));
  108. p.iph.daddr = v->vifc_rmt_addr.s_addr;
  109. p.iph.saddr = v->vifc_lcl_addr.s_addr;
  110. p.iph.version = 4;
  111. p.iph.ihl = 5;
  112. p.iph.protocol = IPPROTO_IPIP;
  113. sprintf(p.name, "dvmrp%d", v->vifc_vifi);
  114. ifr.ifr_ifru.ifru_data = (void*)&p;
  115. oldfs = get_fs(); set_fs(KERNEL_DS);
  116. err = dev->do_ioctl(dev, &ifr, SIOCADDTUNNEL);
  117. set_fs(oldfs);
  118. dev = NULL;
  119. if (err == 0 && (dev = __dev_get_by_name(p.name)) != NULL) {
  120. dev->flags |= IFF_MULTICAST;
  121. in_dev = __in_dev_get(dev);
  122. if (in_dev == NULL && (in_dev = inetdev_init(dev)) == NULL)
  123. goto failure;
  124. in_dev->cnf.rp_filter = 0;
  125. if (dev_open(dev))
  126. goto failure;
  127. }
  128. }
  129. return dev;
  130. failure:
  131. unregister_netdevice(dev);
  132. return NULL;
  133. }
  134. #ifdef CONFIG_IP_PIMSM
  135. static int reg_vif_num = -1;
  136. static int reg_vif_xmit(struct sk_buff *skb, struct net_device *dev)
  137. {
  138. read_lock(&mrt_lock);
  139. ((struct net_device_stats*)dev->priv)->tx_bytes += skb->len;
  140. ((struct net_device_stats*)dev->priv)->tx_packets++;
  141. ipmr_cache_report(skb, reg_vif_num, IGMPMSG_WHOLEPKT);
  142. read_unlock(&mrt_lock);
  143. kfree_skb(skb);
  144. return 0;
  145. }
  146. static struct net_device_stats *reg_vif_get_stats(struct net_device *dev)
  147. {
  148. return (struct net_device_stats*)dev->priv;
  149. }
  150. static
  151. struct net_device *ipmr_reg_vif(struct vifctl *v)
  152. {
  153. struct net_device  *dev;
  154. struct in_device *in_dev;
  155. int size;
  156. size = sizeof(*dev) + sizeof(struct net_device_stats);
  157. dev = kmalloc(size, GFP_KERNEL);
  158. if (!dev)
  159. return NULL;
  160. memset(dev, 0, size);
  161. dev->priv = dev + 1;
  162. strcpy(dev->name, "pimreg");
  163. dev->type = ARPHRD_PIMREG;
  164. dev->mtu = 1500 - sizeof(struct iphdr) - 8;
  165. dev->flags = IFF_NOARP;
  166. dev->hard_start_xmit = reg_vif_xmit;
  167. dev->get_stats = reg_vif_get_stats;
  168. dev->features |= NETIF_F_DYNALLOC;
  169. if (register_netdevice(dev)) {
  170. kfree(dev);
  171. return NULL;
  172. }
  173. dev->iflink = 0;
  174. if ((in_dev = inetdev_init(dev)) == NULL)
  175. goto failure;
  176. in_dev->cnf.rp_filter = 0;
  177. if (dev_open(dev))
  178. goto failure;
  179. return dev;
  180. failure:
  181. unregister_netdevice(dev);
  182. return NULL;
  183. }
  184. #endif
  185. /*
  186.  * Delete a VIF entry
  187.  */
  188.  
  189. static int vif_delete(int vifi)
  190. {
  191. struct vif_device *v;
  192. struct net_device *dev;
  193. struct in_device *in_dev;
  194. if (vifi < 0 || vifi >= maxvif)
  195. return -EADDRNOTAVAIL;
  196. v = &vif_table[vifi];
  197. write_lock_bh(&mrt_lock);
  198. dev = v->dev;
  199. v->dev = NULL;
  200. if (!dev) {
  201. write_unlock_bh(&mrt_lock);
  202. return -EADDRNOTAVAIL;
  203. }
  204. #ifdef CONFIG_IP_PIMSM
  205. if (vifi == reg_vif_num)
  206. reg_vif_num = -1;
  207. #endif
  208. if (vifi+1 == maxvif) {
  209. int tmp;
  210. for (tmp=vifi-1; tmp>=0; tmp--) {
  211. if (VIF_EXISTS(tmp))
  212. break;
  213. }
  214. maxvif = tmp+1;
  215. }
  216. write_unlock_bh(&mrt_lock);
  217. dev_set_allmulti(dev, -1);
  218. if ((in_dev = __in_dev_get(dev)) != NULL) {
  219. in_dev->cnf.mc_forwarding--;
  220. ip_rt_multicast_event(in_dev);
  221. }
  222. if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER))
  223. unregister_netdevice(dev);
  224. dev_put(dev);
  225. return 0;
  226. }
  227. /* Destroy an unresolved cache entry, killing queued skbs
  228.    and reporting error to netlink readers.
  229.  */
  230. static void ipmr_destroy_unres(struct mfc_cache *c)
  231. {
  232. struct sk_buff *skb;
  233. atomic_dec(&cache_resolve_queue_len);
  234. while((skb=skb_dequeue(&c->mfc_un.unres.unresolved))) {
  235. if (skb->nh.iph->version == 0) {
  236. struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
  237. nlh->nlmsg_type = NLMSG_ERROR;
  238. nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
  239. skb_trim(skb, nlh->nlmsg_len);
  240. ((struct nlmsgerr*)NLMSG_DATA(nlh))->error = -ETIMEDOUT;
  241. netlink_unicast(rtnl, skb, NETLINK_CB(skb).dst_pid, MSG_DONTWAIT);
  242. } else
  243. kfree_skb(skb);
  244. }
  245. kmem_cache_free(mrt_cachep, c);
  246. }
  247. /* Single timer process for all the unresolved queue. */
  248. void ipmr_expire_process(unsigned long dummy)
  249. {
  250. unsigned long now;
  251. unsigned long expires;
  252. struct mfc_cache *c, **cp;
  253. if (!spin_trylock(&mfc_unres_lock)) {
  254. mod_timer(&ipmr_expire_timer, jiffies+HZ/10);
  255. return;
  256. }
  257. if (atomic_read(&cache_resolve_queue_len) == 0)
  258. goto out;
  259. now = jiffies;
  260. expires = 10*HZ;
  261. cp = &mfc_unres_queue;
  262. while ((c=*cp) != NULL) {
  263. long interval = c->mfc_un.unres.expires - now;
  264. if (interval > 0) {
  265. if (interval < expires)
  266. expires = interval;
  267. cp = &c->next;
  268. continue;
  269. }
  270. *cp = c->next;
  271. ipmr_destroy_unres(c);
  272. }
  273. if (atomic_read(&cache_resolve_queue_len))
  274. mod_timer(&ipmr_expire_timer, jiffies + expires);
  275. out:
  276. spin_unlock(&mfc_unres_lock);
  277. }
  278. /* Fill oifs list. It is called under write locked mrt_lock. */
  279. static void ipmr_update_threshoulds(struct mfc_cache *cache, unsigned char *ttls)
  280. {
  281. int vifi;
  282. cache->mfc_un.res.minvif = MAXVIFS;
  283. cache->mfc_un.res.maxvif = 0;
  284. memset(cache->mfc_un.res.ttls, 255, MAXVIFS);
  285. for (vifi=0; vifi<maxvif; vifi++) {
  286. if (VIF_EXISTS(vifi) && ttls[vifi] && ttls[vifi] < 255) {
  287. cache->mfc_un.res.ttls[vifi] = ttls[vifi];
  288. if (cache->mfc_un.res.minvif > vifi)
  289. cache->mfc_un.res.minvif = vifi;
  290. if (cache->mfc_un.res.maxvif <= vifi)
  291. cache->mfc_un.res.maxvif = vifi + 1;
  292. }
  293. }
  294. }
  295. static int vif_add(struct vifctl *vifc, int mrtsock)
  296. {
  297. int vifi = vifc->vifc_vifi;
  298. struct vif_device *v = &vif_table[vifi];
  299. struct net_device *dev;
  300. struct in_device *in_dev;
  301. /* Is vif busy ? */
  302. if (VIF_EXISTS(vifi))
  303. return -EADDRINUSE;
  304. switch (vifc->vifc_flags) {
  305. #ifdef CONFIG_IP_PIMSM
  306. case VIFF_REGISTER:
  307. /*
  308.  * Special Purpose VIF in PIM
  309.  * All the packets will be sent to the daemon
  310.  */
  311. if (reg_vif_num >= 0)
  312. return -EADDRINUSE;
  313. dev = ipmr_reg_vif(vifc);
  314. if (!dev)
  315. return -ENOBUFS;
  316. break;
  317. #endif
  318. case VIFF_TUNNEL:
  319. dev = ipmr_new_tunnel(vifc);
  320. if (!dev)
  321. return -ENOBUFS;
  322. break;
  323. case 0:
  324. dev=ip_dev_find(vifc->vifc_lcl_addr.s_addr);
  325. if (!dev)
  326. return -EADDRNOTAVAIL;
  327. __dev_put(dev);
  328. break;
  329. default:
  330. return -EINVAL;
  331. }
  332. if ((in_dev = __in_dev_get(dev)) == NULL)
  333. return -EADDRNOTAVAIL;
  334. in_dev->cnf.mc_forwarding++;
  335. dev_set_allmulti(dev, +1);
  336. ip_rt_multicast_event(in_dev);
  337. /*
  338.  * Fill in the VIF structures
  339.  */
  340. v->rate_limit=vifc->vifc_rate_limit;
  341. v->local=vifc->vifc_lcl_addr.s_addr;
  342. v->remote=vifc->vifc_rmt_addr.s_addr;
  343. v->flags=vifc->vifc_flags;
  344. if (!mrtsock)
  345. v->flags |= VIFF_STATIC;
  346. v->threshold=vifc->vifc_threshold;
  347. v->bytes_in = 0;
  348. v->bytes_out = 0;
  349. v->pkt_in = 0;
  350. v->pkt_out = 0;
  351. v->link = dev->ifindex;
  352. if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER))
  353. v->link = dev->iflink;
  354. /* And finish update writing critical data */
  355. write_lock_bh(&mrt_lock);
  356. dev_hold(dev);
  357. v->dev=dev;
  358. #ifdef CONFIG_IP_PIMSM
  359. if (v->flags&VIFF_REGISTER)
  360. reg_vif_num = vifi;
  361. #endif
  362. if (vifi+1 > maxvif)
  363. maxvif = vifi+1;
  364. write_unlock_bh(&mrt_lock);
  365. return 0;
  366. }
  367. static struct mfc_cache *ipmr_cache_find(__u32 origin, __u32 mcastgrp)
  368. {
  369. int line=MFC_HASH(mcastgrp,origin);
  370. struct mfc_cache *c;
  371. for (c=mfc_cache_array[line]; c; c = c->next) {
  372. if (c->mfc_origin==origin && c->mfc_mcastgrp==mcastgrp)
  373. break;
  374. }
  375. return c;
  376. }
  377. /*
  378.  * Allocate a multicast cache entry
  379.  */
  380. static struct mfc_cache *ipmr_cache_alloc(void)
  381. {
  382. struct mfc_cache *c=kmem_cache_alloc(mrt_cachep, GFP_KERNEL);
  383. if(c==NULL)
  384. return NULL;
  385. memset(c, 0, sizeof(*c));
  386. c->mfc_un.res.minvif = MAXVIFS;
  387. return c;
  388. }
  389. static struct mfc_cache *ipmr_cache_alloc_unres(void)
  390. {
  391. struct mfc_cache *c=kmem_cache_alloc(mrt_cachep, GFP_ATOMIC);
  392. if(c==NULL)
  393. return NULL;
  394. memset(c, 0, sizeof(*c));
  395. skb_queue_head_init(&c->mfc_un.unres.unresolved);
  396. c->mfc_un.unres.expires = jiffies + 10*HZ;
  397. return c;
  398. }
  399. /*
  400.  * A cache entry has gone into a resolved state from queued
  401.  */
  402.  
  403. static void ipmr_cache_resolve(struct mfc_cache *uc, struct mfc_cache *c)
  404. {
  405. struct sk_buff *skb;
  406. /*
  407.  * Play the pending entries through our router
  408.  */
  409. while((skb=__skb_dequeue(&uc->mfc_un.unres.unresolved))) {
  410. if (skb->nh.iph->version == 0) {
  411. int err;
  412. struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr));
  413. if (ipmr_fill_mroute(skb, c, NLMSG_DATA(nlh)) > 0) {
  414. nlh->nlmsg_len = skb->tail - (u8*)nlh;
  415. } else {
  416. nlh->nlmsg_type = NLMSG_ERROR;
  417. nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr));
  418. skb_trim(skb, nlh->nlmsg_len);
  419. ((struct nlmsgerr*)NLMSG_DATA(nlh))->error = -EMSGSIZE;
  420. }
  421. err = netlink_unicast(rtnl, skb, NETLINK_CB(skb).dst_pid, MSG_DONTWAIT);
  422. } else
  423. ip_mr_forward(skb, c, 0);
  424. }
  425. }
  426. /*
  427.  * Bounce a cache query up to mrouted. We could use netlink for this but mrouted
  428.  * expects the following bizarre scheme.
  429.  *
  430.  * Called under mrt_lock.
  431.  */
  432.  
  433. static int ipmr_cache_report(struct sk_buff *pkt, vifi_t vifi, int assert)
  434. {
  435. struct sk_buff *skb;
  436. int ihl = pkt->nh.iph->ihl<<2;
  437. struct igmphdr *igmp;
  438. struct igmpmsg *msg;
  439. int ret;
  440. #ifdef CONFIG_IP_PIMSM
  441. if (assert == IGMPMSG_WHOLEPKT)
  442. skb = skb_realloc_headroom(pkt, sizeof(struct iphdr));
  443. else
  444. #endif
  445. skb = alloc_skb(128, GFP_ATOMIC);
  446. if(!skb)
  447. return -ENOBUFS;
  448. #ifdef CONFIG_IP_PIMSM
  449. if (assert == IGMPMSG_WHOLEPKT) {
  450. /* Ugly, but we have no choice with this interface.
  451.    Duplicate old header, fix ihl, length etc.
  452.    And all this only to mangle msg->im_msgtype and
  453.    to set msg->im_mbz to "mbz" :-)
  454.  */
  455. msg = (struct igmpmsg*)skb_push(skb, sizeof(struct iphdr));
  456. skb->nh.raw = skb->h.raw = (u8*)msg;
  457. memcpy(msg, pkt->nh.raw, sizeof(struct iphdr));
  458. msg->im_msgtype = IGMPMSG_WHOLEPKT;
  459. msg->im_mbz = 0;
  460.   msg->im_vif = reg_vif_num;
  461. skb->nh.iph->ihl = sizeof(struct iphdr) >> 2;
  462. skb->nh.iph->tot_len = htons(ntohs(pkt->nh.iph->tot_len) + sizeof(struct iphdr));
  463. } else 
  464. #endif
  465. {
  466. /*
  467.  * Copy the IP header
  468.  */
  469. skb->nh.iph = (struct iphdr *)skb_put(skb, ihl);
  470. memcpy(skb->data,pkt->data,ihl);
  471. skb->nh.iph->protocol = 0; /* Flag to the kernel this is a route add */
  472. msg = (struct igmpmsg*)skb->nh.iph;
  473. msg->im_vif = vifi;
  474. skb->dst = dst_clone(pkt->dst);
  475. /*
  476.  * Add our header
  477.  */
  478. igmp=(struct igmphdr *)skb_put(skb,sizeof(struct igmphdr));
  479. igmp->type =
  480. msg->im_msgtype = assert;
  481. igmp->code  = 0;
  482. skb->nh.iph->tot_len=htons(skb->len); /* Fix the length */
  483. skb->h.raw = skb->nh.raw;
  484.         }
  485. if (mroute_socket == NULL) {
  486. kfree_skb(skb);
  487. return -EINVAL;
  488. }
  489. /*
  490.  * Deliver to mrouted
  491.  */
  492. if ((ret=sock_queue_rcv_skb(mroute_socket,skb))<0) {
  493. if (net_ratelimit())
  494. printk(KERN_WARNING "mroute: pending queue full, dropping entries.n");
  495. kfree_skb(skb);
  496. }
  497. return ret;
  498. }
  499. /*
  500.  * Queue a packet for resolution. It gets locked cache entry!
  501.  */
  502.  
  503. static int
  504. ipmr_cache_unresolved(vifi_t vifi, struct sk_buff *skb)
  505. {
  506. int err;
  507. struct mfc_cache *c;
  508. spin_lock_bh(&mfc_unres_lock);
  509. for (c=mfc_unres_queue; c; c=c->next) {
  510. if (c->mfc_mcastgrp == skb->nh.iph->daddr &&
  511.     c->mfc_origin == skb->nh.iph->saddr)
  512. break;
  513. }
  514. if (c == NULL) {
  515. /*
  516.  * Create a new entry if allowable
  517.  */
  518. if (atomic_read(&cache_resolve_queue_len)>=10 ||
  519.     (c=ipmr_cache_alloc_unres())==NULL) {
  520. spin_unlock_bh(&mfc_unres_lock);
  521. kfree_skb(skb);
  522. return -ENOBUFS;
  523. }
  524. /*
  525.  * Fill in the new cache entry
  526.  */
  527. c->mfc_parent=-1;
  528. c->mfc_origin=skb->nh.iph->saddr;
  529. c->mfc_mcastgrp=skb->nh.iph->daddr;
  530. /*
  531.  * Reflect first query at mrouted.
  532.  */
  533. if ((err = ipmr_cache_report(skb, vifi, IGMPMSG_NOCACHE))<0) {
  534. /* If the report failed throw the cache entry 
  535.    out - Brad Parker
  536.  */
  537. spin_unlock_bh(&mfc_unres_lock);
  538. kmem_cache_free(mrt_cachep, c);
  539. kfree_skb(skb);
  540. return err;
  541. }
  542. atomic_inc(&cache_resolve_queue_len);
  543. c->next = mfc_unres_queue;
  544. mfc_unres_queue = c;
  545. mod_timer(&ipmr_expire_timer, c->mfc_un.unres.expires);
  546. }
  547. /*
  548.  * See if we can append the packet
  549.  */
  550. if (c->mfc_un.unres.unresolved.qlen>3) {
  551. kfree_skb(skb);
  552. err = -ENOBUFS;
  553. } else {
  554. skb_queue_tail(&c->mfc_un.unres.unresolved,skb);
  555. err = 0;
  556. }
  557. spin_unlock_bh(&mfc_unres_lock);
  558. return err;
  559. }
  560. /*
  561.  * MFC cache manipulation by user space mroute daemon
  562.  */
  563. int ipmr_mfc_delete(struct mfcctl *mfc)
  564. {
  565. int line;
  566. struct mfc_cache *c, **cp;
  567. line=MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
  568. for (cp=&mfc_cache_array[line]; (c=*cp) != NULL; cp = &c->next) {
  569. if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
  570.     c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) {
  571. write_lock_bh(&mrt_lock);
  572. *cp = c->next;
  573. write_unlock_bh(&mrt_lock);
  574. kmem_cache_free(mrt_cachep, c);
  575. return 0;
  576. }
  577. }
  578. return -ENOENT;
  579. }
  580. int ipmr_mfc_add(struct mfcctl *mfc, int mrtsock)
  581. {
  582. int line;
  583. struct mfc_cache *uc, *c, **cp;
  584. line=MFC_HASH(mfc->mfcc_mcastgrp.s_addr, mfc->mfcc_origin.s_addr);
  585. for (cp=&mfc_cache_array[line]; (c=*cp) != NULL; cp = &c->next) {
  586. if (c->mfc_origin == mfc->mfcc_origin.s_addr &&
  587.     c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr)
  588. break;
  589. }
  590. if (c != NULL) {
  591. write_lock_bh(&mrt_lock);
  592. c->mfc_parent = mfc->mfcc_parent;
  593. ipmr_update_threshoulds(c, mfc->mfcc_ttls);
  594. if (!mrtsock)
  595. c->mfc_flags |= MFC_STATIC;
  596. write_unlock_bh(&mrt_lock);
  597. return 0;
  598. }
  599. if(!MULTICAST(mfc->mfcc_mcastgrp.s_addr))
  600. return -EINVAL;
  601. c=ipmr_cache_alloc();
  602. if (c==NULL)
  603. return -ENOMEM;
  604. c->mfc_origin=mfc->mfcc_origin.s_addr;
  605. c->mfc_mcastgrp=mfc->mfcc_mcastgrp.s_addr;
  606. c->mfc_parent=mfc->mfcc_parent;
  607. ipmr_update_threshoulds(c, mfc->mfcc_ttls);
  608. if (!mrtsock)
  609. c->mfc_flags |= MFC_STATIC;
  610. write_lock_bh(&mrt_lock);
  611. c->next = mfc_cache_array[line];
  612. mfc_cache_array[line] = c;
  613. write_unlock_bh(&mrt_lock);
  614. /*
  615.  * Check to see if we resolved a queued list. If so we
  616.  * need to send on the frames and tidy up.
  617.  */
  618. spin_lock_bh(&mfc_unres_lock);
  619. for (cp = &mfc_unres_queue; (uc=*cp) != NULL;
  620.      cp = &uc->next) {
  621. if (uc->mfc_origin == c->mfc_origin &&
  622.     uc->mfc_mcastgrp == c->mfc_mcastgrp) {
  623. *cp = uc->next;
  624. if (atomic_dec_and_test(&cache_resolve_queue_len))
  625. del_timer(&ipmr_expire_timer);
  626. break;
  627. }
  628. }
  629. spin_unlock_bh(&mfc_unres_lock);
  630. if (uc) {
  631. ipmr_cache_resolve(uc, c);
  632. kmem_cache_free(mrt_cachep, uc);
  633. }
  634. return 0;
  635. }
  636. /*
  637.  * Close the multicast socket, and clear the vif tables etc
  638.  */
  639.  
  640. static void mroute_clean_tables(struct sock *sk)
  641. {
  642. int i;
  643. /*
  644.  * Shut down all active vif entries
  645.  */
  646. for(i=0; i<maxvif; i++) {
  647. if (!(vif_table[i].flags&VIFF_STATIC))
  648. vif_delete(i);
  649. }
  650. /*
  651.  * Wipe the cache
  652.  */
  653. for (i=0;i<MFC_LINES;i++) {
  654. struct mfc_cache *c, **cp;
  655. cp = &mfc_cache_array[i];
  656. while ((c = *cp) != NULL) {
  657. if (c->mfc_flags&MFC_STATIC) {
  658. cp = &c->next;
  659. continue;
  660. }
  661. write_lock_bh(&mrt_lock);
  662. *cp = c->next;
  663. write_unlock_bh(&mrt_lock);
  664. kmem_cache_free(mrt_cachep, c);
  665. }
  666. }
  667. if (atomic_read(&cache_resolve_queue_len) != 0) {
  668. struct mfc_cache *c;
  669. spin_lock_bh(&mfc_unres_lock);
  670. while (mfc_unres_queue != NULL) {
  671. c = mfc_unres_queue;
  672. mfc_unres_queue = c->next;
  673. spin_unlock_bh(&mfc_unres_lock);
  674. ipmr_destroy_unres(c);
  675. spin_lock_bh(&mfc_unres_lock);
  676. }
  677. spin_unlock_bh(&mfc_unres_lock);
  678. }
  679. }
  680. static void mrtsock_destruct(struct sock *sk)
  681. {
  682. rtnl_lock();
  683. if (sk == mroute_socket) {
  684. ipv4_devconf.mc_forwarding--;
  685. write_lock_bh(&mrt_lock);
  686. mroute_socket=NULL;
  687. write_unlock_bh(&mrt_lock);
  688. mroute_clean_tables(sk);
  689. }
  690. rtnl_unlock();
  691. }
  692. /*
  693.  * Socket options and virtual interface manipulation. The whole
  694.  * virtual interface system is a complete heap, but unfortunately
  695.  * that's how BSD mrouted happens to think. Maybe one day with a proper
  696.  * MOSPF/PIM router set up we can clean this up.
  697.  */
  698.  
  699. int ip_mroute_setsockopt(struct sock *sk,int optname,char *optval,int optlen)
  700. {
  701. int ret;
  702. struct vifctl vif;
  703. struct mfcctl mfc;
  704. if(optname!=MRT_INIT)
  705. {
  706. if(sk!=mroute_socket && !capable(CAP_NET_ADMIN))
  707. return -EACCES;
  708. }
  709. switch(optname)
  710. {
  711. case MRT_INIT:
  712. if(sk->type!=SOCK_RAW || sk->num!=IPPROTO_IGMP)
  713. return -EOPNOTSUPP;
  714. if(optlen!=sizeof(int))
  715. return -ENOPROTOOPT;
  716. rtnl_lock();
  717. if (mroute_socket) {
  718. rtnl_unlock();
  719. return -EADDRINUSE;
  720. }
  721. ret = ip_ra_control(sk, 1, mrtsock_destruct);
  722. if (ret == 0) {
  723. write_lock_bh(&mrt_lock);
  724. mroute_socket=sk;
  725. write_unlock_bh(&mrt_lock);
  726. ipv4_devconf.mc_forwarding++;
  727. }
  728. rtnl_unlock();
  729. return ret;
  730. case MRT_DONE:
  731. if (sk!=mroute_socket)
  732. return -EACCES;
  733. return ip_ra_control(sk, 0, NULL);
  734. case MRT_ADD_VIF:
  735. case MRT_DEL_VIF:
  736. if(optlen!=sizeof(vif))
  737. return -EINVAL;
  738. if (copy_from_user(&vif,optval,sizeof(vif)))
  739. return -EFAULT; 
  740. if(vif.vifc_vifi >= MAXVIFS)
  741. return -ENFILE;
  742. rtnl_lock();
  743. if (optname==MRT_ADD_VIF) {
  744. ret = vif_add(&vif, sk==mroute_socket);
  745. } else {
  746. ret = vif_delete(vif.vifc_vifi);
  747. }
  748. rtnl_unlock();
  749. return ret;
  750. /*
  751.  * Manipulate the forwarding caches. These live
  752.  * in a sort of kernel/user symbiosis.
  753.  */
  754. case MRT_ADD_MFC:
  755. case MRT_DEL_MFC:
  756. if(optlen!=sizeof(mfc))
  757. return -EINVAL;
  758. if (copy_from_user(&mfc,optval, sizeof(mfc)))
  759. return -EFAULT;
  760. rtnl_lock();
  761. if (optname==MRT_DEL_MFC)
  762. ret = ipmr_mfc_delete(&mfc);
  763. else
  764. ret = ipmr_mfc_add(&mfc, sk==mroute_socket);
  765. rtnl_unlock();
  766. return ret;
  767. /*
  768.  * Control PIM assert.
  769.  */
  770. case MRT_ASSERT:
  771. {
  772. int v;
  773. if(get_user(v,(int *)optval))
  774. return -EFAULT;
  775. mroute_do_assert=(v)?1:0;
  776. return 0;
  777. }
  778. #ifdef CONFIG_IP_PIMSM
  779. case MRT_PIM:
  780. {
  781. int v;
  782. if(get_user(v,(int *)optval))
  783. return -EFAULT;
  784. v = (v)?1:0;
  785. rtnl_lock();
  786. if (v != mroute_do_pim) {
  787. mroute_do_pim = v;
  788. mroute_do_assert = v;
  789. #ifdef CONFIG_IP_PIMSM_V2
  790. if (mroute_do_pim)
  791. inet_add_protocol(&pim_protocol);
  792. else
  793. inet_del_protocol(&pim_protocol);
  794. #endif
  795. }
  796. rtnl_unlock();
  797. return 0;
  798. }
  799. #endif
  800. /*
  801.  * Spurious command, or MRT_VERSION which you cannot
  802.  * set.
  803.  */
  804. default:
  805. return -ENOPROTOOPT;
  806. }
  807. }
  808. /*
  809.  * Getsock opt support for the multicast routing system.
  810.  */
  811.  
  812. int ip_mroute_getsockopt(struct sock *sk,int optname,char *optval,int *optlen)
  813. {
  814. int olr;
  815. int val;
  816. if(optname!=MRT_VERSION && 
  817. #ifdef CONFIG_IP_PIMSM
  818.    optname!=MRT_PIM &&
  819. #endif
  820.    optname!=MRT_ASSERT)
  821. return -ENOPROTOOPT;
  822. if (get_user(olr, optlen))
  823. return -EFAULT;
  824. olr = min_t(unsigned int, olr, sizeof(int));
  825. if (olr < 0)
  826. return -EINVAL;
  827. if(put_user(olr,optlen))
  828. return -EFAULT;
  829. if(optname==MRT_VERSION)
  830. val=0x0305;
  831. #ifdef CONFIG_IP_PIMSM
  832. else if(optname==MRT_PIM)
  833. val=mroute_do_pim;
  834. #endif
  835. else
  836. val=mroute_do_assert;
  837. if(copy_to_user(optval,&val,olr))
  838. return -EFAULT;
  839. return 0;
  840. }
  841. /*
  842.  * The IP multicast ioctl support routines.
  843.  */
  844.  
  845. int ipmr_ioctl(struct sock *sk, int cmd, unsigned long arg)
  846. {
  847. struct sioc_sg_req sr;
  848. struct sioc_vif_req vr;
  849. struct vif_device *vif;
  850. struct mfc_cache *c;
  851. switch(cmd)
  852. {
  853. case SIOCGETVIFCNT:
  854. if (copy_from_user(&vr,(void *)arg,sizeof(vr)))
  855. return -EFAULT; 
  856. if(vr.vifi>=maxvif)
  857. return -EINVAL;
  858. read_lock(&mrt_lock);
  859. vif=&vif_table[vr.vifi];
  860. if(VIF_EXISTS(vr.vifi)) {
  861. vr.icount=vif->pkt_in;
  862. vr.ocount=vif->pkt_out;
  863. vr.ibytes=vif->bytes_in;
  864. vr.obytes=vif->bytes_out;
  865. read_unlock(&mrt_lock);
  866. if (copy_to_user((void *)arg,&vr,sizeof(vr)))
  867. return -EFAULT;
  868. return 0;
  869. }
  870. read_unlock(&mrt_lock);
  871. return -EADDRNOTAVAIL;
  872. case SIOCGETSGCNT:
  873. if (copy_from_user(&sr,(void *)arg,sizeof(sr)))
  874. return -EFAULT;
  875. read_lock(&mrt_lock);
  876. c = ipmr_cache_find(sr.src.s_addr, sr.grp.s_addr);
  877. if (c) {
  878. sr.pktcnt = c->mfc_un.res.pkt;
  879. sr.bytecnt = c->mfc_un.res.bytes;
  880. sr.wrong_if = c->mfc_un.res.wrong_if;
  881. read_unlock(&mrt_lock);
  882. if (copy_to_user((void *)arg,&sr,sizeof(sr)))
  883. return -EFAULT;
  884. return 0;
  885. }
  886. read_unlock(&mrt_lock);
  887. return -EADDRNOTAVAIL;
  888. default:
  889. return -ENOIOCTLCMD;
  890. }
  891. }
  892. static int ipmr_device_event(struct notifier_block *this, unsigned long event, void *ptr)
  893. {
  894. struct vif_device *v;
  895. int ct;
  896. if (event != NETDEV_UNREGISTER)
  897. return NOTIFY_DONE;
  898. v=&vif_table[0];
  899. for(ct=0;ct<maxvif;ct++,v++) {
  900. if (v->dev==ptr)
  901. vif_delete(ct);
  902. }
  903. return NOTIFY_DONE;
  904. }
  905. static struct notifier_block ip_mr_notifier={
  906. ipmr_device_event,
  907. NULL,
  908. 0
  909. };
  910. /*
  911.  *  Encapsulate a packet by attaching a valid IPIP header to it.
  912.  * This avoids tunnel drivers and other mess and gives us the speed so
  913.  * important for multicast video.
  914.  */
  915.  
  916. static void ip_encap(struct sk_buff *skb, u32 saddr, u32 daddr)
  917. {
  918. struct iphdr *iph = (struct iphdr *)skb_push(skb,sizeof(struct iphdr));
  919. iph->version =  4;
  920. iph->tos = skb->nh.iph->tos;
  921. iph->ttl = skb->nh.iph->ttl;
  922. iph->frag_off = 0;
  923. iph->daddr = daddr;
  924. iph->saddr = saddr;
  925. iph->protocol = IPPROTO_IPIP;
  926. iph->ihl = 5;
  927. iph->tot_len = htons(skb->len);
  928. ip_select_ident(iph, skb->dst, NULL);
  929. ip_send_check(iph);
  930. skb->h.ipiph = skb->nh.iph;
  931. skb->nh.iph = iph;
  932. #ifdef CONFIG_NETFILTER
  933. nf_conntrack_put(skb->nfct);
  934. skb->nfct = NULL;
  935. #endif
  936. }
  937. static inline int ipmr_forward_finish(struct sk_buff *skb)
  938. {
  939. struct dst_entry *dst = skb->dst;
  940. if (skb->len <= dst->pmtu)
  941. return dst->output(skb);
  942. else
  943. return ip_fragment(skb, dst->output);
  944. }
  945. /*
  946.  * Processing handlers for ipmr_forward
  947.  */
  948. static void ipmr_queue_xmit(struct sk_buff *skb, struct mfc_cache *c,
  949.    int vifi, int last)
  950. {
  951. struct iphdr *iph = skb->nh.iph;
  952. struct vif_device *vif = &vif_table[vifi];
  953. struct net_device *dev;
  954. struct rtable *rt;
  955. int    encap = 0;
  956. struct sk_buff *skb2;
  957. if (vif->dev == NULL)
  958. return;
  959. #ifdef CONFIG_IP_PIMSM
  960. if (vif->flags & VIFF_REGISTER) {
  961. vif->pkt_out++;
  962. vif->bytes_out+=skb->len;
  963. ((struct net_device_stats*)vif->dev->priv)->tx_bytes += skb->len;
  964. ((struct net_device_stats*)vif->dev->priv)->tx_packets++;
  965. ipmr_cache_report(skb, vifi, IGMPMSG_WHOLEPKT);
  966. return;
  967. }
  968. #endif
  969. if (vif->flags&VIFF_TUNNEL) {
  970. if (ip_route_output(&rt, vif->remote, vif->local, RT_TOS(iph->tos), vif->link))
  971. return;
  972. encap = sizeof(struct iphdr);
  973. } else {
  974. if (ip_route_output(&rt, iph->daddr, 0, RT_TOS(iph->tos), vif->link))
  975. return;
  976. }
  977. dev = rt->u.dst.dev;
  978. if (skb->len+encap > rt->u.dst.pmtu && (ntohs(iph->frag_off) & IP_DF)) {
  979. /* Do not fragment multicasts. Alas, IPv4 does not
  980.    allow to send ICMP, so that packets will disappear
  981.    to blackhole.
  982.  */
  983. IP_INC_STATS_BH(IpFragFails);
  984. ip_rt_put(rt);
  985. return;
  986. }
  987. encap += dev->hard_header_len;
  988. if (skb_headroom(skb) < encap || skb_cloned(skb) || !last)
  989. skb2 = skb_realloc_headroom(skb, (encap + 15)&~15);
  990. else if (atomic_read(&skb->users) != 1)
  991. skb2 = skb_clone(skb, GFP_ATOMIC);
  992. else {
  993. atomic_inc(&skb->users);
  994. skb2 = skb;
  995. }
  996. if (skb2 == NULL) {
  997. ip_rt_put(rt);
  998. return;
  999. }
  1000. vif->pkt_out++;
  1001. vif->bytes_out+=skb->len;
  1002. dst_release(skb2->dst);
  1003. skb2->dst = &rt->u.dst;
  1004. iph = skb2->nh.iph;
  1005. ip_decrease_ttl(iph);
  1006. /* FIXME: forward and output firewalls used to be called here.
  1007.  * What do we do with netfilter? -- RR */
  1008. if (vif->flags & VIFF_TUNNEL) {
  1009. ip_encap(skb2, vif->local, vif->remote);
  1010. /* FIXME: extra output firewall step used to be here. --RR */
  1011. ((struct ip_tunnel *)vif->dev->priv)->stat.tx_packets++;
  1012. ((struct ip_tunnel *)vif->dev->priv)->stat.tx_bytes+=skb2->len;
  1013. }
  1014. IPCB(skb2)->flags |= IPSKB_FORWARDED;
  1015. /*
  1016.  * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally
  1017.  * not only before forwarding, but after forwarding on all output
  1018.  * interfaces. It is clear, if mrouter runs a multicasting
  1019.  * program, it should receive packets not depending to what interface
  1020.  * program is joined.
  1021.  * If we will not make it, the program will have to join on all
  1022.  * interfaces. On the other hand, multihoming host (or router, but
  1023.  * not mrouter) cannot join to more than one interface - it will
  1024.  * result in receiving multiple packets.
  1025.  */
  1026. NF_HOOK(PF_INET, NF_IP_FORWARD, skb2, skb->dev, dev, 
  1027. ipmr_forward_finish);
  1028. }
  1029. int ipmr_find_vif(struct net_device *dev)
  1030. {
  1031. int ct;
  1032. for (ct=maxvif-1; ct>=0; ct--) {
  1033. if (vif_table[ct].dev == dev)
  1034. break;
  1035. }
  1036. return ct;
  1037. }
  1038. /* "local" means that we should preserve one skb (for local delivery) */
  1039. int ip_mr_forward(struct sk_buff *skb, struct mfc_cache *cache, int local)
  1040. {
  1041. int psend = -1;
  1042. int vif, ct;
  1043. vif = cache->mfc_parent;
  1044. cache->mfc_un.res.pkt++;
  1045. cache->mfc_un.res.bytes += skb->len;
  1046. /*
  1047.  * Wrong interface: drop packet and (maybe) send PIM assert.
  1048.  */
  1049. if (vif_table[vif].dev != skb->dev) {
  1050. int true_vifi;
  1051. if (((struct rtable*)skb->dst)->key.iif == 0) {
  1052. /* It is our own packet, looped back.
  1053.    Very complicated situation...
  1054.    The best workaround until routing daemons will be
  1055.    fixed is not to redistribute packet, if it was
  1056.    send through wrong interface. It means, that
  1057.    multicast applications WILL NOT work for
  1058.    (S,G), which have default multicast route pointing
  1059.    to wrong oif. In any case, it is not a good
  1060.    idea to use multicasting applications on router.
  1061.  */
  1062. goto dont_forward;
  1063. }
  1064. cache->mfc_un.res.wrong_if++;
  1065. true_vifi = ipmr_find_vif(skb->dev);
  1066. if (true_vifi >= 0 && mroute_do_assert &&
  1067.     /* pimsm uses asserts, when switching from RPT to SPT,
  1068.        so that we cannot check that packet arrived on an oif.
  1069.        It is bad, but otherwise we would need to move pretty
  1070.        large chunk of pimd to kernel. Ough... --ANK
  1071.      */
  1072.     (mroute_do_pim || cache->mfc_un.res.ttls[true_vifi] < 255) &&
  1073.     jiffies - cache->mfc_un.res.last_assert > MFC_ASSERT_THRESH) {
  1074. cache->mfc_un.res.last_assert = jiffies;
  1075. ipmr_cache_report(skb, true_vifi, IGMPMSG_WRONGVIF);
  1076. }
  1077. goto dont_forward;
  1078. }
  1079. vif_table[vif].pkt_in++;
  1080. vif_table[vif].bytes_in+=skb->len;
  1081. /*
  1082.  * Forward the frame
  1083.  */
  1084. for (ct = cache->mfc_un.res.maxvif-1; ct >= cache->mfc_un.res.minvif; ct--) {
  1085. if (skb->nh.iph->ttl > cache->mfc_un.res.ttls[ct]) {
  1086. if (psend != -1)
  1087. ipmr_queue_xmit(skb, cache, psend, 0);
  1088. psend=ct;
  1089. }
  1090. }
  1091. if (psend != -1)
  1092. ipmr_queue_xmit(skb, cache, psend, !local);
  1093. dont_forward:
  1094. if (!local)
  1095. kfree_skb(skb);
  1096. return 0;
  1097. }
  1098. /*
  1099.  * Multicast packets for forwarding arrive here
  1100.  */
  1101. int ip_mr_input(struct sk_buff *skb)
  1102. {
  1103. struct mfc_cache *cache;
  1104. int local = ((struct rtable*)skb->dst)->rt_flags&RTCF_LOCAL;
  1105. /* Packet is looped back after forward, it should not be
  1106.    forwarded second time, but still can be delivered locally.
  1107.  */
  1108. if (IPCB(skb)->flags&IPSKB_FORWARDED)
  1109. goto dont_forward;
  1110. if (!local) {
  1111.     if (IPCB(skb)->opt.router_alert) {
  1112.     if (ip_call_ra_chain(skb))
  1113.     return 0;
  1114.     } else if (skb->nh.iph->protocol == IPPROTO_IGMP){
  1115.     /* IGMPv1 (and broken IGMPv2 implementations sort of
  1116.        Cisco IOS <= 11.2(8)) do not put router alert
  1117.        option to IGMP packets destined to routable
  1118.        groups. It is very bad, because it means
  1119.        that we can forward NO IGMP messages.
  1120.      */
  1121.     read_lock(&mrt_lock);
  1122.     if (mroute_socket) {
  1123.     raw_rcv(mroute_socket, skb);
  1124.     read_unlock(&mrt_lock);
  1125.     return 0;
  1126.     }
  1127.     read_unlock(&mrt_lock);
  1128.     }
  1129. }
  1130. read_lock(&mrt_lock);
  1131. cache = ipmr_cache_find(skb->nh.iph->saddr, skb->nh.iph->daddr);
  1132. /*
  1133.  * No usable cache entry
  1134.  */
  1135. if (cache==NULL) {
  1136. int vif;
  1137. if (local) {
  1138. struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
  1139. ip_local_deliver(skb);
  1140. if (skb2 == NULL) {
  1141. read_unlock(&mrt_lock);
  1142. return -ENOBUFS;
  1143. }
  1144. skb = skb2;
  1145. }
  1146. vif = ipmr_find_vif(skb->dev);
  1147. if (vif >= 0) {
  1148. int err = ipmr_cache_unresolved(vif, skb);
  1149. read_unlock(&mrt_lock);
  1150. return err;
  1151. }
  1152. read_unlock(&mrt_lock);
  1153. kfree_skb(skb);
  1154. return -ENODEV;
  1155. }
  1156. ip_mr_forward(skb, cache, local);
  1157. read_unlock(&mrt_lock);
  1158. if (local)
  1159. return ip_local_deliver(skb);
  1160. return 0;
  1161. dont_forward:
  1162. if (local)
  1163. return ip_local_deliver(skb);
  1164. kfree_skb(skb);
  1165. return 0;
  1166. }
  1167. #ifdef CONFIG_IP_PIMSM_V1
  1168. /*
  1169.  * Handle IGMP messages of PIMv1
  1170.  */
  1171. int pim_rcv_v1(struct sk_buff * skb)
  1172. {
  1173. struct igmphdr *pim = (struct igmphdr*)skb->h.raw;
  1174. struct iphdr   *encap;
  1175. struct net_device  *reg_dev = NULL;
  1176. if (skb_is_nonlinear(skb)) {
  1177. if (skb_linearize(skb, GFP_ATOMIC) != 0) {
  1178. kfree_skb(skb);
  1179. return -ENOMEM;
  1180. }
  1181. pim = (struct igmphdr*)skb->h.raw;
  1182. }
  1183.         if (!mroute_do_pim ||
  1184.     skb->len < sizeof(*pim) + sizeof(*encap) ||
  1185.     pim->group != PIM_V1_VERSION || pim->code != PIM_V1_REGISTER) {
  1186. kfree_skb(skb);
  1187.                 return -EINVAL;
  1188.         }
  1189. encap = (struct iphdr*)(skb->h.raw + sizeof(struct igmphdr));
  1190. /*
  1191.    Check that:
  1192.    a. packet is really destinted to a multicast group
  1193.    b. packet is not a NULL-REGISTER
  1194.    c. packet is not truncated
  1195.  */
  1196. if (!MULTICAST(encap->daddr) ||
  1197.     ntohs(encap->tot_len) == 0 ||
  1198.     ntohs(encap->tot_len) + sizeof(*pim) > skb->len) {
  1199. kfree_skb(skb);
  1200. return -EINVAL;
  1201. }
  1202. read_lock(&mrt_lock);
  1203. if (reg_vif_num >= 0)
  1204. reg_dev = vif_table[reg_vif_num].dev;
  1205. if (reg_dev)
  1206. dev_hold(reg_dev);
  1207. read_unlock(&mrt_lock);
  1208. if (reg_dev == NULL) {
  1209. kfree_skb(skb);
  1210. return -EINVAL;
  1211. }
  1212. skb->mac.raw = skb->nh.raw;
  1213. skb_pull(skb, (u8*)encap - skb->data);
  1214. skb->nh.iph = (struct iphdr *)skb->data;
  1215. skb->dev = reg_dev;
  1216. memset(&(IPCB(skb)->opt), 0, sizeof(struct ip_options));
  1217. skb->protocol = htons(ETH_P_IP);
  1218. skb->ip_summed = 0;
  1219. skb->pkt_type = PACKET_HOST;
  1220. dst_release(skb->dst);
  1221. skb->dst = NULL;
  1222. ((struct net_device_stats*)reg_dev->priv)->rx_bytes += skb->len;
  1223. ((struct net_device_stats*)reg_dev->priv)->rx_packets++;
  1224. #ifdef CONFIG_NETFILTER
  1225. nf_conntrack_put(skb->nfct);
  1226. skb->nfct = NULL;
  1227. #endif
  1228. netif_rx(skb);
  1229. dev_put(reg_dev);
  1230. return 0;
  1231. }
  1232. #endif
  1233. #ifdef CONFIG_IP_PIMSM_V2
  1234. int pim_rcv(struct sk_buff * skb)
  1235. {
  1236. struct pimreghdr *pim = (struct pimreghdr*)skb->h.raw;
  1237. struct iphdr   *encap;
  1238. struct net_device  *reg_dev = NULL;
  1239. if (skb_is_nonlinear(skb)) {
  1240. if (skb_linearize(skb, GFP_ATOMIC) != 0) {
  1241. kfree_skb(skb);
  1242. return -ENOMEM;
  1243. }
  1244. pim = (struct pimreghdr*)skb->h.raw;
  1245. }
  1246.         if (skb->len < sizeof(*pim) + sizeof(*encap) ||
  1247.     pim->type != ((PIM_VERSION<<4)|(PIM_REGISTER)) ||
  1248.     (pim->flags&PIM_NULL_REGISTER) ||
  1249.     (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
  1250.      ip_compute_csum((void *)pim, skb->len))) {
  1251. kfree_skb(skb);
  1252.                 return -EINVAL;
  1253.         }
  1254. /* check if the inner packet is destined to mcast group */
  1255. encap = (struct iphdr*)(skb->h.raw + sizeof(struct pimreghdr));
  1256. if (!MULTICAST(encap->daddr) ||
  1257.     ntohs(encap->tot_len) == 0 ||
  1258.     ntohs(encap->tot_len) + sizeof(*pim) > skb->len) {
  1259. kfree_skb(skb);
  1260. return -EINVAL;
  1261. }
  1262. read_lock(&mrt_lock);
  1263. if (reg_vif_num >= 0)
  1264. reg_dev = vif_table[reg_vif_num].dev;
  1265. if (reg_dev)
  1266. dev_hold(reg_dev);
  1267. read_unlock(&mrt_lock);
  1268. if (reg_dev == NULL) {
  1269. kfree_skb(skb);
  1270. return -EINVAL;
  1271. }
  1272. skb->mac.raw = skb->nh.raw;
  1273. skb_pull(skb, (u8*)encap - skb->data);
  1274. skb->nh.iph = (struct iphdr *)skb->data;
  1275. skb->dev = reg_dev;
  1276. memset(&(IPCB(skb)->opt), 0, sizeof(struct ip_options));
  1277. skb->protocol = htons(ETH_P_IP);
  1278. skb->ip_summed = 0;
  1279. skb->pkt_type = PACKET_HOST;
  1280. dst_release(skb->dst);
  1281. ((struct net_device_stats*)reg_dev->priv)->rx_bytes += skb->len;
  1282. ((struct net_device_stats*)reg_dev->priv)->rx_packets++;
  1283. skb->dst = NULL;
  1284. #ifdef CONFIG_NETFILTER
  1285. nf_conntrack_put(skb->nfct);
  1286. skb->nfct = NULL;
  1287. #endif
  1288. netif_rx(skb);
  1289. dev_put(reg_dev);
  1290. return 0;
  1291. }
  1292. #endif
  1293. static int
  1294. ipmr_fill_mroute(struct sk_buff *skb, struct mfc_cache *c, struct rtmsg *rtm)
  1295. {
  1296. int ct;
  1297. struct rtnexthop *nhp;
  1298. struct net_device *dev = vif_table[c->mfc_parent].dev;
  1299. u8 *b = skb->tail;
  1300. struct rtattr *mp_head;
  1301. if (dev)
  1302. RTA_PUT(skb, RTA_IIF, 4, &dev->ifindex);
  1303. mp_head = (struct rtattr*)skb_put(skb, RTA_LENGTH(0));
  1304. for (ct = c->mfc_un.res.minvif; ct < c->mfc_un.res.maxvif; ct++) {
  1305. if (c->mfc_un.res.ttls[ct] < 255) {
  1306. if (skb_tailroom(skb) < RTA_ALIGN(RTA_ALIGN(sizeof(*nhp)) + 4))
  1307. goto rtattr_failure;
  1308. nhp = (struct rtnexthop*)skb_put(skb, RTA_ALIGN(sizeof(*nhp)));
  1309. nhp->rtnh_flags = 0;
  1310. nhp->rtnh_hops = c->mfc_un.res.ttls[ct];
  1311. nhp->rtnh_ifindex = vif_table[ct].dev->ifindex;
  1312. nhp->rtnh_len = sizeof(*nhp);
  1313. }
  1314. }
  1315. mp_head->rta_type = RTA_MULTIPATH;
  1316. mp_head->rta_len = skb->tail - (u8*)mp_head;
  1317. rtm->rtm_type = RTN_MULTICAST;
  1318. return 1;
  1319. rtattr_failure:
  1320. skb_trim(skb, b - skb->data);
  1321. return -EMSGSIZE;
  1322. }
  1323. int ipmr_get_route(struct sk_buff *skb, struct rtmsg *rtm, int nowait)
  1324. {
  1325. int err;
  1326. struct mfc_cache *cache;
  1327. struct rtable *rt = (struct rtable*)skb->dst;
  1328. read_lock(&mrt_lock);
  1329. cache = ipmr_cache_find(rt->rt_src, rt->rt_dst);
  1330. if (cache==NULL) {
  1331. struct net_device *dev;
  1332. int vif;
  1333. if (nowait) {
  1334. read_unlock(&mrt_lock);
  1335. return -EAGAIN;
  1336. }
  1337. dev = skb->dev;
  1338. if (dev == NULL || (vif = ipmr_find_vif(dev)) < 0) {
  1339. read_unlock(&mrt_lock);
  1340. return -ENODEV;
  1341. }
  1342. skb->nh.raw = skb_push(skb, sizeof(struct iphdr));
  1343. skb->nh.iph->ihl = sizeof(struct iphdr)>>2;
  1344. skb->nh.iph->saddr = rt->rt_src;
  1345. skb->nh.iph->daddr = rt->rt_dst;
  1346. skb->nh.iph->version = 0;
  1347. err = ipmr_cache_unresolved(vif, skb);
  1348. read_unlock(&mrt_lock);
  1349. return err;
  1350. }
  1351. if (!nowait && (rtm->rtm_flags&RTM_F_NOTIFY))
  1352. cache->mfc_flags |= MFC_NOTIFY;
  1353. err = ipmr_fill_mroute(skb, cache, rtm);
  1354. read_unlock(&mrt_lock);
  1355. return err;
  1356. }
  1357. #ifdef CONFIG_PROC_FS
  1358. /*
  1359.  * The /proc interfaces to multicast routing /proc/ip_mr_cache /proc/ip_mr_vif
  1360.  */
  1361.  
  1362. static int ipmr_vif_info(char *buffer, char **start, off_t offset, int length)
  1363. {
  1364. struct vif_device *vif;
  1365. int len=0;
  1366. off_t pos=0;
  1367. off_t begin=0;
  1368. int size;
  1369. int ct;
  1370. len += sprintf(buffer,
  1371.  "Interface      BytesIn  PktsIn  BytesOut PktsOut Flags Local    Remoten");
  1372. pos=len;
  1373.   
  1374. read_lock(&mrt_lock);
  1375. for (ct=0;ct<maxvif;ct++) 
  1376. {
  1377. char *name = "none";
  1378. vif=&vif_table[ct];
  1379. if(!VIF_EXISTS(ct))
  1380. continue;
  1381. if (vif->dev)
  1382. name = vif->dev->name;
  1383.          size = sprintf(buffer+len, "%2d %-10s %8ld %7ld  %8ld %7ld %05X %08X %08Xn",
  1384.          ct, name, vif->bytes_in, vif->pkt_in, vif->bytes_out, vif->pkt_out,
  1385.          vif->flags, vif->local, vif->remote);
  1386. len+=size;
  1387. pos+=size;
  1388. if(pos<offset)
  1389. {
  1390. len=0;
  1391. begin=pos;
  1392. }
  1393. if(pos>offset+length)
  1394. break;
  1395.    }
  1396. read_unlock(&mrt_lock);
  1397.   
  1398.    *start=buffer+(offset-begin);
  1399.    len-=(offset-begin);
  1400.    if(len>length)
  1401.    len=length;
  1402. if (len<0)
  1403. len = 0;
  1404.    return len;
  1405. }
  1406. static int ipmr_mfc_info(char *buffer, char **start, off_t offset, int length)
  1407. {
  1408. struct mfc_cache *mfc;
  1409. int len=0;
  1410. off_t pos=0;
  1411. off_t begin=0;
  1412. int size;
  1413. int ct;
  1414. len += sprintf(buffer,
  1415.  "Group    Origin   Iif     Pkts    Bytes    Wrong Oifsn");
  1416. pos=len;
  1417. read_lock(&mrt_lock);
  1418. for (ct=0;ct<MFC_LINES;ct++) 
  1419. {
  1420. for(mfc=mfc_cache_array[ct]; mfc; mfc=mfc->next)
  1421. {
  1422. int n;
  1423. /*
  1424.  * Interface forwarding map
  1425.  */
  1426. size = sprintf(buffer+len, "%08lX %08lX %-3d %8ld %8ld %8ld",
  1427. (unsigned long)mfc->mfc_mcastgrp,
  1428. (unsigned long)mfc->mfc_origin,
  1429. mfc->mfc_parent,
  1430. mfc->mfc_un.res.pkt,
  1431. mfc->mfc_un.res.bytes,
  1432. mfc->mfc_un.res.wrong_if);
  1433. for(n=mfc->mfc_un.res.minvif;n<mfc->mfc_un.res.maxvif;n++)
  1434. {
  1435. if(VIF_EXISTS(n) && mfc->mfc_un.res.ttls[n] < 255)
  1436. size += sprintf(buffer+len+size, " %2d:%-3d", n, mfc->mfc_un.res.ttls[n]);
  1437. }
  1438. size += sprintf(buffer+len+size, "n");
  1439. len+=size;
  1440. pos+=size;
  1441. if(pos<offset)
  1442. {
  1443. len=0;
  1444. begin=pos;
  1445. }
  1446. if(pos>offset+length)
  1447. goto done;
  1448.    }
  1449.    }
  1450. spin_lock_bh(&mfc_unres_lock);
  1451. for(mfc=mfc_unres_queue; mfc; mfc=mfc->next) {
  1452. size = sprintf(buffer+len, "%08lX %08lX %-3d %8ld %8ld %8ldn",
  1453.        (unsigned long)mfc->mfc_mcastgrp,
  1454.        (unsigned long)mfc->mfc_origin,
  1455.        -1,
  1456. (long)mfc->mfc_un.unres.unresolved.qlen,
  1457. 0L, 0L);
  1458. len+=size;
  1459. pos+=size;
  1460. if(pos<offset)
  1461. {
  1462. len=0;
  1463. begin=pos;
  1464. }
  1465. if(pos>offset+length)
  1466. break;
  1467. }
  1468. spin_unlock_bh(&mfc_unres_lock);
  1469. done:
  1470. read_unlock(&mrt_lock);
  1471.    *start=buffer+(offset-begin);
  1472.    len-=(offset-begin);
  1473.    if(len>length)
  1474.    len=length;
  1475. if (len < 0) {
  1476. len = 0;
  1477. }
  1478.    return len;
  1479. }
  1480. #endif
  1481. #ifdef CONFIG_IP_PIMSM_V2
  1482. struct inet_protocol pim_protocol = 
  1483. {
  1484. pim_rcv, /* PIM handler */
  1485. NULL, /* PIM error control */
  1486. NULL, /* next */
  1487. IPPROTO_PIM, /* protocol ID */
  1488. 0, /* copy */
  1489. NULL, /* data */
  1490. "PIM" /* name */
  1491. };
  1492. #endif
  1493. /*
  1494.  * Setup for IP multicast routing
  1495.  */
  1496.  
  1497. void __init ip_mr_init(void)
  1498. {
  1499. printk(KERN_INFO "Linux IP multicast router 0.06 plus PIM-SMn");
  1500. mrt_cachep = kmem_cache_create("ip_mrt_cache",
  1501.        sizeof(struct mfc_cache),
  1502.        0, SLAB_HWCACHE_ALIGN,
  1503.        NULL, NULL);
  1504. init_timer(&ipmr_expire_timer);
  1505. ipmr_expire_timer.function=ipmr_expire_process;
  1506. register_netdevice_notifier(&ip_mr_notifier);
  1507. #ifdef CONFIG_PROC_FS
  1508. proc_net_create("ip_mr_vif",0,ipmr_vif_info);
  1509. proc_net_create("ip_mr_cache",0,ipmr_mfc_info);
  1510. #endif
  1511. }