iptable_nat.c 3.7 KB
Newer Older
1 2
/* (C) 1999-2001 Paul `Rusty' Russell
 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
3
 * (C) 2011 Patrick McHardy <kaber@trash.net>
4 5 6 7 8
 *
 * 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.
 */
9 10

#include <linux/module.h>
11 12
#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
13 14
#include <linux/netfilter_ipv4/ip_tables.h>
#include <linux/ip.h>
15 16 17 18
#include <net/ip.h>

#include <net/netfilter/nf_nat.h>
#include <net/netfilter/nf_nat_core.h>
19 20
#include <net/netfilter/nf_nat_l3proto.h>

21 22
static int __net_init iptable_nat_table_init(struct net *net);

23 24 25 26 27 28 29 30
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,
31
	.table_init	= iptable_nat_table_init,
32
};
33

34
static unsigned int iptable_nat_do_chain(void *priv,
35
					 struct sk_buff *skb,
36
					 const struct nf_hook_state *state,
37
					 struct nf_conn *ct)
38
{
39
	return ipt_do_table(skb, state, state->net->ipv4.nat_table);
40 41
}

42
static unsigned int iptable_nat_ipv4_fn(void *priv,
43
					struct sk_buff *skb,
44
					const struct nf_hook_state *state)
45
{
46
	return nf_nat_ipv4_fn(priv, skb, state, iptable_nat_do_chain);
47 48
}

49
static unsigned int iptable_nat_ipv4_in(void *priv,
50
					struct sk_buff *skb,
51
					const struct nf_hook_state *state)
52
{
53
	return nf_nat_ipv4_in(priv, skb, state, iptable_nat_do_chain);
54 55
}

56
static unsigned int iptable_nat_ipv4_out(void *priv,
57
					 struct sk_buff *skb,
58
					 const struct nf_hook_state *state)
59
{
60
	return nf_nat_ipv4_out(priv, skb, state, iptable_nat_do_chain);
61 62
}

63
static unsigned int iptable_nat_ipv4_local_fn(void *priv,
64
					      struct sk_buff *skb,
65
					      const struct nf_hook_state *state)
66
{
67
	return nf_nat_ipv4_local_fn(priv, skb, state, iptable_nat_do_chain);
68 69
}

70
static struct nf_hook_ops nf_nat_ipv4_ops[] __read_mostly = {
71 72
	/* Before packet filtering, change destination */
	{
73
		.hook		= iptable_nat_ipv4_in,
74
		.pf		= NFPROTO_IPV4,
75
		.hooknum	= NF_INET_PRE_ROUTING,
76 77 78 79
		.priority	= NF_IP_PRI_NAT_DST,
	},
	/* After packet filtering, change source */
	{
80
		.hook		= iptable_nat_ipv4_out,
81
		.pf		= NFPROTO_IPV4,
82
		.hooknum	= NF_INET_POST_ROUTING,
83 84 85 86
		.priority	= NF_IP_PRI_NAT_SRC,
	},
	/* Before packet filtering, change destination */
	{
87
		.hook		= iptable_nat_ipv4_local_fn,
88
		.pf		= NFPROTO_IPV4,
89
		.hooknum	= NF_INET_LOCAL_OUT,
90 91 92 93
		.priority	= NF_IP_PRI_NAT_DST,
	},
	/* After packet filtering, change source */
	{
94
		.hook		= iptable_nat_ipv4_fn,
95
		.pf		= NFPROTO_IPV4,
96
		.hooknum	= NF_INET_LOCAL_IN,
97 98 99 100
		.priority	= NF_IP_PRI_NAT_SRC,
	},
};

101
static int __net_init iptable_nat_table_init(struct net *net)
102
{
103
	struct ipt_replace *repl;
104
	int ret;
105

106 107 108
	if (net->ipv4.nat_table)
		return 0;

109 110 111
	repl = ipt_alloc_initial_table(&nf_nat_ipv4_table);
	if (repl == NULL)
		return -ENOMEM;
112 113
	ret = ipt_register_table(net, &nf_nat_ipv4_table, repl,
				 nf_nat_ipv4_ops, &net->ipv4.nat_table);
114
	kfree(repl);
115
	return ret;
116
}
117

118 119
static void __net_exit iptable_nat_net_exit(struct net *net)
{
120 121
	if (!net->ipv4.nat_table)
		return;
122
	ipt_unregister_table(net, net->ipv4.nat_table, nf_nat_ipv4_ops);
123
	net->ipv4.nat_table = NULL;
124
}
125

126 127 128
static struct pernet_operations iptable_nat_net_ops = {
	.exit	= iptable_nat_net_exit,
};
129

130 131
static int __init iptable_nat_init(void)
{
132
	int ret = register_pernet_subsys(&iptable_nat_net_ops);
133

134 135
	if (ret)
		return ret;
136

137 138 139 140
	ret = iptable_nat_table_init(&init_net);
	if (ret)
		unregister_pernet_subsys(&iptable_nat_net_ops);
	return ret;
141 142
}

143
static void __exit iptable_nat_exit(void)
144
{
145
	unregister_pernet_subsys(&iptable_nat_net_ops);
146 147
}

148 149
module_init(iptable_nat_init);
module_exit(iptable_nat_exit);
150 151

MODULE_LICENSE("GPL");