]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv4/netfilter/nf_nat_core.c
netfilter: nf_nat: make find/put static
[net-next-2.6.git] / net / ipv4 / netfilter / nf_nat_core.c
CommitLineData
5b1158e9
JK
1/* 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>
5a0e3ad6 15#include <linux/gfp.h>
5b1158e9
JK
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>
23
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>
5d0aa2cc 34#include <net/netfilter/nf_conntrack_zones.h>
5b1158e9 35
02502f62 36static DEFINE_SPINLOCK(nf_nat_lock);
5b1158e9 37
ce4b1ceb 38static struct nf_conntrack_l3proto *l3proto __read_mostly;
5b1158e9 39
5b1158e9 40#define MAX_IP_NAT_PROTO 256
ce4b1ceb
PM
41static const struct nf_nat_protocol *nf_nat_protos[MAX_IP_NAT_PROTO]
42 __read_mostly;
5b1158e9 43
2b628a08 44static inline const struct nf_nat_protocol *
5b1158e9
JK
45__nf_nat_proto_find(u_int8_t protonum)
46{
e22a0548 47 return rcu_dereference(nf_nat_protos[protonum]);
5b1158e9
JK
48}
49
0c200d93 50static const struct nf_nat_protocol *
5b1158e9
JK
51nf_nat_proto_find_get(u_int8_t protonum)
52{
2b628a08 53 const struct nf_nat_protocol *p;
5b1158e9 54
e22a0548 55 rcu_read_lock();
5b1158e9
JK
56 p = __nf_nat_proto_find(protonum);
57 if (!try_module_get(p->me))
58 p = &nf_nat_unknown_protocol;
e22a0548 59 rcu_read_unlock();
5b1158e9
JK
60
61 return p;
62}
5b1158e9 63
0c200d93 64static void
2b628a08 65nf_nat_proto_put(const struct nf_nat_protocol *p)
5b1158e9
JK
66{
67 module_put(p->me);
68}
5b1158e9
JK
69
70/* We keep an extra hash for each conntrack, for fast searching. */
71static inline unsigned int
5d0aa2cc
PM
72hash_by_src(const struct net *net, u16 zone,
73 const struct nf_conntrack_tuple *tuple)
5b1158e9 74{
34498825
PM
75 unsigned int hash;
76
5b1158e9 77 /* Original src, to ensure we map it consistently if poss. */
34498825 78 hash = jhash_3words((__force u32)tuple->src.u3.ip,
5d0aa2cc 79 (__force u32)tuple->src.u.all ^ zone,
34498825 80 tuple->dst.protonum, 0);
d696c7bd 81 return ((u64)hash * net->ipv4.nat_htable_size) >> 32;
5b1158e9
JK
82}
83
5b1158e9
JK
84/* Is this tuple already taken? (not by us) */
85int
86nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
87 const struct nf_conn *ignored_conntrack)
88{
89 /* Conntrack tracking doesn't keep track of outgoing tuples; only
90 incoming ones. NAT means they don't have a fixed mapping,
91 so we invert the tuple and look for the incoming reply.
92
93 We could keep a separate hash if this proves too slow. */
94 struct nf_conntrack_tuple reply;
95
96 nf_ct_invert_tuplepr(&reply, tuple);
97 return nf_conntrack_tuple_taken(&reply, ignored_conntrack);
98}
99EXPORT_SYMBOL(nf_nat_used_tuple);
100
101/* If we source map this tuple so reply looks like reply_tuple, will
102 * that meet the constraints of range. */
103static int
104in_range(const struct nf_conntrack_tuple *tuple,
105 const struct nf_nat_range *range)
106{
2b628a08 107 const struct nf_nat_protocol *proto;
e22a0548 108 int ret = 0;
5b1158e9 109
5b1158e9
JK
110 /* If we are supposed to map IPs, then we must be in the
111 range specified, otherwise let this drag us onto a new src IP. */
112 if (range->flags & IP_NAT_RANGE_MAP_IPS) {
113 if (ntohl(tuple->src.u3.ip) < ntohl(range->min_ip) ||
114 ntohl(tuple->src.u3.ip) > ntohl(range->max_ip))
115 return 0;
116 }
117
e22a0548
PM
118 rcu_read_lock();
119 proto = __nf_nat_proto_find(tuple->dst.protonum);
5b1158e9
JK
120 if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||
121 proto->in_range(tuple, IP_NAT_MANIP_SRC,
122 &range->min, &range->max))
e22a0548
PM
123 ret = 1;
124 rcu_read_unlock();
5b1158e9 125
e22a0548 126 return ret;
5b1158e9
JK
127}
128
129static inline int
130same_src(const struct nf_conn *ct,
131 const struct nf_conntrack_tuple *tuple)
132{
133 const struct nf_conntrack_tuple *t;
134
135 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
136 return (t->dst.protonum == tuple->dst.protonum &&
137 t->src.u3.ip == tuple->src.u3.ip &&
138 t->src.u.all == tuple->src.u.all);
139}
140
141/* Only called for SRC manip */
142static int
5d0aa2cc 143find_appropriate_src(struct net *net, u16 zone,
0c4c9288 144 const struct nf_conntrack_tuple *tuple,
5b1158e9
JK
145 struct nf_conntrack_tuple *result,
146 const struct nf_nat_range *range)
147{
5d0aa2cc 148 unsigned int h = hash_by_src(net, zone, tuple);
72b72949
JE
149 const struct nf_conn_nat *nat;
150 const struct nf_conn *ct;
151 const struct hlist_node *n;
5b1158e9 152
4d354c57 153 rcu_read_lock();
0c4c9288 154 hlist_for_each_entry_rcu(nat, n, &net->ipv4.nat_bysource[h], bysource) {
b6b84d4a 155 ct = nat->ct;
5d0aa2cc 156 if (same_src(ct, tuple) && nf_ct_zone(ct) == zone) {
5b1158e9
JK
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)) {
4d354c57 163 rcu_read_unlock();
5b1158e9
JK
164 return 1;
165 }
166 }
167 }
4d354c57 168 rcu_read_unlock();
5b1158e9
JK
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
5d0aa2cc 179find_best_ips_proto(u16 zone, struct nf_conntrack_tuple *tuple,
5b1158e9
JK
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,
98d500d6 212 range->flags & IP_NAT_RANGE_PERSISTENT ?
5d0aa2cc 213 0 : (__force u32)tuple->dst.u3.ip ^ zone, 0);
34498825
PM
214 j = ((u64)j * (maxip - minip + 1)) >> 32;
215 *var_ipp = htonl(minip + j);
5b1158e9
JK
216}
217
6e23ae2a
PM
218/* Manipulate the tuple into the range given. For NF_INET_POST_ROUTING,
219 * we change the source to map into the range. For NF_INET_PRE_ROUTING
220 * and NF_INET_LOCAL_OUT, we change the destination to map into the
5b1158e9
JK
221 * range. It might not be possible to get a unique tuple, but we try.
222 * At worst (or if we race), we will end up with a final duplicate in
223 * __ip_conntrack_confirm and drop the packet. */
224static void
225get_unique_tuple(struct nf_conntrack_tuple *tuple,
226 const struct nf_conntrack_tuple *orig_tuple,
227 const struct nf_nat_range *range,
228 struct nf_conn *ct,
229 enum nf_nat_manip_type maniptype)
230{
0c4c9288 231 struct net *net = nf_ct_net(ct);
2b628a08 232 const struct nf_nat_protocol *proto;
5d0aa2cc 233 u16 zone = nf_ct_zone(ct);
5b1158e9
JK
234
235 /* 1) If this srcip/proto/src-proto-part is currently mapped,
236 and that same mapping gives a unique tuple within the given
237 range, use that.
238
239 This is only required for source (ie. NAT/masq) mappings.
240 So far, we don't do local source mappings, so multiple
241 manips not an issue. */
0dbff689
CG
242 if (maniptype == IP_NAT_MANIP_SRC &&
243 !(range->flags & IP_NAT_RANGE_PROTO_RANDOM)) {
5d0aa2cc 244 if (find_appropriate_src(net, zone, orig_tuple, tuple, range)) {
0d53778e 245 pr_debug("get_unique_tuple: Found current src map\n");
0dbff689
CG
246 if (!nf_nat_used_tuple(tuple, ct))
247 return;
5b1158e9
JK
248 }
249 }
250
251 /* 2) Select the least-used IP/proto combination in the given
252 range. */
253 *tuple = *orig_tuple;
5d0aa2cc 254 find_best_ips_proto(zone, tuple, range, ct, maniptype);
5b1158e9
JK
255
256 /* 3) The per-protocol part of the manip is made to map into
257 the range to make a unique tuple. */
258
e22a0548
PM
259 rcu_read_lock();
260 proto = __nf_nat_proto_find(orig_tuple->dst.protonum);
5b1158e9
JK
261
262 /* Only bother mapping if it's not already in range and unique */
99ad3c53
CG
263 if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM)) {
264 if (range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
265 if (proto->in_range(tuple, maniptype, &range->min,
266 &range->max) &&
267 (range->min.all == range->max.all ||
268 !nf_nat_used_tuple(tuple, ct)))
269 goto out;
270 } else if (!nf_nat_used_tuple(tuple, ct)) {
271 goto out;
272 }
273 }
5b1158e9
JK
274
275 /* Last change: get protocol to try to obtain unique tuple. */
276 proto->unique_tuple(tuple, range, maniptype, ct);
e22a0548
PM
277out:
278 rcu_read_unlock();
5b1158e9
JK
279}
280
281unsigned int
282nf_nat_setup_info(struct nf_conn *ct,
283 const struct nf_nat_range *range,
cc01dcbd 284 enum nf_nat_manip_type maniptype)
5b1158e9 285{
0c4c9288 286 struct net *net = nf_ct_net(ct);
5b1158e9 287 struct nf_conntrack_tuple curr_tuple, new_tuple;
2d59e5ca 288 struct nf_conn_nat *nat;
5b1158e9 289 int have_to_hash = !(ct->status & IPS_NAT_DONE_MASK);
5b1158e9 290
2d59e5ca
YK
291 /* nat helper or nfctnetlink also setup binding */
292 nat = nfct_nat(ct);
293 if (!nat) {
294 nat = nf_ct_ext_add(ct, NF_CT_EXT_NAT, GFP_ATOMIC);
295 if (nat == NULL) {
0d53778e 296 pr_debug("failed to add NAT extension\n");
2d59e5ca
YK
297 return NF_ACCEPT;
298 }
299 }
300
cc01dcbd
PM
301 NF_CT_ASSERT(maniptype == IP_NAT_MANIP_SRC ||
302 maniptype == IP_NAT_MANIP_DST);
5b1158e9
JK
303 BUG_ON(nf_nat_initialized(ct, maniptype));
304
305 /* What we've got will look like inverse of reply. Normally
306 this is what is in the conntrack, except for prior
307 manipulations (future optimization: if num_manips == 0,
308 orig_tp =
309 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple) */
310 nf_ct_invert_tuplepr(&curr_tuple,
311 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
312
313 get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);
314
315 if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {
316 struct nf_conntrack_tuple reply;
317
318 /* Alter conntrack table so will recognize replies. */
319 nf_ct_invert_tuplepr(&reply, &new_tuple);
320 nf_conntrack_alter_reply(ct, &reply);
321
322 /* Non-atomic: we own this at the moment. */
323 if (maniptype == IP_NAT_MANIP_SRC)
324 ct->status |= IPS_SRC_NAT;
325 else
326 ct->status |= IPS_DST_NAT;
327 }
328
329 /* Place in source hash if this is the first time. */
330 if (have_to_hash) {
331 unsigned int srchash;
332
5d0aa2cc
PM
333 srchash = hash_by_src(net, nf_ct_zone(ct),
334 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
02502f62 335 spin_lock_bh(&nf_nat_lock);
2d59e5ca 336 /* nf_conntrack_alter_reply might re-allocate exntension aera */
b6b84d4a
YK
337 nat = nfct_nat(ct);
338 nat->ct = ct;
0c4c9288
AD
339 hlist_add_head_rcu(&nat->bysource,
340 &net->ipv4.nat_bysource[srchash]);
02502f62 341 spin_unlock_bh(&nf_nat_lock);
5b1158e9
JK
342 }
343
344 /* It's done. */
345 if (maniptype == IP_NAT_MANIP_DST)
346 set_bit(IPS_DST_NAT_DONE_BIT, &ct->status);
347 else
348 set_bit(IPS_SRC_NAT_DONE_BIT, &ct->status);
349
350 return NF_ACCEPT;
351}
352EXPORT_SYMBOL(nf_nat_setup_info);
353
354/* Returns true if succeeded. */
f2ea825f 355static bool
5b1158e9 356manip_pkt(u_int16_t proto,
3db05fea 357 struct sk_buff *skb,
5b1158e9
JK
358 unsigned int iphdroff,
359 const struct nf_conntrack_tuple *target,
360 enum nf_nat_manip_type maniptype)
361{
362 struct iphdr *iph;
2b628a08 363 const struct nf_nat_protocol *p;
5b1158e9 364
3db05fea 365 if (!skb_make_writable(skb, iphdroff + sizeof(*iph)))
f2ea825f 366 return false;
5b1158e9 367
3db05fea 368 iph = (void *)skb->data + iphdroff;
5b1158e9
JK
369
370 /* Manipulate protcol part. */
e22a0548
PM
371
372 /* rcu_read_lock()ed by nf_hook_slow */
373 p = __nf_nat_proto_find(proto);
3db05fea 374 if (!p->manip_pkt(skb, iphdroff, target, maniptype))
f2ea825f 375 return false;
5b1158e9 376
3db05fea 377 iph = (void *)skb->data + iphdroff;
5b1158e9
JK
378
379 if (maniptype == IP_NAT_MANIP_SRC) {
be0ea7d5 380 csum_replace4(&iph->check, iph->saddr, target->src.u3.ip);
5b1158e9
JK
381 iph->saddr = target->src.u3.ip;
382 } else {
be0ea7d5 383 csum_replace4(&iph->check, iph->daddr, target->dst.u3.ip);
5b1158e9
JK
384 iph->daddr = target->dst.u3.ip;
385 }
f2ea825f 386 return true;
5b1158e9
JK
387}
388
389/* Do packet manipulations according to nf_nat_setup_info. */
390unsigned int nf_nat_packet(struct nf_conn *ct,
391 enum ip_conntrack_info ctinfo,
392 unsigned int hooknum,
3db05fea 393 struct sk_buff *skb)
5b1158e9
JK
394{
395 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
396 unsigned long statusbit;
397 enum nf_nat_manip_type mtype = HOOK2MANIP(hooknum);
398
399 if (mtype == IP_NAT_MANIP_SRC)
400 statusbit = IPS_SRC_NAT;
401 else
402 statusbit = IPS_DST_NAT;
403
404 /* Invert if this is reply dir. */
405 if (dir == IP_CT_DIR_REPLY)
406 statusbit ^= IPS_NAT_MASK;
407
408 /* Non-atomic: these bits don't change. */
409 if (ct->status & statusbit) {
410 struct nf_conntrack_tuple target;
411
412 /* We are aiming to look like inverse of other direction. */
413 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
414
3db05fea 415 if (!manip_pkt(target.dst.protonum, skb, 0, &target, mtype))
5b1158e9
JK
416 return NF_DROP;
417 }
418 return NF_ACCEPT;
419}
420EXPORT_SYMBOL_GPL(nf_nat_packet);
421
422/* Dir is direction ICMP is coming from (opposite to packet it contains) */
423int nf_nat_icmp_reply_translation(struct nf_conn *ct,
424 enum ip_conntrack_info ctinfo,
425 unsigned int hooknum,
3db05fea 426 struct sk_buff *skb)
5b1158e9
JK
427{
428 struct {
429 struct icmphdr icmp;
430 struct iphdr ip;
431 } *inside;
72b72949 432 const struct nf_conntrack_l4proto *l4proto;
5b1158e9 433 struct nf_conntrack_tuple inner, target;
3db05fea 434 int hdrlen = ip_hdrlen(skb);
5b1158e9
JK
435 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
436 unsigned long statusbit;
437 enum nf_nat_manip_type manip = HOOK2MANIP(hooknum);
438
3db05fea 439 if (!skb_make_writable(skb, hdrlen + sizeof(*inside)))
5b1158e9
JK
440 return 0;
441
794dbc1d 442 inside = (void *)skb->data + hdrlen;
5b1158e9
JK
443
444 /* We're actually going to mangle it beyond trivial checksum
445 adjustment, so make sure the current checksum is correct. */
3db05fea 446 if (nf_ip_checksum(skb, hooknum, hdrlen, 0))
5b1158e9
JK
447 return 0;
448
449 /* Must be RELATED */
3db05fea
HX
450 NF_CT_ASSERT(skb->nfctinfo == IP_CT_RELATED ||
451 skb->nfctinfo == IP_CT_RELATED+IP_CT_IS_REPLY);
5b1158e9
JK
452
453 /* Redirects on non-null nats must be dropped, else they'll
e905a9ed
YH
454 start talking to each other without our translation, and be
455 confused... --RR */
5b1158e9
JK
456 if (inside->icmp.type == ICMP_REDIRECT) {
457 /* If NAT isn't finished, assume it and drop. */
458 if ((ct->status & IPS_NAT_DONE_MASK) != IPS_NAT_DONE_MASK)
459 return 0;
460
461 if (ct->status & IPS_NAT_MASK)
462 return 0;
463 }
464
0d53778e 465 pr_debug("icmp_reply_translation: translating error %p manip %u "
3db05fea 466 "dir %s\n", skb, manip,
0d53778e 467 dir == IP_CT_DIR_ORIGINAL ? "ORIG" : "REPLY");
5b1158e9 468
923f4902
PM
469 /* rcu_read_lock()ed by nf_hook_slow */
470 l4proto = __nf_ct_l4proto_find(PF_INET, inside->ip.protocol);
471
794dbc1d
CG
472 if (!nf_ct_get_tuple(skb, hdrlen + sizeof(struct icmphdr),
473 (hdrlen +
c9bdd4b5 474 sizeof(struct icmphdr) + inside->ip.ihl * 4),
794dbc1d 475 (u_int16_t)AF_INET, inside->ip.protocol,
923f4902 476 &inner, l3proto, l4proto))
5b1158e9
JK
477 return 0;
478
479 /* Change inner back to look like incoming packet. We do the
480 opposite manip on this hook to normal, because it might not
481 pass all hooks (locally-generated ICMP). Consider incoming
482 packet: PREROUTING (DST manip), routing produces ICMP, goes
483 through POSTROUTING (which must correct the DST manip). */
794dbc1d
CG
484 if (!manip_pkt(inside->ip.protocol, skb, hdrlen + sizeof(inside->icmp),
485 &ct->tuplehash[!dir].tuple, !manip))
5b1158e9
JK
486 return 0;
487
3db05fea 488 if (skb->ip_summed != CHECKSUM_PARTIAL) {
5b1158e9 489 /* Reloading "inside" here since manip_pkt inner. */
794dbc1d 490 inside = (void *)skb->data + hdrlen;
5b1158e9
JK
491 inside->icmp.checksum = 0;
492 inside->icmp.checksum =
3db05fea
HX
493 csum_fold(skb_checksum(skb, hdrlen,
494 skb->len - hdrlen, 0));
5b1158e9
JK
495 }
496
497 /* Change outer to look the reply to an incoming packet
498 * (proto 0 means don't invert per-proto part). */
499 if (manip == IP_NAT_MANIP_SRC)
500 statusbit = IPS_SRC_NAT;
501 else
502 statusbit = IPS_DST_NAT;
503
504 /* Invert if this is reply dir. */
505 if (dir == IP_CT_DIR_REPLY)
506 statusbit ^= IPS_NAT_MASK;
507
508 if (ct->status & statusbit) {
509 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
3db05fea 510 if (!manip_pkt(0, skb, 0, &target, manip))
5b1158e9
JK
511 return 0;
512 }
513
514 return 1;
515}
516EXPORT_SYMBOL_GPL(nf_nat_icmp_reply_translation);
517
518/* Protocol registration. */
2b628a08 519int nf_nat_protocol_register(const struct nf_nat_protocol *proto)
5b1158e9
JK
520{
521 int ret = 0;
522
02502f62 523 spin_lock_bh(&nf_nat_lock);
5b1158e9
JK
524 if (nf_nat_protos[proto->protonum] != &nf_nat_unknown_protocol) {
525 ret = -EBUSY;
526 goto out;
527 }
e22a0548 528 rcu_assign_pointer(nf_nat_protos[proto->protonum], proto);
5b1158e9 529 out:
02502f62 530 spin_unlock_bh(&nf_nat_lock);
5b1158e9
JK
531 return ret;
532}
533EXPORT_SYMBOL(nf_nat_protocol_register);
534
535/* Noone stores the protocol anywhere; simply delete it. */
2b628a08 536void nf_nat_protocol_unregister(const struct nf_nat_protocol *proto)
5b1158e9 537{
02502f62 538 spin_lock_bh(&nf_nat_lock);
e22a0548
PM
539 rcu_assign_pointer(nf_nat_protos[proto->protonum],
540 &nf_nat_unknown_protocol);
02502f62 541 spin_unlock_bh(&nf_nat_lock);
e22a0548 542 synchronize_rcu();
5b1158e9
JK
543}
544EXPORT_SYMBOL(nf_nat_protocol_unregister);
545
d8a0509a
YK
546/* Noone using conntrack by the time this called. */
547static void nf_nat_cleanup_conntrack(struct nf_conn *ct)
548{
549 struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT);
550
b6b84d4a 551 if (nat == NULL || nat->ct == NULL)
d8a0509a
YK
552 return;
553
b6b84d4a 554 NF_CT_ASSERT(nat->ct->status & IPS_NAT_DONE_MASK);
d8a0509a 555
02502f62 556 spin_lock_bh(&nf_nat_lock);
4d354c57 557 hlist_del_rcu(&nat->bysource);
02502f62 558 spin_unlock_bh(&nf_nat_lock);
d8a0509a
YK
559}
560
86577c66 561static void nf_nat_move_storage(void *new, void *old)
2d59e5ca 562{
86577c66
PM
563 struct nf_conn_nat *new_nat = new;
564 struct nf_conn_nat *old_nat = old;
b6b84d4a 565 struct nf_conn *ct = old_nat->ct;
2d59e5ca 566
1f305323 567 if (!ct || !(ct->status & IPS_NAT_DONE_MASK))
2d59e5ca
YK
568 return;
569
02502f62 570 spin_lock_bh(&nf_nat_lock);
b6b84d4a 571 new_nat->ct = ct;
68b80f11 572 hlist_replace_rcu(&old_nat->bysource, &new_nat->bysource);
02502f62 573 spin_unlock_bh(&nf_nat_lock);
2d59e5ca
YK
574}
575
61eb3107 576static struct nf_ct_ext_type nat_extend __read_mostly = {
d8a0509a
YK
577 .len = sizeof(struct nf_conn_nat),
578 .align = __alignof__(struct nf_conn_nat),
579 .destroy = nf_nat_cleanup_conntrack,
580 .move = nf_nat_move_storage,
581 .id = NF_CT_EXT_NAT,
582 .flags = NF_CT_EXT_F_PREALLOC,
2d59e5ca
YK
583};
584
e6a7d3c0
PNA
585#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
586
587#include <linux/netfilter/nfnetlink.h>
588#include <linux/netfilter/nfnetlink_conntrack.h>
589
590static const struct nla_policy protonat_nla_policy[CTA_PROTONAT_MAX+1] = {
591 [CTA_PROTONAT_PORT_MIN] = { .type = NLA_U16 },
592 [CTA_PROTONAT_PORT_MAX] = { .type = NLA_U16 },
593};
594
595static int nfnetlink_parse_nat_proto(struct nlattr *attr,
596 const struct nf_conn *ct,
597 struct nf_nat_range *range)
598{
599 struct nlattr *tb[CTA_PROTONAT_MAX+1];
600 const struct nf_nat_protocol *npt;
601 int err;
602
603 err = nla_parse_nested(tb, CTA_PROTONAT_MAX, attr, protonat_nla_policy);
604 if (err < 0)
605 return err;
606
607 npt = nf_nat_proto_find_get(nf_ct_protonum(ct));
608 if (npt->nlattr_to_range)
609 err = npt->nlattr_to_range(tb, range);
610 nf_nat_proto_put(npt);
611 return err;
612}
613
614static const struct nla_policy nat_nla_policy[CTA_NAT_MAX+1] = {
615 [CTA_NAT_MINIP] = { .type = NLA_U32 },
616 [CTA_NAT_MAXIP] = { .type = NLA_U32 },
617};
618
619static int
39938324 620nfnetlink_parse_nat(const struct nlattr *nat,
e6a7d3c0
PNA
621 const struct nf_conn *ct, struct nf_nat_range *range)
622{
623 struct nlattr *tb[CTA_NAT_MAX+1];
624 int err;
625
626 memset(range, 0, sizeof(*range));
627
628 err = nla_parse_nested(tb, CTA_NAT_MAX, nat, nat_nla_policy);
629 if (err < 0)
630 return err;
631
632 if (tb[CTA_NAT_MINIP])
633 range->min_ip = nla_get_be32(tb[CTA_NAT_MINIP]);
634
635 if (!tb[CTA_NAT_MAXIP])
636 range->max_ip = range->min_ip;
637 else
638 range->max_ip = nla_get_be32(tb[CTA_NAT_MAXIP]);
639
640 if (range->min_ip)
641 range->flags |= IP_NAT_RANGE_MAP_IPS;
642
643 if (!tb[CTA_NAT_PROTO])
644 return 0;
645
646 err = nfnetlink_parse_nat_proto(tb[CTA_NAT_PROTO], ct, range);
647 if (err < 0)
648 return err;
649
650 return 0;
651}
652
653static int
654nfnetlink_parse_nat_setup(struct nf_conn *ct,
655 enum nf_nat_manip_type manip,
39938324 656 const struct nlattr *attr)
e6a7d3c0
PNA
657{
658 struct nf_nat_range range;
659
660 if (nfnetlink_parse_nat(attr, ct, &range) < 0)
661 return -EINVAL;
662 if (nf_nat_initialized(ct, manip))
663 return -EEXIST;
664
665 return nf_nat_setup_info(ct, &range, manip);
666}
667#else
668static int
669nfnetlink_parse_nat_setup(struct nf_conn *ct,
670 enum nf_nat_manip_type manip,
39938324 671 const struct nlattr *attr)
e6a7d3c0
PNA
672{
673 return -EOPNOTSUPP;
674}
675#endif
676
0c4c9288
AD
677static int __net_init nf_nat_net_init(struct net *net)
678{
d696c7bd
PM
679 /* Leave them the same for the moment. */
680 net->ipv4.nat_htable_size = net->ct.htable_size;
681 net->ipv4.nat_bysource = nf_ct_alloc_hashtable(&net->ipv4.nat_htable_size,
682 &net->ipv4.nat_vmalloced, 0);
0c4c9288
AD
683 if (!net->ipv4.nat_bysource)
684 return -ENOMEM;
685 return 0;
686}
687
688/* Clear NAT section of all conntracks, in case we're loaded again. */
689static int clean_nat(struct nf_conn *i, void *data)
690{
691 struct nf_conn_nat *nat = nfct_nat(i);
692
693 if (!nat)
694 return 0;
695 memset(nat, 0, sizeof(*nat));
696 i->status &= ~(IPS_NAT_MASK | IPS_NAT_DONE_MASK | IPS_SEQ_ADJUST);
697 return 0;
698}
699
700static void __net_exit nf_nat_net_exit(struct net *net)
701{
702 nf_ct_iterate_cleanup(net, &clean_nat, NULL);
703 synchronize_rcu();
704 nf_ct_free_hashtable(net->ipv4.nat_bysource, net->ipv4.nat_vmalloced,
d696c7bd 705 net->ipv4.nat_htable_size);
0c4c9288
AD
706}
707
708static struct pernet_operations nf_nat_net_ops = {
709 .init = nf_nat_net_init,
710 .exit = nf_nat_net_exit,
711};
712
5b1158e9
JK
713static int __init nf_nat_init(void)
714{
715 size_t i;
2d59e5ca
YK
716 int ret;
717
475959d4
JE
718 need_ipv4_conntrack();
719
2d59e5ca
YK
720 ret = nf_ct_extend_register(&nat_extend);
721 if (ret < 0) {
722 printk(KERN_ERR "nf_nat_core: Unable to register extension\n");
723 return ret;
724 }
5b1158e9 725
0c4c9288
AD
726 ret = register_pernet_subsys(&nf_nat_net_ops);
727 if (ret < 0)
2d59e5ca 728 goto cleanup_extend;
5b1158e9
JK
729
730 /* Sew in builtin protocols. */
02502f62 731 spin_lock_bh(&nf_nat_lock);
5b1158e9 732 for (i = 0; i < MAX_IP_NAT_PROTO; i++)
e22a0548
PM
733 rcu_assign_pointer(nf_nat_protos[i], &nf_nat_unknown_protocol);
734 rcu_assign_pointer(nf_nat_protos[IPPROTO_TCP], &nf_nat_protocol_tcp);
735 rcu_assign_pointer(nf_nat_protos[IPPROTO_UDP], &nf_nat_protocol_udp);
736 rcu_assign_pointer(nf_nat_protos[IPPROTO_ICMP], &nf_nat_protocol_icmp);
02502f62 737 spin_unlock_bh(&nf_nat_lock);
5b1158e9 738
5b1158e9 739 /* Initialize fake conntrack so that NAT will skip it */
5bfddbd4 740 nf_ct_untracked_status_or(IPS_NAT_DONE_MASK);
5b1158e9
JK
741
742 l3proto = nf_ct_l3proto_find_get((u_int16_t)AF_INET);
dd13b010
PM
743
744 BUG_ON(nf_nat_seq_adjust_hook != NULL);
745 rcu_assign_pointer(nf_nat_seq_adjust_hook, nf_nat_seq_adjust);
e6a7d3c0
PNA
746 BUG_ON(nfnetlink_parse_nat_setup_hook != NULL);
747 rcu_assign_pointer(nfnetlink_parse_nat_setup_hook,
748 nfnetlink_parse_nat_setup);
f9dd09c7
JK
749 BUG_ON(nf_ct_nat_offset != NULL);
750 rcu_assign_pointer(nf_ct_nat_offset, nf_nat_get_offset);
5b1158e9 751 return 0;
2d59e5ca
YK
752
753 cleanup_extend:
754 nf_ct_extend_unregister(&nat_extend);
755 return ret;
5b1158e9
JK
756}
757
5b1158e9
JK
758static void __exit nf_nat_cleanup(void)
759{
0c4c9288 760 unregister_pernet_subsys(&nf_nat_net_ops);
5b1158e9 761 nf_ct_l3proto_put(l3proto);
2d59e5ca 762 nf_ct_extend_unregister(&nat_extend);
dd13b010 763 rcu_assign_pointer(nf_nat_seq_adjust_hook, NULL);
e6a7d3c0 764 rcu_assign_pointer(nfnetlink_parse_nat_setup_hook, NULL);
f9dd09c7 765 rcu_assign_pointer(nf_ct_nat_offset, NULL);
dd13b010 766 synchronize_net();
5b1158e9
JK
767}
768
769MODULE_LICENSE("GPL");
e6a7d3c0 770MODULE_ALIAS("nf-nat-ipv4");
5b1158e9
JK
771
772module_init(nf_nat_init);
773module_exit(nf_nat_cleanup);