blob: 0a02a8caf3b3b1821cf0b690d9ffea4608362da3 [file] [log] [blame]
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/* Everything about the rules for NAT. */
10#include <linux/types.h>
11#include <linux/ip.h>
12#include <linux/netfilter.h>
13#include <linux/netfilter_ipv4.h>
14#include <linux/module.h>
15#include <linux/kmod.h>
16#include <linux/skbuff.h>
17#include <linux/proc_fs.h>
18#include <net/checksum.h>
19#include <net/route.h>
20#include <linux/bitops.h>
21
22#include <linux/netfilter_ipv4/ip_tables.h>
23#include <net/netfilter/nf_nat.h>
24#include <net/netfilter/nf_nat_core.h>
25#include <net/netfilter/nf_nat_rule.h>
26
Patrick McHardy6e23ae22007-11-19 18:53:30 -080027#define NAT_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | \
28 (1 << NF_INET_POST_ROUTING) | \
29 (1 << NF_INET_LOCAL_OUT))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080030
31static struct
32{
33 struct ipt_replace repl;
34 struct ipt_standard entries[3];
35 struct ipt_error term;
Alexey Dobriyane099a172008-10-08 11:35:10 +020036} nat_initial_table __net_initdata = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080037 .repl = {
38 .name = "nat",
39 .valid_hooks = NAT_VALID_HOOKS,
40 .num_entries = 4,
41 .size = sizeof(struct ipt_standard) * 3 + sizeof(struct ipt_error),
42 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080043 [NF_INET_PRE_ROUTING] = 0,
44 [NF_INET_POST_ROUTING] = sizeof(struct ipt_standard),
45 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2
Patrick McHardy3c2ad462007-05-10 14:14:16 -070046 },
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080047 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080048 [NF_INET_PRE_ROUTING] = 0,
49 [NF_INET_POST_ROUTING] = sizeof(struct ipt_standard),
50 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2
Patrick McHardy3c2ad462007-05-10 14:14:16 -070051 },
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080052 },
53 .entries = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070054 IPT_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
55 IPT_STANDARD_INIT(NF_ACCEPT), /* POST_ROUTING */
56 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080057 },
Patrick McHardy3c2ad462007-05-10 14:14:16 -070058 .term = IPT_ERROR_INIT, /* ERROR */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080059};
60
Alexey Dobriyane099a172008-10-08 11:35:10 +020061static struct xt_table nat_table = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080062 .name = "nat",
63 .valid_hooks = NAT_VALID_HOOKS,
Robert P. J. Dayfdccecd2008-04-14 09:56:03 +020064 .lock = __RW_LOCK_UNLOCKED(__nat_table.lock),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080065 .me = THIS_MODULE,
66 .af = AF_INET,
67};
68
69/* Source NAT */
Herbert Xu3db05fe2007-10-15 00:53:15 -070070static unsigned int ipt_snat_target(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080071 const struct net_device *in,
72 const struct net_device *out,
73 unsigned int hooknum,
74 const struct xt_target *target,
75 const void *targinfo)
76{
77 struct nf_conn *ct;
78 enum ip_conntrack_info ctinfo;
79 const struct nf_nat_multi_range_compat *mr = targinfo;
80
Patrick McHardy6e23ae22007-11-19 18:53:30 -080081 NF_CT_ASSERT(hooknum == NF_INET_POST_ROUTING);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080082
Herbert Xu3db05fe2007-10-15 00:53:15 -070083 ct = nf_ct_get(skb, &ctinfo);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080084
85 /* Connection must be valid and new. */
86 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090087 ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080088 NF_CT_ASSERT(out);
89
Patrick McHardycc01dcb2007-12-17 22:38:20 -080090 return nf_nat_setup_info(ct, &mr->range[0], IP_NAT_MANIP_SRC);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080091}
92
93/* Before 2.6.11 we did implicit source NAT if required. Warn about change. */
94static void warn_if_extra_mangle(__be32 dstip, __be32 srcip)
95{
96 static int warned = 0;
97 struct flowi fl = { .nl_u = { .ip4_u = { .daddr = dstip } } };
98 struct rtable *rt;
99
Denis V. Lunevf2063512008-01-22 22:07:34 -0800100 if (ip_route_output_key(&init_net, &rt, &fl) != 0)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800101 return;
102
103 if (rt->rt_src != srcip && !warned) {
104 printk("NAT: no longer support implicit source local NAT\n");
105 printk("NAT: packet src %u.%u.%u.%u -> dst %u.%u.%u.%u\n",
106 NIPQUAD(srcip), NIPQUAD(dstip));
107 warned = 1;
108 }
109 ip_rt_put(rt);
110}
111
Herbert Xu3db05fe2007-10-15 00:53:15 -0700112static unsigned int ipt_dnat_target(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800113 const struct net_device *in,
114 const struct net_device *out,
115 unsigned int hooknum,
116 const struct xt_target *target,
117 const void *targinfo)
118{
119 struct nf_conn *ct;
120 enum ip_conntrack_info ctinfo;
121 const struct nf_nat_multi_range_compat *mr = targinfo;
122
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800123 NF_CT_ASSERT(hooknum == NF_INET_PRE_ROUTING ||
124 hooknum == NF_INET_LOCAL_OUT);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800125
Herbert Xu3db05fe2007-10-15 00:53:15 -0700126 ct = nf_ct_get(skb, &ctinfo);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800127
128 /* Connection must be valid and new. */
129 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED));
130
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800131 if (hooknum == NF_INET_LOCAL_OUT &&
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800132 mr->range[0].flags & IP_NAT_RANGE_MAP_IPS)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700133 warn_if_extra_mangle(ip_hdr(skb)->daddr,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800134 mr->range[0].min_ip);
135
Patrick McHardycc01dcb2007-12-17 22:38:20 -0800136 return nf_nat_setup_info(ct, &mr->range[0], IP_NAT_MANIP_DST);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800137}
138
Jan Engelhardte1931b72007-07-07 22:16:26 -0700139static bool ipt_snat_checkentry(const char *tablename,
140 const void *entry,
141 const struct xt_target *target,
142 void *targinfo,
143 unsigned int hook_mask)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800144{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200145 const struct nf_nat_multi_range_compat *mr = targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800146
147 /* Must be a valid range */
148 if (mr->rangesize != 1) {
149 printk("SNAT: multiple ranges no longer supported\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700150 return false;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800151 }
Jan Engelhardte1931b72007-07-07 22:16:26 -0700152 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800153}
154
Jan Engelhardte1931b72007-07-07 22:16:26 -0700155static bool ipt_dnat_checkentry(const char *tablename,
156 const void *entry,
157 const struct xt_target *target,
158 void *targinfo,
159 unsigned int hook_mask)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800160{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200161 const struct nf_nat_multi_range_compat *mr = targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800162
163 /* Must be a valid range */
164 if (mr->rangesize != 1) {
165 printk("DNAT: multiple ranges no longer supported\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700166 return false;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800167 }
Jan Engelhardte1931b72007-07-07 22:16:26 -0700168 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800169}
170
Jan Engelhardt170b1972007-07-07 22:17:36 -0700171unsigned int
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700172alloc_null_binding(struct nf_conn *ct, unsigned int hooknum)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800173{
174 /* Force range to this IP; let proto decide mapping for
175 per-proto parts (hence not IP_NAT_RANGE_PROTO_SPECIFIED).
176 Use reply in case it's already been mangled (eg local packet).
177 */
178 __be32 ip
179 = (HOOK2MANIP(hooknum) == IP_NAT_MANIP_SRC
180 ? ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3.ip
181 : ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.u3.ip);
182 struct nf_nat_range range
183 = { IP_NAT_RANGE_MAP_IPS, ip, ip, { 0 }, { 0 } };
184
Patrick McHardy0d537782007-07-07 22:39:38 -0700185 pr_debug("Allocating NULL binding for %p (%u.%u.%u.%u)\n",
186 ct, NIPQUAD(ip));
Patrick McHardycc01dcb2007-12-17 22:38:20 -0800187 return nf_nat_setup_info(ct, &range, HOOK2MANIP(hooknum));
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800188}
189
Herbert Xu3db05fe2007-10-15 00:53:15 -0700190int nf_nat_rule_find(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800191 unsigned int hooknum,
192 const struct net_device *in,
193 const struct net_device *out,
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700194 struct nf_conn *ct)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800195{
Alexey Dobriyane099a172008-10-08 11:35:10 +0200196 struct net *net = nf_ct_net(ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800197 int ret;
198
Alexey Dobriyane099a172008-10-08 11:35:10 +0200199 ret = ipt_do_table(skb, hooknum, in, out, net->ipv4.nat_table);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800200
201 if (ret == NF_ACCEPT) {
202 if (!nf_nat_initialized(ct, HOOK2MANIP(hooknum)))
203 /* NUL mapping */
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700204 ret = alloc_null_binding(ct, hooknum);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800205 }
206 return ret;
207}
208
Patrick McHardy9f15c532007-07-07 22:22:02 -0700209static struct xt_target ipt_snat_reg __read_mostly = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800210 .name = "SNAT",
211 .target = ipt_snat_target,
212 .targetsize = sizeof(struct nf_nat_multi_range_compat),
213 .table = "nat",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800214 .hooks = 1 << NF_INET_POST_ROUTING,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800215 .checkentry = ipt_snat_checkentry,
216 .family = AF_INET,
217};
218
Patrick McHardy9f15c532007-07-07 22:22:02 -0700219static struct xt_target ipt_dnat_reg __read_mostly = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800220 .name = "DNAT",
221 .target = ipt_dnat_target,
222 .targetsize = sizeof(struct nf_nat_multi_range_compat),
223 .table = "nat",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800224 .hooks = (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800225 .checkentry = ipt_dnat_checkentry,
226 .family = AF_INET,
227};
228
Alexey Dobriyane099a172008-10-08 11:35:10 +0200229static int __net_init nf_nat_rule_net_init(struct net *net)
230{
231 net->ipv4.nat_table = ipt_register_table(net, &nat_table,
232 &nat_initial_table.repl);
233 if (IS_ERR(net->ipv4.nat_table))
234 return PTR_ERR(net->ipv4.nat_table);
235 return 0;
236}
237
238static void __net_exit nf_nat_rule_net_exit(struct net *net)
239{
240 ipt_unregister_table(net->ipv4.nat_table);
241}
242
243static struct pernet_operations nf_nat_rule_net_ops = {
244 .init = nf_nat_rule_net_init,
245 .exit = nf_nat_rule_net_exit,
246};
247
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800248int __init nf_nat_rule_init(void)
249{
250 int ret;
251
Alexey Dobriyane099a172008-10-08 11:35:10 +0200252 ret = register_pernet_subsys(&nf_nat_rule_net_ops);
253 if (ret != 0)
254 goto out;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800255 ret = xt_register_target(&ipt_snat_reg);
256 if (ret != 0)
257 goto unregister_table;
258
259 ret = xt_register_target(&ipt_dnat_reg);
260 if (ret != 0)
261 goto unregister_snat;
262
263 return ret;
264
265 unregister_snat:
266 xt_unregister_target(&ipt_snat_reg);
267 unregister_table:
Alexey Dobriyane099a172008-10-08 11:35:10 +0200268 unregister_pernet_subsys(&nf_nat_rule_net_ops);
269 out:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800270 return ret;
271}
272
273void nf_nat_rule_cleanup(void)
274{
275 xt_unregister_target(&ipt_dnat_reg);
276 xt_unregister_target(&ipt_snat_reg);
Alexey Dobriyane099a172008-10-08 11:35:10 +0200277 unregister_pernet_subsys(&nf_nat_rule_net_ops);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800278}