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