Release 4.7 net/ipv4/netfilter/iptable_nat.c
/* (C) 1999-2001 Paul `Rusty' Russell
* (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
* (C) 2011 Patrick McHardy <kaber@trash.net>
*
* 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.
*/
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
#include <linux/netfilter_ipv4/ip_tables.h>
#include <linux/ip.h>
#include <net/ip.h>
#include <net/netfilter/nf_nat.h>
#include <net/netfilter/nf_nat_core.h>
#include <net/netfilter/nf_nat_l3proto.h>
static int __net_init iptable_nat_table_init(struct net *net);
static const struct xt_table nf_nat_ipv4_table = {
.name = "nat",
.valid_hooks = (1 << NF_INET_PRE_ROUTING) |
(1 << NF_INET_POST_ROUTING) |
(1 << NF_INET_LOCAL_OUT) |
(1 << NF_INET_LOCAL_IN),
.me = THIS_MODULE,
.af = NFPROTO_IPV4,
.table_init = iptable_nat_table_init,
};
static unsigned int iptable_nat_do_chain(void *priv,
struct sk_buff *skb,
const struct nf_hook_state *state,
struct nf_conn *ct)
{
return ipt_do_table(skb, state, state->net->ipv4.nat_table);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
patrick mchardy | patrick mchardy | 30 | 69.77% | 1 | 16.67% |
jozsef kadlecsik | jozsef kadlecsik | 4 | 9.30% | 1 | 16.67% |
eric w. biederman | eric w. biederman | 4 | 9.30% | 2 | 33.33% |
david s. miller | david s. miller | 3 | 6.98% | 1 | 16.67% |
pablo neira ayuso | pablo neira ayuso | 2 | 4.65% | 1 | 16.67% |
| Total | 43 | 100.00% | 6 | 100.00% |
static unsigned int iptable_nat_ipv4_fn(void *priv,
struct sk_buff *skb,
const struct nf_hook_state *state)
{
return nf_nat_ipv4_fn(priv, skb, state, iptable_nat_do_chain);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 22 | 64.71% | 1 | 16.67% |
david s. miller | david s. miller | 3 | 8.82% | 1 | 16.67% |
pablo neira ayuso | pablo neira ayuso | 3 | 8.82% | 1 | 16.67% |
eric w. biederman | eric w. biederman | 3 | 8.82% | 1 | 16.67% |
herbert xu | herbert xu | 2 | 5.88% | 1 | 16.67% |
patrick mchardy | patrick mchardy | 1 | 2.94% | 1 | 16.67% |
| Total | 34 | 100.00% | 6 | 100.00% |
static unsigned int iptable_nat_ipv4_in(void *priv,
struct sk_buff *skb,
const struct nf_hook_state *state)
{
return nf_nat_ipv4_in(priv, skb, state, iptable_nat_do_chain);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 21 | 61.76% | 1 | 16.67% |
pablo neira ayuso | pablo neira ayuso | 4 | 11.76% | 1 | 16.67% |
david s. miller | david s. miller | 3 | 8.82% | 1 | 16.67% |
eric w. biederman | eric w. biederman | 3 | 8.82% | 1 | 16.67% |
herbert xu | herbert xu | 2 | 5.88% | 1 | 16.67% |
patrick mchardy | patrick mchardy | 1 | 2.94% | 1 | 16.67% |
| Total | 34 | 100.00% | 6 | 100.00% |
static unsigned int iptable_nat_ipv4_out(void *priv,
struct sk_buff *skb,
const struct nf_hook_state *state)
{
return nf_nat_ipv4_out(priv, skb, state, iptable_nat_do_chain);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 21 | 61.76% | 1 | 14.29% |
david s. miller | david s. miller | 3 | 8.82% | 1 | 14.29% |
eric w. biederman | eric w. biederman | 3 | 8.82% | 1 | 14.29% |
pablo neira ayuso | pablo neira ayuso | 3 | 8.82% | 1 | 14.29% |
patrick mchardy | patrick mchardy | 2 | 5.88% | 2 | 28.57% |
herbert xu | herbert xu | 2 | 5.88% | 1 | 14.29% |
| Total | 34 | 100.00% | 7 | 100.00% |
static unsigned int iptable_nat_ipv4_local_fn(void *priv,
struct sk_buff *skb,
const struct nf_hook_state *state)
{
return nf_nat_ipv4_local_fn(priv, skb, state, iptable_nat_do_chain);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 22 | 64.71% | 1 | 16.67% |
pablo neira ayuso | pablo neira ayuso | 3 | 8.82% | 1 | 16.67% |
eric w. biederman | eric w. biederman | 3 | 8.82% | 1 | 16.67% |
david s. miller | david s. miller | 3 | 8.82% | 1 | 16.67% |
herbert xu | herbert xu | 2 | 5.88% | 1 | 16.67% |
patrick mchardy | patrick mchardy | 1 | 2.94% | 1 | 16.67% |
| Total | 34 | 100.00% | 6 | 100.00% |
static struct nf_hook_ops nf_nat_ipv4_ops[] __read_mostly = {
/* Before packet filtering, change destination */
{
.hook = iptable_nat_ipv4_in,
.pf = NFPROTO_IPV4,
.hooknum = NF_INET_PRE_ROUTING,
.priority = NF_IP_PRI_NAT_DST,
},
/* After packet filtering, change source */
{
.hook = iptable_nat_ipv4_out,
.pf = NFPROTO_IPV4,
.hooknum = NF_INET_POST_ROUTING,
.priority = NF_IP_PRI_NAT_SRC,
},
/* Before packet filtering, change destination */
{
.hook = iptable_nat_ipv4_local_fn,
.pf = NFPROTO_IPV4,
.hooknum = NF_INET_LOCAL_OUT,
.priority = NF_IP_PRI_NAT_DST,
},
/* After packet filtering, change source */
{
.hook = iptable_nat_ipv4_fn,
.pf = NFPROTO_IPV4,
.hooknum = NF_INET_LOCAL_IN,
.priority = NF_IP_PRI_NAT_SRC,
},
};
static int __net_init iptable_nat_table_init(struct net *net)
{
struct ipt_replace *repl;
int ret;
if (net->ipv4.nat_table)
return 0;
repl = ipt_alloc_initial_table(&nf_nat_ipv4_table);
if (repl == NULL)
return -ENOMEM;
ret = ipt_register_table(net, &nf_nat_ipv4_table, repl,
nf_nat_ipv4_ops, &net->ipv4.nat_table);
kfree(repl);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
patrick mchardy | patrick mchardy | 41 | 52.56% | 2 | 40.00% |
florian westphal | florian westphal | 26 | 33.33% | 2 | 40.00% |
jozsef kadlecsik | jozsef kadlecsik | 11 | 14.10% | 1 | 20.00% |
| Total | 78 | 100.00% | 5 | 100.00% |
static void __net_exit iptable_nat_net_exit(struct net *net)
{
if (!net->ipv4.nat_table)
return;
ipt_unregister_table(net, net->ipv4.nat_table, nf_nat_ipv4_ops);
net->ipv4.nat_table = NULL;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
patrick mchardy | patrick mchardy | 23 | 53.49% | 1 | 33.33% |
florian westphal | florian westphal | 20 | 46.51% | 2 | 66.67% |
| Total | 43 | 100.00% | 3 | 100.00% |
static struct pernet_operations iptable_nat_net_ops = {
.exit = iptable_nat_net_exit,
};
static int __init iptable_nat_init(void)
{
int ret = register_pernet_subsys(&iptable_nat_net_ops);
if (ret)
return ret;
ret = iptable_nat_table_init(&init_net);
if (ret)
unregister_pernet_subsys(&iptable_nat_net_ops);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
patrick mchardy | patrick mchardy | 19 | 41.30% | 2 | 50.00% |
jozsef kadlecsik | jozsef kadlecsik | 14 | 30.43% | 1 | 25.00% |
florian westphal | florian westphal | 13 | 28.26% | 1 | 25.00% |
| Total | 46 | 100.00% | 4 | 100.00% |
static void __exit iptable_nat_exit(void)
{
unregister_pernet_subsys(&iptable_nat_net_ops);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 9 | 60.00% | 1 | 33.33% |
patrick mchardy | patrick mchardy | 6 | 40.00% | 2 | 66.67% |
| Total | 15 | 100.00% | 3 | 100.00% |
module_init(iptable_nat_init);
module_exit(iptable_nat_exit);
MODULE_LICENSE("GPL");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jozsef kadlecsik | jozsef kadlecsik | 248 | 42.54% | 1 | 5.88% |
patrick mchardy | patrick mchardy | 194 | 33.28% | 6 | 35.29% |
florian westphal | florian westphal | 75 | 12.86% | 2 | 11.76% |
pablo neira ayuso | pablo neira ayuso | 19 | 3.26% | 1 | 5.88% |
david s. miller | david s. miller | 19 | 3.26% | 3 | 17.65% |
eric w. biederman | eric w. biederman | 16 | 2.74% | 2 | 11.76% |
herbert xu | herbert xu | 8 | 1.37% | 1 | 5.88% |
jan engelhardt | jan engelhardt | 4 | 0.69% | 1 | 5.88% |
| Total | 583 | 100.00% | 17 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.