]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/xt_state.c
Merge tag 'nfs-for-4.13-5' of git://git.linux-nfs.org/projects/anna/linux-nfs
[mirror_ubuntu-artful-kernel.git] / net / netfilter / xt_state.c
CommitLineData
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 <coreteam@netfilter.org>
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
17MODULE_LICENSE("GPL");
18MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
2e4e6a17
HW
19MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module");
20MODULE_ALIAS("ipt_state");
21MODULE_ALIAS("ip6t_state");
1da177e4 22
1d93a9cb 23static bool
62fc8051 24state_mt(const struct sk_buff *skb, struct xt_action_param *par)
1da177e4 25{
f7108a20 26 const struct xt_state_info *sinfo = par->matchinfo;
1da177e4
LT
27 enum ip_conntrack_info ctinfo;
28 unsigned int statebit;
5bfddbd4 29 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
1da177e4 30
cc41c84b
FW
31 if (ct)
32 statebit = XT_STATE_BIT(ctinfo);
33 else if (ctinfo == IP_CT_UNTRACKED)
34 statebit = XT_STATE_UNTRACKED;
35 else
2e4e6a17 36 statebit = XT_STATE_INVALID;
cc41c84b 37
1da177e4
LT
38 return (sinfo->statemask & statebit);
39}
40
b0f38452 41static int state_mt_check(const struct xt_mtchk_param *par)
b9f78f9f 42{
4a5a5c73
JE
43 int ret;
44
ecb2421b 45 ret = nf_ct_netns_get(par->net, par->family);
f95c74e3 46 if (ret < 0)
8bee4bad
JE
47 pr_info("cannot load conntrack support for proto=%u\n",
48 par->family);
f95c74e3 49 return ret;
b9f78f9f
PNA
50}
51
6be3d859 52static void state_mt_destroy(const struct xt_mtdtor_param *par)
b9f78f9f 53{
ecb2421b 54 nf_ct_netns_put(par->net, par->family);
b9f78f9f
PNA
55}
56
b4467288
JE
57static struct xt_match state_mt_reg __read_mostly = {
58 .name = "state",
59 .family = NFPROTO_UNSPEC,
60 .checkentry = state_mt_check,
61 .match = state_mt,
62 .destroy = state_mt_destroy,
63 .matchsize = sizeof(struct xt_state_info),
64 .me = THIS_MODULE,
1da177e4
LT
65};
66
d3c5ee6d 67static int __init state_mt_init(void)
1da177e4 68{
b4467288 69 return xt_register_match(&state_mt_reg);
1da177e4
LT
70}
71
d3c5ee6d 72static void __exit state_mt_exit(void)
1da177e4 73{
b4467288 74 xt_unregister_match(&state_mt_reg);
1da177e4
LT
75}
76
d3c5ee6d
JE
77module_init(state_mt_init);
78module_exit(state_mt_exit);