Release 4.11 net/netfilter/xt_state.c
/* Kernel module to match connection tracking information. */
/* (C) 1999-2001 Paul `Rusty' Russell
* (C) 2002-2005 Netfilter Core Team <coreteam@netfilter.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/module.h>
#include <linux/skbuff.h>
#include <net/netfilter/nf_conntrack.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_state.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
MODULE_DESCRIPTION("ip[6]_tables connection tracking state match module");
MODULE_ALIAS("ipt_state");
MODULE_ALIAS("ip6t_state");
static bool
state_mt(const struct sk_buff *skb, struct xt_action_param *par)
{
const struct xt_state_info *sinfo = par->matchinfo;
enum ip_conntrack_info ctinfo;
unsigned int statebit;
struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
if (!ct)
statebit = XT_STATE_INVALID;
else {
if (nf_ct_is_untracked(ct))
statebit = XT_STATE_UNTRACKED;
else
statebit = XT_STATE_BIT(ctinfo);
}
return (sinfo->statemask & statebit);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 50 | 56.82% | 1 | 11.11% |
Eric Dumazet | 21 | 23.86% | 1 | 11.11% |
Harald Welte | 9 | 10.23% | 2 | 22.22% |
Jan Engelhardt | 6 | 6.82% | 4 | 44.44% |
Yasuyuki Kozakai | 2 | 2.27% | 1 | 11.11% |
Total | 88 | 100.00% | 9 | 100.00% |
static int state_mt_check(const struct xt_mtchk_param *par)
{
int ret;
ret = nf_ct_netns_get(par->net, par->family);
if (ret < 0)
pr_info("cannot load conntrack support for proto=%u\n",
par->family);
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pablo Neira Ayuso | 21 | 45.65% | 1 | 14.29% |
Jan Engelhardt | 20 | 43.48% | 5 | 71.43% |
Florian Westphal | 5 | 10.87% | 1 | 14.29% |
Total | 46 | 100.00% | 7 | 100.00% |
static void state_mt_destroy(const struct xt_mtdtor_param *par)
{
nf_ct_netns_put(par->net, par->family);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pablo Neira Ayuso | 13 | 56.52% | 1 | 25.00% |
Florian Westphal | 5 | 21.74% | 1 | 25.00% |
Jan Engelhardt | 5 | 21.74% | 2 | 50.00% |
Total | 23 | 100.00% | 4 | 100.00% |
static struct xt_match state_mt_reg __read_mostly = {
.name = "state",
.family = NFPROTO_UNSPEC,
.checkentry = state_mt_check,
.match = state_mt,
.destroy = state_mt_destroy,
.matchsize = sizeof(struct xt_state_info),
.me = THIS_MODULE,
};
static int __init state_mt_init(void)
{
return xt_register_match(&state_mt_reg);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 10 | 62.50% | 1 | 20.00% |
Jan Engelhardt | 4 | 25.00% | 2 | 40.00% |
Harald Welte | 1 | 6.25% | 1 | 20.00% |
Patrick McHardy | 1 | 6.25% | 1 | 20.00% |
Total | 16 | 100.00% | 5 | 100.00% |
static void __exit state_mt_exit(void)
{
xt_unregister_match(&state_mt_reg);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 8 | 53.33% | 1 | 20.00% |
Jan Engelhardt | 4 | 26.67% | 2 | 40.00% |
Harald Welte | 2 | 13.33% | 1 | 20.00% |
Patrick McHardy | 1 | 6.67% | 1 | 20.00% |
Total | 15 | 100.00% | 5 | 100.00% |
module_init(state_mt_init);
module_exit(state_mt_exit);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 92 | 32.06% | 1 | 4.35% |
Harald Welte | 59 | 20.56% | 4 | 17.39% |
Jan Engelhardt | 46 | 16.03% | 10 | 43.48% |
Pablo Neira Ayuso | 42 | 14.63% | 1 | 4.35% |
Eric Dumazet | 21 | 7.32% | 1 | 4.35% |
Patrick McHardy | 15 | 5.23% | 4 | 17.39% |
Florian Westphal | 10 | 3.48% | 1 | 4.35% |
Yasuyuki Kozakai | 2 | 0.70% | 1 | 4.35% |
Total | 287 | 100.00% | 23 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.