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