blob: a776dc36a19343ae678cf192baa7ae680c4e1478 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/* Kernel module to match connection tracking information. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2005 Netfilter Core Team <coreteam@netfilter.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/skbuff.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070013#include <net/netfilter/nf_conntrack.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080014#include <linux/netfilter/x_tables.h>
15#include <linux/netfilter/xt_state.h>
16
17MODULE_LICENSE("GPL");
18MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
19MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module");
20MODULE_ALIAS("ipt_state");
21MODULE_ALIAS("ip6t_state");
22
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070023static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080024state_mt(const struct sk_buff *skb, const struct net_device *in,
25 const struct net_device *out, const struct xt_match *match,
26 const void *matchinfo, int offset, unsigned int protoff,
27 bool *hotdrop)
Harald Welte2e4e6a12006-01-12 13:30:04 -080028{
29 const struct xt_state_info *sinfo = matchinfo;
30 enum ip_conntrack_info ctinfo;
31 unsigned int statebit;
32
33 if (nf_ct_is_untracked(skb))
34 statebit = XT_STATE_UNTRACKED;
Patrick McHardy587aa642007-03-14 16:37:25 -070035 else if (!nf_ct_get(skb, &ctinfo))
Harald Welte2e4e6a12006-01-12 13:30:04 -080036 statebit = XT_STATE_INVALID;
37 else
38 statebit = XT_STATE_BIT(ctinfo);
39
40 return (sinfo->statemask & statebit);
41}
42
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080043static bool
44state_mt_check(const char *tablename, const void *inf,
45 const struct xt_match *match, void *matchinfo,
46 unsigned int hook_mask)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080047{
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080048 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
Yasuyuki Kozakaife0b9292006-12-12 00:28:40 -080049 printk(KERN_WARNING "can't load conntrack support for "
Jan Engelhardtdf54aae2007-12-17 22:43:15 -080050 "proto=%u\n", match->family);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070051 return false;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080052 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070053 return true;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080054}
55
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080056static void state_mt_destroy(const struct xt_match *match, void *matchinfo)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080057{
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080058 nf_ct_l3proto_module_put(match->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080059}
60
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080061static struct xt_match state_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070062 {
63 .name = "state",
64 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080065 .checkentry = state_mt_check,
66 .match = state_mt,
67 .destroy = state_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070068 .matchsize = sizeof(struct xt_state_info),
69 .me = THIS_MODULE,
70 },
71 {
72 .name = "state",
73 .family = AF_INET6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080074 .checkentry = state_mt_check,
75 .match = state_mt,
76 .destroy = state_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070077 .matchsize = sizeof(struct xt_state_info),
78 .me = THIS_MODULE,
79 },
Harald Welte2e4e6a12006-01-12 13:30:04 -080080};
81
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080082static int __init state_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080083{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080084 return xt_register_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080085}
86
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080087static void __exit state_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080088{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080089 xt_unregister_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080090}
91
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080092module_init(state_mt_init);
93module_exit(state_mt_exit);