netfilter: nf_nat_core: don't check if the tuple is used if there is no other choice
[linux-2.6/x86.git] / net / ipv4 / netfilter / nf_nat_core.c
blob2c084b3a8f0c700ee86f61d51ca0ee23bde74ac4
1 /* NAT for netfilter; shared with compatibility layer. */
3 /* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
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 */
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/timer.h>
14 #include <linux/skbuff.h>
15 #include <linux/gfp.h>
16 #include <net/checksum.h>
17 #include <net/icmp.h>
18 #include <net/ip.h>
19 #include <net/tcp.h> /* For tcp_prot in getorigdst */
20 #include <linux/icmp.h>
21 #include <linux/udp.h>
22 #include <linux/jhash.h>
24 #include <linux/netfilter_ipv4.h>
25 #include <net/netfilter/nf_conntrack.h>
26 #include <net/netfilter/nf_conntrack_core.h>
27 #include <net/netfilter/nf_nat.h>
28 #include <net/netfilter/nf_nat_protocol.h>
29 #include <net/netfilter/nf_nat_core.h>
30 #include <net/netfilter/nf_nat_helper.h>
31 #include <net/netfilter/nf_conntrack_helper.h>
32 #include <net/netfilter/nf_conntrack_l3proto.h>
33 #include <net/netfilter/nf_conntrack_l4proto.h>
34 #include <net/netfilter/nf_conntrack_zones.h>
36 static DEFINE_SPINLOCK(nf_nat_lock);
38 static struct nf_conntrack_l3proto *l3proto __read_mostly;
40 #define MAX_IP_NAT_PROTO 256
41 static const struct nf_nat_protocol *nf_nat_protos[MAX_IP_NAT_PROTO]
42 __read_mostly;
44 static inline const struct nf_nat_protocol *
45 __nf_nat_proto_find(u_int8_t protonum)
47 return rcu_dereference(nf_nat_protos[protonum]);
50 const struct nf_nat_protocol *
51 nf_nat_proto_find_get(u_int8_t protonum)
53 const struct nf_nat_protocol *p;
55 rcu_read_lock();
56 p = __nf_nat_proto_find(protonum);
57 if (!try_module_get(p->me))
58 p = &nf_nat_unknown_protocol;
59 rcu_read_unlock();
61 return p;
63 EXPORT_SYMBOL_GPL(nf_nat_proto_find_get);
65 void
66 nf_nat_proto_put(const struct nf_nat_protocol *p)
68 module_put(p->me);
70 EXPORT_SYMBOL_GPL(nf_nat_proto_put);
72 /* We keep an extra hash for each conntrack, for fast searching. */
73 static inline unsigned int
74 hash_by_src(const struct net *net, u16 zone,
75 const struct nf_conntrack_tuple *tuple)
77 unsigned int hash;
79 /* Original src, to ensure we map it consistently if poss. */
80 hash = jhash_3words((__force u32)tuple->src.u3.ip,
81 (__force u32)tuple->src.u.all ^ zone,
82 tuple->dst.protonum, 0);
83 return ((u64)hash * net->ipv4.nat_htable_size) >> 32;
86 /* Is this tuple already taken? (not by us) */
87 int
88 nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
89 const struct nf_conn *ignored_conntrack)
91 /* Conntrack tracking doesn't keep track of outgoing tuples; only
92 incoming ones. NAT means they don't have a fixed mapping,
93 so we invert the tuple and look for the incoming reply.
95 We could keep a separate hash if this proves too slow. */
96 struct nf_conntrack_tuple reply;
98 nf_ct_invert_tuplepr(&reply, tuple);
99 return nf_conntrack_tuple_taken(&reply, ignored_conntrack);
101 EXPORT_SYMBOL(nf_nat_used_tuple);
103 /* If we source map this tuple so reply looks like reply_tuple, will
104 * that meet the constraints of range. */
105 static int
106 in_range(const struct nf_conntrack_tuple *tuple,
107 const struct nf_nat_range *range)
109 const struct nf_nat_protocol *proto;
110 int ret = 0;
112 /* If we are supposed to map IPs, then we must be in the
113 range specified, otherwise let this drag us onto a new src IP. */
114 if (range->flags & IP_NAT_RANGE_MAP_IPS) {
115 if (ntohl(tuple->src.u3.ip) < ntohl(range->min_ip) ||
116 ntohl(tuple->src.u3.ip) > ntohl(range->max_ip))
117 return 0;
120 rcu_read_lock();
121 proto = __nf_nat_proto_find(tuple->dst.protonum);
122 if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||
123 proto->in_range(tuple, IP_NAT_MANIP_SRC,
124 &range->min, &range->max))
125 ret = 1;
126 rcu_read_unlock();
128 return ret;
131 static inline int
132 same_src(const struct nf_conn *ct,
133 const struct nf_conntrack_tuple *tuple)
135 const struct nf_conntrack_tuple *t;
137 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
138 return (t->dst.protonum == tuple->dst.protonum &&
139 t->src.u3.ip == tuple->src.u3.ip &&
140 t->src.u.all == tuple->src.u.all);
143 /* Only called for SRC manip */
144 static int
145 find_appropriate_src(struct net *net, u16 zone,
146 const struct nf_conntrack_tuple *tuple,
147 struct nf_conntrack_tuple *result,
148 const struct nf_nat_range *range)
150 unsigned int h = hash_by_src(net, zone, tuple);
151 const struct nf_conn_nat *nat;
152 const struct nf_conn *ct;
153 const struct hlist_node *n;
155 rcu_read_lock();
156 hlist_for_each_entry_rcu(nat, n, &net->ipv4.nat_bysource[h], bysource) {
157 ct = nat->ct;
158 if (same_src(ct, tuple) && nf_ct_zone(ct) == zone) {
159 /* Copy source part from reply tuple. */
160 nf_ct_invert_tuplepr(result,
161 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
162 result->dst = tuple->dst;
164 if (in_range(result, range)) {
165 rcu_read_unlock();
166 return 1;
170 rcu_read_unlock();
171 return 0;
174 /* For [FUTURE] fragmentation handling, we want the least-used
175 src-ip/dst-ip/proto triple. Fairness doesn't come into it. Thus
176 if the range specifies 1.2.3.4 ports 10000-10005 and 1.2.3.5 ports
177 1-65535, we don't do pro-rata allocation based on ports; we choose
178 the ip with the lowest src-ip/dst-ip/proto usage.
180 static void
181 find_best_ips_proto(u16 zone, struct nf_conntrack_tuple *tuple,
182 const struct nf_nat_range *range,
183 const struct nf_conn *ct,
184 enum nf_nat_manip_type maniptype)
186 __be32 *var_ipp;
187 /* Host order */
188 u_int32_t minip, maxip, j;
190 /* No IP mapping? Do nothing. */
191 if (!(range->flags & IP_NAT_RANGE_MAP_IPS))
192 return;
194 if (maniptype == IP_NAT_MANIP_SRC)
195 var_ipp = &tuple->src.u3.ip;
196 else
197 var_ipp = &tuple->dst.u3.ip;
199 /* Fast path: only one choice. */
200 if (range->min_ip == range->max_ip) {
201 *var_ipp = range->min_ip;
202 return;
205 /* Hashing source and destination IPs gives a fairly even
206 * spread in practice (if there are a small number of IPs
207 * involved, there usually aren't that many connections
208 * anyway). The consistency means that servers see the same
209 * client coming from the same IP (some Internet Banking sites
210 * like this), even across reboots. */
211 minip = ntohl(range->min_ip);
212 maxip = ntohl(range->max_ip);
213 j = jhash_2words((__force u32)tuple->src.u3.ip,
214 range->flags & IP_NAT_RANGE_PERSISTENT ?
215 0 : (__force u32)tuple->dst.u3.ip ^ zone, 0);
216 j = ((u64)j * (maxip - minip + 1)) >> 32;
217 *var_ipp = htonl(minip + j);
220 /* Manipulate the tuple into the range given. For NF_INET_POST_ROUTING,
221 * we change the source to map into the range. For NF_INET_PRE_ROUTING
222 * and NF_INET_LOCAL_OUT, we change the destination to map into the
223 * range. It might not be possible to get a unique tuple, but we try.
224 * At worst (or if we race), we will end up with a final duplicate in
225 * __ip_conntrack_confirm and drop the packet. */
226 static void
227 get_unique_tuple(struct nf_conntrack_tuple *tuple,
228 const struct nf_conntrack_tuple *orig_tuple,
229 const struct nf_nat_range *range,
230 struct nf_conn *ct,
231 enum nf_nat_manip_type maniptype)
233 struct net *net = nf_ct_net(ct);
234 const struct nf_nat_protocol *proto;
235 u16 zone = nf_ct_zone(ct);
237 /* 1) If this srcip/proto/src-proto-part is currently mapped,
238 and that same mapping gives a unique tuple within the given
239 range, use that.
241 This is only required for source (ie. NAT/masq) mappings.
242 So far, we don't do local source mappings, so multiple
243 manips not an issue. */
244 if (maniptype == IP_NAT_MANIP_SRC &&
245 !(range->flags & IP_NAT_RANGE_PROTO_RANDOM)) {
246 if (find_appropriate_src(net, zone, orig_tuple, tuple, range)) {
247 pr_debug("get_unique_tuple: Found current src map\n");
248 if (!nf_nat_used_tuple(tuple, ct))
249 return;
253 /* 2) Select the least-used IP/proto combination in the given
254 range. */
255 *tuple = *orig_tuple;
256 find_best_ips_proto(zone, tuple, range, ct, maniptype);
258 /* 3) The per-protocol part of the manip is made to map into
259 the range to make a unique tuple. */
261 rcu_read_lock();
262 proto = __nf_nat_proto_find(orig_tuple->dst.protonum);
264 /* Only bother mapping if it's not already in range and unique */
265 if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM)) {
266 if (range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
267 if (proto->in_range(tuple, maniptype, &range->min,
268 &range->max) &&
269 (range->min.all == range->max.all ||
270 !nf_nat_used_tuple(tuple, ct)))
271 goto out;
272 } else if (!nf_nat_used_tuple(tuple, ct)) {
273 goto out;
277 /* Last change: get protocol to try to obtain unique tuple. */
278 proto->unique_tuple(tuple, range, maniptype, ct);
279 out:
280 rcu_read_unlock();
283 unsigned int
284 nf_nat_setup_info(struct nf_conn *ct,
285 const struct nf_nat_range *range,
286 enum nf_nat_manip_type maniptype)
288 struct net *net = nf_ct_net(ct);
289 struct nf_conntrack_tuple curr_tuple, new_tuple;
290 struct nf_conn_nat *nat;
291 int have_to_hash = !(ct->status & IPS_NAT_DONE_MASK);
293 /* nat helper or nfctnetlink also setup binding */
294 nat = nfct_nat(ct);
295 if (!nat) {
296 nat = nf_ct_ext_add(ct, NF_CT_EXT_NAT, GFP_ATOMIC);
297 if (nat == NULL) {
298 pr_debug("failed to add NAT extension\n");
299 return NF_ACCEPT;
303 NF_CT_ASSERT(maniptype == IP_NAT_MANIP_SRC ||
304 maniptype == IP_NAT_MANIP_DST);
305 BUG_ON(nf_nat_initialized(ct, maniptype));
307 /* What we've got will look like inverse of reply. Normally
308 this is what is in the conntrack, except for prior
309 manipulations (future optimization: if num_manips == 0,
310 orig_tp =
311 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple) */
312 nf_ct_invert_tuplepr(&curr_tuple,
313 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
315 get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);
317 if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {
318 struct nf_conntrack_tuple reply;
320 /* Alter conntrack table so will recognize replies. */
321 nf_ct_invert_tuplepr(&reply, &new_tuple);
322 nf_conntrack_alter_reply(ct, &reply);
324 /* Non-atomic: we own this at the moment. */
325 if (maniptype == IP_NAT_MANIP_SRC)
326 ct->status |= IPS_SRC_NAT;
327 else
328 ct->status |= IPS_DST_NAT;
331 /* Place in source hash if this is the first time. */
332 if (have_to_hash) {
333 unsigned int srchash;
335 srchash = hash_by_src(net, nf_ct_zone(ct),
336 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
337 spin_lock_bh(&nf_nat_lock);
338 /* nf_conntrack_alter_reply might re-allocate exntension aera */
339 nat = nfct_nat(ct);
340 nat->ct = ct;
341 hlist_add_head_rcu(&nat->bysource,
342 &net->ipv4.nat_bysource[srchash]);
343 spin_unlock_bh(&nf_nat_lock);
346 /* It's done. */
347 if (maniptype == IP_NAT_MANIP_DST)
348 set_bit(IPS_DST_NAT_DONE_BIT, &ct->status);
349 else
350 set_bit(IPS_SRC_NAT_DONE_BIT, &ct->status);
352 return NF_ACCEPT;
354 EXPORT_SYMBOL(nf_nat_setup_info);
356 /* Returns true if succeeded. */
357 static bool
358 manip_pkt(u_int16_t proto,
359 struct sk_buff *skb,
360 unsigned int iphdroff,
361 const struct nf_conntrack_tuple *target,
362 enum nf_nat_manip_type maniptype)
364 struct iphdr *iph;
365 const struct nf_nat_protocol *p;
367 if (!skb_make_writable(skb, iphdroff + sizeof(*iph)))
368 return false;
370 iph = (void *)skb->data + iphdroff;
372 /* Manipulate protcol part. */
374 /* rcu_read_lock()ed by nf_hook_slow */
375 p = __nf_nat_proto_find(proto);
376 if (!p->manip_pkt(skb, iphdroff, target, maniptype))
377 return false;
379 iph = (void *)skb->data + iphdroff;
381 if (maniptype == IP_NAT_MANIP_SRC) {
382 csum_replace4(&iph->check, iph->saddr, target->src.u3.ip);
383 iph->saddr = target->src.u3.ip;
384 } else {
385 csum_replace4(&iph->check, iph->daddr, target->dst.u3.ip);
386 iph->daddr = target->dst.u3.ip;
388 return true;
391 /* Do packet manipulations according to nf_nat_setup_info. */
392 unsigned int nf_nat_packet(struct nf_conn *ct,
393 enum ip_conntrack_info ctinfo,
394 unsigned int hooknum,
395 struct sk_buff *skb)
397 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
398 unsigned long statusbit;
399 enum nf_nat_manip_type mtype = HOOK2MANIP(hooknum);
401 if (mtype == IP_NAT_MANIP_SRC)
402 statusbit = IPS_SRC_NAT;
403 else
404 statusbit = IPS_DST_NAT;
406 /* Invert if this is reply dir. */
407 if (dir == IP_CT_DIR_REPLY)
408 statusbit ^= IPS_NAT_MASK;
410 /* Non-atomic: these bits don't change. */
411 if (ct->status & statusbit) {
412 struct nf_conntrack_tuple target;
414 /* We are aiming to look like inverse of other direction. */
415 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
417 if (!manip_pkt(target.dst.protonum, skb, 0, &target, mtype))
418 return NF_DROP;
420 return NF_ACCEPT;
422 EXPORT_SYMBOL_GPL(nf_nat_packet);
424 /* Dir is direction ICMP is coming from (opposite to packet it contains) */
425 int nf_nat_icmp_reply_translation(struct nf_conn *ct,
426 enum ip_conntrack_info ctinfo,
427 unsigned int hooknum,
428 struct sk_buff *skb)
430 struct {
431 struct icmphdr icmp;
432 struct iphdr ip;
433 } *inside;
434 const struct nf_conntrack_l4proto *l4proto;
435 struct nf_conntrack_tuple inner, target;
436 int hdrlen = ip_hdrlen(skb);
437 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
438 unsigned long statusbit;
439 enum nf_nat_manip_type manip = HOOK2MANIP(hooknum);
441 if (!skb_make_writable(skb, hdrlen + sizeof(*inside)))
442 return 0;
444 inside = (void *)skb->data + hdrlen;
446 /* We're actually going to mangle it beyond trivial checksum
447 adjustment, so make sure the current checksum is correct. */
448 if (nf_ip_checksum(skb, hooknum, hdrlen, 0))
449 return 0;
451 /* Must be RELATED */
452 NF_CT_ASSERT(skb->nfctinfo == IP_CT_RELATED ||
453 skb->nfctinfo == IP_CT_RELATED+IP_CT_IS_REPLY);
455 /* Redirects on non-null nats must be dropped, else they'll
456 start talking to each other without our translation, and be
457 confused... --RR */
458 if (inside->icmp.type == ICMP_REDIRECT) {
459 /* If NAT isn't finished, assume it and drop. */
460 if ((ct->status & IPS_NAT_DONE_MASK) != IPS_NAT_DONE_MASK)
461 return 0;
463 if (ct->status & IPS_NAT_MASK)
464 return 0;
467 pr_debug("icmp_reply_translation: translating error %p manip %u "
468 "dir %s\n", skb, manip,
469 dir == IP_CT_DIR_ORIGINAL ? "ORIG" : "REPLY");
471 /* rcu_read_lock()ed by nf_hook_slow */
472 l4proto = __nf_ct_l4proto_find(PF_INET, inside->ip.protocol);
474 if (!nf_ct_get_tuple(skb, hdrlen + sizeof(struct icmphdr),
475 (hdrlen +
476 sizeof(struct icmphdr) + inside->ip.ihl * 4),
477 (u_int16_t)AF_INET, inside->ip.protocol,
478 &inner, l3proto, l4proto))
479 return 0;
481 /* Change inner back to look like incoming packet. We do the
482 opposite manip on this hook to normal, because it might not
483 pass all hooks (locally-generated ICMP). Consider incoming
484 packet: PREROUTING (DST manip), routing produces ICMP, goes
485 through POSTROUTING (which must correct the DST manip). */
486 if (!manip_pkt(inside->ip.protocol, skb, hdrlen + sizeof(inside->icmp),
487 &ct->tuplehash[!dir].tuple, !manip))
488 return 0;
490 if (skb->ip_summed != CHECKSUM_PARTIAL) {
491 /* Reloading "inside" here since manip_pkt inner. */
492 inside = (void *)skb->data + hdrlen;
493 inside->icmp.checksum = 0;
494 inside->icmp.checksum =
495 csum_fold(skb_checksum(skb, hdrlen,
496 skb->len - hdrlen, 0));
499 /* Change outer to look the reply to an incoming packet
500 * (proto 0 means don't invert per-proto part). */
501 if (manip == IP_NAT_MANIP_SRC)
502 statusbit = IPS_SRC_NAT;
503 else
504 statusbit = IPS_DST_NAT;
506 /* Invert if this is reply dir. */
507 if (dir == IP_CT_DIR_REPLY)
508 statusbit ^= IPS_NAT_MASK;
510 if (ct->status & statusbit) {
511 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
512 if (!manip_pkt(0, skb, 0, &target, manip))
513 return 0;
516 return 1;
518 EXPORT_SYMBOL_GPL(nf_nat_icmp_reply_translation);
520 /* Protocol registration. */
521 int nf_nat_protocol_register(const struct nf_nat_protocol *proto)
523 int ret = 0;
525 spin_lock_bh(&nf_nat_lock);
526 if (nf_nat_protos[proto->protonum] != &nf_nat_unknown_protocol) {
527 ret = -EBUSY;
528 goto out;
530 rcu_assign_pointer(nf_nat_protos[proto->protonum], proto);
531 out:
532 spin_unlock_bh(&nf_nat_lock);
533 return ret;
535 EXPORT_SYMBOL(nf_nat_protocol_register);
537 /* Noone stores the protocol anywhere; simply delete it. */
538 void nf_nat_protocol_unregister(const struct nf_nat_protocol *proto)
540 spin_lock_bh(&nf_nat_lock);
541 rcu_assign_pointer(nf_nat_protos[proto->protonum],
542 &nf_nat_unknown_protocol);
543 spin_unlock_bh(&nf_nat_lock);
544 synchronize_rcu();
546 EXPORT_SYMBOL(nf_nat_protocol_unregister);
548 /* Noone using conntrack by the time this called. */
549 static void nf_nat_cleanup_conntrack(struct nf_conn *ct)
551 struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT);
553 if (nat == NULL || nat->ct == NULL)
554 return;
556 NF_CT_ASSERT(nat->ct->status & IPS_NAT_DONE_MASK);
558 spin_lock_bh(&nf_nat_lock);
559 hlist_del_rcu(&nat->bysource);
560 spin_unlock_bh(&nf_nat_lock);
563 static void nf_nat_move_storage(void *new, void *old)
565 struct nf_conn_nat *new_nat = new;
566 struct nf_conn_nat *old_nat = old;
567 struct nf_conn *ct = old_nat->ct;
569 if (!ct || !(ct->status & IPS_NAT_DONE_MASK))
570 return;
572 spin_lock_bh(&nf_nat_lock);
573 new_nat->ct = ct;
574 hlist_replace_rcu(&old_nat->bysource, &new_nat->bysource);
575 spin_unlock_bh(&nf_nat_lock);
578 static struct nf_ct_ext_type nat_extend __read_mostly = {
579 .len = sizeof(struct nf_conn_nat),
580 .align = __alignof__(struct nf_conn_nat),
581 .destroy = nf_nat_cleanup_conntrack,
582 .move = nf_nat_move_storage,
583 .id = NF_CT_EXT_NAT,
584 .flags = NF_CT_EXT_F_PREALLOC,
587 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
589 #include <linux/netfilter/nfnetlink.h>
590 #include <linux/netfilter/nfnetlink_conntrack.h>
592 static const struct nla_policy protonat_nla_policy[CTA_PROTONAT_MAX+1] = {
593 [CTA_PROTONAT_PORT_MIN] = { .type = NLA_U16 },
594 [CTA_PROTONAT_PORT_MAX] = { .type = NLA_U16 },
597 static int nfnetlink_parse_nat_proto(struct nlattr *attr,
598 const struct nf_conn *ct,
599 struct nf_nat_range *range)
601 struct nlattr *tb[CTA_PROTONAT_MAX+1];
602 const struct nf_nat_protocol *npt;
603 int err;
605 err = nla_parse_nested(tb, CTA_PROTONAT_MAX, attr, protonat_nla_policy);
606 if (err < 0)
607 return err;
609 npt = nf_nat_proto_find_get(nf_ct_protonum(ct));
610 if (npt->nlattr_to_range)
611 err = npt->nlattr_to_range(tb, range);
612 nf_nat_proto_put(npt);
613 return err;
616 static const struct nla_policy nat_nla_policy[CTA_NAT_MAX+1] = {
617 [CTA_NAT_MINIP] = { .type = NLA_U32 },
618 [CTA_NAT_MAXIP] = { .type = NLA_U32 },
621 static int
622 nfnetlink_parse_nat(const struct nlattr *nat,
623 const struct nf_conn *ct, struct nf_nat_range *range)
625 struct nlattr *tb[CTA_NAT_MAX+1];
626 int err;
628 memset(range, 0, sizeof(*range));
630 err = nla_parse_nested(tb, CTA_NAT_MAX, nat, nat_nla_policy);
631 if (err < 0)
632 return err;
634 if (tb[CTA_NAT_MINIP])
635 range->min_ip = nla_get_be32(tb[CTA_NAT_MINIP]);
637 if (!tb[CTA_NAT_MAXIP])
638 range->max_ip = range->min_ip;
639 else
640 range->max_ip = nla_get_be32(tb[CTA_NAT_MAXIP]);
642 if (range->min_ip)
643 range->flags |= IP_NAT_RANGE_MAP_IPS;
645 if (!tb[CTA_NAT_PROTO])
646 return 0;
648 err = nfnetlink_parse_nat_proto(tb[CTA_NAT_PROTO], ct, range);
649 if (err < 0)
650 return err;
652 return 0;
655 static int
656 nfnetlink_parse_nat_setup(struct nf_conn *ct,
657 enum nf_nat_manip_type manip,
658 const struct nlattr *attr)
660 struct nf_nat_range range;
662 if (nfnetlink_parse_nat(attr, ct, &range) < 0)
663 return -EINVAL;
664 if (nf_nat_initialized(ct, manip))
665 return -EEXIST;
667 return nf_nat_setup_info(ct, &range, manip);
669 #else
670 static int
671 nfnetlink_parse_nat_setup(struct nf_conn *ct,
672 enum nf_nat_manip_type manip,
673 const struct nlattr *attr)
675 return -EOPNOTSUPP;
677 #endif
679 static int __net_init nf_nat_net_init(struct net *net)
681 /* Leave them the same for the moment. */
682 net->ipv4.nat_htable_size = net->ct.htable_size;
683 net->ipv4.nat_bysource = nf_ct_alloc_hashtable(&net->ipv4.nat_htable_size,
684 &net->ipv4.nat_vmalloced, 0);
685 if (!net->ipv4.nat_bysource)
686 return -ENOMEM;
687 return 0;
690 /* Clear NAT section of all conntracks, in case we're loaded again. */
691 static int clean_nat(struct nf_conn *i, void *data)
693 struct nf_conn_nat *nat = nfct_nat(i);
695 if (!nat)
696 return 0;
697 memset(nat, 0, sizeof(*nat));
698 i->status &= ~(IPS_NAT_MASK | IPS_NAT_DONE_MASK | IPS_SEQ_ADJUST);
699 return 0;
702 static void __net_exit nf_nat_net_exit(struct net *net)
704 nf_ct_iterate_cleanup(net, &clean_nat, NULL);
705 synchronize_rcu();
706 nf_ct_free_hashtable(net->ipv4.nat_bysource, net->ipv4.nat_vmalloced,
707 net->ipv4.nat_htable_size);
710 static struct pernet_operations nf_nat_net_ops = {
711 .init = nf_nat_net_init,
712 .exit = nf_nat_net_exit,
715 static int __init nf_nat_init(void)
717 size_t i;
718 int ret;
720 need_ipv4_conntrack();
722 ret = nf_ct_extend_register(&nat_extend);
723 if (ret < 0) {
724 printk(KERN_ERR "nf_nat_core: Unable to register extension\n");
725 return ret;
728 ret = register_pernet_subsys(&nf_nat_net_ops);
729 if (ret < 0)
730 goto cleanup_extend;
732 /* Sew in builtin protocols. */
733 spin_lock_bh(&nf_nat_lock);
734 for (i = 0; i < MAX_IP_NAT_PROTO; i++)
735 rcu_assign_pointer(nf_nat_protos[i], &nf_nat_unknown_protocol);
736 rcu_assign_pointer(nf_nat_protos[IPPROTO_TCP], &nf_nat_protocol_tcp);
737 rcu_assign_pointer(nf_nat_protos[IPPROTO_UDP], &nf_nat_protocol_udp);
738 rcu_assign_pointer(nf_nat_protos[IPPROTO_ICMP], &nf_nat_protocol_icmp);
739 spin_unlock_bh(&nf_nat_lock);
741 /* Initialize fake conntrack so that NAT will skip it */
742 nf_ct_untracked_status_or(IPS_NAT_DONE_MASK);
744 l3proto = nf_ct_l3proto_find_get((u_int16_t)AF_INET);
746 BUG_ON(nf_nat_seq_adjust_hook != NULL);
747 rcu_assign_pointer(nf_nat_seq_adjust_hook, nf_nat_seq_adjust);
748 BUG_ON(nfnetlink_parse_nat_setup_hook != NULL);
749 rcu_assign_pointer(nfnetlink_parse_nat_setup_hook,
750 nfnetlink_parse_nat_setup);
751 BUG_ON(nf_ct_nat_offset != NULL);
752 rcu_assign_pointer(nf_ct_nat_offset, nf_nat_get_offset);
753 return 0;
755 cleanup_extend:
756 nf_ct_extend_unregister(&nat_extend);
757 return ret;
760 static void __exit nf_nat_cleanup(void)
762 unregister_pernet_subsys(&nf_nat_net_ops);
763 nf_ct_l3proto_put(l3proto);
764 nf_ct_extend_unregister(&nat_extend);
765 rcu_assign_pointer(nf_nat_seq_adjust_hook, NULL);
766 rcu_assign_pointer(nfnetlink_parse_nat_setup_hook, NULL);
767 rcu_assign_pointer(nf_ct_nat_offset, NULL);
768 synchronize_net();
771 MODULE_LICENSE("GPL");
772 MODULE_ALIAS("nf-nat-ipv4");
774 module_init(nf_nat_init);
775 module_exit(nf_nat_cleanup);