blob: d237511cf46c4eba1ca10cc9ba47f7474dde6766 [file] [log] [blame]
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001/* NAT for netfilter; shared with compatibility layer. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/types.h>
13#include <linux/timer.h>
14#include <linux/skbuff.h>
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080015#include <net/checksum.h>
16#include <net/icmp.h>
17#include <net/ip.h>
18#include <net/tcp.h> /* For tcp_prot in getorigdst */
19#include <linux/icmp.h>
20#include <linux/udp.h>
21#include <linux/jhash.h>
22
23#include <linux/netfilter_ipv4.h>
24#include <net/netfilter/nf_conntrack.h>
25#include <net/netfilter/nf_conntrack_core.h>
26#include <net/netfilter/nf_nat.h>
27#include <net/netfilter/nf_nat_protocol.h>
28#include <net/netfilter/nf_nat_core.h>
29#include <net/netfilter/nf_nat_helper.h>
30#include <net/netfilter/nf_conntrack_helper.h>
31#include <net/netfilter/nf_conntrack_l3proto.h>
32#include <net/netfilter/nf_conntrack_l4proto.h>
33
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080034static DEFINE_RWLOCK(nf_nat_lock);
35
36static struct nf_conntrack_l3proto *l3proto = NULL;
37
38/* Calculated at init based on memory size */
39static unsigned int nf_nat_htable_size;
Patrick McHardy53aba592007-07-07 22:30:27 -070040static int nf_nat_vmalloced;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080041
Patrick McHardy53aba592007-07-07 22:30:27 -070042static struct hlist_head *bysource;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080043
44#define MAX_IP_NAT_PROTO 256
45static struct nf_nat_protocol *nf_nat_protos[MAX_IP_NAT_PROTO];
46
47static inline struct nf_nat_protocol *
48__nf_nat_proto_find(u_int8_t protonum)
49{
Patrick McHardye22a0542007-02-12 11:12:26 -080050 return rcu_dereference(nf_nat_protos[protonum]);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080051}
52
53struct nf_nat_protocol *
54nf_nat_proto_find_get(u_int8_t protonum)
55{
56 struct nf_nat_protocol *p;
57
Patrick McHardye22a0542007-02-12 11:12:26 -080058 rcu_read_lock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080059 p = __nf_nat_proto_find(protonum);
60 if (!try_module_get(p->me))
61 p = &nf_nat_unknown_protocol;
Patrick McHardye22a0542007-02-12 11:12:26 -080062 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080063
64 return p;
65}
66EXPORT_SYMBOL_GPL(nf_nat_proto_find_get);
67
68void
69nf_nat_proto_put(struct nf_nat_protocol *p)
70{
71 module_put(p->me);
72}
73EXPORT_SYMBOL_GPL(nf_nat_proto_put);
74
75/* We keep an extra hash for each conntrack, for fast searching. */
76static inline unsigned int
77hash_by_src(const struct nf_conntrack_tuple *tuple)
78{
79 /* Original src, to ensure we map it consistently if poss. */
Al Viroa34c4582007-07-26 17:33:19 +010080 return jhash_3words((__force u32)tuple->src.u3.ip,
81 (__force u32)tuple->src.u.all,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080082 tuple->dst.protonum, 0) % nf_nat_htable_size;
83}
84
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080085/* Is this tuple already taken? (not by us) */
86int
87nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
88 const struct nf_conn *ignored_conntrack)
89{
90 /* Conntrack tracking doesn't keep track of outgoing tuples; only
91 incoming ones. NAT means they don't have a fixed mapping,
92 so we invert the tuple and look for the incoming reply.
93
94 We could keep a separate hash if this proves too slow. */
95 struct nf_conntrack_tuple reply;
96
97 nf_ct_invert_tuplepr(&reply, tuple);
98 return nf_conntrack_tuple_taken(&reply, ignored_conntrack);
99}
100EXPORT_SYMBOL(nf_nat_used_tuple);
101
102/* If we source map this tuple so reply looks like reply_tuple, will
103 * that meet the constraints of range. */
104static int
105in_range(const struct nf_conntrack_tuple *tuple,
106 const struct nf_nat_range *range)
107{
108 struct nf_nat_protocol *proto;
Patrick McHardye22a0542007-02-12 11:12:26 -0800109 int ret = 0;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800110
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800111 /* If we are supposed to map IPs, then we must be in the
112 range specified, otherwise let this drag us onto a new src IP. */
113 if (range->flags & IP_NAT_RANGE_MAP_IPS) {
114 if (ntohl(tuple->src.u3.ip) < ntohl(range->min_ip) ||
115 ntohl(tuple->src.u3.ip) > ntohl(range->max_ip))
116 return 0;
117 }
118
Patrick McHardye22a0542007-02-12 11:12:26 -0800119 rcu_read_lock();
120 proto = __nf_nat_proto_find(tuple->dst.protonum);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800121 if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||
122 proto->in_range(tuple, IP_NAT_MANIP_SRC,
123 &range->min, &range->max))
Patrick McHardye22a0542007-02-12 11:12:26 -0800124 ret = 1;
125 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800126
Patrick McHardye22a0542007-02-12 11:12:26 -0800127 return ret;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800128}
129
130static inline int
131same_src(const struct nf_conn *ct,
132 const struct nf_conntrack_tuple *tuple)
133{
134 const struct nf_conntrack_tuple *t;
135
136 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
137 return (t->dst.protonum == tuple->dst.protonum &&
138 t->src.u3.ip == tuple->src.u3.ip &&
139 t->src.u.all == tuple->src.u.all);
140}
141
142/* Only called for SRC manip */
143static int
144find_appropriate_src(const struct nf_conntrack_tuple *tuple,
145 struct nf_conntrack_tuple *result,
146 const struct nf_nat_range *range)
147{
148 unsigned int h = hash_by_src(tuple);
149 struct nf_conn_nat *nat;
150 struct nf_conn *ct;
Patrick McHardy53aba592007-07-07 22:30:27 -0700151 struct hlist_node *n;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800152
153 read_lock_bh(&nf_nat_lock);
Patrick McHardy53aba592007-07-07 22:30:27 -0700154 hlist_for_each_entry(nat, n, &bysource[h], bysource) {
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700155 ct = nat->ct;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800156 if (same_src(ct, tuple)) {
157 /* Copy source part from reply tuple. */
158 nf_ct_invert_tuplepr(result,
159 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
160 result->dst = tuple->dst;
161
162 if (in_range(result, range)) {
163 read_unlock_bh(&nf_nat_lock);
164 return 1;
165 }
166 }
167 }
168 read_unlock_bh(&nf_nat_lock);
169 return 0;
170}
171
172/* For [FUTURE] fragmentation handling, we want the least-used
173 src-ip/dst-ip/proto triple. Fairness doesn't come into it. Thus
174 if the range specifies 1.2.3.4 ports 10000-10005 and 1.2.3.5 ports
175 1-65535, we don't do pro-rata allocation based on ports; we choose
176 the ip with the lowest src-ip/dst-ip/proto usage.
177*/
178static void
179find_best_ips_proto(struct nf_conntrack_tuple *tuple,
180 const struct nf_nat_range *range,
181 const struct nf_conn *ct,
182 enum nf_nat_manip_type maniptype)
183{
184 __be32 *var_ipp;
185 /* Host order */
186 u_int32_t minip, maxip, j;
187
188 /* No IP mapping? Do nothing. */
189 if (!(range->flags & IP_NAT_RANGE_MAP_IPS))
190 return;
191
192 if (maniptype == IP_NAT_MANIP_SRC)
193 var_ipp = &tuple->src.u3.ip;
194 else
195 var_ipp = &tuple->dst.u3.ip;
196
197 /* Fast path: only one choice. */
198 if (range->min_ip == range->max_ip) {
199 *var_ipp = range->min_ip;
200 return;
201 }
202
203 /* Hashing source and destination IPs gives a fairly even
204 * spread in practice (if there are a small number of IPs
205 * involved, there usually aren't that many connections
206 * anyway). The consistency means that servers see the same
207 * client coming from the same IP (some Internet Banking sites
208 * like this), even across reboots. */
209 minip = ntohl(range->min_ip);
210 maxip = ntohl(range->max_ip);
211 j = jhash_2words((__force u32)tuple->src.u3.ip,
212 (__force u32)tuple->dst.u3.ip, 0);
213 *var_ipp = htonl(minip + j % (maxip - minip + 1));
214}
215
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800216/* Manipulate the tuple into the range given. For NF_INET_POST_ROUTING,
217 * we change the source to map into the range. For NF_INET_PRE_ROUTING
218 * and NF_INET_LOCAL_OUT, we change the destination to map into the
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800219 * range. It might not be possible to get a unique tuple, but we try.
220 * At worst (or if we race), we will end up with a final duplicate in
221 * __ip_conntrack_confirm and drop the packet. */
222static void
223get_unique_tuple(struct nf_conntrack_tuple *tuple,
224 const struct nf_conntrack_tuple *orig_tuple,
225 const struct nf_nat_range *range,
226 struct nf_conn *ct,
227 enum nf_nat_manip_type maniptype)
228{
229 struct nf_nat_protocol *proto;
230
231 /* 1) If this srcip/proto/src-proto-part is currently mapped,
232 and that same mapping gives a unique tuple within the given
233 range, use that.
234
235 This is only required for source (ie. NAT/masq) mappings.
236 So far, we don't do local source mappings, so multiple
237 manips not an issue. */
238 if (maniptype == IP_NAT_MANIP_SRC) {
239 if (find_appropriate_src(orig_tuple, tuple, range)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700240 pr_debug("get_unique_tuple: Found current src map\n");
Eric Leblond41f46892007-02-07 15:10:09 -0800241 if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM))
242 if (!nf_nat_used_tuple(tuple, ct))
243 return;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800244 }
245 }
246
247 /* 2) Select the least-used IP/proto combination in the given
248 range. */
249 *tuple = *orig_tuple;
250 find_best_ips_proto(tuple, range, ct, maniptype);
251
252 /* 3) The per-protocol part of the manip is made to map into
253 the range to make a unique tuple. */
254
Patrick McHardye22a0542007-02-12 11:12:26 -0800255 rcu_read_lock();
256 proto = __nf_nat_proto_find(orig_tuple->dst.protonum);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800257
Eric Leblond41f46892007-02-07 15:10:09 -0800258 /* Change protocol info to have some randomization */
259 if (range->flags & IP_NAT_RANGE_PROTO_RANDOM) {
260 proto->unique_tuple(tuple, range, maniptype, ct);
Patrick McHardye22a0542007-02-12 11:12:26 -0800261 goto out;
Eric Leblond41f46892007-02-07 15:10:09 -0800262 }
263
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800264 /* Only bother mapping if it's not already in range and unique */
265 if ((!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||
266 proto->in_range(tuple, maniptype, &range->min, &range->max)) &&
Patrick McHardye22a0542007-02-12 11:12:26 -0800267 !nf_nat_used_tuple(tuple, ct))
268 goto out;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800269
270 /* Last change: get protocol to try to obtain unique tuple. */
271 proto->unique_tuple(tuple, range, maniptype, ct);
Patrick McHardye22a0542007-02-12 11:12:26 -0800272out:
273 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800274}
275
276unsigned int
277nf_nat_setup_info(struct nf_conn *ct,
278 const struct nf_nat_range *range,
279 unsigned int hooknum)
280{
281 struct nf_conntrack_tuple curr_tuple, new_tuple;
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700282 struct nf_conn_nat *nat;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800283 int have_to_hash = !(ct->status & IPS_NAT_DONE_MASK);
284 enum nf_nat_manip_type maniptype = HOOK2MANIP(hooknum);
285
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700286 /* nat helper or nfctnetlink also setup binding */
287 nat = nfct_nat(ct);
288 if (!nat) {
289 nat = nf_ct_ext_add(ct, NF_CT_EXT_NAT, GFP_ATOMIC);
290 if (nat == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700291 pr_debug("failed to add NAT extension\n");
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700292 return NF_ACCEPT;
293 }
294 }
295
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800296 NF_CT_ASSERT(hooknum == NF_INET_PRE_ROUTING ||
297 hooknum == NF_INET_POST_ROUTING ||
298 hooknum == NF_INET_LOCAL_IN ||
299 hooknum == NF_INET_LOCAL_OUT);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800300 BUG_ON(nf_nat_initialized(ct, maniptype));
301
302 /* What we've got will look like inverse of reply. Normally
303 this is what is in the conntrack, except for prior
304 manipulations (future optimization: if num_manips == 0,
305 orig_tp =
306 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple) */
307 nf_ct_invert_tuplepr(&curr_tuple,
308 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
309
310 get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);
311
312 if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {
313 struct nf_conntrack_tuple reply;
314
315 /* Alter conntrack table so will recognize replies. */
316 nf_ct_invert_tuplepr(&reply, &new_tuple);
317 nf_conntrack_alter_reply(ct, &reply);
318
319 /* Non-atomic: we own this at the moment. */
320 if (maniptype == IP_NAT_MANIP_SRC)
321 ct->status |= IPS_SRC_NAT;
322 else
323 ct->status |= IPS_DST_NAT;
324 }
325
326 /* Place in source hash if this is the first time. */
327 if (have_to_hash) {
328 unsigned int srchash;
329
330 srchash = hash_by_src(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
331 write_lock_bh(&nf_nat_lock);
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700332 /* nf_conntrack_alter_reply might re-allocate exntension aera */
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700333 nat = nfct_nat(ct);
334 nat->ct = ct;
Patrick McHardy53aba592007-07-07 22:30:27 -0700335 hlist_add_head(&nat->bysource, &bysource[srchash]);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800336 write_unlock_bh(&nf_nat_lock);
337 }
338
339 /* It's done. */
340 if (maniptype == IP_NAT_MANIP_DST)
341 set_bit(IPS_DST_NAT_DONE_BIT, &ct->status);
342 else
343 set_bit(IPS_SRC_NAT_DONE_BIT, &ct->status);
344
345 return NF_ACCEPT;
346}
347EXPORT_SYMBOL(nf_nat_setup_info);
348
349/* Returns true if succeeded. */
350static int
351manip_pkt(u_int16_t proto,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700352 struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800353 unsigned int iphdroff,
354 const struct nf_conntrack_tuple *target,
355 enum nf_nat_manip_type maniptype)
356{
357 struct iphdr *iph;
358 struct nf_nat_protocol *p;
359
Herbert Xu3db05fe2007-10-15 00:53:15 -0700360 if (!skb_make_writable(skb, iphdroff + sizeof(*iph)))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800361 return 0;
362
Herbert Xu3db05fe2007-10-15 00:53:15 -0700363 iph = (void *)skb->data + iphdroff;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800364
365 /* Manipulate protcol part. */
Patrick McHardye22a0542007-02-12 11:12:26 -0800366
367 /* rcu_read_lock()ed by nf_hook_slow */
368 p = __nf_nat_proto_find(proto);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700369 if (!p->manip_pkt(skb, iphdroff, target, maniptype))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800370 return 0;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800371
Herbert Xu3db05fe2007-10-15 00:53:15 -0700372 iph = (void *)skb->data + iphdroff;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800373
374 if (maniptype == IP_NAT_MANIP_SRC) {
375 nf_csum_replace4(&iph->check, iph->saddr, target->src.u3.ip);
376 iph->saddr = target->src.u3.ip;
377 } else {
378 nf_csum_replace4(&iph->check, iph->daddr, target->dst.u3.ip);
379 iph->daddr = target->dst.u3.ip;
380 }
381 return 1;
382}
383
384/* Do packet manipulations according to nf_nat_setup_info. */
385unsigned int nf_nat_packet(struct nf_conn *ct,
386 enum ip_conntrack_info ctinfo,
387 unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700388 struct sk_buff *skb)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800389{
390 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
391 unsigned long statusbit;
392 enum nf_nat_manip_type mtype = HOOK2MANIP(hooknum);
393
394 if (mtype == IP_NAT_MANIP_SRC)
395 statusbit = IPS_SRC_NAT;
396 else
397 statusbit = IPS_DST_NAT;
398
399 /* Invert if this is reply dir. */
400 if (dir == IP_CT_DIR_REPLY)
401 statusbit ^= IPS_NAT_MASK;
402
403 /* Non-atomic: these bits don't change. */
404 if (ct->status & statusbit) {
405 struct nf_conntrack_tuple target;
406
407 /* We are aiming to look like inverse of other direction. */
408 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
409
Herbert Xu3db05fe2007-10-15 00:53:15 -0700410 if (!manip_pkt(target.dst.protonum, skb, 0, &target, mtype))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800411 return NF_DROP;
412 }
413 return NF_ACCEPT;
414}
415EXPORT_SYMBOL_GPL(nf_nat_packet);
416
417/* Dir is direction ICMP is coming from (opposite to packet it contains) */
418int nf_nat_icmp_reply_translation(struct nf_conn *ct,
419 enum ip_conntrack_info ctinfo,
420 unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700421 struct sk_buff *skb)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800422{
423 struct {
424 struct icmphdr icmp;
425 struct iphdr ip;
426 } *inside;
Patrick McHardy923f4902007-02-12 11:12:57 -0800427 struct nf_conntrack_l4proto *l4proto;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800428 struct nf_conntrack_tuple inner, target;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700429 int hdrlen = ip_hdrlen(skb);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800430 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
431 unsigned long statusbit;
432 enum nf_nat_manip_type manip = HOOK2MANIP(hooknum);
433
Herbert Xu3db05fe2007-10-15 00:53:15 -0700434 if (!skb_make_writable(skb, hdrlen + sizeof(*inside)))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800435 return 0;
436
Herbert Xu3db05fe2007-10-15 00:53:15 -0700437 inside = (void *)skb->data + ip_hdrlen(skb);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800438
439 /* We're actually going to mangle it beyond trivial checksum
440 adjustment, so make sure the current checksum is correct. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700441 if (nf_ip_checksum(skb, hooknum, hdrlen, 0))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800442 return 0;
443
444 /* Must be RELATED */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700445 NF_CT_ASSERT(skb->nfctinfo == IP_CT_RELATED ||
446 skb->nfctinfo == IP_CT_RELATED+IP_CT_IS_REPLY);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800447
448 /* Redirects on non-null nats must be dropped, else they'll
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900449 start talking to each other without our translation, and be
450 confused... --RR */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800451 if (inside->icmp.type == ICMP_REDIRECT) {
452 /* If NAT isn't finished, assume it and drop. */
453 if ((ct->status & IPS_NAT_DONE_MASK) != IPS_NAT_DONE_MASK)
454 return 0;
455
456 if (ct->status & IPS_NAT_MASK)
457 return 0;
458 }
459
Patrick McHardy0d537782007-07-07 22:39:38 -0700460 pr_debug("icmp_reply_translation: translating error %p manip %u "
Herbert Xu3db05fe2007-10-15 00:53:15 -0700461 "dir %s\n", skb, manip,
Patrick McHardy0d537782007-07-07 22:39:38 -0700462 dir == IP_CT_DIR_ORIGINAL ? "ORIG" : "REPLY");
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800463
Patrick McHardy923f4902007-02-12 11:12:57 -0800464 /* rcu_read_lock()ed by nf_hook_slow */
465 l4proto = __nf_ct_l4proto_find(PF_INET, inside->ip.protocol);
466
Herbert Xu3db05fe2007-10-15 00:53:15 -0700467 if (!nf_ct_get_tuple(skb,
468 ip_hdrlen(skb) + sizeof(struct icmphdr),
469 (ip_hdrlen(skb) +
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300470 sizeof(struct icmphdr) + inside->ip.ihl * 4),
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900471 (u_int16_t)AF_INET,
472 inside->ip.protocol,
Patrick McHardy923f4902007-02-12 11:12:57 -0800473 &inner, l3proto, l4proto))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800474 return 0;
475
476 /* Change inner back to look like incoming packet. We do the
477 opposite manip on this hook to normal, because it might not
478 pass all hooks (locally-generated ICMP). Consider incoming
479 packet: PREROUTING (DST manip), routing produces ICMP, goes
480 through POSTROUTING (which must correct the DST manip). */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700481 if (!manip_pkt(inside->ip.protocol, skb,
482 ip_hdrlen(skb) + sizeof(inside->icmp),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800483 &ct->tuplehash[!dir].tuple,
484 !manip))
485 return 0;
486
Herbert Xu3db05fe2007-10-15 00:53:15 -0700487 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800488 /* Reloading "inside" here since manip_pkt inner. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700489 inside = (void *)skb->data + ip_hdrlen(skb);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800490 inside->icmp.checksum = 0;
491 inside->icmp.checksum =
Herbert Xu3db05fe2007-10-15 00:53:15 -0700492 csum_fold(skb_checksum(skb, hdrlen,
493 skb->len - hdrlen, 0));
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800494 }
495
496 /* Change outer to look the reply to an incoming packet
497 * (proto 0 means don't invert per-proto part). */
498 if (manip == IP_NAT_MANIP_SRC)
499 statusbit = IPS_SRC_NAT;
500 else
501 statusbit = IPS_DST_NAT;
502
503 /* Invert if this is reply dir. */
504 if (dir == IP_CT_DIR_REPLY)
505 statusbit ^= IPS_NAT_MASK;
506
507 if (ct->status & statusbit) {
508 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700509 if (!manip_pkt(0, skb, 0, &target, manip))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800510 return 0;
511 }
512
513 return 1;
514}
515EXPORT_SYMBOL_GPL(nf_nat_icmp_reply_translation);
516
517/* Protocol registration. */
518int nf_nat_protocol_register(struct nf_nat_protocol *proto)
519{
520 int ret = 0;
521
522 write_lock_bh(&nf_nat_lock);
523 if (nf_nat_protos[proto->protonum] != &nf_nat_unknown_protocol) {
524 ret = -EBUSY;
525 goto out;
526 }
Patrick McHardye22a0542007-02-12 11:12:26 -0800527 rcu_assign_pointer(nf_nat_protos[proto->protonum], proto);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800528 out:
529 write_unlock_bh(&nf_nat_lock);
530 return ret;
531}
532EXPORT_SYMBOL(nf_nat_protocol_register);
533
534/* Noone stores the protocol anywhere; simply delete it. */
535void nf_nat_protocol_unregister(struct nf_nat_protocol *proto)
536{
537 write_lock_bh(&nf_nat_lock);
Patrick McHardye22a0542007-02-12 11:12:26 -0800538 rcu_assign_pointer(nf_nat_protos[proto->protonum],
539 &nf_nat_unknown_protocol);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800540 write_unlock_bh(&nf_nat_lock);
Patrick McHardye22a0542007-02-12 11:12:26 -0800541 synchronize_rcu();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800542}
543EXPORT_SYMBOL(nf_nat_protocol_unregister);
544
Patrick McHardye281db5c2007-03-04 15:57:25 -0800545#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800546int
Patrick McHardyfdf70832007-09-28 14:37:41 -0700547nf_nat_port_range_to_nlattr(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800548 const struct nf_nat_range *range)
549{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700550 NLA_PUT(skb, CTA_PROTONAT_PORT_MIN, sizeof(__be16),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800551 &range->min.tcp.port);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700552 NLA_PUT(skb, CTA_PROTONAT_PORT_MAX, sizeof(__be16),
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800553 &range->max.tcp.port);
554
555 return 0;
556
Patrick McHardydf6fb862007-09-28 14:37:03 -0700557nla_put_failure:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800558 return -1;
559}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700560EXPORT_SYMBOL_GPL(nf_nat_port_nlattr_to_range);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800561
562int
Patrick McHardyfdf70832007-09-28 14:37:41 -0700563nf_nat_port_nlattr_to_range(struct nlattr *tb[], struct nf_nat_range *range)
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800564{
565 int ret = 0;
566
567 /* we have to return whether we actually parsed something or not */
568
Patrick McHardydf6fb862007-09-28 14:37:03 -0700569 if (tb[CTA_PROTONAT_PORT_MIN]) {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800570 ret = 1;
571 range->min.tcp.port =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700572 *(__be16 *)nla_data(tb[CTA_PROTONAT_PORT_MIN]);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800573 }
574
Patrick McHardydf6fb862007-09-28 14:37:03 -0700575 if (!tb[CTA_PROTONAT_PORT_MAX]) {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800576 if (ret)
577 range->max.tcp.port = range->min.tcp.port;
578 } else {
579 ret = 1;
580 range->max.tcp.port =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700581 *(__be16 *)nla_data(tb[CTA_PROTONAT_PORT_MAX]);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800582 }
583
584 return ret;
585}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700586EXPORT_SYMBOL_GPL(nf_nat_port_range_to_nlattr);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800587#endif
588
Yasuyuki Kozakaid8a05092007-07-07 22:26:16 -0700589/* Noone using conntrack by the time this called. */
590static void nf_nat_cleanup_conntrack(struct nf_conn *ct)
591{
592 struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT);
593
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700594 if (nat == NULL || nat->ct == NULL)
Yasuyuki Kozakaid8a05092007-07-07 22:26:16 -0700595 return;
596
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700597 NF_CT_ASSERT(nat->ct->status & IPS_NAT_DONE_MASK);
Yasuyuki Kozakaid8a05092007-07-07 22:26:16 -0700598
599 write_lock_bh(&nf_nat_lock);
Patrick McHardy53aba592007-07-07 22:30:27 -0700600 hlist_del(&nat->bysource);
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700601 nat->ct = NULL;
Yasuyuki Kozakaid8a05092007-07-07 22:26:16 -0700602 write_unlock_bh(&nf_nat_lock);
603}
604
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700605static void nf_nat_move_storage(struct nf_conn *conntrack, void *old)
606{
607 struct nf_conn_nat *new_nat = nf_ct_ext_find(conntrack, NF_CT_EXT_NAT);
608 struct nf_conn_nat *old_nat = (struct nf_conn_nat *)old;
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700609 struct nf_conn *ct = old_nat->ct;
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700610
Evgeniy Polyakov1f305322007-11-20 04:27:35 -0800611 if (!ct || !(ct->status & IPS_NAT_DONE_MASK))
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700612 return;
613
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700614 write_lock_bh(&nf_nat_lock);
Patrick McHardy53aba592007-07-07 22:30:27 -0700615 hlist_replace_rcu(&old_nat->bysource, &new_nat->bysource);
Yasuyuki Kozakaib6b84d42007-07-07 22:26:35 -0700616 new_nat->ct = ct;
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700617 write_unlock_bh(&nf_nat_lock);
618}
619
Patrick McHardy61eb3102007-07-07 22:27:06 -0700620static struct nf_ct_ext_type nat_extend __read_mostly = {
Yasuyuki Kozakaid8a05092007-07-07 22:26:16 -0700621 .len = sizeof(struct nf_conn_nat),
622 .align = __alignof__(struct nf_conn_nat),
623 .destroy = nf_nat_cleanup_conntrack,
624 .move = nf_nat_move_storage,
625 .id = NF_CT_EXT_NAT,
626 .flags = NF_CT_EXT_F_PREALLOC,
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700627};
628
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800629static int __init nf_nat_init(void)
630{
631 size_t i;
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700632 int ret;
633
634 ret = nf_ct_extend_register(&nat_extend);
635 if (ret < 0) {
636 printk(KERN_ERR "nf_nat_core: Unable to register extension\n");
637 return ret;
638 }
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800639
640 /* Leave them the same for the moment. */
641 nf_nat_htable_size = nf_conntrack_htable_size;
642
Patrick McHardy53aba592007-07-07 22:30:27 -0700643 bysource = nf_ct_alloc_hashtable(&nf_nat_htable_size,
644 &nf_nat_vmalloced);
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700645 if (!bysource) {
646 ret = -ENOMEM;
647 goto cleanup_extend;
648 }
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800649
650 /* Sew in builtin protocols. */
651 write_lock_bh(&nf_nat_lock);
652 for (i = 0; i < MAX_IP_NAT_PROTO; i++)
Patrick McHardye22a0542007-02-12 11:12:26 -0800653 rcu_assign_pointer(nf_nat_protos[i], &nf_nat_unknown_protocol);
654 rcu_assign_pointer(nf_nat_protos[IPPROTO_TCP], &nf_nat_protocol_tcp);
655 rcu_assign_pointer(nf_nat_protos[IPPROTO_UDP], &nf_nat_protocol_udp);
656 rcu_assign_pointer(nf_nat_protos[IPPROTO_ICMP], &nf_nat_protocol_icmp);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800657 write_unlock_bh(&nf_nat_lock);
658
659 for (i = 0; i < nf_nat_htable_size; i++) {
Patrick McHardy53aba592007-07-07 22:30:27 -0700660 INIT_HLIST_HEAD(&bysource[i]);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800661 }
662
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800663 /* Initialize fake conntrack so that NAT will skip it */
664 nf_conntrack_untracked.status |= IPS_NAT_DONE_MASK;
665
666 l3proto = nf_ct_l3proto_find_get((u_int16_t)AF_INET);
667 return 0;
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700668
669 cleanup_extend:
670 nf_ct_extend_unregister(&nat_extend);
671 return ret;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800672}
673
674/* Clear NAT section of all conntracks, in case we're loaded again. */
675static int clean_nat(struct nf_conn *i, void *data)
676{
677 struct nf_conn_nat *nat = nfct_nat(i);
678
679 if (!nat)
680 return 0;
Li Zefane0bf9cf2007-11-13 02:57:16 -0800681 memset(nat, 0, sizeof(*nat));
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800682 i->status &= ~(IPS_NAT_MASK | IPS_NAT_DONE_MASK | IPS_SEQ_ADJUST);
683 return 0;
684}
685
686static void __exit nf_nat_cleanup(void)
687{
688 nf_ct_iterate_cleanup(&clean_nat, NULL);
Patrick McHardy982d9a92007-02-12 11:14:11 -0800689 synchronize_rcu();
Patrick McHardy53aba592007-07-07 22:30:27 -0700690 nf_ct_free_hashtable(bysource, nf_nat_vmalloced, nf_nat_htable_size);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800691 nf_ct_l3proto_put(l3proto);
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -0700692 nf_ct_extend_unregister(&nat_extend);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800693}
694
695MODULE_LICENSE("GPL");
696
697module_init(nf_nat_init);
698module_exit(nf_nat_cleanup);