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

嵌入式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. /* Responses from hook functions. */
  13. #define NF_DROP 0
  14. #define NF_ACCEPT 1
  15. #define NF_STOLEN 2
  16. #define NF_QUEUE 3
  17. #define NF_REPEAT 4
  18. #define NF_MAX_VERDICT NF_REPEAT
  19. /* Generic cache responses from hook functions. */
  20. #define NFC_ALTERED 0x8000
  21. #define NFC_UNKNOWN 0x4000
  22. #ifdef __KERNEL__
  23. #include <linux/config.h>
  24. #ifdef CONFIG_NETFILTER
  25. extern void netfilter_init(void);
  26. /* Largest hook number + 1 */
  27. #define NF_MAX_HOOKS 8
  28. struct sk_buff;
  29. struct net_device;
  30. typedef unsigned int nf_hookfn(unsigned int hooknum,
  31.        struct sk_buff **skb,
  32.        const struct net_device *in,
  33.        const struct net_device *out,
  34.        int (*okfn)(struct sk_buff *));
  35. struct nf_hook_ops
  36. {
  37. struct list_head list;
  38. /* User fills in from here down. */
  39. nf_hookfn *hook;
  40. int pf;
  41. int hooknum;
  42. /* Hooks are ordered in ascending priority. */
  43. int priority;
  44. };
  45. struct nf_sockopt_ops
  46. {
  47. struct list_head list;
  48. int pf;
  49. /* Non-inclusive ranges: use 0/0/NULL to never get called. */
  50. int set_optmin;
  51. int set_optmax;
  52. int (*set)(struct sock *sk, int optval, void *user, unsigned int len);
  53. int get_optmin;
  54. int get_optmax;
  55. int (*get)(struct sock *sk, int optval, void *user, int *len);
  56. /* Number of users inside set() or get(). */
  57. unsigned int use;
  58. struct task_struct *cleanup_task;
  59. };
  60. /* Each queued (to userspace) skbuff has one of these. */
  61. struct nf_info
  62. {
  63. /* The ops struct which sent us to userspace. */
  64. struct nf_hook_ops *elem;
  65. /* If we're sent to userspace, this keeps housekeeping info */
  66. int pf;
  67. unsigned int hook;
  68. struct net_device *indev, *outdev;
  69. int (*okfn)(struct sk_buff *);
  70. };
  71.                                                                                 
  72. /* Function to register/unregister hook points. */
  73. int nf_register_hook(struct nf_hook_ops *reg);
  74. void nf_unregister_hook(struct nf_hook_ops *reg);
  75. /* Functions to register get/setsockopt ranges (non-inclusive).  You
  76.    need to check permissions yourself! */
  77. int nf_register_sockopt(struct nf_sockopt_ops *reg);
  78. void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
  79. extern struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS];
  80. /* Activate hook; either okfn or kfree_skb called, unless a hook
  81.    returns NF_STOLEN (in which case, it's up to the hook to deal with
  82.    the consequences).
  83.    Returns -ERRNO if packet dropped.  Zero means queued, stolen or
  84.    accepted.
  85. */
  86. /* RR:
  87.    > I don't want nf_hook to return anything because people might forget
  88.    > about async and trust the return value to mean "packet was ok".
  89.    AK:
  90.    Just document it clearly, then you can expect some sense from kernel
  91.    coders :)
  92. */
  93. /* This is gross, but inline doesn't cut it for avoiding the function
  94.    call in fast path: gcc doesn't inline (needs value tracking?). --RR */
  95. #ifdef CONFIG_NETFILTER_DEBUG
  96. #define NF_HOOK nf_hook_slow
  97. #else
  98. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn)
  99. (list_empty(&nf_hooks[(pf)][(hook)])
  100.  ? (okfn)(skb)
  101.  : nf_hook_slow((pf), (hook), (skb), (indev), (outdev), (okfn)))
  102. #endif
  103. int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
  104.  struct net_device *indev, struct net_device *outdev,
  105.  int (*okfn)(struct sk_buff *));
  106. /* Call setsockopt() */
  107. int nf_setsockopt(struct sock *sk, int pf, int optval, char *opt, 
  108.   int len);
  109. int nf_getsockopt(struct sock *sk, int pf, int optval, char *opt,
  110.   int *len);
  111. /* Packet queuing */
  112. typedef int (*nf_queue_outfn_t)(struct sk_buff *skb, 
  113.                                 struct nf_info *info, void *data);
  114. extern int nf_register_queue_handler(int pf, 
  115.                                      nf_queue_outfn_t outfn, void *data);
  116. extern int nf_unregister_queue_handler(int pf);
  117. extern void nf_reinject(struct sk_buff *skb,
  118. struct nf_info *info,
  119. unsigned int verdict);
  120. extern void (*ip_ct_attach)(struct sk_buff *, struct nf_ct_info *);
  121. #ifdef CONFIG_NETFILTER_DEBUG
  122. extern void nf_dump_skb(int pf, struct sk_buff *skb);
  123. #endif
  124. /* FIXME: Before cache is ever used, this must be implemented for real. */
  125. extern void nf_invalidate_cache(int pf);
  126. #else /* !CONFIG_NETFILTER */
  127. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
  128. #endif /*CONFIG_NETFILTER*/
  129. /* From arch/i386/kernel/smp.c:
  130.  *
  131.  * Why isn't this somewhere standard ??
  132.  *
  133.  * Maybe because this procedure is horribly buggy, and does
  134.  * not deserve to live.  Think about signedness issues for five
  135.  * seconds to see why. - Linus
  136.  */
  137. /* Two signed, return a signed. */
  138. #define SMAX(a,b) ((ssize_t)(a)>(ssize_t)(b) ? (ssize_t)(a) : (ssize_t)(b))
  139. #define SMIN(a,b) ((ssize_t)(a)<(ssize_t)(b) ? (ssize_t)(a) : (ssize_t)(b))
  140. /* Two unsigned, return an unsigned. */
  141. #define UMAX(a,b) ((size_t)(a)>(size_t)(b) ? (size_t)(a) : (size_t)(b))
  142. #define UMIN(a,b) ((size_t)(a)<(size_t)(b) ? (size_t)(a) : (size_t)(b))
  143. /* Two unsigned, return a signed. */
  144. #define SUMAX(a,b) ((size_t)(a)>(size_t)(b) ? (ssize_t)(a) : (ssize_t)(b))
  145. #define SUMIN(a,b) ((size_t)(a)<(size_t)(b) ? (ssize_t)(a) : (ssize_t)(b))
  146. #endif /*__KERNEL__*/
  147. #endif /*__LINUX_NETFILTER_H*/