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