cregit-Linux how code gets into the kernel

Release 4.8 net/netfilter/xt_state.c

Directory: net/netfilter
/* 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

PersonTokensPropCommitsCommitProp
pre-gitpre-git5056.82%111.11%
eric dumazeteric dumazet2123.86%111.11%
harald welteharald welte910.23%222.22%
jan engelhardtjan engelhardt66.82%444.44%
yasuyuki kozakaiyasuyuki kozakai22.27%111.11%
Total88100.00%9100.00%


static int state_mt_check(const struct xt_mtchk_param *par) { int ret; ret = nf_ct_l3proto_try_module_get(par->family); if (ret < 0) pr_info("cannot load conntrack support for proto=%u\n", par->family); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
pablo neira ayusopablo neira ayuso2252.38%116.67%
jan engelhardtjan engelhardt2047.62%583.33%
Total42100.00%6100.00%


static void state_mt_destroy(const struct xt_mtdtor_param *par) { nf_ct_l3proto_module_put(par->family); }

Contributors

PersonTokensPropCommitsCommitProp
pablo neira ayusopablo neira ayuso1473.68%133.33%
jan engelhardtjan engelhardt526.32%266.67%
Total19100.00%3100.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

PersonTokensPropCommitsCommitProp
pre-gitpre-git1062.50%120.00%
jan engelhardtjan engelhardt425.00%240.00%
patrick mchardypatrick mchardy16.25%120.00%
harald welteharald welte16.25%120.00%
Total16100.00%5100.00%


static void __exit state_mt_exit(void) { xt_unregister_match(&state_mt_reg); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git853.33%120.00%
jan engelhardtjan engelhardt426.67%240.00%
harald welteharald welte213.33%120.00%
patrick mchardypatrick mchardy16.67%120.00%
Total15100.00%5100.00%

module_init(state_mt_init); module_exit(state_mt_exit);

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git9232.97%14.55%
harald welteharald welte5921.15%418.18%
jan engelhardtjan engelhardt4616.49%1045.45%
pablo neira ayusopablo neira ayuso4415.77%14.55%
eric dumazeteric dumazet217.53%14.55%
patrick mchardypatrick mchardy155.38%418.18%
yasuyuki kozakaiyasuyuki kozakai20.72%14.55%
Total279100.00%22100.00%
Directory: net/netfilter
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.