blob: 85da34fdc7559ee4109f1016bde79c893366a86d [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
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020031static const struct
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080032{
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
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020061static const struct xt_table nat_table = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080062 .name = "nat",
63 .valid_hooks = NAT_VALID_HOOKS,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080064 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020065 .af = NFPROTO_IPV4,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080066};
67
68/* Source NAT */
Jan Engelhardt7eb35582008-10-08 11:35:19 +020069static unsigned int
70ipt_snat_target(struct sk_buff *skb, const struct xt_target_param *par)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080071{
72 struct nf_conn *ct;
73 enum ip_conntrack_info ctinfo;
Jan Engelhardt7eb35582008-10-08 11:35:19 +020074 const struct nf_nat_multi_range_compat *mr = par->targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080075
Jan Engelhardt7eb35582008-10-08 11:35:19 +020076 NF_CT_ASSERT(par->hooknum == NF_INET_POST_ROUTING);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080077
Herbert Xu3db05fe2007-10-15 00:53:15 -070078 ct = nf_ct_get(skb, &ctinfo);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080079
80 /* Connection must be valid and new. */
81 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090082 ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
Jan Engelhardt7eb35582008-10-08 11:35:19 +020083 NF_CT_ASSERT(par->out != NULL);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080084
Patrick McHardycc01dcb2007-12-17 22:38:20 -080085 return nf_nat_setup_info(ct, &mr->range[0], IP_NAT_MANIP_SRC);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080086}
87
Jan Engelhardt7eb35582008-10-08 11:35:19 +020088static unsigned int
89ipt_dnat_target(struct sk_buff *skb, const struct xt_target_param *par)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080090{
91 struct nf_conn *ct;
92 enum ip_conntrack_info ctinfo;
Jan Engelhardt7eb35582008-10-08 11:35:19 +020093 const struct nf_nat_multi_range_compat *mr = par->targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080094
Jan Engelhardt7eb35582008-10-08 11:35:19 +020095 NF_CT_ASSERT(par->hooknum == NF_INET_PRE_ROUTING ||
96 par->hooknum == NF_INET_LOCAL_OUT);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080097
Herbert Xu3db05fe2007-10-15 00:53:15 -070098 ct = nf_ct_get(skb, &ctinfo);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080099
100 /* Connection must be valid and new. */
101 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED));
102
Patrick McHardycc01dcb2007-12-17 22:38:20 -0800103 return nf_nat_setup_info(ct, &mr->range[0], IP_NAT_MANIP_DST);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800104}
105
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200106static bool ipt_snat_checkentry(const struct xt_tgchk_param *par)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800107{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200108 const struct nf_nat_multi_range_compat *mr = par->targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800109
110 /* Must be a valid range */
111 if (mr->rangesize != 1) {
112 printk("SNAT: multiple ranges no longer supported\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700113 return false;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800114 }
Jan Engelhardte1931b72007-07-07 22:16:26 -0700115 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800116}
117
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200118static bool ipt_dnat_checkentry(const struct xt_tgchk_param *par)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800119{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200120 const struct nf_nat_multi_range_compat *mr = par->targinfo;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800121
122 /* Must be a valid range */
123 if (mr->rangesize != 1) {
124 printk("DNAT: multiple ranges no longer supported\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700125 return false;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800126 }
Jan Engelhardte1931b72007-07-07 22:16:26 -0700127 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800128}
129
Jan Engelhardt170b1972007-07-07 22:17:36 -0700130unsigned int
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700131alloc_null_binding(struct nf_conn *ct, unsigned int hooknum)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800132{
133 /* Force range to this IP; let proto decide mapping for
134 per-proto parts (hence not IP_NAT_RANGE_PROTO_SPECIFIED).
135 Use reply in case it's already been mangled (eg local packet).
136 */
137 __be32 ip
138 = (HOOK2MANIP(hooknum) == IP_NAT_MANIP_SRC
139 ? ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3.ip
140 : ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.u3.ip);
141 struct nf_nat_range range
142 = { IP_NAT_RANGE_MAP_IPS, ip, ip, { 0 }, { 0 } };
143
Harvey Harrisoncffee382008-10-31 00:53:08 -0700144 pr_debug("Allocating NULL binding for %p (%pI4)\n", ct, &ip);
Patrick McHardycc01dcb2007-12-17 22:38:20 -0800145 return nf_nat_setup_info(ct, &range, HOOK2MANIP(hooknum));
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800146}
147
Herbert Xu3db05fe2007-10-15 00:53:15 -0700148int nf_nat_rule_find(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800149 unsigned int hooknum,
150 const struct net_device *in,
151 const struct net_device *out,
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700152 struct nf_conn *ct)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800153{
Alexey Dobriyane099a172008-10-08 11:35:10 +0200154 struct net *net = nf_ct_net(ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800155 int ret;
156
Alexey Dobriyane099a172008-10-08 11:35:10 +0200157 ret = ipt_do_table(skb, hooknum, in, out, net->ipv4.nat_table);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800158
159 if (ret == NF_ACCEPT) {
160 if (!nf_nat_initialized(ct, HOOK2MANIP(hooknum)))
161 /* NUL mapping */
Yasuyuki Kozakaiba4c7cb2007-05-10 14:14:45 -0700162 ret = alloc_null_binding(ct, hooknum);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800163 }
164 return ret;
165}
166
Patrick McHardy9f15c532007-07-07 22:22:02 -0700167static struct xt_target ipt_snat_reg __read_mostly = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800168 .name = "SNAT",
169 .target = ipt_snat_target,
170 .targetsize = sizeof(struct nf_nat_multi_range_compat),
171 .table = "nat",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800172 .hooks = 1 << NF_INET_POST_ROUTING,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800173 .checkentry = ipt_snat_checkentry,
174 .family = AF_INET,
175};
176
Patrick McHardy9f15c532007-07-07 22:22:02 -0700177static struct xt_target ipt_dnat_reg __read_mostly = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800178 .name = "DNAT",
179 .target = ipt_dnat_target,
180 .targetsize = sizeof(struct nf_nat_multi_range_compat),
181 .table = "nat",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800182 .hooks = (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800183 .checkentry = ipt_dnat_checkentry,
184 .family = AF_INET,
185};
186
Alexey Dobriyane099a172008-10-08 11:35:10 +0200187static int __net_init nf_nat_rule_net_init(struct net *net)
188{
189 net->ipv4.nat_table = ipt_register_table(net, &nat_table,
190 &nat_initial_table.repl);
191 if (IS_ERR(net->ipv4.nat_table))
192 return PTR_ERR(net->ipv4.nat_table);
193 return 0;
194}
195
196static void __net_exit nf_nat_rule_net_exit(struct net *net)
197{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100198 ipt_unregister_table(net, net->ipv4.nat_table);
Alexey Dobriyane099a172008-10-08 11:35:10 +0200199}
200
201static struct pernet_operations nf_nat_rule_net_ops = {
202 .init = nf_nat_rule_net_init,
203 .exit = nf_nat_rule_net_exit,
204};
205
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800206int __init nf_nat_rule_init(void)
207{
208 int ret;
209
Alexey Dobriyane099a172008-10-08 11:35:10 +0200210 ret = register_pernet_subsys(&nf_nat_rule_net_ops);
211 if (ret != 0)
212 goto out;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800213 ret = xt_register_target(&ipt_snat_reg);
214 if (ret != 0)
215 goto unregister_table;
216
217 ret = xt_register_target(&ipt_dnat_reg);
218 if (ret != 0)
219 goto unregister_snat;
220
221 return ret;
222
223 unregister_snat:
224 xt_unregister_target(&ipt_snat_reg);
225 unregister_table:
Alexey Dobriyane099a172008-10-08 11:35:10 +0200226 unregister_pernet_subsys(&nf_nat_rule_net_ops);
227 out:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800228 return ret;
229}
230
231void nf_nat_rule_cleanup(void)
232{
233 xt_unregister_target(&ipt_dnat_reg);
234 xt_unregister_target(&ipt_snat_reg);
Alexey Dobriyane099a172008-10-08 11:35:10 +0200235 unregister_pernet_subsys(&nf_nat_rule_net_ops);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800236}