cregit-Linux how code gets into the kernel

Release 4.11 net/bridge/netfilter/nf_tables_bridge.c

/*
 * Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
 * Copyright (c) 2013 Pablo Neira Ayuso <pablo@netfilter.org>
 *
 * 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.
 *
 * Development of this code funded by Astaro AG (http://www.astaro.com/)
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/netfilter_bridge.h>
#include <net/netfilter/nf_tables.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/netfilter/nf_tables_ipv4.h>
#include <net/netfilter/nf_tables_ipv6.h>


static unsigned int nft_do_chain_bridge(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { struct nft_pktinfo pkt; switch (eth_hdr(skb)->h_proto) { case htons(ETH_P_IP): nft_set_pktinfo_ipv4_validate(&pkt, skb, state); break; case htons(ETH_P_IPV6): nft_set_pktinfo_ipv6_validate(&pkt, skb, state); break; default: nft_set_pktinfo_unspec(&pkt, skb, state); break; } return nft_do_chain(&pkt, priv); }

Contributors

PersonTokensPropCommitsCommitProp
Alvaro Neira4346.74%114.29%
Patrick McHardy3841.30%228.57%
David S. Miller55.43%114.29%
Pablo Neira Ayuso33.26%228.57%
Eric W. Biedermann33.26%114.29%
Total92100.00%7100.00%

static struct nft_af_info nft_af_bridge __read_mostly = { .family = NFPROTO_BRIDGE, .nhooks = NF_BR_NUMHOOKS, .owner = THIS_MODULE, .nops = 1, .hooks = { [NF_BR_PRE_ROUTING] = nft_do_chain_bridge, [NF_BR_LOCAL_IN] = nft_do_chain_bridge, [NF_BR_FORWARD] = nft_do_chain_bridge, [NF_BR_LOCAL_OUT] = nft_do_chain_bridge, [NF_BR_POST_ROUTING] = nft_do_chain_bridge, }, };
static int nf_tables_bridge_init_net(struct net *net) { net->nft.bridge = kmalloc(sizeof(struct nft_af_info), GFP_KERNEL); if (net->nft.bridge == NULL) return -ENOMEM; memcpy(net->nft.bridge, &nft_af_bridge, sizeof(nft_af_bridge)); if (nft_register_afinfo(net, net->nft.bridge) < 0) goto err; return 0; err: kfree(net->nft.bridge); return -ENOMEM; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso95100.00%1100.00%
Total95100.00%1100.00%


static void nf_tables_bridge_exit_net(struct net *net) { nft_unregister_afinfo(net, net->nft.bridge); kfree(net->nft.bridge); }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso31100.00%2100.00%
Total31100.00%2100.00%

static struct pernet_operations nf_tables_bridge_net_ops = { .init = nf_tables_bridge_init_net, .exit = nf_tables_bridge_exit_net, }; static const struct nf_chain_type filter_bridge = { .name = "filter", .type = NFT_CHAIN_T_DEFAULT, .family = NFPROTO_BRIDGE, .owner = THIS_MODULE, .hook_mask = (1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_IN) | (1 << NF_BR_FORWARD) | (1 << NF_BR_LOCAL_OUT) | (1 << NF_BR_POST_ROUTING), };
static void nf_br_saveroute(const struct sk_buff *skb, struct nf_queue_entry *entry) { }

Contributors

PersonTokensPropCommitsCommitProp
Stephane Bryant16100.00%1100.00%
Total16100.00%1100.00%


static int nf_br_reroute(struct net *net, struct sk_buff *skb, const struct nf_queue_entry *entry) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Stephane Bryant25100.00%1100.00%
Total25100.00%1100.00%


static __sum16 nf_br_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff, u_int8_t protocol) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Stephane Bryant25100.00%1100.00%
Total25100.00%1100.00%


static __sum16 nf_br_checksum_partial(struct sk_buff *skb, unsigned int hook, unsigned int dataoff, unsigned int len, u_int8_t protocol) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Stephane Bryant29100.00%1100.00%
Total29100.00%1100.00%


static int nf_br_route(struct net *net, struct dst_entry **dst, struct flowi *fl, bool strict __always_unused) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Stephane Bryant29100.00%1100.00%
Total29100.00%1100.00%

static const struct nf_afinfo nf_br_afinfo = { .family = AF_BRIDGE, .checksum = nf_br_checksum, .checksum_partial = nf_br_checksum_partial, .route = nf_br_route, .saveroute = nf_br_saveroute, .reroute = nf_br_reroute, .route_key_size = 0, };
static int __init nf_tables_bridge_init(void) { int ret; nf_register_afinfo(&nf_br_afinfo); ret = nft_register_chain_type(&filter_bridge); if (ret < 0) goto err1; ret = register_pernet_subsys(&nf_tables_bridge_net_ops); if (ret < 0) goto err2; return ret; err2: nft_unregister_chain_type(&filter_bridge); err1: nf_unregister_afinfo(&nf_br_afinfo); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso2837.84%240.00%
Gao Feng2128.38%120.00%
Patrick McHardy1317.57%120.00%
Stephane Bryant1216.22%120.00%
Total74100.00%5100.00%


static void __exit nf_tables_bridge_exit(void) { unregister_pernet_subsys(&nf_tables_bridge_net_ops); nft_unregister_chain_type(&filter_bridge); nf_unregister_afinfo(&nf_br_afinfo); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy1244.44%125.00%
Pablo Neira Ayuso933.33%250.00%
Stephane Bryant622.22%125.00%
Total27100.00%4100.00%

module_init(nf_tables_bridge_init); module_exit(nf_tables_bridge_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); MODULE_ALIAS_NFT_FAMILY(AF_BRIDGE);

Overall Contributors

PersonTokensPropCommitsCommitProp
Pablo Neira Ayuso24636.34%735.00%
Stephane Bryant18527.33%15.00%
Patrick McHardy16223.93%735.00%
Alvaro Neira558.12%210.00%
Gao Feng213.10%15.00%
David S. Miller50.74%15.00%
Eric W. Biedermann30.44%15.00%
Total677100.00%20100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.