]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* Kernel module to match connection tracking information. */ |
2 | ||
3 | /* (C) 1999-2001 Paul `Rusty' Russell | |
2e4e6a17 | 4 | * (C) 2002-2005 Netfilter Core Team <[email protected]> |
1da177e4 LT |
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> | |
587aa641 | 13 | #include <net/netfilter/nf_conntrack.h> |
2e4e6a17 HW |
14 | #include <linux/netfilter/x_tables.h> |
15 | #include <linux/netfilter/xt_state.h> | |
1da177e4 LT |
16 | |
17 | MODULE_LICENSE("GPL"); | |
18 | MODULE_AUTHOR("Rusty Russell <[email protected]>"); | |
2e4e6a17 HW |
19 | MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module"); |
20 | MODULE_ALIAS("ipt_state"); | |
21 | MODULE_ALIAS("ip6t_state"); | |
1da177e4 | 22 | |
1d93a9cb | 23 | static bool |
d3c5ee6d JE |
24 | state_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) | |
1da177e4 | 28 | { |
2e4e6a17 | 29 | const struct xt_state_info *sinfo = matchinfo; |
1da177e4 LT |
30 | enum ip_conntrack_info ctinfo; |
31 | unsigned int statebit; | |
32 | ||
9fb9cbb1 | 33 | if (nf_ct_is_untracked(skb)) |
2e4e6a17 | 34 | statebit = XT_STATE_UNTRACKED; |
587aa641 | 35 | else if (!nf_ct_get(skb, &ctinfo)) |
2e4e6a17 | 36 | statebit = XT_STATE_INVALID; |
1da177e4 | 37 | else |
2e4e6a17 | 38 | statebit = XT_STATE_BIT(ctinfo); |
1da177e4 LT |
39 | |
40 | return (sinfo->statemask & statebit); | |
41 | } | |
42 | ||
d3c5ee6d JE |
43 | static bool |
44 | state_mt_check(const char *tablename, const void *inf, | |
45 | const struct xt_match *match, void *matchinfo, | |
46 | unsigned int hook_mask) | |
b9f78f9f | 47 | { |
b9f78f9f | 48 | if (nf_ct_l3proto_try_module_get(match->family) < 0) { |
fe0b9294 | 49 | printk(KERN_WARNING "can't load conntrack support for " |
df54aae0 | 50 | "proto=%u\n", match->family); |
ccb79bdc | 51 | return false; |
b9f78f9f | 52 | } |
ccb79bdc | 53 | return true; |
b9f78f9f PNA |
54 | } |
55 | ||
d3c5ee6d | 56 | static void state_mt_destroy(const struct xt_match *match, void *matchinfo) |
b9f78f9f | 57 | { |
b9f78f9f | 58 | nf_ct_l3proto_module_put(match->family); |
b9f78f9f PNA |
59 | } |
60 | ||
d3c5ee6d | 61 | static struct xt_match state_mt_reg[] __read_mostly = { |
4470bbc7 PM |
62 | { |
63 | .name = "state", | |
64 | .family = AF_INET, | |
d3c5ee6d JE |
65 | .checkentry = state_mt_check, |
66 | .match = state_mt, | |
67 | .destroy = state_mt_destroy, | |
4470bbc7 PM |
68 | .matchsize = sizeof(struct xt_state_info), |
69 | .me = THIS_MODULE, | |
70 | }, | |
71 | { | |
72 | .name = "state", | |
73 | .family = AF_INET6, | |
d3c5ee6d JE |
74 | .checkentry = state_mt_check, |
75 | .match = state_mt, | |
76 | .destroy = state_mt_destroy, | |
4470bbc7 PM |
77 | .matchsize = sizeof(struct xt_state_info), |
78 | .me = THIS_MODULE, | |
79 | }, | |
1da177e4 LT |
80 | }; |
81 | ||
d3c5ee6d | 82 | static int __init state_mt_init(void) |
1da177e4 | 83 | { |
d3c5ee6d | 84 | return xt_register_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg)); |
1da177e4 LT |
85 | } |
86 | ||
d3c5ee6d | 87 | static void __exit state_mt_exit(void) |
1da177e4 | 88 | { |
d3c5ee6d | 89 | xt_unregister_matches(state_mt_reg, ARRAY_SIZE(state_mt_reg)); |
1da177e4 LT |
90 | } |
91 | ||
d3c5ee6d JE |
92 | module_init(state_mt_init); |
93 | module_exit(state_mt_exit); |