blob: a507922d80cdc2854a141acde78e5410bf918a48 [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 Engelhardt62fc8052009-07-07 20:42:08 +020024state_mt(const struct sk_buff *skb, struct xt_action_param *par)
Harald Welte2e4e6a12006-01-12 13:30:04 -080025{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020026 const struct xt_state_info *sinfo = par->matchinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -080027 enum ip_conntrack_info ctinfo;
28 unsigned int statebit;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +020029 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Harald Welte2e4e6a12006-01-12 13:30:04 -080030
Eric Dumazet5bfddbd2010-06-08 16:09:52 +020031 if (!ct)
Harald Welte2e4e6a12006-01-12 13:30:04 -080032 statebit = XT_STATE_INVALID;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +020033 else {
34 if (nf_ct_is_untracked(ct))
35 statebit = XT_STATE_UNTRACKED;
36 else
37 statebit = XT_STATE_BIT(ctinfo);
38 }
Harald Welte2e4e6a12006-01-12 13:30:04 -080039 return (sinfo->statemask & statebit);
40}
41
Jan Engelhardtb0f38452010-03-19 17:16:42 +010042static int state_mt_check(const struct xt_mtchk_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080043{
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +010044 int ret;
45
46 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010047 if (ret < 0)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010048 pr_info("cannot load conntrack support for proto=%u\n",
49 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +010050 return ret;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080051}
52
Jan Engelhardt6be3d852008-10-08 11:35:19 +020053static void state_mt_destroy(const struct xt_mtdtor_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080054{
Jan Engelhardtaa5fa312010-03-18 00:44:52 +010055 nf_ct_l3proto_module_put(par->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080056}
57
Jan Engelhardtb4467282010-03-24 22:50:01 +010058static struct xt_match state_mt_reg __read_mostly = {
59 .name = "state",
60 .family = NFPROTO_UNSPEC,
61 .checkentry = state_mt_check,
62 .match = state_mt,
63 .destroy = state_mt_destroy,
64 .matchsize = sizeof(struct xt_state_info),
65 .me = THIS_MODULE,
Harald Welte2e4e6a12006-01-12 13:30:04 -080066};
67
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080068static int __init state_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080069{
Jan Engelhardtb4467282010-03-24 22:50:01 +010070 return xt_register_match(&state_mt_reg);
Harald Welte2e4e6a12006-01-12 13:30:04 -080071}
72
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080073static void __exit state_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080074{
Jan Engelhardtb4467282010-03-24 22:50:01 +010075 xt_unregister_match(&state_mt_reg);
Harald Welte2e4e6a12006-01-12 13:30:04 -080076}
77
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080078module_init(state_mt_init);
79module_exit(state_mt_exit);