cregit-Linux how code gets into the kernel

Release 4.15 net/netfilter/xt_CT.c

Directory: net/netfilter
/*
 * Copyright (c) 2010 Patrick McHardy <kaber@trash.net>
 *
 * 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.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <linux/gfp.h>
#include <linux/skbuff.h>
#include <linux/netfilter_ipv4/ip_tables.h>
#include <linux/netfilter_ipv6/ip6_tables.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_CT.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_conntrack_l4proto.h>
#include <net/netfilter/nf_conntrack_helper.h>
#include <net/netfilter/nf_conntrack_ecache.h>
#include <net/netfilter/nf_conntrack_timeout.h>
#include <net/netfilter/nf_conntrack_zones.h>


static inline int xt_ct_target(struct sk_buff *skb, struct nf_conn *ct) { /* Previously seen (loopback)? Ignore. */ if (skb->_nfct != 0) return XT_CONTINUE; if (ct) { atomic_inc(&ct->ct_general.use); nf_ct_set(skb, ct, IP_CT_NEW); } else { nf_ct_set(skb, ct, IP_CT_UNTRACKED); } return XT_CONTINUE; }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy4057.97%116.67%
Florian Westphal2130.43%350.00%
Eric Dumazet45.80%116.67%
Pablo Neira Ayuso45.80%116.67%
Total69100.00%6100.00%


