Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[sfrench/cifs-2.6.git] / net / ipv4 / netfilter / ip_nat_core.c
1 /* NAT for netfilter; shared with compatibility layer. */
2
3 /* (C) 1999-2001 Paul `Rusty' Russell
4  * (C) 2002-2004 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>
15 #include <linux/netfilter_ipv4.h>
16 #include <linux/vmalloc.h>
17 #include <net/checksum.h>
18 #include <net/icmp.h>
19 #include <net/ip.h>
20 #include <net/tcp.h>  /* For tcp_prot in getorigdst */
21 #include <linux/icmp.h>
22 #include <linux/udp.h>
23 #include <linux/jhash.h>
24
25 #include <linux/netfilter_ipv4/ip_conntrack.h>
26 #include <linux/netfilter_ipv4/ip_conntrack_core.h>
27 #include <linux/netfilter_ipv4/ip_conntrack_protocol.h>
28 #include <linux/netfilter_ipv4/ip_nat.h>
29 #include <linux/netfilter_ipv4/ip_nat_protocol.h>
30 #include <linux/netfilter_ipv4/ip_nat_core.h>
31 #include <linux/netfilter_ipv4/ip_nat_helper.h>
32 #include <linux/netfilter_ipv4/ip_conntrack_helper.h>
33
34 #if 0
35 #define DEBUGP printk
36 #else
37 #define DEBUGP(format, args...)
38 #endif
39
40 DEFINE_RWLOCK(ip_nat_lock);
41
42 /* Calculated at init based on memory size */
43 static unsigned int ip_nat_htable_size;
44
45 static struct list_head *bysource;
46
47 #define MAX_IP_NAT_PROTO 256
48 static struct ip_nat_protocol *ip_nat_protos[MAX_IP_NAT_PROTO];
49
50 static inline struct ip_nat_protocol *
51 __ip_nat_proto_find(u_int8_t protonum)
52 {
53         return ip_nat_protos[protonum];
54 }
55
56 struct ip_nat_protocol *
57 ip_nat_proto_find_get(u_int8_t protonum)
58 {
59         struct ip_nat_protocol *p;
60
61         /* we need to disable preemption to make sure 'p' doesn't get
62          * removed until we've grabbed the reference */
63         preempt_disable();
64         p = __ip_nat_proto_find(protonum);
65         if (!try_module_get(p->me))
66                 p = &ip_nat_unknown_protocol;
67         preempt_enable();
68
69         return p;
70 }
71 EXPORT_SYMBOL_GPL(ip_nat_proto_find_get);
72
73 void
74 ip_nat_proto_put(struct ip_nat_protocol *p)
75 {
76         module_put(p->me);
77 }
78 EXPORT_SYMBOL_GPL(ip_nat_proto_put);
79
80 /* We keep an extra hash for each conntrack, for fast searching. */
81 static inline unsigned int
82 hash_by_src(const struct ip_conntrack_tuple *tuple)
83 {
84         /* Original src, to ensure we map it consistently if poss. */
85         return jhash_3words((__force u32)tuple->src.ip, tuple->src.u.all,
86                             tuple->dst.protonum, 0) % ip_nat_htable_size;
87 }
88
89 /* Noone using conntrack by the time this called. */
90 static void ip_nat_cleanup_conntrack(struct ip_conntrack *conn)
91 {
92         if (!(conn->status & IPS_NAT_DONE_MASK))
93                 return;
94
95         write_lock_bh(&ip_nat_lock);
96         list_del(&conn->nat.info.bysource);
97         write_unlock_bh(&ip_nat_lock);
98 }
99
100 /* Is this tuple already taken? (not by us) */
101 int
102 ip_nat_used_tuple(const struct ip_conntrack_tuple *tuple,
103                   const struct ip_conntrack *ignored_conntrack)
104 {
105         /* Conntrack tracking doesn't keep track of outgoing tuples; only
106            incoming ones.  NAT means they don't have a fixed mapping,
107            so we invert the tuple and look for the incoming reply.
108
109            We could keep a separate hash if this proves too slow. */
110         struct ip_conntrack_tuple reply;
111
112         invert_tuplepr(&reply, tuple);
113         return ip_conntrack_tuple_taken(&reply, ignored_conntrack);
114 }
115 EXPORT_SYMBOL(ip_nat_used_tuple);
116
117 /* If we source map this tuple so reply looks like reply_tuple, will
118  * that meet the constraints of range. */
119 static int
120 in_range(const struct ip_conntrack_tuple *tuple,
121          const struct ip_nat_range *range)
122 {
123         struct ip_nat_protocol *proto = 
124                                 __ip_nat_proto_find(tuple->dst.protonum);
125
126         /* If we are supposed to map IPs, then we must be in the
127            range specified, otherwise let this drag us onto a new src IP. */
128         if (range->flags & IP_NAT_RANGE_MAP_IPS) {
129                 if (ntohl(tuple->src.ip) < ntohl(range->min_ip)
130                     || ntohl(tuple->src.ip) > ntohl(range->max_ip))
131                         return 0;
132         }
133
134         if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED)
135             || proto->in_range(tuple, IP_NAT_MANIP_SRC,
136                                &range->min, &range->max))
137                 return 1;
138
139         return 0;
140 }
141
142 static inline int
143 same_src(const struct ip_conntrack *ct,
144          const struct ip_conntrack_tuple *tuple)
145 {
146         return (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum
147                 == tuple->dst.protonum
148                 && ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip
149                 == tuple->src.ip
150                 && ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.all
151                 == tuple->src.u.all);
152 }
153
154 /* Only called for SRC manip */
155 static int
156 find_appropriate_src(const struct ip_conntrack_tuple *tuple,
157                      struct ip_conntrack_tuple *result,
158                      const struct ip_nat_range *range)
159 {
160         unsigned int h = hash_by_src(tuple);
161         struct ip_conntrack *ct;
162
163         read_lock_bh(&ip_nat_lock);
164         list_for_each_entry(ct, &bysource[h], nat.info.bysource) {
165                 if (same_src(ct, tuple)) {
166                         /* Copy source part from reply tuple. */
167                         invert_tuplepr(result,
168                                        &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
169                         result->dst = tuple->dst;
170
171                         if (in_range(result, range)) {
172                                 read_unlock_bh(&ip_nat_lock);
173                                 return 1;
174                         }
175                 }
176         }
177         read_unlock_bh(&ip_nat_lock);
178         return 0;
179 }
180
181 /* For [FUTURE] fragmentation handling, we want the least-used
182    src-ip/dst-ip/proto triple.  Fairness doesn't come into it.  Thus
183    if the range specifies 1.2.3.4 ports 10000-10005 and 1.2.3.5 ports
184    1-65535, we don't do pro-rata allocation based on ports; we choose
185    the ip with the lowest src-ip/dst-ip/proto usage.
186 */
187 static void
188 find_best_ips_proto(struct ip_conntrack_tuple *tuple,
189                     const struct ip_nat_range *range,
190                     const struct ip_conntrack *conntrack,
191                     enum ip_nat_manip_type maniptype)
192 {
193         __be32 *var_ipp;
194         /* Host order */
195         u_int32_t minip, maxip, j;
196
197         /* No IP mapping?  Do nothing. */
198         if (!(range->flags & IP_NAT_RANGE_MAP_IPS))
199                 return;
200
201         if (maniptype == IP_NAT_MANIP_SRC)
202                 var_ipp = &tuple->src.ip;
203         else
204                 var_ipp = &tuple->dst.ip;
205
206         /* Fast path: only one choice. */
207         if (range->min_ip == range->max_ip) {
208                 *var_ipp = range->min_ip;
209                 return;
210         }
211
212         /* Hashing source and destination IPs gives a fairly even
213          * spread in practice (if there are a small number of IPs
214          * involved, there usually aren't that many connections
215          * anyway).  The consistency means that servers see the same
216          * client coming from the same IP (some Internet Banking sites
217          * like this), even across reboots. */
218         minip = ntohl(range->min_ip);
219         maxip = ntohl(range->max_ip);
220         j = jhash_2words((__force u32)tuple->src.ip, (__force u32)tuple->dst.ip, 0);
221         *var_ipp = htonl(minip + j % (maxip - minip + 1));
222 }
223
224 /* Manipulate the tuple into the range given.  For NF_IP_POST_ROUTING,
225  * we change the source to map into the range.  For NF_IP_PRE_ROUTING
226  * and NF_IP_LOCAL_OUT, we change the destination to map into the
227  * range.  It might not be possible to get a unique tuple, but we try.
228  * At worst (or if we race), we will end up with a final duplicate in
229  * __ip_conntrack_confirm and drop the packet. */
230 static void
231 get_unique_tuple(struct ip_conntrack_tuple *tuple,
232                  const struct ip_conntrack_tuple *orig_tuple,
233                  const struct ip_nat_range *range,
234                  struct ip_conntrack *conntrack,
235                  enum ip_nat_manip_type maniptype)
236 {
237         struct ip_nat_protocol *proto;
238
239         /* 1) If this srcip/proto/src-proto-part is currently mapped,
240            and that same mapping gives a unique tuple within the given
241            range, use that.
242
243            This is only required for source (ie. NAT/masq) mappings.
244            So far, we don't do local source mappings, so multiple
245            manips not an issue.  */
246         if (maniptype == IP_NAT_MANIP_SRC) {
247                 if (find_appropriate_src(orig_tuple, tuple, range)) {
248                         DEBUGP("get_unique_tuple: Found current src map\n");
249                         if (!ip_nat_used_tuple(tuple, conntrack))
250                                 return;
251                 }
252         }
253
254         /* 2) Select the least-used IP/proto combination in the given
255            range. */
256         *tuple = *orig_tuple;
257         find_best_ips_proto(tuple, range, conntrack, maniptype);
258
259         /* 3) The per-protocol part of the manip is made to map into
260            the range to make a unique tuple. */
261
262         proto = ip_nat_proto_find_get(orig_tuple->dst.protonum);
263
264         /* 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))
267             && !ip_nat_used_tuple(tuple, conntrack)) {
268                 ip_nat_proto_put(proto);
269                 return;
270         }
271
272         /* Last change: get protocol to try to obtain unique tuple. */
273         proto->unique_tuple(tuple, range, maniptype, conntrack);
274
275         ip_nat_proto_put(proto);
276 }
277
278 unsigned int
279 ip_nat_setup_info(struct ip_conntrack *conntrack,
280                   const struct ip_nat_range *range,
281                   unsigned int hooknum)
282 {
283         struct ip_conntrack_tuple curr_tuple, new_tuple;
284         struct ip_nat_info *info = &conntrack->nat.info;
285         int have_to_hash = !(conntrack->status & IPS_NAT_DONE_MASK);
286         enum ip_nat_manip_type maniptype = HOOK2MANIP(hooknum);
287
288         IP_NF_ASSERT(hooknum == NF_IP_PRE_ROUTING
289                      || hooknum == NF_IP_POST_ROUTING
290                      || hooknum == NF_IP_LOCAL_IN
291                      || hooknum == NF_IP_LOCAL_OUT);
292         BUG_ON(ip_nat_initialized(conntrack, maniptype));
293
294         /* What we've got will look like inverse of reply. Normally
295            this is what is in the conntrack, except for prior
296            manipulations (future optimization: if num_manips == 0,
297            orig_tp =
298            conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple) */
299         invert_tuplepr(&curr_tuple,
300                        &conntrack->tuplehash[IP_CT_DIR_REPLY].tuple);
301
302         get_unique_tuple(&new_tuple, &curr_tuple, range, conntrack, maniptype);
303
304         if (!ip_ct_tuple_equal(&new_tuple, &curr_tuple)) {
305                 struct ip_conntrack_tuple reply;
306
307                 /* Alter conntrack table so will recognize replies. */
308                 invert_tuplepr(&reply, &new_tuple);
309                 ip_conntrack_alter_reply(conntrack, &reply);
310
311                 /* Non-atomic: we own this at the moment. */
312                 if (maniptype == IP_NAT_MANIP_SRC)
313                         conntrack->status |= IPS_SRC_NAT;
314                 else
315                         conntrack->status |= IPS_DST_NAT;
316         }
317
318         /* Place in source hash if this is the first time. */
319         if (have_to_hash) {
320                 unsigned int srchash
321                         = hash_by_src(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
322                                       .tuple);
323                 write_lock_bh(&ip_nat_lock);
324                 list_add(&info->bysource, &bysource[srchash]);
325                 write_unlock_bh(&ip_nat_lock);
326         }
327
328         /* It's done. */
329         if (maniptype == IP_NAT_MANIP_DST)
330                 set_bit(IPS_DST_NAT_DONE_BIT, &conntrack->status);
331         else
332                 set_bit(IPS_SRC_NAT_DONE_BIT, &conntrack->status);
333
334         return NF_ACCEPT;
335 }
336 EXPORT_SYMBOL(ip_nat_setup_info);
337
338 /* Returns true if succeeded. */
339 static int
340 manip_pkt(u_int16_t proto,
341           struct sk_buff **pskb,
342           unsigned int iphdroff,
343           const struct ip_conntrack_tuple *target,
344           enum ip_nat_manip_type maniptype)
345 {
346         struct iphdr *iph;
347         struct ip_nat_protocol *p;
348
349         if (!skb_make_writable(pskb, iphdroff + sizeof(*iph)))
350                 return 0;
351
352         iph = (void *)(*pskb)->data + iphdroff;
353
354         /* Manipulate protcol part. */
355         p = ip_nat_proto_find_get(proto);
356         if (!p->manip_pkt(pskb, iphdroff, target, maniptype)) {
357                 ip_nat_proto_put(p);
358                 return 0;
359         }
360         ip_nat_proto_put(p);
361
362         iph = (void *)(*pskb)->data + iphdroff;
363
364         if (maniptype == IP_NAT_MANIP_SRC) {
365                 nf_csum_replace4(&iph->check, iph->saddr, target->src.ip);
366                 iph->saddr = target->src.ip;
367         } else {
368                 nf_csum_replace4(&iph->check, iph->daddr, target->dst.ip);
369                 iph->daddr = target->dst.ip;
370         }
371         return 1;
372 }
373
374 /* Do packet manipulations according to ip_nat_setup_info. */
375 unsigned int ip_nat_packet(struct ip_conntrack *ct,
376                            enum ip_conntrack_info ctinfo,
377                            unsigned int hooknum,
378                            struct sk_buff **pskb)
379 {
380         enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
381         unsigned long statusbit;
382         enum ip_nat_manip_type mtype = HOOK2MANIP(hooknum);
383
384         if (mtype == IP_NAT_MANIP_SRC)
385                 statusbit = IPS_SRC_NAT;
386         else
387                 statusbit = IPS_DST_NAT;
388
389         /* Invert if this is reply dir. */
390         if (dir == IP_CT_DIR_REPLY)
391                 statusbit ^= IPS_NAT_MASK;
392
393         /* Non-atomic: these bits don't change. */
394         if (ct->status & statusbit) {
395                 struct ip_conntrack_tuple target;
396
397                 /* We are aiming to look like inverse of other direction. */
398                 invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
399
400                 if (!manip_pkt(target.dst.protonum, pskb, 0, &target, mtype))
401                         return NF_DROP;
402         }
403         return NF_ACCEPT;
404 }
405 EXPORT_SYMBOL_GPL(ip_nat_packet);
406
407 /* Dir is direction ICMP is coming from (opposite to packet it contains) */
408 int ip_nat_icmp_reply_translation(struct ip_conntrack *ct,
409                                   enum ip_conntrack_info ctinfo,
410                                   unsigned int hooknum,
411                                   struct sk_buff **pskb)
412 {
413         struct {
414                 struct icmphdr icmp;
415                 struct iphdr ip;
416         } *inside;
417         struct ip_conntrack_tuple inner, target;
418         int hdrlen = (*pskb)->nh.iph->ihl * 4;
419         enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
420         unsigned long statusbit;
421         enum ip_nat_manip_type manip = HOOK2MANIP(hooknum);
422
423         if (!skb_make_writable(pskb, hdrlen + sizeof(*inside)))
424                 return 0;
425
426         inside = (void *)(*pskb)->data + (*pskb)->nh.iph->ihl*4;
427
428         /* We're actually going to mangle it beyond trivial checksum
429            adjustment, so make sure the current checksum is correct. */
430         if (nf_ip_checksum(*pskb, hooknum, hdrlen, 0))
431                 return 0;
432
433         /* Must be RELATED */
434         IP_NF_ASSERT((*pskb)->nfctinfo == IP_CT_RELATED ||
435                      (*pskb)->nfctinfo == IP_CT_RELATED+IP_CT_IS_REPLY);
436
437         /* Redirects on non-null nats must be dropped, else they'll
438            start talking to each other without our translation, and be
439            confused... --RR */
440         if (inside->icmp.type == ICMP_REDIRECT) {
441                 /* If NAT isn't finished, assume it and drop. */
442                 if ((ct->status & IPS_NAT_DONE_MASK) != IPS_NAT_DONE_MASK)
443                         return 0;
444
445                 if (ct->status & IPS_NAT_MASK)
446                         return 0;
447         }
448
449         DEBUGP("icmp_reply_translation: translating error %p manp %u dir %s\n",
450                *pskb, manip, dir == IP_CT_DIR_ORIGINAL ? "ORIG" : "REPLY");
451
452         if (!ip_ct_get_tuple(&inside->ip, *pskb, (*pskb)->nh.iph->ihl*4 +
453                              sizeof(struct icmphdr) + inside->ip.ihl*4,
454                              &inner,
455                              __ip_conntrack_proto_find(inside->ip.protocol)))
456                 return 0;
457
458         /* Change inner back to look like incoming packet.  We do the
459            opposite manip on this hook to normal, because it might not
460            pass all hooks (locally-generated ICMP).  Consider incoming
461            packet: PREROUTING (DST manip), routing produces ICMP, goes
462            through POSTROUTING (which must correct the DST manip). */
463         if (!manip_pkt(inside->ip.protocol, pskb,
464                        (*pskb)->nh.iph->ihl*4
465                        + sizeof(inside->icmp),
466                        &ct->tuplehash[!dir].tuple,
467                        !manip))
468                 return 0;
469
470         if ((*pskb)->ip_summed != CHECKSUM_PARTIAL) {
471                 /* Reloading "inside" here since manip_pkt inner. */
472                 inside = (void *)(*pskb)->data + (*pskb)->nh.iph->ihl*4;
473                 inside->icmp.checksum = 0;
474                 inside->icmp.checksum = csum_fold(skb_checksum(*pskb, hdrlen,
475                                                                (*pskb)->len - hdrlen,
476                                                                0));
477         }
478
479         /* Change outer to look the reply to an incoming packet
480          * (proto 0 means don't invert per-proto part). */
481         if (manip == IP_NAT_MANIP_SRC)
482                 statusbit = IPS_SRC_NAT;
483         else
484                 statusbit = IPS_DST_NAT;
485
486         /* Invert if this is reply dir. */
487         if (dir == IP_CT_DIR_REPLY)
488                 statusbit ^= IPS_NAT_MASK;
489
490         if (ct->status & statusbit) {
491                 invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
492                 if (!manip_pkt(0, pskb, 0, &target, manip))
493                         return 0;
494         }
495
496         return 1;
497 }
498 EXPORT_SYMBOL_GPL(ip_nat_icmp_reply_translation);
499
500 /* Protocol registration. */
501 int ip_nat_protocol_register(struct ip_nat_protocol *proto)
502 {
503         int ret = 0;
504
505         write_lock_bh(&ip_nat_lock);
506         if (ip_nat_protos[proto->protonum] != &ip_nat_unknown_protocol) {
507                 ret = -EBUSY;
508                 goto out;
509         }
510         ip_nat_protos[proto->protonum] = proto;
511  out:
512         write_unlock_bh(&ip_nat_lock);
513         return ret;
514 }
515 EXPORT_SYMBOL(ip_nat_protocol_register);
516
517 /* Noone stores the protocol anywhere; simply delete it. */
518 void ip_nat_protocol_unregister(struct ip_nat_protocol *proto)
519 {
520         write_lock_bh(&ip_nat_lock);
521         ip_nat_protos[proto->protonum] = &ip_nat_unknown_protocol;
522         write_unlock_bh(&ip_nat_lock);
523
524         /* Someone could be still looking at the proto in a bh. */
525         synchronize_net();
526 }
527 EXPORT_SYMBOL(ip_nat_protocol_unregister);
528
529 #if defined(CONFIG_IP_NF_CONNTRACK_NETLINK) || \
530     defined(CONFIG_IP_NF_CONNTRACK_NETLINK_MODULE)
531 int
532 ip_nat_port_range_to_nfattr(struct sk_buff *skb, 
533                             const struct ip_nat_range *range)
534 {
535         NFA_PUT(skb, CTA_PROTONAT_PORT_MIN, sizeof(__be16),
536                 &range->min.tcp.port);
537         NFA_PUT(skb, CTA_PROTONAT_PORT_MAX, sizeof(__be16),
538                 &range->max.tcp.port);
539
540         return 0;
541
542 nfattr_failure:
543         return -1;
544 }
545
546 int
547 ip_nat_port_nfattr_to_range(struct nfattr *tb[], struct ip_nat_range *range)
548 {
549         int ret = 0;
550         
551         /* we have to return whether we actually parsed something or not */
552
553         if (tb[CTA_PROTONAT_PORT_MIN-1]) {
554                 ret = 1;
555                 range->min.tcp.port = 
556                         *(__be16 *)NFA_DATA(tb[CTA_PROTONAT_PORT_MIN-1]);
557         }
558         
559         if (!tb[CTA_PROTONAT_PORT_MAX-1]) {
560                 if (ret) 
561                         range->max.tcp.port = range->min.tcp.port;
562         } else {
563                 ret = 1;
564                 range->max.tcp.port = 
565                         *(__be16 *)NFA_DATA(tb[CTA_PROTONAT_PORT_MAX-1]);
566         }
567
568         return ret;
569 }
570 EXPORT_SYMBOL_GPL(ip_nat_port_nfattr_to_range);
571 EXPORT_SYMBOL_GPL(ip_nat_port_range_to_nfattr);
572 #endif
573
574 static int __init ip_nat_init(void)
575 {
576         size_t i;
577
578         /* Leave them the same for the moment. */
579         ip_nat_htable_size = ip_conntrack_htable_size;
580
581         /* One vmalloc for both hash tables */
582         bysource = vmalloc(sizeof(struct list_head) * ip_nat_htable_size);
583         if (!bysource)
584                 return -ENOMEM;
585
586         /* Sew in builtin protocols. */
587         write_lock_bh(&ip_nat_lock);
588         for (i = 0; i < MAX_IP_NAT_PROTO; i++)
589                 ip_nat_protos[i] = &ip_nat_unknown_protocol;
590         ip_nat_protos[IPPROTO_TCP] = &ip_nat_protocol_tcp;
591         ip_nat_protos[IPPROTO_UDP] = &ip_nat_protocol_udp;
592         ip_nat_protos[IPPROTO_ICMP] = &ip_nat_protocol_icmp;
593         write_unlock_bh(&ip_nat_lock);
594
595         for (i = 0; i < ip_nat_htable_size; i++) {
596                 INIT_LIST_HEAD(&bysource[i]);
597         }
598
599         /* FIXME: Man, this is a hack.  <SIGH> */
600         IP_NF_ASSERT(ip_conntrack_destroyed == NULL);
601         ip_conntrack_destroyed = &ip_nat_cleanup_conntrack;
602
603         /* Initialize fake conntrack so that NAT will skip it */
604         ip_conntrack_untracked.status |= IPS_NAT_DONE_MASK;
605         return 0;
606 }
607
608 /* Clear NAT section of all conntracks, in case we're loaded again. */
609 static int clean_nat(struct ip_conntrack *i, void *data)
610 {
611         memset(&i->nat, 0, sizeof(i->nat));
612         i->status &= ~(IPS_NAT_MASK | IPS_NAT_DONE_MASK | IPS_SEQ_ADJUST);
613         return 0;
614 }
615
616 static void __exit ip_nat_cleanup(void)
617 {
618         ip_ct_iterate_cleanup(&clean_nat, NULL);
619         ip_conntrack_destroyed = NULL;
620         vfree(bysource);
621 }
622
623 MODULE_LICENSE("GPL");
624
625 module_init(ip_nat_init);
626 module_exit(ip_nat_cleanup);