cregit-Linux how code gets into the kernel

Release 4.14 net/bridge/netfilter/ebtable_filter.c

/*
 *  ebtable_filter
 *
 *      Authors:
 *      Bart De Schuymer <bdschuym@pandora.be>
 *
 *  April, 2002
 *
 */

#include <linux/netfilter_bridge/ebtables.h>
#include <linux/module.h>


#define FILTER_VALID_HOOKS ((1 << NF_BR_LOCAL_IN) | (1 << NF_BR_FORWARD) | \
                            (1 << NF_BR_LOCAL_OUT))


static struct ebt_entries initial_chains[] = {
	{
		.name	= "INPUT",
		.policy	= EBT_ACCEPT,
        },
	{
		.name	= "FORWARD",
		.policy	= EBT_ACCEPT,
        },
	{
		.name	= "OUTPUT",
		.policy	= EBT_ACCEPT,
        },
};


static struct ebt_replace_kernel initial_table = {
	.name		= "filter",
	.valid_hooks	= FILTER_VALID_HOOKS,
	.entries_size	= 3 * sizeof(struct ebt_entries),
	.hook_entry	= {
		[NF_BR_LOCAL_IN]	= &initial_chains[0],
		[NF_BR_FORWARD]		= &initial_chains[1],
		[NF_BR_LOCAL_OUT]	= &initial_chains[2],
        },
	.entries	= (char *)initial_chains,
};


static int check(const struct ebt_table_info *info, unsigned int valid_hooks) { if (valid_hooks & ~FILTER_VALID_HOOKS) return -EINVAL; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer30100.00%1100.00%
Total30100.00%1100.00%

static const struct ebt_table frame_filter = { .name = "filter", .table = &initial_table, .valid_hooks = FILTER_VALID_HOOKS, .check = check, .me = THIS_MODULE, };
static unsigned int ebt_in_hook(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { return ebt_do_table(skb, state, state->net->xt.frame_filter); }

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan2976.32%233.33%
David S. Miller513.16%116.67%
Eric W. Biedermann37.89%233.33%
Patrick McHardy12.63%116.67%
Total38100.00%6100.00%


static unsigned int ebt_out_hook(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { return ebt_do_table(skb, state, state->net->xt.frame_filter); }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer2360.53%114.29%
David S. Miller513.16%114.29%
Alexey Dobriyan410.53%114.29%
Eric W. Biedermann37.89%228.57%
Herbert Xu25.26%114.29%
Patrick McHardy12.63%114.29%
Total38100.00%7100.00%

static const struct nf_hook_ops ebt_ops_filter[] = { { .hook = ebt_in_hook, .pf = NFPROTO_BRIDGE, .hooknum = NF_BR_LOCAL_IN, .priority = NF_BR_PRI_FILTER_BRIDGED, }, { .hook = ebt_in_hook, .pf = NFPROTO_BRIDGE, .hooknum = NF_BR_FORWARD, .priority = NF_BR_PRI_FILTER_BRIDGED, }, { .hook = ebt_out_hook, .pf = NFPROTO_BRIDGE, .hooknum = NF_BR_LOCAL_OUT, .priority = NF_BR_PRI_FILTER_OTHER, }, };
static int __net_init frame_filter_net_init(struct net *net) { return ebt_register_table(net, &frame_filter, ebt_ops_filter, &net->xt.frame_filter); }

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan1756.67%350.00%
Bart De Schuymer826.67%116.67%
Artem Savkov310.00%116.67%
Florian Westphal26.67%116.67%
Total30100.00%6100.00%


static void __net_exit frame_filter_net_exit(struct net *net) { ebt_unregister_table(net, net->xt.frame_filter, ebt_ops_filter); }

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan2392.00%266.67%
Florian Westphal28.00%133.33%
Total25100.00%3100.00%

static struct pernet_operations frame_filter_net_ops = { .init = frame_filter_net_init, .exit = frame_filter_net_exit, };
static int __init ebtable_filter_init(void) { return register_pernet_subsys(&frame_filter_net_ops); }

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan1168.75%133.33%
Bart De Schuymer425.00%133.33%
Florian Westphal16.25%133.33%
Total16100.00%3100.00%


static void __exit ebtable_filter_fini(void) { unregister_pernet_subsys(&frame_filter_net_ops); }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer1173.33%133.33%
Alexey Dobriyan320.00%133.33%
Andrew Morton16.67%133.33%
Total15100.00%3100.00%

module_init(ebtable_filter_init); module_exit(ebtable_filter_fini); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer22448.70%314.29%
Alexey Dobriyan10823.48%419.05%
Art Haas9019.57%14.76%
David S. Miller102.17%14.76%
Florian Westphal61.30%29.52%
Eric W. Biedermann61.30%29.52%
Jan Engelhardt40.87%29.52%
Artem Savkov30.65%14.76%
Andrew Morton30.65%14.76%
Herbert Xu20.43%14.76%
Patrick McHardy20.43%14.76%
Ian Morris10.22%14.76%
Al Viro10.22%14.76%
Total460100.00%21100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.