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

Linux/Unix编程

开发平台:

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.  * Definitions for the IP router.
  7.  *
  8.  * Version: @(#)route.h 1.0.4 05/27/93
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Fixes:
  13.  * Alan Cox : Reformatted. Added ip_rt_local()
  14.  * Alan Cox : Support for TCP parameters.
  15.  * Alexey Kuznetsov: Major changes for new routing code.
  16.  * Mike McLagan    : Routing by source
  17.  * Robert Olsson   : Added rt_cache statistics
  18.  *
  19.  * This program is free software; you can redistribute it and/or
  20.  * modify it under the terms of the GNU General Public License
  21.  * as published by the Free Software Foundation; either version
  22.  * 2 of the License, or (at your option) any later version.
  23.  */
  24. #ifndef _ROUTE_H
  25. #define _ROUTE_H
  26. #include <linux/config.h>
  27. #include <net/dst.h>
  28. #include <net/inetpeer.h>
  29. #include <linux/in_route.h>
  30. #include <linux/rtnetlink.h>
  31. #include <linux/route.h>
  32. #include <linux/ip.h>
  33. #include <linux/cache.h>
  34. #ifndef __KERNEL__
  35. #warning This file is not supposed to be used outside of kernel.
  36. #endif
  37. #define RTO_ONLINK 0x01
  38. #define RTO_CONN 0
  39. /* RTO_CONN is not used (being alias for 0), but preserved not to break
  40.  * some modules referring to it. */
  41. #define RT_CONN_FLAGS(sk)   (RT_TOS(sk->protinfo.af_inet.tos) | sk->localroute)
  42. struct rt_key
  43. {
  44. __u32 dst;
  45. __u32 src;
  46. int iif;
  47. int oif;
  48. #ifdef CONFIG_IP_ROUTE_FWMARK
  49. __u32 fwmark;
  50. #endif
  51. __u8 tos;
  52. __u8 scope;
  53. };
  54. struct inet_peer;
  55. struct rtable
  56. {
  57. union
  58. {
  59. struct dst_entry dst;
  60. struct rtable *rt_next;
  61. } u;
  62. unsigned rt_flags;
  63. unsigned rt_type;
  64. __u32 rt_dst; /* Path destination */
  65. __u32 rt_src; /* Path source */
  66. int rt_iif;
  67. /* Info on neighbour */
  68. __u32 rt_gateway;
  69. /* Cache lookup keys */
  70. struct rt_key key;
  71. /* Miscellaneous cached information */
  72. __u32 rt_spec_dst; /* RFC1122 specific destination */
  73. struct inet_peer *peer; /* long-living peer info */
  74. #ifdef CONFIG_IP_ROUTE_NAT
  75. __u32 rt_src_map;
  76. __u32 rt_dst_map;
  77. #endif
  78. };
  79. struct ip_rt_acct
  80. {
  81. __u32  o_bytes;
  82. __u32  o_packets;
  83. __u32  i_bytes;
  84. __u32  i_packets;
  85. };
  86. struct rt_cache_stat 
  87. {
  88.         unsigned int in_hit;
  89.         unsigned int in_slow_tot;
  90.         unsigned int in_slow_mc;
  91.         unsigned int in_no_route;
  92.         unsigned int in_brd;
  93.         unsigned int in_martian_dst;
  94.         unsigned int in_martian_src;
  95.         unsigned int out_hit;
  96.         unsigned int out_slow_tot;
  97.         unsigned int out_slow_mc;
  98.         unsigned int gc_total;
  99.         unsigned int gc_ignored;
  100.         unsigned int gc_goal_miss;
  101.         unsigned int gc_dst_overflow;
  102. } ____cacheline_aligned_in_smp;
  103. extern struct ip_rt_acct *ip_rt_acct;
  104. struct in_device;
  105. extern void ip_rt_init(void);
  106. extern void ip_rt_redirect(u32 old_gw, u32 dst, u32 new_gw,
  107.        u32 src, u8 tos, struct net_device *dev);
  108. extern void ip_rt_advice(struct rtable **rp, int advice);
  109. extern void rt_cache_flush(int how);
  110. extern int ip_route_output_key(struct rtable **, const struct rt_key *key);
  111. extern int ip_route_input(struct sk_buff*, u32 dst, u32 src, u8 tos, struct net_device *devin);
  112. extern unsigned short ip_rt_frag_needed(struct iphdr *iph, unsigned short new_mtu);
  113. extern void ip_rt_update_pmtu(struct dst_entry *dst, unsigned mtu);
  114. extern void ip_rt_send_redirect(struct sk_buff *skb);
  115. extern unsigned inet_addr_type(u32 addr);
  116. extern void ip_rt_multicast_event(struct in_device *);
  117. extern int ip_rt_ioctl(unsigned int cmd, void *arg);
  118. extern void ip_rt_get_source(u8 *src, struct rtable *rt);
  119. extern int ip_rt_dump(struct sk_buff *skb,  struct netlink_callback *cb);
  120. /* Deprecated: use ip_route_output_key directly */
  121. static inline int ip_route_output(struct rtable **rp,
  122.       u32 daddr, u32 saddr, u32 tos, int oif)
  123. {
  124. struct rt_key key = { dst:daddr, src:saddr, oif:oif, tos:tos };
  125. return ip_route_output_key(rp, &key);
  126. }
  127. static inline void ip_rt_put(struct rtable * rt)
  128. {
  129. if (rt)
  130. dst_release(&rt->u.dst);
  131. }
  132. #define IPTOS_RT_MASK (IPTOS_TOS_MASK & ~3)
  133. extern __u8 ip_tos2prio[16];
  134. static inline char rt_tos2priority(u8 tos)
  135. {
  136. return ip_tos2prio[IPTOS_TOS(tos)>>1];
  137. }
  138. static inline int ip_route_connect(struct rtable **rp, u32 dst, u32 src, u32 tos, int oif)
  139. {
  140. int err;
  141. err = ip_route_output(rp, dst, src, tos, oif);
  142. if (err || (dst && src))
  143. return err;
  144. dst = (*rp)->rt_dst;
  145. src = (*rp)->rt_src;
  146. ip_rt_put(*rp);
  147. *rp = NULL;
  148. return ip_route_output(rp, dst, src, tos, oif);
  149. }
  150. extern void rt_bind_peer(struct rtable *rt, int create);
  151. static inline struct inet_peer *rt_get_peer(struct rtable *rt)
  152. {
  153. if (rt->peer)
  154. return rt->peer;
  155. rt_bind_peer(rt, 0);
  156. return rt->peer;
  157. }
  158. #endif /* _ROUTE_H */