blob: e0a528df19a78349f29596782c35175fdc7c24d4 [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
Harald Welte2e4e6a12006-01-12 13:30:04 -080024match(const struct sk_buff *skb,
25 const struct net_device *in,
26 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080027 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -080028 const void *matchinfo,
29 int offset,
30 unsigned int protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070031 bool *hotdrop)
Harald Welte2e4e6a12006-01-12 13:30:04 -080032{
33 const struct xt_state_info *sinfo = matchinfo;
34 enum ip_conntrack_info ctinfo;
35 unsigned int statebit;
36
37 if (nf_ct_is_untracked(skb))
38 statebit = XT_STATE_UNTRACKED;
Patrick McHardy587aa642007-03-14 16:37:25 -070039 else if (!nf_ct_get(skb, &ctinfo))
Harald Welte2e4e6a12006-01-12 13:30:04 -080040 statebit = XT_STATE_INVALID;
41 else
42 statebit = XT_STATE_BIT(ctinfo);
43
44 return (sinfo->statemask & statebit);
45}
46
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070047static bool check(const char *tablename,
48 const void *inf,
49 const struct xt_match *match,
50 void *matchinfo,
51 unsigned int hook_mask)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080052{
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080053 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
Yasuyuki Kozakaife0b9292006-12-12 00:28:40 -080054 printk(KERN_WARNING "can't load conntrack support for "
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080055 "proto=%d\n", match->family);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070056 return false;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080057 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070058 return true;
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080059}
60
61static void
Patrick McHardyefa74162006-08-22 00:36:37 -070062destroy(const struct xt_match *match, void *matchinfo)
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080063{
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080064 nf_ct_l3proto_module_put(match->family);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -080065}
66
Patrick McHardy9f15c532007-07-07 22:22:02 -070067static struct xt_match xt_state_match[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070068 {
69 .name = "state",
70 .family = AF_INET,
71 .checkentry = check,
72 .match = match,
73 .destroy = destroy,
74 .matchsize = sizeof(struct xt_state_info),
75 .me = THIS_MODULE,
76 },
77 {
78 .name = "state",
79 .family = AF_INET6,
80 .checkentry = check,
81 .match = match,
82 .destroy = destroy,
83 .matchsize = sizeof(struct xt_state_info),
84 .me = THIS_MODULE,
85 },
Harald Welte2e4e6a12006-01-12 13:30:04 -080086};
87
Andrew Morton65b4b4e2006-03-28 16:37:06 -080088static int __init xt_state_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080089{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070090 return xt_register_matches(xt_state_match, ARRAY_SIZE(xt_state_match));
Harald Welte2e4e6a12006-01-12 13:30:04 -080091}
92
Andrew Morton65b4b4e2006-03-28 16:37:06 -080093static void __exit xt_state_fini(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080094{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070095 xt_unregister_matches(xt_state_match, ARRAY_SIZE(xt_state_match));
Harald Welte2e4e6a12006-01-12 13:30:04 -080096}
97
Andrew Morton65b4b4e2006-03-28 16:37:06 -080098module_init(xt_state_init);
99module_exit(xt_state_fini);