ip_nat.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IP_NAT_H
  2. #define _IP_NAT_H
  3. #include <linux/netfilter_ipv4.h>
  4. #include <linux/netfilter_ipv4/ip_conntrack_tuple.h>
  5. #define IP_NAT_MAPPING_TYPE_MAX_NAMELEN 16
  6. enum ip_nat_manip_type
  7. {
  8. IP_NAT_MANIP_SRC,
  9. IP_NAT_MANIP_DST
  10. };
  11. /* SRC manip occurs POST_ROUTING or LOCAL_IN */
  12. #define HOOK2MANIP(hooknum) ((hooknum) != NF_IP_POST_ROUTING && (hooknum) != NF_IP_LOCAL_IN)
  13. #define IP_NAT_RANGE_MAP_IPS 1
  14. #define IP_NAT_RANGE_PROTO_SPECIFIED 2
  15. /* NAT sequence number modifications */
  16. struct ip_nat_seq {
  17. /* position of the last TCP sequence number 
  18.  * modification (if any) */
  19. u_int32_t correction_pos;
  20. /* sequence number offset before and after last modification */
  21. int32_t offset_before, offset_after;
  22. };
  23. /* Single range specification. */
  24. struct ip_nat_range
  25. {
  26. /* Set to OR of flags above. */
  27. unsigned int flags;
  28. /* Inclusive: network order. */
  29. u_int32_t min_ip, max_ip;
  30. /* Inclusive: network order */
  31. union ip_conntrack_manip_proto min, max;
  32. };
  33. /* For backwards compat: don't use in modern code. */
  34. struct ip_nat_multi_range_compat
  35. {
  36. unsigned int rangesize; /* Must be 1. */
  37. /* hangs off end. */
  38. struct ip_nat_range range[1];
  39. };
  40. #ifdef __KERNEL__
  41. #include <linux/list.h>
  42. /* Protects NAT hash tables, and NAT-private part of conntracks. */
  43. extern rwlock_t ip_nat_lock;
  44. /* The structure embedded in the conntrack structure. */
  45. struct ip_nat_info
  46. {
  47. struct list_head bysource;
  48. struct ip_nat_seq seq[IP_CT_DIR_MAX];
  49. };
  50. struct ip_conntrack;
  51. /* Set up the info structure to map into this range. */
  52. extern unsigned int ip_nat_setup_info(struct ip_conntrack *conntrack,
  53.       const struct ip_nat_range *range,
  54.       unsigned int hooknum);
  55. /* Is this tuple already taken? (not by us)*/
  56. extern int ip_nat_used_tuple(const struct ip_conntrack_tuple *tuple,
  57.      const struct ip_conntrack *ignored_conntrack);
  58. /* Calculate relative checksum. */
  59. extern u_int16_t ip_nat_cheat_check(u_int32_t oldvalinv,
  60.     u_int32_t newval,
  61.     u_int16_t oldcheck);
  62. #else  /* !__KERNEL__: iptables wants this to compile. */
  63. #define ip_nat_multi_range ip_nat_multi_range_compat
  64. #endif /*__KERNEL__*/
  65. #endif