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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This code is heavily based on the code in ip_fw.h; see that file for
  3.  * copyrights and attributions.  This code is basically GPL.
  4.  *
  5.  * 15-Feb-1997: Major changes to allow graphs for firewall rules.
  6.  *              Paul Russell <Paul.Russell@rustcorp.com.au> and
  7.  * Michael Neuling <Michael.Neuling@rustcorp.com.au>
  8.  * 2-Nov-1997: Changed types to __u16, etc.
  9.  *             Removed IP_FW_F_TCPACK & IP_FW_F_BIDIR.
  10.  *             Added inverse flags field.
  11.  *             Removed multiple port specs.
  12.  */
  13. /*
  14.  *  Format of an IP firewall descriptor
  15.  *
  16.  *  src, dst, src_mask, dst_mask are always stored in network byte order.
  17.  *  flags are stored in host byte order (of course).
  18.  *  Port numbers are stored in HOST byte order.
  19.  */
  20. #ifndef _IP_FWCHAINS_H
  21. #define _IP_FWCHAINS_H
  22. #ifdef __KERNEL__
  23. #include <linux/icmp.h>
  24. #include <linux/in.h>
  25. #include <linux/ip.h>
  26. #include <linux/tcp.h>
  27. #include <linux/udp.h>
  28. #endif /* __KERNEL__ */
  29. #define IP_FW_MAX_LABEL_LENGTH 8
  30. typedef char ip_chainlabel[IP_FW_MAX_LABEL_LENGTH+1];
  31. struct ip_fw
  32. {
  33. struct in_addr fw_src, fw_dst; /* Source and destination IP addr */
  34. struct in_addr fw_smsk, fw_dmsk; /* Mask for src and dest IP addr */
  35. __u32 fw_mark;                          /* ID to stamp on packet */
  36. __u16 fw_proto;                         /* Protocol, 0 = ANY */
  37. __u16 fw_flg;         /* Flags word */
  38.         __u16 fw_invflg;                        /* Inverse flags */
  39. __u16 fw_spts[2];                       /* Source port range. */
  40.         __u16 fw_dpts[2];                       /* Destination port range. */
  41. __u16 fw_redirpt;                       /* Port to redirect to. */
  42. __u16 fw_outputsize;                    /* Max amount to output to
  43.    NETLINK */
  44. char           fw_vianame[IFNAMSIZ]; /* name of interface "via" */
  45. __u8           fw_tosand, fw_tosxor; /* Revised packet priority */
  46. };
  47. struct ip_fwuser
  48. {
  49. struct ip_fw ipfw;
  50. ip_chainlabel label;
  51. };
  52. /* Values for "fw_flg" field .  */
  53. #define IP_FW_F_PRN 0x0001 /* Print packet if it matches */
  54. #define IP_FW_F_TCPSYN 0x0002 /* For tcp packets-check SYN only */
  55. #define IP_FW_F_FRAG 0x0004  /* Set if rule is a fragment rule */
  56. #define IP_FW_F_MARKABS 0x0008  /* Set the mark to fw_mark, not add. */
  57. #define IP_FW_F_WILDIF 0x0010  /* Need only match start of interface name. */
  58. #define IP_FW_F_NETLINK 0x0020  /* Redirect to netlink: 2.1.x only */
  59. #define IP_FW_F_MASK 0x003F /* All possible flag bits mask   */
  60. /* Values for "fw_invflg" field. */
  61. #define IP_FW_INV_SRCIP 0x0001  /* Invert the sense of fw_src. */
  62. #define IP_FW_INV_DSTIP 0x0002  /* Invert the sense of fw_dst. */
  63. #define IP_FW_INV_PROTO 0x0004  /* Invert the sense of fw_proto. */
  64. #define IP_FW_INV_SRCPT 0x0008  /* Invert the sense of source ports. */
  65. #define IP_FW_INV_DSTPT 0x0010  /* Invert the sense of destination ports. */
  66. #define IP_FW_INV_VIA   0x0020  /* Invert the sense of fw_vianame. */
  67. #define IP_FW_INV_SYN   0x0040  /* Invert the sense of IP_FW_F_TCPSYN. */
  68. #define IP_FW_INV_FRAG  0x0080  /* Invert the sense of IP_FW_F_FRAG. */
  69. /*
  70.  * New IP firewall options for [gs]etsockopt at the RAW IP level.
  71.  * Unlike BSD Linux inherits IP options so you don't have to use
  72.  * a raw socket for this. Instead we check rights in the calls.  */
  73. #define IP_FW_BASE_CTL   64 /* base for firewall socket options */
  74. #define IP_FW_APPEND (IP_FW_BASE_CTL)    /* Takes ip_fwchange */
  75. #define IP_FW_REPLACE (IP_FW_BASE_CTL+1)  /* Takes ip_fwnew */
  76. #define IP_FW_DELETE_NUM (IP_FW_BASE_CTL+2)  /* Takes ip_fwdelnum */
  77. #define IP_FW_DELETE (IP_FW_BASE_CTL+3)  /* Takes ip_fwchange */
  78. #define IP_FW_INSERT (IP_FW_BASE_CTL+4)  /* Takes ip_fwnew */
  79. #define IP_FW_FLUSH (IP_FW_BASE_CTL+5)  /* Takes ip_chainlabel */
  80. #define IP_FW_ZERO (IP_FW_BASE_CTL+6)  /* Takes ip_chainlabel */
  81. #define IP_FW_CHECK (IP_FW_BASE_CTL+7)  /* Takes ip_fwtest */
  82. #define IP_FW_MASQ_TIMEOUTS (IP_FW_BASE_CTL+8)  /* Takes 3 ints */
  83. #define IP_FW_CREATECHAIN (IP_FW_BASE_CTL+9)  /* Takes ip_chainlabel */
  84. #define IP_FW_DELETECHAIN (IP_FW_BASE_CTL+10) /* Takes ip_chainlabel */
  85. #define IP_FW_POLICY (IP_FW_BASE_CTL+11) /* Takes ip_fwpolicy */
  86. /* Masquerade control, only 1 optname */
  87. #define IP_FW_MASQ_CTL   (IP_FW_BASE_CTL+12) /* General ip_masq ctl */
  88. /* Builtin chain labels */
  89. #define IP_FW_LABEL_FORWARD "forward"
  90. #define IP_FW_LABEL_INPUT "input"
  91. #define IP_FW_LABEL_OUTPUT "output"
  92. /* Special targets */
  93. #define IP_FW_LABEL_MASQUERADE  "MASQ"
  94. #define IP_FW_LABEL_REDIRECT    "REDIRECT"
  95. #define IP_FW_LABEL_ACCEPT "ACCEPT"
  96. #define IP_FW_LABEL_BLOCK "DENY"
  97. #define IP_FW_LABEL_REJECT "REJECT"
  98. #define IP_FW_LABEL_RETURN "RETURN"
  99. #define IP_FW_LABEL_QUEUE       "QUEUE"
  100. /* Files in /proc/net */
  101. #define IP_FW_PROC_CHAINS "ip_fwchains"
  102. #define IP_FW_PROC_CHAIN_NAMES "ip_fwnames"
  103. struct ip_fwpkt
  104. {
  105. struct iphdr fwp_iph; /* IP header */
  106. union {
  107. struct tcphdr fwp_tcph; /* TCP header or */
  108. struct udphdr fwp_udph; /* UDP header */
  109. struct icmphdr fwp_icmph; /* ICMP header */
  110. } fwp_protoh;
  111. struct in_addr fwp_via; /* interface address */
  112. char           fwp_vianame[IFNAMSIZ]; /* interface name */
  113. };
  114. /* The argument to IP_FW_DELETE and IP_FW_APPEND */
  115. struct ip_fwchange
  116. {
  117. struct ip_fwuser fwc_rule;
  118. ip_chainlabel fwc_label;
  119. };
  120. /* The argument to IP_FW_CHECK. */
  121. struct ip_fwtest
  122. {
  123. struct ip_fwpkt fwt_packet; /* Packet to be tested */
  124. ip_chainlabel fwt_label;   /* Block to start test in */
  125. };
  126. /* The argument to IP_FW_DELETE_NUM */
  127. struct ip_fwdelnum
  128. {
  129. __u32 fwd_rulenum;
  130. ip_chainlabel fwd_label;
  131. };
  132. /* The argument to IP_FW_REPLACE and IP_FW_INSERT */
  133. struct ip_fwnew
  134. {
  135. __u32 fwn_rulenum;
  136. struct ip_fwuser fwn_rule;
  137. ip_chainlabel fwn_label;
  138. };
  139. /* The argument to IP_FW_POLICY */
  140. struct ip_fwpolicy
  141. {
  142. ip_chainlabel fwp_policy;
  143. ip_chainlabel fwp_label;
  144. };
  145. /*
  146.  * timeouts for ip masquerading
  147.  */
  148. extern int ip_fw_masq_timeouts(void *, int);
  149. /*
  150.  * Main firewall chains definitions and global var's definitions.
  151.  */
  152. #ifdef __KERNEL__
  153. #include <linux/config.h>
  154. #include <linux/version.h>
  155. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0)
  156. #include <linux/init.h>
  157. extern void ip_fw_init(void) __init;
  158. #else /* 2.0.x */
  159. extern void ip_fw_init(void);
  160. #endif /* 2.1.x */
  161. extern int ip_fw_ctl(int, void *, int);
  162. #ifdef CONFIG_IP_MASQUERADE
  163. extern int ip_masq_uctl(int, char *, int);
  164. #endif
  165. #endif /* KERNEL */
  166. #endif /* _IP_FWCHAINS_H */