Merge tag 'v3.10.108' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / netfilter / nf_nat_core.c
CommitLineData
c7232c99
PM
1/*
2 * (C) 1999-2001 Paul `Rusty' Russell
5b1158e9 3 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
c7232c99 4 * (C) 2011 Patrick McHardy <kaber@trash.net>
5b1158e9
JK
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>
c7232c99 16#include <net/xfrm.h>
5b1158e9 17#include <linux/jhash.h>
c7232c99 18#include <linux/rtnetlink.h>
5b1158e9 19
5b1158e9
JK
20#include <net/netfilter/nf_conntrack.h>
21#include <net/netfilter/nf_conntrack_core.h>
22#include <net/netfilter/nf_nat.h>
c7232c99
PM
23#include <net/netfilter/nf_nat_l3proto.h>
24#include <net/netfilter/nf_nat_l4proto.h>
5b1158e9
JK
25#include <net/netfilter/nf_nat_core.h>
26#include <net/netfilter/nf_nat_helper.h>
27#include <net/netfilter/nf_conntrack_helper.h>
28#include <net/netfilter/nf_conntrack_l3proto.h>
5d0aa2cc 29#include <net/netfilter/nf_conntrack_zones.h>
c7232c99 30#include <linux/netfilter/nf_nat.h>
5b1158e9 31
02502f62 32static DEFINE_SPINLOCK(nf_nat_lock);
5b1158e9 33
c7232c99
PM
34static DEFINE_MUTEX(nf_nat_proto_mutex);
35static const struct nf_nat_l3proto __rcu *nf_nat_l3protos[NFPROTO_NUMPROTO]
36 __read_mostly;
37static const struct nf_nat_l4proto __rcu **nf_nat_l4protos[NFPROTO_NUMPROTO]
ce4b1ceb 38 __read_mostly;
5b1158e9 39
c7232c99
PM
40
41inline const struct nf_nat_l3proto *
42__nf_nat_l3proto_find(u8 family)
5b1158e9 43{
c7232c99 44 return rcu_dereference(nf_nat_l3protos[family]);
5b1158e9
JK
45}
46
c7232c99
PM
47inline const struct nf_nat_l4proto *
48__nf_nat_l4proto_find(u8 family, u8 protonum)
49{
50 return rcu_dereference(nf_nat_l4protos[family][protonum]);
51}
52EXPORT_SYMBOL_GPL(__nf_nat_l4proto_find);
53
54#ifdef CONFIG_XFRM
55static void __nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl)
56{
57 const struct nf_nat_l3proto *l3proto;
58 const struct nf_conn *ct;
59 enum ip_conntrack_info ctinfo;
60 enum ip_conntrack_dir dir;
61 unsigned long statusbit;
62 u8 family;
63
64 ct = nf_ct_get(skb, &ctinfo);
65 if (ct == NULL)
66 return;
67
68 family = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
69 rcu_read_lock();
70 l3proto = __nf_nat_l3proto_find(family);
71 if (l3proto == NULL)
72 goto out;
73
74 dir = CTINFO2DIR(ctinfo);
75 if (dir == IP_CT_DIR_ORIGINAL)
76 statusbit = IPS_DST_NAT;
77 else
78 statusbit = IPS_SRC_NAT;
79
80 l3proto->decode_session(skb, ct, dir, statusbit, fl);
81out:
82 rcu_read_unlock();
83}
84
85int nf_xfrm_me_harder(struct sk_buff *skb, unsigned int family)
86{
87 struct flowi fl;
88 unsigned int hh_len;
89 struct dst_entry *dst;
aaa795ad 90 int err;
c7232c99 91
aaa795ad 92 err = xfrm_decode_session(skb, &fl, family);
e7e6f630 93 if (err < 0)
aaa795ad 94 return err;
c7232c99
PM
95
96 dst = skb_dst(skb);
97 if (dst->xfrm)
98 dst = ((struct xfrm_dst *)dst)->route;
99 dst_hold(dst);
100
101 dst = xfrm_lookup(dev_net(dst->dev), dst, &fl, skb->sk, 0);
102 if (IS_ERR(dst))
aaa795ad 103 return PTR_ERR(dst);
c7232c99
PM
104
105 skb_dst_drop(skb);
106 skb_dst_set(skb, dst);
107
108 /* Change in oif may mean change in hh_len. */
109 hh_len = skb_dst(skb)->dev->hard_header_len;
110 if (skb_headroom(skb) < hh_len &&
111 pskb_expand_head(skb, hh_len - skb_headroom(skb), 0, GFP_ATOMIC))
aaa795ad 112 return -ENOMEM;
c7232c99
PM
113 return 0;
114}
115EXPORT_SYMBOL(nf_xfrm_me_harder);
116#endif /* CONFIG_XFRM */
117
5b1158e9
JK
118/* We keep an extra hash for each conntrack, for fast searching. */
119static inline unsigned int
5d0aa2cc
PM
120hash_by_src(const struct net *net, u16 zone,
121 const struct nf_conntrack_tuple *tuple)
5b1158e9 122{
34498825
PM
123 unsigned int hash;
124
5b1158e9 125 /* Original src, to ensure we map it consistently if poss. */
c7232c99
PM
126 hash = jhash2((u32 *)&tuple->src, sizeof(tuple->src) / sizeof(u32),
127 tuple->dst.protonum ^ zone ^ nf_conntrack_hash_rnd);
128 return ((u64)hash * net->ct.nat_htable_size) >> 32;
5b1158e9
JK
129}
130
5b1158e9
JK
131/* Is this tuple already taken? (not by us) */
132int
133nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
134 const struct nf_conn *ignored_conntrack)
135{
136 /* Conntrack tracking doesn't keep track of outgoing tuples; only
c7232c99
PM
137 * incoming ones. NAT means they don't have a fixed mapping,
138 * so we invert the tuple and look for the incoming reply.
139 *
140 * We could keep a separate hash if this proves too slow.
141 */
5b1158e9
JK
142 struct nf_conntrack_tuple reply;
143
144 nf_ct_invert_tuplepr(&reply, tuple);
145 return nf_conntrack_tuple_taken(&reply, ignored_conntrack);
146}
147EXPORT_SYMBOL(nf_nat_used_tuple);
148
149/* If we source map this tuple so reply looks like reply_tuple, will
c7232c99
PM
150 * that meet the constraints of range.
151 */
152static int in_range(const struct nf_nat_l3proto *l3proto,
153 const struct nf_nat_l4proto *l4proto,
154 const struct nf_conntrack_tuple *tuple,
155 const struct nf_nat_range *range)
5b1158e9 156{
5b1158e9 157 /* If we are supposed to map IPs, then we must be in the
c7232c99
PM
158 * range specified, otherwise let this drag us onto a new src IP.
159 */
160 if (range->flags & NF_NAT_RANGE_MAP_IPS &&
161 !l3proto->in_range(tuple, range))
162 return 0;
5b1158e9 163
cbc9f2f4 164 if (!(range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) ||
c7232c99
PM
165 l4proto->in_range(tuple, NF_NAT_MANIP_SRC,
166 &range->min_proto, &range->max_proto))
167 return 1;
5b1158e9 168
c7232c99 169 return 0;
5b1158e9
JK
170}
171
172static inline int
173same_src(const struct nf_conn *ct,
174 const struct nf_conntrack_tuple *tuple)
175{
176 const struct nf_conntrack_tuple *t;
177
178 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
179 return (t->dst.protonum == tuple->dst.protonum &&
c7232c99 180 nf_inet_addr_cmp(&t->src.u3, &tuple->src.u3) &&
5b1158e9
JK
181 t->src.u.all == tuple->src.u.all);
182}
183
184/* Only called for SRC manip */
185static int
5d0aa2cc 186find_appropriate_src(struct net *net, u16 zone,
c7232c99
PM
187 const struct nf_nat_l3proto *l3proto,
188 const struct nf_nat_l4proto *l4proto,
0c4c9288 189 const struct nf_conntrack_tuple *tuple,
5b1158e9 190 struct nf_conntrack_tuple *result,
c7232c99 191 const struct nf_nat_range *range)
5b1158e9 192{
5d0aa2cc 193 unsigned int h = hash_by_src(net, zone, tuple);
72b72949
JE
194 const struct nf_conn_nat *nat;
195 const struct nf_conn *ct;
5b1158e9 196
b67bfe0d 197 hlist_for_each_entry_rcu(nat, &net->ct.nat_bysource[h], bysource) {
b6b84d4a 198 ct = nat->ct;
5d0aa2cc 199 if (same_src(ct, tuple) && nf_ct_zone(ct) == zone) {
5b1158e9
JK
200 /* Copy source part from reply tuple. */
201 nf_ct_invert_tuplepr(result,
202 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
203 result->dst = tuple->dst;
204
136251d0 205 if (in_range(l3proto, l4proto, result, range))
5b1158e9 206 return 1;
5b1158e9
JK
207 }
208 }
5b1158e9
JK
209 return 0;
210}
211
212/* For [FUTURE] fragmentation handling, we want the least-used
c7232c99
PM
213 * src-ip/dst-ip/proto triple. Fairness doesn't come into it. Thus
214 * if the range specifies 1.2.3.4 ports 10000-10005 and 1.2.3.5 ports
215 * 1-65535, we don't do pro-rata allocation based on ports; we choose
216 * the ip with the lowest src-ip/dst-ip/proto usage.
217 */
5b1158e9 218static void
5d0aa2cc 219find_best_ips_proto(u16 zone, struct nf_conntrack_tuple *tuple,
c7232c99 220 const struct nf_nat_range *range,
5b1158e9
JK
221 const struct nf_conn *ct,
222 enum nf_nat_manip_type maniptype)
223{
c7232c99
PM
224 union nf_inet_addr *var_ipp;
225 unsigned int i, max;
5b1158e9 226 /* Host order */
c7232c99
PM
227 u32 minip, maxip, j, dist;
228 bool full_range;
5b1158e9
JK
229
230 /* No IP mapping? Do nothing. */
cbc9f2f4 231 if (!(range->flags & NF_NAT_RANGE_MAP_IPS))
5b1158e9
JK
232 return;
233
cbc9f2f4 234 if (maniptype == NF_NAT_MANIP_SRC)
c7232c99 235 var_ipp = &tuple->src.u3;
5b1158e9 236 else
c7232c99 237 var_ipp = &tuple->dst.u3;
5b1158e9
JK
238
239 /* Fast path: only one choice. */
c7232c99
PM
240 if (nf_inet_addr_cmp(&range->min_addr, &range->max_addr)) {
241 *var_ipp = range->min_addr;
5b1158e9
JK
242 return;
243 }
244
c7232c99
PM
245 if (nf_ct_l3num(ct) == NFPROTO_IPV4)
246 max = sizeof(var_ipp->ip) / sizeof(u32) - 1;
247 else
248 max = sizeof(var_ipp->ip6) / sizeof(u32) - 1;
249
5b1158e9
JK
250 /* Hashing source and destination IPs gives a fairly even
251 * spread in practice (if there are a small number of IPs
252 * involved, there usually aren't that many connections
253 * anyway). The consistency means that servers see the same
254 * client coming from the same IP (some Internet Banking sites
c7232c99
PM
255 * like this), even across reboots.
256 */
5693d68d 257 j = jhash2((u32 *)&tuple->src.u3, sizeof(tuple->src.u3) / sizeof(u32),
c7232c99
PM
258 range->flags & NF_NAT_RANGE_PERSISTENT ?
259 0 : (__force u32)tuple->dst.u3.all[max] ^ zone);
260
261 full_range = false;
262 for (i = 0; i <= max; i++) {
263 /* If first bytes of the address are at the maximum, use the
264 * distance. Otherwise use the full range.
265 */
266 if (!full_range) {
267 minip = ntohl((__force __be32)range->min_addr.all[i]);
268 maxip = ntohl((__force __be32)range->max_addr.all[i]);
269 dist = maxip - minip + 1;
270 } else {
271 minip = 0;
272 dist = ~0;
273 }
274
275 var_ipp->all[i] = (__force __u32)
276 htonl(minip + (((u64)j * dist) >> 32));
277 if (var_ipp->all[i] != range->max_addr.all[i])
278 full_range = true;
279
280 if (!(range->flags & NF_NAT_RANGE_PERSISTENT))
281 j ^= (__force u32)tuple->dst.u3.all[i];
282 }
5b1158e9
JK
283}
284
c7232c99
PM
285/* Manipulate the tuple into the range given. For NF_INET_POST_ROUTING,
286 * we change the source to map into the range. For NF_INET_PRE_ROUTING
6e23ae2a 287 * and NF_INET_LOCAL_OUT, we change the destination to map into the
c7232c99 288 * range. It might not be possible to get a unique tuple, but we try.
5b1158e9
JK
289 * At worst (or if we race), we will end up with a final duplicate in
290 * __ip_conntrack_confirm and drop the packet. */
291static void
292get_unique_tuple(struct nf_conntrack_tuple *tuple,
293 const struct nf_conntrack_tuple *orig_tuple,
c7232c99 294 const struct nf_nat_range *range,
5b1158e9
JK
295 struct nf_conn *ct,
296 enum nf_nat_manip_type maniptype)
297{
c7232c99
PM
298 const struct nf_nat_l3proto *l3proto;
299 const struct nf_nat_l4proto *l4proto;
0c4c9288 300 struct net *net = nf_ct_net(ct);
5d0aa2cc 301 u16 zone = nf_ct_zone(ct);
5b1158e9 302
c7232c99
PM
303 rcu_read_lock();
304 l3proto = __nf_nat_l3proto_find(orig_tuple->src.l3num);
305 l4proto = __nf_nat_l4proto_find(orig_tuple->src.l3num,
306 orig_tuple->dst.protonum);
5b1158e9 307
c7232c99
PM
308 /* 1) If this srcip/proto/src-proto-part is currently mapped,
309 * and that same mapping gives a unique tuple within the given
310 * range, use that.
311 *
312 * This is only required for source (ie. NAT/masq) mappings.
313 * So far, we don't do local source mappings, so multiple
314 * manips not an issue.
315 */
cbc9f2f4
PM
316 if (maniptype == NF_NAT_MANIP_SRC &&
317 !(range->flags & NF_NAT_RANGE_PROTO_RANDOM)) {
41a7cab6 318 /* try the original tuple first */
c7232c99 319 if (in_range(l3proto, l4proto, orig_tuple, range)) {
41a7cab6
CG
320 if (!nf_nat_used_tuple(orig_tuple, ct)) {
321 *tuple = *orig_tuple;
c7232c99 322 goto out;
41a7cab6 323 }
c7232c99
PM
324 } else if (find_appropriate_src(net, zone, l3proto, l4proto,
325 orig_tuple, tuple, range)) {
0d53778e 326 pr_debug("get_unique_tuple: Found current src map\n");
0dbff689 327 if (!nf_nat_used_tuple(tuple, ct))
c7232c99 328 goto out;
5b1158e9
JK
329 }
330 }
331
c7232c99 332 /* 2) Select the least-used IP/proto combination in the given range */
5b1158e9 333 *tuple = *orig_tuple;
5d0aa2cc 334 find_best_ips_proto(zone, tuple, range, ct, maniptype);
5b1158e9
JK
335
336 /* 3) The per-protocol part of the manip is made to map into
c7232c99
PM
337 * the range to make a unique tuple.
338 */
5b1158e9
JK
339
340 /* Only bother mapping if it's not already in range and unique */
cbc9f2f4
PM
341 if (!(range->flags & NF_NAT_RANGE_PROTO_RANDOM)) {
342 if (range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) {
c7232c99
PM
343 if (l4proto->in_range(tuple, maniptype,
344 &range->min_proto,
345 &range->max_proto) &&
346 (range->min_proto.all == range->max_proto.all ||
99ad3c53
CG
347 !nf_nat_used_tuple(tuple, ct)))
348 goto out;
349 } else if (!nf_nat_used_tuple(tuple, ct)) {
350 goto out;
351 }
352 }
5b1158e9
JK
353
354 /* Last change: get protocol to try to obtain unique tuple. */
c7232c99 355 l4proto->unique_tuple(l3proto, tuple, range, maniptype, ct);
e22a0548
PM
356out:
357 rcu_read_unlock();
5b1158e9
JK
358}
359
360unsigned int
361nf_nat_setup_info(struct nf_conn *ct,
c7232c99 362 const struct nf_nat_range *range,
cc01dcbd 363 enum nf_nat_manip_type maniptype)
5b1158e9 364{
0c4c9288 365 struct net *net = nf_ct_net(ct);
5b1158e9 366 struct nf_conntrack_tuple curr_tuple, new_tuple;
2d59e5ca 367 struct nf_conn_nat *nat;
5b1158e9 368
2d59e5ca
YK
369 /* nat helper or nfctnetlink also setup binding */
370 nat = nfct_nat(ct);
371 if (!nat) {
372 nat = nf_ct_ext_add(ct, NF_CT_EXT_NAT, GFP_ATOMIC);
373 if (nat == NULL) {
0d53778e 374 pr_debug("failed to add NAT extension\n");
2d59e5ca
YK
375 return NF_ACCEPT;
376 }
377 }
378
cbc9f2f4
PM
379 NF_CT_ASSERT(maniptype == NF_NAT_MANIP_SRC ||
380 maniptype == NF_NAT_MANIP_DST);
5b1158e9
JK
381 BUG_ON(nf_nat_initialized(ct, maniptype));
382
383 /* What we've got will look like inverse of reply. Normally
c7232c99
PM
384 * this is what is in the conntrack, except for prior
385 * manipulations (future optimization: if num_manips == 0,
386 * orig_tp = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
387 */
5b1158e9
JK
388 nf_ct_invert_tuplepr(&curr_tuple,
389 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
390
391 get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);
392
393 if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {
394 struct nf_conntrack_tuple reply;
395
396 /* Alter conntrack table so will recognize replies. */
397 nf_ct_invert_tuplepr(&reply, &new_tuple);
398 nf_conntrack_alter_reply(ct, &reply);
399
400 /* Non-atomic: we own this at the moment. */
cbc9f2f4 401 if (maniptype == NF_NAT_MANIP_SRC)
5b1158e9
JK
402 ct->status |= IPS_SRC_NAT;
403 else
404 ct->status |= IPS_DST_NAT;
405 }
406
cbc9f2f4 407 if (maniptype == NF_NAT_MANIP_SRC) {
5b1158e9
JK
408 unsigned int srchash;
409
5d0aa2cc
PM
410 srchash = hash_by_src(net, nf_ct_zone(ct),
411 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
02502f62 412 spin_lock_bh(&nf_nat_lock);
c7232c99 413 /* nf_conntrack_alter_reply might re-allocate extension aera */
b6b84d4a
YK
414 nat = nfct_nat(ct);
415 nat->ct = ct;
0c4c9288 416 hlist_add_head_rcu(&nat->bysource,
c7232c99 417 &net->ct.nat_bysource[srchash]);
02502f62 418 spin_unlock_bh(&nf_nat_lock);
5b1158e9
JK
419 }
420
421 /* It's done. */
cbc9f2f4 422 if (maniptype == NF_NAT_MANIP_DST)
a7c2f4d7 423 ct->status |= IPS_DST_NAT_DONE;
5b1158e9 424 else
a7c2f4d7 425 ct->status |= IPS_SRC_NAT_DONE;
5b1158e9
JK
426
427 return NF_ACCEPT;
428}
429EXPORT_SYMBOL(nf_nat_setup_info);
430
5b1158e9
JK
431/* Do packet manipulations according to nf_nat_setup_info. */
432unsigned int nf_nat_packet(struct nf_conn *ct,
433 enum ip_conntrack_info ctinfo,
434 unsigned int hooknum,
3db05fea 435 struct sk_buff *skb)
5b1158e9 436{
c7232c99
PM
437 const struct nf_nat_l3proto *l3proto;
438 const struct nf_nat_l4proto *l4proto;
5b1158e9
JK
439 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
440 unsigned long statusbit;
441 enum nf_nat_manip_type mtype = HOOK2MANIP(hooknum);
442
cbc9f2f4 443 if (mtype == NF_NAT_MANIP_SRC)
5b1158e9
JK
444 statusbit = IPS_SRC_NAT;
445 else
446 statusbit = IPS_DST_NAT;
447
448 /* Invert if this is reply dir. */
449 if (dir == IP_CT_DIR_REPLY)
450 statusbit ^= IPS_NAT_MASK;
451
452 /* Non-atomic: these bits don't change. */
453 if (ct->status & statusbit) {
454 struct nf_conntrack_tuple target;
455
456 /* We are aiming to look like inverse of other direction. */
457 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
458
c7232c99
PM
459 l3proto = __nf_nat_l3proto_find(target.src.l3num);
460 l4proto = __nf_nat_l4proto_find(target.src.l3num,
461 target.dst.protonum);
462 if (!l3proto->manip_pkt(skb, 0, l4proto, &target, mtype))
5b1158e9
JK
463 return NF_DROP;
464 }
465 return NF_ACCEPT;
466}
467EXPORT_SYMBOL_GPL(nf_nat_packet);
468
c7232c99
PM
469struct nf_nat_proto_clean {
470 u8 l3proto;
471 u8 l4proto;
c7232c99
PM
472};
473
c2d421e1
FW
474/* kill conntracks with affected NAT section */
475static int nf_nat_proto_remove(struct nf_conn *i, void *data)
5b1158e9 476{
c7232c99
PM
477 const struct nf_nat_proto_clean *clean = data;
478 struct nf_conn_nat *nat = nfct_nat(i);
5b1158e9 479
c7232c99 480 if (!nat)
5b1158e9 481 return 0;
c2d421e1 482
c7232c99
PM
483 if ((clean->l3proto && nf_ct_l3num(i) != clean->l3proto) ||
484 (clean->l4proto && nf_ct_protonum(i) != clean->l4proto))
5b1158e9
JK
485 return 0;
486
c2d421e1 487 return i->status & IPS_NAT_MASK ? 1 : 0;
c7232c99 488}
5b1158e9 489
5eb4491e
FW
490static int nf_nat_proto_clean(struct nf_conn *ct, void *data)
491{
492 struct nf_conn_nat *nat = nfct_nat(ct);
493
494 if (nf_nat_proto_remove(ct, data))
495 return 1;
496
497 if (!nat || !nat->ct)
498 return 0;
499
500 /* This netns is being destroyed, and conntrack has nat null binding.
501 * Remove it from bysource hash, as the table will be freed soon.
502 *
503 * Else, when the conntrack is destoyed, nf_nat_cleanup_conntrack()
504 * will delete entry from already-freed table.
505 */
506 if (!del_timer(&ct->timeout))
507 return 1;
508
509 spin_lock_bh(&nf_nat_lock);
510 hlist_del_rcu(&nat->bysource);
511 ct->status &= ~IPS_NAT_DONE_MASK;
512 nat->ct = NULL;
513 spin_unlock_bh(&nf_nat_lock);
514
515 add_timer(&ct->timeout);
516
517 /* don't delete conntrack. Although that would make things a lot
518 * simpler, we'd end up flushing all conntracks on nat rmmod.
519 */
520 return 0;
521}
522
c7232c99
PM
523static void nf_nat_l4proto_clean(u8 l3proto, u8 l4proto)
524{
525 struct nf_nat_proto_clean clean = {
526 .l3proto = l3proto,
527 .l4proto = l4proto,
528 };
529 struct net *net;
530
531 rtnl_lock();
c7232c99 532 for_each_net(net)
c2d421e1 533 nf_ct_iterate_cleanup(net, nf_nat_proto_remove, &clean);
c7232c99
PM
534 rtnl_unlock();
535}
5b1158e9 536
c7232c99
PM
537static void nf_nat_l3proto_clean(u8 l3proto)
538{
539 struct nf_nat_proto_clean clean = {
540 .l3proto = l3proto,
541 };
542 struct net *net;
543
544 rtnl_lock();
5b1158e9 545
c7232c99 546 for_each_net(net)
c2d421e1 547 nf_ct_iterate_cleanup(net, nf_nat_proto_remove, &clean);
c7232c99 548 rtnl_unlock();
5b1158e9 549}
5b1158e9
JK
550
551/* Protocol registration. */
c7232c99 552int nf_nat_l4proto_register(u8 l3proto, const struct nf_nat_l4proto *l4proto)
5b1158e9 553{
c7232c99
PM
554 const struct nf_nat_l4proto **l4protos;
555 unsigned int i;
5b1158e9
JK
556 int ret = 0;
557
c7232c99
PM
558 mutex_lock(&nf_nat_proto_mutex);
559 if (nf_nat_l4protos[l3proto] == NULL) {
560 l4protos = kmalloc(IPPROTO_MAX * sizeof(struct nf_nat_l4proto *),
561 GFP_KERNEL);
562 if (l4protos == NULL) {
563 ret = -ENOMEM;
564 goto out;
565 }
566
567 for (i = 0; i < IPPROTO_MAX; i++)
568 RCU_INIT_POINTER(l4protos[i], &nf_nat_l4proto_unknown);
569
570 /* Before making proto_array visible to lockless readers,
571 * we must make sure its content is committed to memory.
572 */
573 smp_wmb();
574
575 nf_nat_l4protos[l3proto] = l4protos;
576 }
577
eb733162 578 if (rcu_dereference_protected(
c7232c99
PM
579 nf_nat_l4protos[l3proto][l4proto->l4proto],
580 lockdep_is_held(&nf_nat_proto_mutex)
581 ) != &nf_nat_l4proto_unknown) {
5b1158e9
JK
582 ret = -EBUSY;
583 goto out;
584 }
c7232c99 585 RCU_INIT_POINTER(nf_nat_l4protos[l3proto][l4proto->l4proto], l4proto);
5b1158e9 586 out:
c7232c99 587 mutex_unlock(&nf_nat_proto_mutex);
5b1158e9
JK
588 return ret;
589}
c7232c99 590EXPORT_SYMBOL_GPL(nf_nat_l4proto_register);
5b1158e9 591
25985edc 592/* No one stores the protocol anywhere; simply delete it. */
c7232c99 593void nf_nat_l4proto_unregister(u8 l3proto, const struct nf_nat_l4proto *l4proto)
5b1158e9 594{
c7232c99
PM
595 mutex_lock(&nf_nat_proto_mutex);
596 RCU_INIT_POINTER(nf_nat_l4protos[l3proto][l4proto->l4proto],
597 &nf_nat_l4proto_unknown);
598 mutex_unlock(&nf_nat_proto_mutex);
e22a0548 599 synchronize_rcu();
c7232c99
PM
600
601 nf_nat_l4proto_clean(l3proto, l4proto->l4proto);
5b1158e9 602}
c7232c99
PM
603EXPORT_SYMBOL_GPL(nf_nat_l4proto_unregister);
604
605int nf_nat_l3proto_register(const struct nf_nat_l3proto *l3proto)
606{
607 int err;
608
609 err = nf_ct_l3proto_try_module_get(l3proto->l3proto);
610 if (err < 0)
611 return err;
612
613 mutex_lock(&nf_nat_proto_mutex);
614 RCU_INIT_POINTER(nf_nat_l4protos[l3proto->l3proto][IPPROTO_TCP],
615 &nf_nat_l4proto_tcp);
616 RCU_INIT_POINTER(nf_nat_l4protos[l3proto->l3proto][IPPROTO_UDP],
617 &nf_nat_l4proto_udp);
618 mutex_unlock(&nf_nat_proto_mutex);
619
620 RCU_INIT_POINTER(nf_nat_l3protos[l3proto->l3proto], l3proto);
621 return 0;
622}
623EXPORT_SYMBOL_GPL(nf_nat_l3proto_register);
624
625void nf_nat_l3proto_unregister(const struct nf_nat_l3proto *l3proto)
626{
627 mutex_lock(&nf_nat_proto_mutex);
628 RCU_INIT_POINTER(nf_nat_l3protos[l3proto->l3proto], NULL);
629 mutex_unlock(&nf_nat_proto_mutex);
630 synchronize_rcu();
631
632 nf_nat_l3proto_clean(l3proto->l3proto);
633 nf_ct_l3proto_module_put(l3proto->l3proto);
634}
635EXPORT_SYMBOL_GPL(nf_nat_l3proto_unregister);
5b1158e9 636
25985edc 637/* No one using conntrack by the time this called. */
d8a0509a
YK
638static void nf_nat_cleanup_conntrack(struct nf_conn *ct)
639{
640 struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT);
641
b6b84d4a 642 if (nat == NULL || nat->ct == NULL)
d8a0509a
YK
643 return;
644
41a7cab6 645 NF_CT_ASSERT(nat->ct->status & IPS_SRC_NAT_DONE);
d8a0509a 646
02502f62 647 spin_lock_bh(&nf_nat_lock);
4d354c57 648 hlist_del_rcu(&nat->bysource);
02502f62 649 spin_unlock_bh(&nf_nat_lock);
d8a0509a
YK
650}
651
86577c66 652static void nf_nat_move_storage(void *new, void *old)
2d59e5ca 653{
86577c66
PM
654 struct nf_conn_nat *new_nat = new;
655 struct nf_conn_nat *old_nat = old;
b6b84d4a 656 struct nf_conn *ct = old_nat->ct;
2d59e5ca 657
41a7cab6 658 if (!ct || !(ct->status & IPS_SRC_NAT_DONE))
2d59e5ca
YK
659 return;
660
02502f62 661 spin_lock_bh(&nf_nat_lock);
68b80f11 662 hlist_replace_rcu(&old_nat->bysource, &new_nat->bysource);
02502f62 663 spin_unlock_bh(&nf_nat_lock);
2d59e5ca
YK
664}
665
61eb3107 666static struct nf_ct_ext_type nat_extend __read_mostly = {
d8a0509a
YK
667 .len = sizeof(struct nf_conn_nat),
668 .align = __alignof__(struct nf_conn_nat),
669 .destroy = nf_nat_cleanup_conntrack,
670 .move = nf_nat_move_storage,
671 .id = NF_CT_EXT_NAT,
672 .flags = NF_CT_EXT_F_PREALLOC,
2d59e5ca
YK
673};
674
e6a7d3c0
PNA
675#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
676
677#include <linux/netfilter/nfnetlink.h>
678#include <linux/netfilter/nfnetlink_conntrack.h>
679
680static const struct nla_policy protonat_nla_policy[CTA_PROTONAT_MAX+1] = {
681 [CTA_PROTONAT_PORT_MIN] = { .type = NLA_U16 },
682 [CTA_PROTONAT_PORT_MAX] = { .type = NLA_U16 },
683};
684
685static int nfnetlink_parse_nat_proto(struct nlattr *attr,
686 const struct nf_conn *ct,
c7232c99 687 struct nf_nat_range *range)
e6a7d3c0
PNA
688{
689 struct nlattr *tb[CTA_PROTONAT_MAX+1];
c7232c99 690 const struct nf_nat_l4proto *l4proto;
e6a7d3c0
PNA
691 int err;
692
693 err = nla_parse_nested(tb, CTA_PROTONAT_MAX, attr, protonat_nla_policy);
694 if (err < 0)
695 return err;
696
c7232c99
PM
697 l4proto = __nf_nat_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
698 if (l4proto->nlattr_to_range)
699 err = l4proto->nlattr_to_range(tb, range);
700
e6a7d3c0
PNA
701 return err;
702}
703
704static const struct nla_policy nat_nla_policy[CTA_NAT_MAX+1] = {
c7232c99
PM
705 [CTA_NAT_V4_MINIP] = { .type = NLA_U32 },
706 [CTA_NAT_V4_MAXIP] = { .type = NLA_U32 },
58a317f1
PM
707 [CTA_NAT_V6_MINIP] = { .len = sizeof(struct in6_addr) },
708 [CTA_NAT_V6_MAXIP] = { .len = sizeof(struct in6_addr) },
329fb58a 709 [CTA_NAT_PROTO] = { .type = NLA_NESTED },
e6a7d3c0
PNA
710};
711
712static int
39938324 713nfnetlink_parse_nat(const struct nlattr *nat,
c7232c99 714 const struct nf_conn *ct, struct nf_nat_range *range)
e6a7d3c0 715{
c7232c99 716 const struct nf_nat_l3proto *l3proto;
e6a7d3c0
PNA
717 struct nlattr *tb[CTA_NAT_MAX+1];
718 int err;
719
720 memset(range, 0, sizeof(*range));
721
722 err = nla_parse_nested(tb, CTA_NAT_MAX, nat, nat_nla_policy);
723 if (err < 0)
724 return err;
725
c7232c99
PM
726 rcu_read_lock();
727 l3proto = __nf_nat_l3proto_find(nf_ct_l3num(ct));
728 if (l3proto == NULL) {
729 err = -EAGAIN;
730 goto out;
731 }
732 err = l3proto->nlattr_to_range(tb, range);
733 if (err < 0)
734 goto out;
e6a7d3c0
PNA
735
736 if (!tb[CTA_NAT_PROTO])
c7232c99 737 goto out;
e6a7d3c0
PNA
738
739 err = nfnetlink_parse_nat_proto(tb[CTA_NAT_PROTO], ct, range);
c7232c99
PM
740out:
741 rcu_read_unlock();
742 return err;
e6a7d3c0
PNA
743}
744
745static int
746nfnetlink_parse_nat_setup(struct nf_conn *ct,
747 enum nf_nat_manip_type manip,
39938324 748 const struct nlattr *attr)
e6a7d3c0 749{
c7232c99
PM
750 struct nf_nat_range range;
751 int err;
e6a7d3c0 752
c7232c99
PM
753 err = nfnetlink_parse_nat(attr, ct, &range);
754 if (err < 0)
755 return err;
e6a7d3c0
PNA
756 if (nf_nat_initialized(ct, manip))
757 return -EEXIST;
758
759 return nf_nat_setup_info(ct, &range, manip);
760}
761#else
762static int
763nfnetlink_parse_nat_setup(struct nf_conn *ct,
764 enum nf_nat_manip_type manip,
39938324 765 const struct nlattr *attr)
e6a7d3c0
PNA
766{
767 return -EOPNOTSUPP;
768}
769#endif
770
0c4c9288
AD
771static int __net_init nf_nat_net_init(struct net *net)
772{
d696c7bd 773 /* Leave them the same for the moment. */
c7232c99
PM
774 net->ct.nat_htable_size = net->ct.htable_size;
775 net->ct.nat_bysource = nf_ct_alloc_hashtable(&net->ct.nat_htable_size, 0);
776 if (!net->ct.nat_bysource)
0c4c9288
AD
777 return -ENOMEM;
778 return 0;
779}
780
0c4c9288
AD
781static void __net_exit nf_nat_net_exit(struct net *net)
782{
c7232c99
PM
783 struct nf_nat_proto_clean clean = {};
784
5eb4491e 785 nf_ct_iterate_cleanup(net, nf_nat_proto_clean, &clean);
0c4c9288 786 synchronize_rcu();
c7232c99 787 nf_ct_free_hashtable(net->ct.nat_bysource, net->ct.nat_htable_size);
0c4c9288
AD
788}
789
790static struct pernet_operations nf_nat_net_ops = {
791 .init = nf_nat_net_init,
792 .exit = nf_nat_net_exit,
793};
794
544d5c7d
PNA
795static struct nf_ct_helper_expectfn follow_master_nat = {
796 .name = "nat-follow-master",
797 .expectfn = nf_nat_follow_master,
798};
799
d584a61a
PNA
800static struct nfq_ct_nat_hook nfq_ct_nat = {
801 .seq_adjust = nf_nat_tcp_seq_adjust,
802};
803
5b1158e9
JK
804static int __init nf_nat_init(void)
805{
2d59e5ca
YK
806 int ret;
807
808 ret = nf_ct_extend_register(&nat_extend);
809 if (ret < 0) {
810 printk(KERN_ERR "nf_nat_core: Unable to register extension\n");
811 return ret;
812 }
5b1158e9 813
0c4c9288
AD
814 ret = register_pernet_subsys(&nf_nat_net_ops);
815 if (ret < 0)
2d59e5ca 816 goto cleanup_extend;
5b1158e9 817
c7232c99 818 nf_ct_helper_expectfn_register(&follow_master_nat);
5b1158e9 819
5b1158e9 820 /* Initialize fake conntrack so that NAT will skip it */
5bfddbd4 821 nf_ct_untracked_status_or(IPS_NAT_DONE_MASK);
5b1158e9 822
dd13b010 823 BUG_ON(nf_nat_seq_adjust_hook != NULL);
a9b3cd7f 824 RCU_INIT_POINTER(nf_nat_seq_adjust_hook, nf_nat_seq_adjust);
e6a7d3c0 825 BUG_ON(nfnetlink_parse_nat_setup_hook != NULL);
a9b3cd7f 826 RCU_INIT_POINTER(nfnetlink_parse_nat_setup_hook,
e6a7d3c0 827 nfnetlink_parse_nat_setup);
f9dd09c7 828 BUG_ON(nf_ct_nat_offset != NULL);
a9b3cd7f 829 RCU_INIT_POINTER(nf_ct_nat_offset, nf_nat_get_offset);
d584a61a 830 RCU_INIT_POINTER(nfq_ct_nat_hook, &nfq_ct_nat);
c7232c99
PM
831#ifdef CONFIG_XFRM
832 BUG_ON(nf_nat_decode_session_hook != NULL);
833 RCU_INIT_POINTER(nf_nat_decode_session_hook, __nf_nat_decode_session);
834#endif
5b1158e9 835 return 0;
2d59e5ca
YK
836
837 cleanup_extend:
838 nf_ct_extend_unregister(&nat_extend);
839 return ret;
5b1158e9
JK
840}
841
5b1158e9
JK
842static void __exit nf_nat_cleanup(void)
843{
c7232c99
PM
844 unsigned int i;
845
0c4c9288 846 unregister_pernet_subsys(&nf_nat_net_ops);
2d59e5ca 847 nf_ct_extend_unregister(&nat_extend);
544d5c7d 848 nf_ct_helper_expectfn_unregister(&follow_master_nat);
a9b3cd7f
SH
849 RCU_INIT_POINTER(nf_nat_seq_adjust_hook, NULL);
850 RCU_INIT_POINTER(nfnetlink_parse_nat_setup_hook, NULL);
851 RCU_INIT_POINTER(nf_ct_nat_offset, NULL);
d584a61a 852 RCU_INIT_POINTER(nfq_ct_nat_hook, NULL);
c7232c99
PM
853#ifdef CONFIG_XFRM
854 RCU_INIT_POINTER(nf_nat_decode_session_hook, NULL);
855#endif
09ab11eb
LZ
856 synchronize_rcu();
857
c7232c99
PM
858 for (i = 0; i < NFPROTO_NUMPROTO; i++)
859 kfree(nf_nat_l4protos[i]);
dd13b010 860 synchronize_net();
5b1158e9
JK
861}
862
863MODULE_LICENSE("GPL");
864
865module_init(nf_nat_init);
866module_exit(nf_nat_cleanup);