static unsigned int xt_ct_target_v0(struct sk_buff *skb, const struct xt_action_param *par) { const struct xt_ct_target_info *info = par->targinfo; struct nf_conn *ct = info->ct; return xt_ct_target(skb, ct); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso45100.00%2100.00%
Total45100.00%2100.00%


static unsigned int xt_ct_target_v1(struct sk_buff *skb, const struct xt_action_param *par) { const struct xt_ct_target_info_v1 *info = par->targinfo; struct nf_conn *ct = info->ct; return xt_ct_target(skb, ct); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso45100.00%2100.00%
Total45100.00%2100.00%


static u8 xt_ct_find_proto(const struct xt_tgchk_param *par) { if (par->family == NFPROTO_IPV4) { const struct ipt_entry *e = par->entryinfo; if (e->ip.invflags & IPT_INV_PROTO) return 0; return e->ip.proto; } else if (par->family == NFPROTO_IPV6) { const struct ip6t_entry *e = par->entryinfo; if (e->ipv6.invflags & IP6T_INV_PROTO) return 0; return e->ipv6.proto; } else return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy9597.94%150.00%
Jan Engelhardt22.06%150.00%
Total97100.00%2100.00%


static int xt_ct_set_helper(struct nf_conn *ct, const char *helper_name, const struct xt_tgchk_param *par) { struct nf_conntrack_helper *helper; struct nf_conn_help *help; u8 proto; proto = xt_ct_find_proto(par); if (!proto) { pr_info("You must specify a L4 protocol, and not use " "inversions on it.\n"); return -ENOENT; } helper = nf_conntrack_helper_try_module_get(helper_name, par->family, proto); if (helper == NULL) { pr_info("No such helper \"%s\"\n", helper_name); return -ENOENT; } help = nf_ct_helper_ext_add(ct, helper, GFP_KERNEL); if (help == NULL) { nf_conntrack_helper_put(helper); return -ENOMEM; } help->helper = helper; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso12799.22%150.00%
Liping Zhang10.78%150.00%
Total128100.00%2100.00%

#ifdef CONFIG_NF_CONNTRACK_TIMEOUT
static void __xt_ct_tg_timeout_put(struct ctnl_timeout *timeout) { typeof(nf_ct_timeout_put_hook) timeout_put; timeout_put = rcu_dereference(nf_ct_timeout_put_hook); if (timeout_put) timeout_put(timeout); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso33100.00%1100.00%
Total33100.00%1100.00%

#endif
static int xt_ct_set_timeout(struct nf_conn *ct, const struct xt_tgchk_param *par, const char *timeout_name) { #ifdef CONFIG_NF_CONNTRACK_TIMEOUT typeof(nf_ct_timeout_find_get_hook) timeout_find_get; const struct nf_conntrack_l4proto *l4proto; struct ctnl_timeout *timeout; struct nf_conn_timeout *timeout_ext; int ret = 0; u8 proto; rcu_read_lock(); timeout_find_get = rcu_dereference(nf_ct_timeout_find_get_hook); if (timeout_find_get == NULL) { ret = -ENOENT; pr_info("Timeout policy base is empty\n"); goto out; } proto = xt_ct_find_proto(par); if (!proto) { ret = -EINVAL; pr_info("You must specify a L4 protocol, and not use " "inversions on it.\n"); goto out; } timeout = timeout_find_get(par->net, timeout_name); if (timeout == NULL) { ret = -ENOENT; pr_info("No such timeout policy \"%s\"\n", timeout_name); goto out; } if (timeout->l3num != par->family) { ret = -EINVAL; pr_info("Timeout policy `%s' can only be used by L3 protocol " "number %d\n", timeout_name, timeout->l3num); goto err_put_timeout; } /* Make sure the timeout policy matches any existing protocol tracker, * otherwise default to generic. */ l4proto = __nf_ct_l4proto_find(par->family, proto); if (timeout->l4proto->l4proto != l4proto->l4proto) { ret = -EINVAL; pr_info("Timeout policy `%s' can only be used by L4 protocol " "number %d\n", timeout_name, timeout->l4proto->l4proto); goto err_put_timeout; } timeout_ext = nf_ct_timeout_ext_add(ct, timeout, GFP_ATOMIC); if (!timeout_ext) { ret = -ENOMEM; goto err_put_timeout; } rcu_read_unlock(); return ret; err_put_timeout: __xt_ct_tg_timeout_put(timeout); out: rcu_read_unlock(); return ret; #else return -EOPNOTSUPP; #endif }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso25790.81%872.73%
Patrick McHardy144.95%19.09%
Gao Feng62.12%19.09%
Florian Westphal62.12%19.09%
Total283100.00%11100.00%


static u16 xt_ct_flags_to_dir(const struct xt_ct_target_info_v1 *info) { switch (info->flags & (XT_CT_ZONE_DIR_ORIG | XT_CT_ZONE_DIR_REPL)) { case XT_CT_ZONE_DIR_ORIG: return NF_CT_ZONE_DIR_ORIG; case XT_CT_ZONE_DIR_REPL: return NF_CT_ZONE_DIR_REPL; default: return NF_CT_DEFAULT_ZONE_DIR; } }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann42100.00%1100.00%
Total42100.00%1100.00%


static int xt_ct_tg_check(const struct xt_tgchk_param *par, struct xt_ct_target_info_v1 *info) { struct nf_conntrack_zone zone; struct nf_conn_help *help; struct nf_conn *ct; int ret = -EOPNOTSUPP; if (info->flags & XT_CT_NOTRACK) { ct = NULL; goto out; } #ifndef CONFIG_NF_CONNTRACK_ZONES if (info->zone || info->flags & (XT_CT_ZONE_DIR_ORIG | XT_CT_ZONE_DIR_REPL | XT_CT_ZONE_MARK)) goto err1; #endif ret = nf_ct_netns_get(par->net, par->family); if (ret < 0) goto err1; memset(&zone, 0, sizeof(zone)); zone.id = info->zone; zone.dir = xt_ct_flags_to_dir(info); if (info->flags & XT_CT_ZONE_MARK) zone.flags |= NF_CT_FLAG_MARK; ct = nf_ct_tmpl_alloc(par->net, &zone, GFP_KERNEL); if (!ct) { ret = -ENOMEM; goto err2; } ret = 0; if ((info->ct_events || info->exp_events) && !nf_ct_ecache_ext_add(ct, info->ct_events, info->exp_events, GFP_KERNEL)) { ret = -EINVAL; goto err3; } if (info->helper[0]) { ret = xt_ct_set_helper(ct, info->helper, par); if (ret < 0) goto err3; } if (info->timeout[0]) { ret = xt_ct_set_timeout(ct, par, info->timeout); if (ret < 0) goto err4; } __set_bit(IPS_CONFIRMED_BIT, &ct->status); nf_conntrack_get(&ct->ct_general); out: info->ct = ct; return 0; err4: help = nfct_help(ct); if (help) nf_conntrack_helper_put(help->helper); err3: nf_ct_tmpl_free(ct); err2: nf_ct_netns_put(par->net, par->family); err1: return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso24368.07%844.44%
Daniel Borkmann6217.37%422.22%
Gao Feng257.00%15.56%
Florian Westphal102.80%15.56%
Dan Carpenter82.24%15.56%
Eric Leblond71.96%15.56%
Liping Zhang10.28%15.56%
Eric Dumazet10.28%15.56%
Total357100.00%18100.00%


static int xt_ct_tg_check_v0(const struct xt_tgchk_param *par) { struct xt_ct_target_info *info = par->targinfo; struct xt_ct_target_info_v1 info_v1 = { .flags = info->flags, .zone = info->zone, .ct_events = info->ct_events, .exp_events = info->exp_events, }; int ret; if (info->flags & ~XT_CT_NOTRACK) return -EINVAL; memcpy(info_v1.helper, info->helper, sizeof(info->helper)); ret = xt_ct_tg_check(par, &info_v1); if (ret < 0) return ret; info->ct = info_v1.ct; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso119100.00%3100.00%
Total119100.00%3100.00%


static int xt_ct_tg_check_v1(const struct xt_tgchk_param *par) { struct xt_ct_target_info_v1 *info = par->targinfo; if (info->flags & ~XT_CT_NOTRACK) return -EINVAL; return xt_ct_tg_check(par, par->targinfo); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso44100.00%2100.00%
Total44100.00%2100.00%


static int xt_ct_tg_check_v2(const struct xt_tgchk_param *par) { struct xt_ct_target_info_v1 *info = par->targinfo; if (info->flags & ~XT_CT_MASK) return -EINVAL; return xt_ct_tg_check(par, par->targinfo); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso44100.00%3100.00%
Total44100.00%3100.00%


static void xt_ct_destroy_timeout(struct nf_conn *ct) { #ifdef CONFIG_NF_CONNTRACK_TIMEOUT struct nf_conn_timeout *timeout_ext; typeof(nf_ct_timeout_put_hook) timeout_put; rcu_read_lock(); timeout_put = rcu_dereference(nf_ct_timeout_put_hook); if (timeout_put) { timeout_ext = nf_ct_timeout_find(ct); if (timeout_ext) { timeout_put(timeout_ext->timeout); RCU_INIT_POINTER(timeout_ext->timeout, NULL); } } rcu_read_unlock(); #endif }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso75100.00%2100.00%
Total75100.00%2100.00%


static void xt_ct_tg_destroy(const struct xt_tgdtor_param *par, struct xt_ct_target_info_v1 *info) { struct nf_conn *ct = info->ct; struct nf_conn_help *help; if (ct) { help = nfct_help(ct); if (help) nf_conntrack_helper_put(help->helper); nf_ct_netns_put(par->net, par->family); xt_ct_destroy_timeout(ct); nf_ct_put(info->ct); } }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso7089.74%350.00%
Florian Westphal56.41%116.67%
Eric Dumazet22.56%116.67%
Liping Zhang11.28%116.67%
Total78100.00%6100.00%


static void xt_ct_tg_destroy_v0(const struct xt_tgdtor_param *par) { struct xt_ct_target_info *info = par->targinfo; struct xt_ct_target_info_v1 info_v1 = { .flags = info->flags, .zone = info->zone, .ct_events = info->ct_events, .exp_events = info->exp_events, .ct = info->ct, }; memcpy(info_v1.helper, info->helper, sizeof(info->helper)); xt_ct_tg_destroy(par, &info_v1); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso88100.00%1100.00%
Total88100.00%1100.00%


static void xt_ct_tg_destroy_v1(const struct xt_tgdtor_param *par) { xt_ct_tg_destroy(par, par->targinfo); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso21100.00%1100.00%
Total21100.00%1100.00%

static struct xt_target xt_ct_tg_reg[] __read_mostly = { { .name = "CT", .family = NFPROTO_UNSPEC, .targetsize = sizeof(struct xt_ct_target_info), .usersize = offsetof(struct xt_ct_target_info, ct), .checkentry = xt_ct_tg_check_v0, .destroy = xt_ct_tg_destroy_v0, .target = xt_ct_target_v0, .table = "raw", .me = THIS_MODULE, }, { .name = "CT", .family = NFPROTO_UNSPEC, .revision = 1, .targetsize = sizeof(struct xt_ct_target_info_v1), .usersize = offsetof(struct xt_ct_target_info, ct), .checkentry = xt_ct_tg_check_v1, .destroy = xt_ct_tg_destroy_v1, .target = xt_ct_target_v1, .table = "raw", .me = THIS_MODULE, }, { .name = "CT", .family = NFPROTO_UNSPEC, .revision = 2, .targetsize = sizeof(struct xt_ct_target_info_v1), .usersize = offsetof(struct xt_ct_target_info, ct), .checkentry = xt_ct_tg_check_v2, .destroy = xt_ct_tg_destroy_v1, .target = xt_ct_target_v1, .table = "raw", .me = THIS_MODULE, }, };
static unsigned int notrack_tg(struct sk_buff *skb, const struct xt_action_param *par) { /* Previously seen (loopback)? Ignore. */ if (skb->_nfct != 0) return XT_CONTINUE; nf_ct_set(skb, NULL, IP_CT_UNTRACKED); return XT_CONTINUE; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso3480.95%125.00%
Florian Westphal819.05%375.00%
Total42100.00%4100.00%


static int notrack_chk(const struct xt_tgchk_param *par) { if (!par->net->xt.notrack_deprecated_warning) { pr_info("netfilter: NOTRACK target is deprecated, " "use CT instead or upgrade iptables\n"); par->net->xt.notrack_deprecated_warning = true; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso44100.00%1100.00%
Total44100.00%1100.00%

static struct xt_target notrack_tg_reg __read_mostly = { .name = "NOTRACK", .revision = 0, .family = NFPROTO_UNSPEC, .checkentry = notrack_chk, .target = notrack_tg, .table = "raw", .me = THIS_MODULE, };
static int __init xt_ct_tg_init(void) { int ret; ret = xt_register_target(&notrack_tg_reg); if (ret < 0) return ret; ret = xt_register_targets(xt_ct_tg_reg, ARRAY_SIZE(xt_ct_tg_reg)); if (ret < 0) { xt_unregister_target(&notrack_tg_reg); return ret; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso4878.69%266.67%
Patrick McHardy1321.31%133.33%
Total61100.00%3100.00%


static void __exit xt_ct_tg_exit(void) { xt_unregister_targets(xt_ct_tg_reg, ARRAY_SIZE(xt_ct_tg_reg)); xt_unregister_target(&notrack_tg_reg); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso1352.00%266.67%
Patrick McHardy1248.00%133.33%
Total25100.00%3100.00%

module_init(xt_ct_tg_init); module_exit(xt_ct_tg_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Xtables: connection tracking target"); MODULE_ALIAS("ipt_CT"); MODULE_ALIAS("ip6t_CT"); MODULE_ALIAS("ipt_NOTRACK"); MODULE_ALIAS("ip6t_NOTRACK");

Overall Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso156575.79%1847.37%
Patrick McHardy24511.86%25.26%
Daniel Borkmann1045.04%410.53%
Florian Westphal502.42%513.16%
Willem de Bruijn331.60%12.63%
Gao Feng311.50%12.63%
Jan Engelhardt90.44%25.26%
Dan Carpenter80.39%12.63%
Eric Dumazet70.34%12.63%
Eric Leblond70.34%12.63%
Liping Zhang30.15%12.63%
Tejun Heo30.15%12.63%
Total2065100.00%38100.00%
Directory: net/netfilter
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.