cregit-Linux how code gets into the kernel

Release 4.8 net/ipv4/netfilter/ipt_MASQUERADE.c

/* Masquerade.  Simple mapping which alters range to a local IP address
   (depending on route). */

/* (C) 1999-2001 Paul `Rusty' Russell
 * (C) 2002-2006 Netfilter Core Team <coreteam@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.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/types.h>
#include <linux/inetdevice.h>
#include <linux/ip.h>
#include <linux/timer.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <net/protocol.h>
#include <net/ip.h>
#include <net/checksum.h>
#include <net/route.h>
#include <linux/netfilter_ipv4.h>
#include <linux/netfilter/x_tables.h>
#include <net/netfilter/nf_nat.h>
#include <net/netfilter/ipv4/nf_nat_masquerade.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
MODULE_DESCRIPTION("Xtables: automatic-address SNAT");

/* FIXME: Multiple targets. --RR */

static int masquerade_tg_check(const struct xt_tgchk_param *par) { const struct nf_nat_ipv4_multi_range_compat *mr = par->targinfo; if (mr->range[0].flags & NF_NAT_RANGE_MAP_IPS) { pr_debug("bad MAP_IPS.\n"); return -EINVAL; } if (mr->rangesize != 1) { pr_debug("bad rangesize %u\n", mr->rangesize); return -EINVAL; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git5475.00%111.11%
jan engelhardtjan engelhardt1318.06%555.56%
patrick mchardypatrick mchardy56.94%333.33%
Total72100.00%9100.00%


static unsigned int masquerade_tg(struct sk_buff *skb, const struct xt_action_param *par) { struct nf_nat_range range; const struct nf_nat_ipv4_multi_range_compat *mr; mr = par->targinfo; range.flags = mr->range[0].flags; range.min_proto = mr->range[0].min; range.max_proto = mr->range[0].max; return nf_nat_masquerade_ipv4(skb, par->hooknum, &range, par->out); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git5257.78%215.38%
arturo borrero gonzalezarturo borrero gonzalez1213.33%17.69%
patrick mchardypatrick mchardy1213.33%215.38%
jan engelhardtjan engelhardt55.56%323.08%
rusty russellrusty russell44.44%17.69%
jozsef kadlecsikjozsef kadlecsik22.22%17.69%
herbert xuherbert xu11.11%17.69%
americo wangamerico wang11.11%17.69%
florian westphalflorian westphal11.11%17.69%
Total90100.00%13100.00%

static struct xt_target masquerade_tg_reg __read_mostly = { .name = "MASQUERADE", .family = NFPROTO_IPV4, .target = masquerade_tg, .targetsize = sizeof(struct nf_nat_ipv4_multi_range_compat), .table = "nat", .hooks = 1 << NF_INET_POST_ROUTING, .checkentry = masquerade_tg_check, .me = THIS_MODULE, };
static int __init masquerade_tg_init(void) { int ret; ret = xt_register_target(&masquerade_tg_reg); if (ret == 0) nf_nat_masquerade_ipv4_register_notifier(); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git2681.25%120.00%
jan engelhardtjan engelhardt39.38%240.00%
arturo borrero gonzalezarturo borrero gonzalez26.25%120.00%
phil oesterphil oester13.12%120.00%
Total32100.00%5100.00%


static void __exit masquerade_tg_exit(void) { xt_unregister_target(&masquerade_tg_reg); nf_nat_masquerade_ipv4_unregister_notifier(); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git1266.67%120.00%
jan engelhardtjan engelhardt316.67%240.00%
arturo borrero gonzalezarturo borrero gonzalez211.11%120.00%
linus torvaldslinus torvalds15.56%120.00%
Total18100.00%5100.00%

module_init(masquerade_tg_init); module_exit(masquerade_tg_exit);

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git19155.69%26.45%
jan engelhardtjan engelhardt4312.54%1032.26%
patrick mchardypatrick mchardy4212.24%722.58%
arturo borrero gonzalezarturo borrero gonzalez195.54%13.23%
harald welteharald welte144.08%13.23%
art haasart haas133.79%13.23%
arnaldo carvalho de meloarnaldo carvalho de melo92.62%26.45%
rusty russellrusty russell41.17%13.23%
jozsef kadlecsikjozsef kadlecsik30.87%13.23%
herbert xuherbert xu10.29%13.23%
americo wangamerico wang10.29%13.23%
phil oesterphil oester10.29%13.23%
linus torvaldslinus torvalds10.29%13.23%
florian westphalflorian westphal10.29%13.23%
Total343100.00%31100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.