cregit-Linux how code gets into the kernel

Release 4.7 net/ipv6/netfilter/ip6table_raw.c

/*
 * IPv6 raw table, a port of the IPv4 raw table to IPv6
 *
 * Copyright (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
 */
#include <linux/module.h>
#include <linux/netfilter_ipv6/ip6_tables.h>
#include <linux/slab.h>


#define RAW_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT))

static int __net_init ip6table_raw_table_init(struct net *net);


static const struct xt_table packet_raw = {
	.name = "raw",
	.valid_hooks = RAW_VALID_HOOKS,
	.me = THIS_MODULE,
	.af = NFPROTO_IPV6,
	.priority = NF_IP6_PRI_RAW,
	.table_init = ip6table_raw_table_init,
};

/* The work comes in here from netfilter.c. */

static unsigned int ip6table_raw_hook(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { return ip6t_do_table(skb, state, state->net->ipv6.ip6table_raw); }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte1744.74%110.00%
alexey dobriyanalexey dobriyan1026.32%220.00%
eric w. biedermaneric w. biederman410.53%220.00%
david s. millerdavid s. miller37.89%110.00%
jan engelhardtjan engelhardt25.26%220.00%
herbert xuherbert xu12.63%110.00%
patrick mchardypatrick mchardy12.63%110.00%
Total38100.00%10100.00%

static struct nf_hook_ops *rawtable_ops __read_mostly;
static int __net_init ip6table_raw_table_init(struct net *net) { struct ip6t_replace *repl; int ret; if (net->ipv6.ip6table_raw) return 0; repl = ip6t_alloc_initial_table(&packet_raw); if (repl == NULL) return -ENOMEM; ret = ip6t_register_table(net, &packet_raw, repl, rawtable_ops, &net->ipv6.ip6table_raw); kfree(repl); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
jan engelhardtjan engelhardt2835.90%114.29%
florian westphalflorian westphal2633.33%228.57%
harald welteharald welte1316.67%228.57%
alexey dobriyanalexey dobriyan1114.10%228.57%
Total78100.00%7100.00%


static void __net_exit ip6table_raw_net_exit(struct net *net) { if (!net->ipv6.ip6table_raw) return; ip6t_unregister_table(net, net->ipv6.ip6table_raw, rawtable_ops); net->ipv6.ip6table_raw = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
alexey dobriyanalexey dobriyan2353.49%250.00%
florian westphalflorian westphal2046.51%250.00%
Total43100.00%4100.00%

static struct pernet_operations ip6table_raw_net_ops = { .exit = ip6table_raw_net_exit, };
static int __init ip6table_raw_init(void) { int ret; /* Register hooks */ rawtable_ops = xt_hook_ops_alloc(&packet_raw, ip6table_raw_hook); if (IS_ERR(rawtable_ops)) return PTR_ERR(rawtable_ops); ret = register_pernet_subsys(&ip6table_raw_net_ops); if (ret < 0) { kfree(rawtable_ops); return ret; } ret = ip6table_raw_table_init(&init_net); if (ret) { unregister_pernet_subsys(&ip6table_raw_net_ops); kfree(rawtable_ops); } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
florian westphalflorian westphal4146.59%120.00%
harald welteharald welte1820.45%120.00%
alexey dobriyanalexey dobriyan1415.91%120.00%
jan engelhardtjan engelhardt1415.91%120.00%
patrick mchardypatrick mchardy11.14%120.00%
Total88100.00%5100.00%


static void __exit ip6table_raw_fini(void) { unregister_pernet_subsys(&ip6table_raw_net_ops); kfree(rawtable_ops); }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte1470.00%125.00%
florian westphalflorian westphal420.00%125.00%
jan engelhardtjan engelhardt15.00%125.00%
andrew mortonandrew morton15.00%125.00%
Total20100.00%4100.00%

module_init(ip6table_raw_init); module_exit(ip6table_raw_fini); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte11531.51%311.54%
florian westphalflorian westphal10729.32%27.69%
alexey dobriyanalexey dobriyan7119.45%415.38%
jan engelhardtjan engelhardt5314.52%623.08%
patrick mchardypatrick mchardy41.10%415.38%
eric w. biedermaneric w. biederman41.10%27.69%
andrew mortonandrew morton30.82%13.85%
david s. millerdavid s. miller30.82%13.85%
tejun heotejun heo30.82%13.85%
jozsef kadlecsikjozsef kadlecsik10.27%13.85%
herbert xuherbert xu10.27%13.85%
Total365100.00%26100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}