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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Kernel module to match connection tracking information.
  2.  * GPL (C) 1999  Rusty Russell (rusty@rustcorp.com.au).
  3.  */
  4. #include <linux/module.h>
  5. #include <linux/skbuff.h>
  6. #include <linux/netfilter_ipv4/ip_conntrack.h>
  7. #include <linux/netfilter_ipv4/ip_tables.h>
  8. #include <linux/netfilter_ipv4/ipt_state.h>
  9. static int
  10. match(const struct sk_buff *skb,
  11.       const struct net_device *in,
  12.       const struct net_device *out,
  13.       const void *matchinfo,
  14.       int offset,
  15.       const void *hdr,
  16.       u_int16_t datalen,
  17.       int *hotdrop)
  18. {
  19. const struct ipt_state_info *sinfo = matchinfo;
  20. enum ip_conntrack_info ctinfo;
  21. unsigned int statebit;
  22. if (!ip_conntrack_get((struct sk_buff *)skb, &ctinfo))
  23. statebit = IPT_STATE_INVALID;
  24. else
  25. statebit = IPT_STATE_BIT(ctinfo);
  26. return (sinfo->statemask & statebit);
  27. }
  28. static int check(const char *tablename,
  29.  const struct ipt_ip *ip,
  30.  void *matchinfo,
  31.  unsigned int matchsize,
  32.  unsigned int hook_mask)
  33. {
  34. if (matchsize != IPT_ALIGN(sizeof(struct ipt_state_info)))
  35. return 0;
  36. return 1;
  37. }
  38. static struct ipt_match state_match
  39. = { { NULL, NULL }, "state", &match, &check, NULL, THIS_MODULE };
  40. static int __init init(void)
  41. {
  42. /* NULL if ip_conntrack not a module */
  43. if (ip_conntrack_module)
  44. __MOD_INC_USE_COUNT(ip_conntrack_module);
  45. return ipt_register_match(&state_match);
  46. }
  47. static void __exit fini(void)
  48. {
  49. ipt_unregister_match(&state_match);
  50. if (ip_conntrack_module)
  51. __MOD_DEC_USE_COUNT(ip_conntrack_module);
  52. }
  53. module_init(init);
  54. module_exit(fini);
  55. MODULE_LICENSE("GPL");