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