blob: 4c946cbd731f7cfe47b9333b13c7e861906f9298 [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 Engelhardtf7108a22008-10-08 11:35:18 +020024state_mt(const struct sk_buff *skb, const struct xt_match_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;
29
30 if (nf_ct_is_untracked(skb))
31 statebit = XT_STATE_UNTRACKED;
Patrick McHardy587aa642007-03-14 16:37:25 -070032 else if (!nf_ct_get(skb, &ctinfo))
Harald Welte2e4e6a12006-01-12 13:30:04 -080033 statebit = XT_STATE_INVALID;
34 else
35 statebit = XT_STATE_BIT(ctinfo);
36
37 return (sinfo->statemask & statebit);
38}
39
Jan Engelhardt9b4fce72008-10-08 11:35:18 +020040static bool state_mt_check(const struct xt_mtchk_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080041{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +020042 if (nf_ct_l3proto_try_module_get(par->match->family) < 0) {
Yasuyuki Kozakaife0b9292006-12-12 00:28:40 -080043 printk(KERN_WARNING "can't load conntrack support for "
Jan Engelhardt9b4fce72008-10-08 11:35:18 +020044 "proto=%u\n", par->match->family);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070045 return false;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080046 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070047 return true;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080048}
49
Jan Engelhardt6be3d852008-10-08 11:35:19 +020050static void state_mt_destroy(const struct xt_mtdtor_param *par)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080051{
Jan Engelhardt6be3d852008-10-08 11:35:19 +020052 nf_ct_l3proto_module_put(par->match->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080053}
54
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080055static struct xt_match state_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070056 {
57 .name = "state",
Jan Engelhardtee999d82008-10-08 11:35:01 +020058 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080059 .checkentry = state_mt_check,
60 .match = state_mt,
61 .destroy = state_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070062 .matchsize = sizeof(struct xt_state_info),
63 .me = THIS_MODULE,
64 },
65 {
66 .name = "state",
Jan Engelhardtee999d82008-10-08 11:35:01 +020067 .family = NFPROTO_IPV6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080068 .checkentry = state_mt_check,
69 .match = state_mt,
70 .destroy = state_mt_destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070071 .matchsize = sizeof(struct xt_state_info),
72 .me = THIS_MODULE,
73 },
Harald Welte2e4e6a12006-01-12 13:30:04 -080074};
75
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080076static int __init state_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080077{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080078 return xt_register_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080079}
80
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080081static void __exit state_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080082{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080083 xt_unregister_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080084}
85
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080086module_init(state_mt_init);
87module_exit(state_mt_exit);