ip_forward.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * The IP forwarding functionality.
  7.  *
  8.  * Version: $Id: ip_forward.c,v 1.48 2000/12/13 18:31:48 davem Exp $
  9.  *
  10.  * Authors: see ip.c
  11.  *
  12.  * Fixes:
  13.  * Many : Split from ip.c , see ip_input.c for 
  14.  * history.
  15.  * Dave Gregorich : NULL ip_rt_put fix for multicast 
  16.  * routing.
  17.  * Jos Vos : Add call_out_firewall before sending,
  18.  * use output device for accounting.
  19.  * Jos Vos : Call forward firewall after routing
  20.  * (always use output device).
  21.  * Mike McLagan : Routing by source
  22.  */
  23. #include <linux/config.h>
  24. #include <linux/types.h>
  25. #include <linux/mm.h>
  26. #include <linux/sched.h>
  27. #include <linux/skbuff.h>
  28. #include <linux/ip.h>
  29. #include <linux/icmp.h>
  30. #include <linux/netdevice.h>
  31. #include <net/sock.h>
  32. #include <net/ip.h>
  33. #include <net/tcp.h>
  34. #include <net/udp.h>
  35. #include <net/icmp.h>
  36. #include <linux/tcp.h>
  37. #include <linux/udp.h>
  38. #include <linux/netfilter_ipv4.h>
  39. #include <net/checksum.h>
  40. #include <linux/route.h>
  41. #include <net/route.h>
  42. static inline int ip_forward_finish(struct sk_buff *skb)
  43. {
  44. struct ip_options * opt = &(IPCB(skb)->opt);
  45. IP_INC_STATS_BH(IpForwDatagrams);
  46. if (opt->optlen == 0) {
  47. #ifdef CONFIG_NET_FASTROUTE
  48. struct rtable *rt = (struct rtable*)skb->dst;
  49. if (rt->rt_flags&RTCF_FAST && !netdev_fastroute_obstacles) {
  50. struct dst_entry *old_dst;
  51. unsigned h = ((*(u8*)&rt->key.dst)^(*(u8*)&rt->key.src))&NETDEV_FASTROUTE_HMASK;
  52. write_lock_irq(&skb->dev->fastpath_lock);
  53. old_dst = skb->dev->fastpath[h];
  54. skb->dev->fastpath[h] = dst_clone(&rt->u.dst);
  55. write_unlock_irq(&skb->dev->fastpath_lock);
  56. dst_release(old_dst);
  57. }
  58. #endif
  59. return (ip_send(skb));
  60. }
  61. ip_forward_options(skb);
  62. return (ip_send(skb));
  63. }
  64. int ip_forward(struct sk_buff *skb)
  65. {
  66. struct net_device *dev2; /* Output device */
  67. struct iphdr *iph; /* Our header */
  68. struct rtable *rt; /* Route we use */
  69. struct ip_options * opt = &(IPCB(skb)->opt);
  70. unsigned short mtu;
  71. if (IPCB(skb)->opt.router_alert && ip_call_ra_chain(skb))
  72. return NET_RX_SUCCESS;
  73. if (skb->pkt_type != PACKET_HOST)
  74. goto drop;
  75. skb->ip_summed = CHECKSUM_NONE;
  76. /*
  77.  * According to the RFC, we must first decrease the TTL field. If
  78.  * that reaches zero, we must reply an ICMP control message telling
  79.  * that the packet's lifetime expired.
  80.  */
  81. iph = skb->nh.iph;
  82. rt = (struct rtable*)skb->dst;
  83. if (iph->ttl <= 1)
  84.                 goto too_many_hops;
  85. if (opt->is_strictroute && rt->rt_dst != rt->rt_gateway)
  86.                 goto sr_failed;
  87. /*
  88.  * Having picked a route we can now send the frame out
  89.  * after asking the firewall permission to do so.
  90.  */
  91. skb->priority = rt_tos2priority(iph->tos);
  92. dev2 = rt->u.dst.dev;
  93. mtu = rt->u.dst.pmtu;
  94. /*
  95.  * We now generate an ICMP HOST REDIRECT giving the route
  96.  * we calculated.
  97.  */
  98. if (rt->rt_flags&RTCF_DOREDIRECT && !opt->srr)
  99. ip_rt_send_redirect(skb);
  100. /* We are about to mangle packet. Copy it! */
  101. if (skb_cow(skb, dev2->hard_header_len))
  102. goto drop;
  103. iph = skb->nh.iph;
  104. /* Decrease ttl after skb cow done */
  105. ip_decrease_ttl(iph);
  106. /*
  107.  * We now may allocate a new buffer, and copy the datagram into it.
  108.  * If the indicated interface is up and running, kick it.
  109.  */
  110. if (skb->len > mtu && (ntohs(iph->frag_off) & IP_DF))
  111. goto frag_needed;
  112. #ifdef CONFIG_IP_ROUTE_NAT
  113. if (rt->rt_flags & RTCF_NAT) {
  114. if (ip_do_nat(skb)) {
  115. kfree_skb(skb);
  116. return NET_RX_BAD;
  117. }
  118. }
  119. #endif
  120. return NF_HOOK(PF_INET, NF_IP_FORWARD, skb, skb->dev, dev2,
  121.        ip_forward_finish);
  122. frag_needed:
  123. IP_INC_STATS_BH(IpFragFails);
  124. icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(mtu));
  125.         goto drop;
  126. sr_failed:
  127.         /*
  128.  * Strict routing permits no gatewaying
  129.  */
  130.          icmp_send(skb, ICMP_DEST_UNREACH, ICMP_SR_FAILED, 0);
  131.          goto drop;
  132. too_many_hops:
  133.         /* Tell the sender its packet died... */
  134.         icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0);
  135. drop:
  136. kfree_skb(skb);
  137. return NET_RX_DROP;
  138. }