xt_state.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Kernel module to match connection tracking information. */
  2. /* (C) 1999-2001 Paul `Rusty' Russell
  3. * (C) 2002-2005 Netfilter Core Team <coreteam@netfilter.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <linux/module.h>
  10. #include <linux/skbuff.h>
  11. #include <net/netfilter/nf_conntrack.h>
  12. #include <linux/netfilter/x_tables.h>
  13. #include <linux/netfilter/xt_state.h>
  14. MODULE_LICENSE("GPL");
  15. MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
  16. MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module");
  17. MODULE_ALIAS("ipt_state");
  18. MODULE_ALIAS("ip6t_state");
  19. static bool
  20. state_mt(const struct sk_buff *skb, struct xt_action_param *par)
  21. {
  22. const struct xt_state_info *sinfo = par->matchinfo;
  23. enum ip_conntrack_info ctinfo;
  24. unsigned int statebit;
  25. struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
  26. if (!ct)
  27. statebit = XT_STATE_INVALID;
  28. else {
  29. if (nf_ct_is_untracked(ct))
  30. statebit = XT_STATE_UNTRACKED;
  31. else
  32. statebit = XT_STATE_BIT(ctinfo);
  33. }
  34. return (sinfo->statemask & statebit);
  35. }
  36. static int state_mt_check(const struct xt_mtchk_param *par)
  37. {
  38. int ret;
  39. ret = nf_ct_l3proto_try_module_get(par->family);
  40. if (ret < 0)
  41. pr_info("cannot load conntrack support for proto=%u\n",
  42. par->family);
  43. return ret;
  44. }
  45. static void state_mt_destroy(const struct xt_mtdtor_param *par)
  46. {
  47. nf_ct_l3proto_module_put(par->family);
  48. }
  49. static struct xt_match state_mt_reg __read_mostly = {
  50. .name = "state",
  51. .family = NFPROTO_UNSPEC,
  52. .checkentry = state_mt_check,
  53. .match = state_mt,
  54. .destroy = state_mt_destroy,
  55. .matchsize = sizeof(struct xt_state_info),
  56. .me = THIS_MODULE,
  57. };
  58. static int __init state_mt_init(void)
  59. {
  60. return xt_register_match(&state_mt_reg);
  61. }
  62. static void __exit state_mt_exit(void)
  63. {
  64. xt_unregister_match(&state_mt_reg);
  65. }
  66. module_init(state_mt_init);
  67. module_exit(state_mt_exit);