cregit-Linux how code gets into the kernel

Release 4.8 net/ipv4/netfilter/arptable_filter.c

/*
 * Filtering ARP tables module.
 *
 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
 *
 */

#include <linux/module.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_arp/arp_tables.h>
#include <linux/slab.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
MODULE_DESCRIPTION("arptables filter table");


#define FILTER_VALID_HOOKS ((1 << NF_ARP_IN) | (1 << NF_ARP_OUT) | \
                           (1 << NF_ARP_FORWARD))

static int __net_init arptable_filter_table_init(struct net *net);


static const struct xt_table packet_filter = {
	.name		= "filter",
	.valid_hooks	= FILTER_VALID_HOOKS,
	.me		= THIS_MODULE,
	.af		= NFPROTO_ARP,
	.priority	= NF_IP_PRI_FILTER,
	.table_init	= arptable_filter_table_init,
};

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

static unsigned int arptable_filter_hook(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { return arpt_do_table(skb, state, state->net->ipv4.arptable_filter); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller1744.74%220.00%
alexey dobriyanalexey dobriyan1334.21%220.00%
eric w. biedermaneric w. biederman410.53%220.00%
jan engelhardtjan engelhardt25.26%220.00%
patrick mchardypatrick mchardy12.63%110.00%
herbert xuherbert xu12.63%110.00%
Total38100.00%10100.00%

static struct nf_hook_ops *arpfilter_ops __read_mostly;
static int __net_init arptable_filter_table_init(struct net *net) { struct arpt_replace *repl; int err; if (net->ipv4.arptable_filter) return 0; repl = arpt_alloc_initial_table(&packet_filter); if (repl == NULL) return -ENOMEM; err = arpt_register_table(net, &packet_filter, repl, arpfilter_ops, &net->ipv4.arptable_filter); kfree(repl); return err; }

Contributors

PersonTokensPropCommitsCommitProp
jan engelhardtjan engelhardt2835.90%114.29%
florian westphalflorian westphal2633.33%228.57%
david s. millerdavid s. miller1114.10%114.29%
alexey dobriyanalexey dobriyan1114.10%228.57%
harald welteharald welte22.56%114.29%
Total78100.00%7100.00%


static void __net_exit arptable_filter_net_exit(struct net *net) { if (!net->ipv4.arptable_filter) return; arpt_unregister_table(net, net->ipv4.arptable_filter, arpfilter_ops); net->ipv4.arptable_filter = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
florian westphalflorian westphal2251.16%266.67%
alexey dobriyanalexey dobriyan2148.84%133.33%
Total43100.00%3100.00%

static struct pernet_operations arptable_filter_net_ops = { .exit = arptable_filter_net_exit, };
static int __init arptable_filter_init(void) { int ret; arpfilter_ops = xt_hook_ops_alloc(&packet_filter, arptable_filter_hook); if (IS_ERR(arpfilter_ops)) return PTR_ERR(arpfilter_ops); ret = register_pernet_subsys(&arptable_filter_net_ops); if (ret < 0) { kfree(arpfilter_ops); return ret; } ret = arptable_filter_table_init(&init_net); if (ret) { unregister_pernet_subsys(&arptable_filter_net_ops); kfree(arpfilter_ops); } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
florian westphalflorian westphal4652.87%233.33%
alexey dobriyanalexey dobriyan1314.94%116.67%
david s. millerdavid s. miller1213.79%116.67%
jan engelhardtjan engelhardt1213.79%116.67%
patrick mchardypatrick mchardy44.60%116.67%
Total87100.00%6100.00%


static void __exit arptable_filter_fini(void) { unregister_pernet_subsys(&arptable_filter_net_ops); kfree(arpfilter_ops); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller1470.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(arptable_filter_init); module_exit(arptable_filter_fini);

Overall Contributors

PersonTokensPropCommitsCommitProp
florian westphalflorian westphal11430.24%310.71%
david s. millerdavid s. miller8723.08%27.14%
alexey dobriyanalexey dobriyan7118.83%310.71%
jan engelhardtjan engelhardt5614.85%725.00%
harald welteharald welte215.57%310.71%
art haasart haas102.65%13.57%
patrick mchardypatrick mchardy61.59%310.71%
eric w. biedermaneric w. biederman41.06%27.14%
tejun heotejun heo30.80%13.57%
andrew mortonandrew morton30.80%13.57%
bart de schuymerbart de schuymer10.27%13.57%
herbert xuherbert xu10.27%13.57%
Total377100.00%28100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.