Merge ../linus
[pandora-kernel.git] / net / ipv4 / netfilter / ip_nat_rule.c
1 /* (C) 1999-2001 Paul `Rusty' Russell
2  * (C) 2002-2004 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 <linux/netfilter_ipv4/ip_nat.h>
24 #include <linux/netfilter_ipv4/ip_nat_core.h>
25 #include <linux/netfilter_ipv4/ip_nat_rule.h>
26
27 #if 0
28 #define DEBUGP printk
29 #else
30 #define DEBUGP(format, args...)
31 #endif
32
33 #define NAT_VALID_HOOKS ((1<<NF_IP_PRE_ROUTING) | (1<<NF_IP_POST_ROUTING) | (1<<NF_IP_LOCAL_OUT))
34
35 static struct
36 {
37         struct ipt_replace repl;
38         struct ipt_standard entries[3];
39         struct ipt_error term;
40 } nat_initial_table __initdata
41 = { { "nat", NAT_VALID_HOOKS, 4,
42       sizeof(struct ipt_standard) * 3 + sizeof(struct ipt_error),
43       { [NF_IP_PRE_ROUTING] = 0,
44         [NF_IP_POST_ROUTING] = sizeof(struct ipt_standard),
45         [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard) * 2 },
46       { [NF_IP_PRE_ROUTING] = 0,
47         [NF_IP_POST_ROUTING] = sizeof(struct ipt_standard),
48         [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard) * 2 },
49       0, NULL, { } },
50     {
51             /* PRE_ROUTING */
52             { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
53                 0,
54                 sizeof(struct ipt_entry),
55                 sizeof(struct ipt_standard),
56                 0, { 0, 0 }, { } },
57               { { { { IPT_ALIGN(sizeof(struct ipt_standard_target)), "" } }, { } },
58                 -NF_ACCEPT - 1 } },
59             /* POST_ROUTING */
60             { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
61                 0,
62                 sizeof(struct ipt_entry),
63                 sizeof(struct ipt_standard),
64                 0, { 0, 0 }, { } },
65               { { { { IPT_ALIGN(sizeof(struct ipt_standard_target)), "" } }, { } },
66                 -NF_ACCEPT - 1 } },
67             /* LOCAL_OUT */
68             { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
69                 0,
70                 sizeof(struct ipt_entry),
71                 sizeof(struct ipt_standard),
72                 0, { 0, 0 }, { } },
73               { { { { IPT_ALIGN(sizeof(struct ipt_standard_target)), "" } }, { } },
74                 -NF_ACCEPT - 1 } }
75     },
76     /* ERROR */
77     { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
78         0,
79         sizeof(struct ipt_entry),
80         sizeof(struct ipt_error),
81         0, { 0, 0 }, { } },
82       { { { { IPT_ALIGN(sizeof(struct ipt_error_target)), IPT_ERROR_TARGET } },
83           { } },
84         "ERROR"
85       }
86     }
87 };
88
89 static struct ipt_table nat_table = {
90         .name           = "nat",
91         .valid_hooks    = NAT_VALID_HOOKS,
92         .lock           = RW_LOCK_UNLOCKED,
93         .me             = THIS_MODULE,
94         .af             = AF_INET,
95 };
96
97 /* Source NAT */
98 static unsigned int ipt_snat_target(struct sk_buff **pskb,
99                                     const struct net_device *in,
100                                     const struct net_device *out,
101                                     unsigned int hooknum,
102                                     const struct ipt_target *target,
103                                     const void *targinfo)
104 {
105         struct ip_conntrack *ct;
106         enum ip_conntrack_info ctinfo;
107         const struct ip_nat_multi_range_compat *mr = targinfo;
108
109         IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING);
110
111         ct = ip_conntrack_get(*pskb, &ctinfo);
112
113         /* Connection must be valid and new. */
114         IP_NF_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED
115                             || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
116         IP_NF_ASSERT(out);
117
118         return ip_nat_setup_info(ct, &mr->range[0], hooknum);
119 }
120
121 /* Before 2.6.11 we did implicit source NAT if required. Warn about change. */
122 static void warn_if_extra_mangle(__be32 dstip, __be32 srcip)
123 {
124         static int warned = 0;
125         struct flowi fl = { .nl_u = { .ip4_u = { .daddr = dstip } } };
126         struct rtable *rt;
127
128         if (ip_route_output_key(&rt, &fl) != 0)
129                 return;
130
131         if (rt->rt_src != srcip && !warned) {
132                 printk("NAT: no longer support implicit source local NAT\n");
133                 printk("NAT: packet src %u.%u.%u.%u -> dst %u.%u.%u.%u\n",
134                        NIPQUAD(srcip), NIPQUAD(dstip));
135                 warned = 1;
136         }
137         ip_rt_put(rt);
138 }
139
140 static unsigned int ipt_dnat_target(struct sk_buff **pskb,
141                                     const struct net_device *in,
142                                     const struct net_device *out,
143                                     unsigned int hooknum,
144                                     const struct ipt_target *target,
145                                     const void *targinfo)
146 {
147         struct ip_conntrack *ct;
148         enum ip_conntrack_info ctinfo;
149         const struct ip_nat_multi_range_compat *mr = targinfo;
150
151         IP_NF_ASSERT(hooknum == NF_IP_PRE_ROUTING
152                      || hooknum == NF_IP_LOCAL_OUT);
153
154         ct = ip_conntrack_get(*pskb, &ctinfo);
155
156         /* Connection must be valid and new. */
157         IP_NF_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED));
158
159         if (hooknum == NF_IP_LOCAL_OUT
160             && mr->range[0].flags & IP_NAT_RANGE_MAP_IPS)
161                 warn_if_extra_mangle((*pskb)->nh.iph->daddr,
162                                      mr->range[0].min_ip);
163
164         return ip_nat_setup_info(ct, &mr->range[0], hooknum);
165 }
166
167 static int ipt_snat_checkentry(const char *tablename,
168                                const void *entry,
169                                const struct ipt_target *target,
170                                void *targinfo,
171                                unsigned int hook_mask)
172 {
173         struct ip_nat_multi_range_compat *mr = targinfo;
174
175         /* Must be a valid range */
176         if (mr->rangesize != 1) {
177                 printk("SNAT: multiple ranges no longer supported\n");
178                 return 0;
179         }
180         return 1;
181 }
182
183 static int ipt_dnat_checkentry(const char *tablename,
184                                const void *entry,
185                                const struct ipt_target *target,
186                                void *targinfo,
187                                unsigned int hook_mask)
188 {
189         struct ip_nat_multi_range_compat *mr = targinfo;
190
191         /* Must be a valid range */
192         if (mr->rangesize != 1) {
193                 printk("DNAT: multiple ranges no longer supported\n");
194                 return 0;
195         }
196         return 1;
197 }
198
199 inline unsigned int
200 alloc_null_binding(struct ip_conntrack *conntrack,
201                    struct ip_nat_info *info,
202                    unsigned int hooknum)
203 {
204         /* Force range to this IP; let proto decide mapping for
205            per-proto parts (hence not IP_NAT_RANGE_PROTO_SPECIFIED).
206            Use reply in case it's already been mangled (eg local packet).
207         */
208         __be32 ip
209                 = (HOOK2MANIP(hooknum) == IP_NAT_MANIP_SRC
210                    ? conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.dst.ip
211                    : conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.src.ip);
212         struct ip_nat_range range
213                 = { IP_NAT_RANGE_MAP_IPS, ip, ip, { 0 }, { 0 } };
214
215         DEBUGP("Allocating NULL binding for %p (%u.%u.%u.%u)\n", conntrack,
216                NIPQUAD(ip));
217         return ip_nat_setup_info(conntrack, &range, hooknum);
218 }
219
220 unsigned int
221 alloc_null_binding_confirmed(struct ip_conntrack *conntrack,
222                              struct ip_nat_info *info,
223                              unsigned int hooknum)
224 {
225         __be32 ip
226                 = (HOOK2MANIP(hooknum) == IP_NAT_MANIP_SRC
227                    ? conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.dst.ip
228                    : conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.src.ip);
229         u_int16_t all
230                 = (HOOK2MANIP(hooknum) == IP_NAT_MANIP_SRC
231                    ? conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u.all
232                    : conntrack->tuplehash[IP_CT_DIR_REPLY].tuple.src.u.all);
233         struct ip_nat_range range
234                 = { IP_NAT_RANGE_MAP_IPS, ip, ip, { all }, { all } };
235
236         DEBUGP("Allocating NULL binding for confirmed %p (%u.%u.%u.%u)\n",
237                conntrack, NIPQUAD(ip));
238         return ip_nat_setup_info(conntrack, &range, hooknum);
239 }
240
241 int ip_nat_rule_find(struct sk_buff **pskb,
242                      unsigned int hooknum,
243                      const struct net_device *in,
244                      const struct net_device *out,
245                      struct ip_conntrack *ct,
246                      struct ip_nat_info *info)
247 {
248         int ret;
249
250         ret = ipt_do_table(pskb, hooknum, in, out, &nat_table);
251
252         if (ret == NF_ACCEPT) {
253                 if (!ip_nat_initialized(ct, HOOK2MANIP(hooknum)))
254                         /* NUL mapping */
255                         ret = alloc_null_binding(ct, info, hooknum);
256         }
257         return ret;
258 }
259
260 static struct ipt_target ipt_snat_reg = {
261         .name           = "SNAT",
262         .target         = ipt_snat_target,
263         .targetsize     = sizeof(struct ip_nat_multi_range_compat),
264         .table          = "nat",
265         .hooks          = 1 << NF_IP_POST_ROUTING,
266         .checkentry     = ipt_snat_checkentry,
267 };
268
269 static struct ipt_target ipt_dnat_reg = {
270         .name           = "DNAT",
271         .target         = ipt_dnat_target,
272         .targetsize     = sizeof(struct ip_nat_multi_range_compat),
273         .table          = "nat",
274         .hooks          = (1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_OUT),
275         .checkentry     = ipt_dnat_checkentry,
276 };
277
278 int __init ip_nat_rule_init(void)
279 {
280         int ret;
281
282         ret = ipt_register_table(&nat_table, &nat_initial_table.repl);
283         if (ret != 0)
284                 return ret;
285         ret = ipt_register_target(&ipt_snat_reg);
286         if (ret != 0)
287                 goto unregister_table;
288
289         ret = ipt_register_target(&ipt_dnat_reg);
290         if (ret != 0)
291                 goto unregister_snat;
292
293         return ret;
294
295  unregister_snat:
296         ipt_unregister_target(&ipt_snat_reg);
297  unregister_table:
298         ipt_unregister_table(&nat_table);
299
300         return ret;
301 }
302
303 void ip_nat_rule_cleanup(void)
304 {
305         ipt_unregister_target(&ipt_dnat_reg);
306         ipt_unregister_target(&ipt_snat_reg);
307         ipt_unregister_table(&nat_table);
308 }