driver core fixes: device_create_file() retval check in dmapool.c
[linux-2.6/zen-sources.git] / net / netfilter / xt_state.c
blobd9010b16a1f97a4c7e3c5ba604c51c4f1d8e3642
1 /* Kernel module to match connection tracking information. */
3 /* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2005 Netfilter Core Team <coreteam@netfilter.org>
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 */
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <net/netfilter/nf_conntrack_compat.h>
14 #include <linux/netfilter/x_tables.h>
15 #include <linux/netfilter/xt_state.h>
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
19 MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module");
20 MODULE_ALIAS("ipt_state");
21 MODULE_ALIAS("ip6t_state");
23 static int
24 match(const struct sk_buff *skb,
25 const struct net_device *in,
26 const struct net_device *out,
27 const struct xt_match *match,
28 const void *matchinfo,
29 int offset,
30 unsigned int protoff,
31 int *hotdrop)
33 const struct xt_state_info *sinfo = matchinfo;
34 enum ip_conntrack_info ctinfo;
35 unsigned int statebit;
37 if (nf_ct_is_untracked(skb))
38 statebit = XT_STATE_UNTRACKED;
39 else if (!nf_ct_get_ctinfo(skb, &ctinfo))
40 statebit = XT_STATE_INVALID;
41 else
42 statebit = XT_STATE_BIT(ctinfo);
44 return (sinfo->statemask & statebit);
47 static int check(const char *tablename,
48 const void *inf,
49 const struct xt_match *match,
50 void *matchinfo,
51 unsigned int hook_mask)
53 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
54 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
55 printk(KERN_WARNING "can't load nf_conntrack support for "
56 "proto=%d\n", match->family);
57 return 0;
59 #endif
60 return 1;
63 static void
64 destroy(const struct xt_match *match, void *matchinfo)
66 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
67 nf_ct_l3proto_module_put(match->family);
68 #endif
71 static struct xt_match xt_state_match[] = {
73 .name = "state",
74 .family = AF_INET,
75 .checkentry = check,
76 .match = match,
77 .destroy = destroy,
78 .matchsize = sizeof(struct xt_state_info),
79 .me = THIS_MODULE,
82 .name = "state",
83 .family = AF_INET6,
84 .checkentry = check,
85 .match = match,
86 .destroy = destroy,
87 .matchsize = sizeof(struct xt_state_info),
88 .me = THIS_MODULE,
92 static int __init xt_state_init(void)
94 need_conntrack();
95 return xt_register_matches(xt_state_match, ARRAY_SIZE(xt_state_match));
98 static void __exit xt_state_fini(void)
100 xt_unregister_matches(xt_state_match, ARRAY_SIZE(xt_state_match));
103 module_init(xt_state_init);
104 module_exit(xt_state_fini);