cregit-Linux how code gets into the kernel

Release 4.16 net/ipv4/netfilter/nf_tables_ipv4.c

/*
 * Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
 * Copyright (c) 2012-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/ip.h>
#include <linux/netfilter_ipv4.h>
#include <net/netfilter/nf_tables.h>
#include <net/net_namespace.h>
#include <net/ip.h>
#include <net/netfilter/nf_tables_ipv4.h>


static unsigned int nft_do_chain_ipv4(void *priv, struct sk_buff *skb, const struct nf_hook_state *state) { struct nft_pktinfo pkt; nft_set_pktinfo(&pkt, skb, state); nft_set_pktinfo_ipv4(&pkt, skb); return nft_do_chain(&pkt, priv); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy3464.15%342.86%
Pablo Neira Ayuso1324.53%228.57%
Eric W. Biedermann35.66%114.29%
David S. Miller35.66%114.29%
Total53100.00%7100.00%

static const struct nf_chain_type filter_ipv4 = { .name = "filter", .type = NFT_CHAIN_T_DEFAULT, .family = NFPROTO_IPV4, .owner = THIS_MODULE, .hook_mask = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_LOCAL_OUT) | (1 << NF_INET_FORWARD) | (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_POST_ROUTING), .hooks = { [NF_INET_LOCAL_IN] = nft_do_chain_ipv4, [NF_INET_LOCAL_OUT] = nft_do_chain_ipv4, [NF_INET_FORWARD] = nft_do_chain_ipv4, [NF_INET_PRE_ROUTING] = nft_do_chain_ipv4, [NF_INET_POST_ROUTING] = nft_do_chain_ipv4, }, };
static int __init nf_tables_ipv4_init(void) { return nft_register_chain_type(&filter_ipv4); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy1381.25%133.33%
Pablo Neira Ayuso212.50%133.33%
Gao Feng16.25%133.33%
Total16100.00%3100.00%


static void __exit nf_tables_ipv4_exit(void) { nft_unregister_chain_type(&filter_ipv4); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy1386.67%150.00%
Pablo Neira Ayuso213.33%150.00%
Total15100.00%2100.00%

module_init(nf_tables_ipv4_init); module_exit(nf_tables_ipv4_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); MODULE_ALIAS_NFT_CHAIN(AF_INET, "filter");

Overall Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy11348.71%635.29%
Pablo Neira Ayuso11248.28%847.06%
David S. Miller31.29%15.88%
Eric W. Biedermann31.29%15.88%
Gao Feng10.43%15.88%
Total232100.00%17100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.