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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_NETFILTER_H
  2. #define __LINUX_NETFILTER_H
  3. #ifdef __KERNEL__
  4. #include <linux/init.h>
  5. #include <linux/types.h>
  6. #include <linux/skbuff.h>
  7. #include <linux/net.h>
  8. #include <linux/if.h>
  9. #include <linux/wait.h>
  10. #include <linux/list.h>
  11. #endif
  12. #include <linux/compiler.h>
  13. /* Responses from hook functions. */
  14. #define NF_DROP 0
  15. #define NF_ACCEPT 1
  16. #define NF_STOLEN 2
  17. #define NF_QUEUE 3
  18. #define NF_REPEAT 4
  19. #define NF_STOP 5
  20. #define NF_MAX_VERDICT NF_STOP
  21. /* we overload the higher bits for encoding auxiliary data such as the queue
  22.  * number. Not nice, but better than additional function arguments. */
  23. #define NF_VERDICT_MASK 0x0000ffff
  24. #define NF_VERDICT_BITS 16
  25. #define NF_VERDICT_QMASK 0xffff0000
  26. #define NF_VERDICT_QBITS 16
  27. #define NF_QUEUE_NR(x) (((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK) | NF_QUEUE)
  28. /* only for userspace compatibility */
  29. #ifndef __KERNEL__
  30. /* Generic cache responses from hook functions.
  31.    <= 0x2000 is used for protocol-flags. */
  32. #define NFC_UNKNOWN 0x4000
  33. #define NFC_ALTERED 0x8000
  34. #endif
  35. #ifdef __KERNEL__
  36. #include <linux/config.h>
  37. #ifdef CONFIG_NETFILTER
  38. extern void netfilter_init(void);
  39. /* Largest hook number + 1 */
  40. #define NF_MAX_HOOKS 8
  41. struct sk_buff;
  42. struct net_device;
  43. typedef unsigned int nf_hookfn(unsigned int hooknum,
  44.        struct sk_buff **skb,
  45.        const struct net_device *in,
  46.        const struct net_device *out,
  47.        int (*okfn)(struct sk_buff *));
  48. struct nf_hook_ops
  49. {
  50. struct list_head list;
  51. /* User fills in from here down. */
  52. nf_hookfn *hook;
  53. struct module *owner;
  54. int pf;
  55. int hooknum;
  56. /* Hooks are ordered in ascending priority. */
  57. int priority;
  58. };
  59. struct nf_sockopt_ops
  60. {
  61. struct list_head list;
  62. int pf;
  63. /* Non-inclusive ranges: use 0/0/NULL to never get called. */
  64. int set_optmin;
  65. int set_optmax;
  66. int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
  67. int get_optmin;
  68. int get_optmax;
  69. int (*get)(struct sock *sk, int optval, void __user *user, int *len);
  70. /* Number of users inside set() or get(). */
  71. unsigned int use;
  72. struct task_struct *cleanup_task;
  73. };
  74. /* Each queued (to userspace) skbuff has one of these. */
  75. struct nf_info
  76. {
  77. /* The ops struct which sent us to userspace. */
  78. struct nf_hook_ops *elem;
  79. /* If we're sent to userspace, this keeps housekeeping info */
  80. int pf;
  81. unsigned int hook;
  82. struct net_device *indev, *outdev;
  83. int (*okfn)(struct sk_buff *);
  84. };
  85.                                                                                 
  86. /* Function to register/unregister hook points. */
  87. int nf_register_hook(struct nf_hook_ops *reg);
  88. void nf_unregister_hook(struct nf_hook_ops *reg);
  89. /* Functions to register get/setsockopt ranges (non-inclusive).  You
  90.    need to check permissions yourself! */
  91. int nf_register_sockopt(struct nf_sockopt_ops *reg);
  92. void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
  93. extern struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS];
  94. /* those NF_LOG_* defines and struct nf_loginfo are legacy definitios that will
  95.  * disappear once iptables is replaced with pkttables.  Please DO NOT use them
  96.  * for any new code! */
  97. #define NF_LOG_TCPSEQ 0x01 /* Log TCP sequence numbers */
  98. #define NF_LOG_TCPOPT 0x02 /* Log TCP options */
  99. #define NF_LOG_IPOPT 0x04 /* Log IP options */
  100. #define NF_LOG_UID 0x08 /* Log UID owning local socket */
  101. #define NF_LOG_MASK 0x0f
  102. #define NF_LOG_TYPE_LOG 0x01
  103. #define NF_LOG_TYPE_ULOG 0x02
  104. struct nf_loginfo {
  105. u_int8_t type;
  106. union {
  107. struct {
  108. u_int32_t copy_len;
  109. u_int16_t group;
  110. u_int16_t qthreshold;
  111. } ulog;
  112. struct {
  113. u_int8_t level;
  114. u_int8_t logflags;
  115. } log;
  116. } u;
  117. };
  118. typedef void nf_logfn(unsigned int pf,
  119.       unsigned int hooknum,
  120.       const struct sk_buff *skb,
  121.       const struct net_device *in,
  122.       const struct net_device *out,
  123.       const struct nf_loginfo *li,
  124.       const char *prefix);
  125. struct nf_logger {
  126. struct module *me;
  127. nf_logfn  *logfn;
  128. char *name;
  129. };
  130. /* Function to register/unregister log function. */
  131. int nf_log_register(int pf, struct nf_logger *logger);
  132. int nf_log_unregister_pf(int pf);
  133. void nf_log_unregister_logger(struct nf_logger *logger);
  134. /* Calls the registered backend logging function */
  135. void nf_log_packet(int pf,
  136.    unsigned int hooknum,
  137.    const struct sk_buff *skb,
  138.    const struct net_device *in,
  139.    const struct net_device *out,
  140.    struct nf_loginfo *li,
  141.    const char *fmt, ...);
  142.                    
  143. /* Activate hook; either okfn or kfree_skb called, unless a hook
  144.    returns NF_STOLEN (in which case, it's up to the hook to deal with
  145.    the consequences).
  146.    Returns -ERRNO if packet dropped.  Zero means queued, stolen or
  147.    accepted.
  148. */
  149. /* RR:
  150.    > I don't want nf_hook to return anything because people might forget
  151.    > about async and trust the return value to mean "packet was ok".
  152.    AK:
  153.    Just document it clearly, then you can expect some sense from kernel
  154.    coders :)
  155. */
  156. /* This is gross, but inline doesn't cut it for avoiding the function
  157.    call in fast path: gcc doesn't inline (needs value tracking?). --RR */
  158. #ifdef CONFIG_NETFILTER_DEBUG
  159. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn)        
  160. ({int __ret;        
  161. if ((__ret=nf_hook_slow(pf, hook, &(skb), indev, outdev, okfn, INT_MIN)) == 1) 
  162. __ret = (okfn)(skb);        
  163. __ret;})
  164. #define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh)        
  165. ({int __ret;        
  166. if ((__ret=nf_hook_slow(pf, hook, &(skb), indev, outdev, okfn, thresh)) == 1)  
  167. __ret = (okfn)(skb);        
  168. __ret;})
  169. #else
  170. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn)        
  171. ({int __ret;        
  172. if (list_empty(&nf_hooks[pf][hook]) ||        
  173.     (__ret=nf_hook_slow(pf, hook, &(skb), indev, outdev, okfn, INT_MIN)) == 1) 
  174. __ret = (okfn)(skb);        
  175. __ret;})
  176. #define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh)        
  177. ({int __ret;        
  178. if (list_empty(&nf_hooks[pf][hook]) ||        
  179.     (__ret=nf_hook_slow(pf, hook, &(skb), indev, outdev, okfn, thresh)) == 1)  
  180. __ret = (okfn)(skb);        
  181. __ret;})
  182. #endif
  183. int nf_hook_slow(int pf, unsigned int hook, struct sk_buff **pskb,
  184.  struct net_device *indev, struct net_device *outdev,
  185.  int (*okfn)(struct sk_buff *), int thresh);
  186. /* Call setsockopt() */
  187. int nf_setsockopt(struct sock *sk, int pf, int optval, char __user *opt, 
  188.   int len);
  189. int nf_getsockopt(struct sock *sk, int pf, int optval, char __user *opt,
  190.   int *len);
  191. /* Packet queuing */
  192. struct nf_queue_handler {
  193. int (*outfn)(struct sk_buff *skb, struct nf_info *info,
  194.      unsigned int queuenum, void *data);
  195. void *data;
  196. char *name;
  197. };
  198. extern int nf_register_queue_handler(int pf, 
  199.                                      struct nf_queue_handler *qh);
  200. extern int nf_unregister_queue_handler(int pf);
  201. extern void nf_unregister_queue_handlers(struct nf_queue_handler *qh);
  202. extern void nf_reinject(struct sk_buff *skb,
  203. struct nf_info *info,
  204. unsigned int verdict);
  205. extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
  206. extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
  207. /* FIXME: Before cache is ever used, this must be implemented for real. */
  208. extern void nf_invalidate_cache(int pf);
  209. /* Call this before modifying an existing packet: ensures it is
  210.    modifiable and linear to the point you care about (writable_len).
  211.    Returns true or false. */
  212. extern int skb_make_writable(struct sk_buff **pskb, unsigned int writable_len);
  213. struct nf_queue_rerouter {
  214. void (*save)(const struct sk_buff *skb, struct nf_info *info);
  215. int (*reroute)(struct sk_buff **skb, const struct nf_info *info);
  216. int rer_size;
  217. };
  218. #define nf_info_reroute(x) ((void *)x + sizeof(struct nf_info))
  219. extern int nf_register_queue_rerouter(int pf, struct nf_queue_rerouter *rer);
  220. extern int nf_unregister_queue_rerouter(int pf);
  221. #ifdef CONFIG_PROC_FS
  222. #include <linux/proc_fs.h>
  223. extern struct proc_dir_entry *proc_net_netfilter;
  224. #endif
  225. #else /* !CONFIG_NETFILTER */
  226. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
  227. static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
  228. #endif /*CONFIG_NETFILTER*/
  229. #endif /*__KERNEL__*/
  230. #endif /*__LINUX_NETFILTER_H*/