cregit-Linux how code gets into the kernel

Release 4.11 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. Miller1744.74%220.00%
Alexey Dobriyan1334.21%220.00%
Eric W. Biedermann410.53%220.00%
Jan Engelhardt25.26%220.00%
Patrick McHardy12.63%110.00%
Herbert 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 Engelhardt2835.90%114.29%
Florian Westphal2633.33%228.57%
Alexey Dobriyan1114.10%228.57%
David S. Miller1114.10%114.29%
Harald 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 Westphal2251.16%266.67%
Alexey 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 Westphal4652.87%233.33%
Alexey Dobriyan1314.94%116.67%
Jan Engelhardt1213.79%116.67%
David S. Miller1213.79%116.67%
Patrick 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. Miller1470.00%125.00%
Florian Westphal420.00%125.00%
Andrew Morton15.00%125.00%
Jan Engelhardt15.00%125.00%
Total20100.00%4100.00%

module_init(arptable_filter_init); module_exit(arptable_filter_fini);

Overall Contributors

PersonTokensPropCommitsCommitProp
Florian Westphal11430.24%310.71%
David S. Miller8723.08%27.14%
Alexey Dobriyan7118.83%310.71%
Jan Engelhardt5614.85%725.00%
Harald Welte215.57%310.71%
Art Haas102.65%13.57%
Patrick McHardy61.59%310.71%
Eric W. Biedermann41.06%27.14%
Tejun Heo30.80%13.57%
Andrew Morton30.80%13.57%
Herbert Xu10.27%13.57%
Bart De Schuymer10.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.
Created with cregit.