]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/nf_nat_core.c
netfilter: nat: fix cmp return value
[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
45static struct rhashtable 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
74 family = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
75 rcu_read_lock();
76 l3proto = __nf_nat_l3proto_find(family);
77 if (l3proto == NULL)
78 goto out;
79
80 dir = CTINFO2DIR(ctinfo);
81 if (dir == IP_CT_DIR_ORIGINAL)
82 statusbit = IPS_DST_NAT;
83 else
84 statusbit = IPS_SRC_NAT;
85
86 l3proto->decode_session(skb, ct, dir, statusbit, fl);
87out:
88 rcu_read_unlock();
89}
90
c7af6483 91int nf_xfrm_me_harder(struct net *net, struct sk_buff *skb, unsigned int family)
c7232c99
PM
92{
93 struct flowi fl;
94 unsigned int hh_len;
95 struct dst_entry *dst;
aaa795ad 96 int err;
c7232c99 97
aaa795ad 98 err = xfrm_decode_session(skb, &fl, family);
e7e6f630 99 if (err < 0)
aaa795ad 100 return err;
c7232c99
PM
101
102 dst = skb_dst(skb);
103 if (dst->xfrm)
104 dst = ((struct xfrm_dst *)dst)->route;
105 dst_hold(dst);
106
c7af6483 107 dst = xfrm_lookup(net, dst, &fl, skb->sk, 0);
c7232c99 108 if (IS_ERR(dst))
aaa795ad 109 return PTR_ERR(dst);
c7232c99
PM
110
111 skb_dst_drop(skb);
112 skb_dst_set(skb, dst);
113
114 /* Change in oif may mean change in hh_len. */
115 hh_len = skb_dst(skb)->dev->hard_header_len;
116 if (skb_headroom(skb) < hh_len &&
117 pskb_expand_head(skb, hh_len - skb_headroom(skb), 0, GFP_ATOMIC))
aaa795ad 118 return -ENOMEM;
c7232c99
PM
119 return 0;
120}
121EXPORT_SYMBOL(nf_xfrm_me_harder);
122#endif /* CONFIG_XFRM */
123
870190a9 124static u32 nf_nat_bysource_hash(const void *data, u32 len, u32 seed)
5b1158e9 125{
870190a9
FW
126 const struct nf_conntrack_tuple *t;
127 const struct nf_conn *ct = data;
7001c6d1 128
870190a9 129 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
5b1158e9 130 /* Original src, to ensure we map it consistently if poss. */
8fc54f68 131
870190a9
FW
132 seed ^= net_hash_mix(nf_ct_net(ct));
133 return jhash2((const u32 *)&t->src, sizeof(t->src) / sizeof(u32),
134 t->dst.protonum ^ seed);
5b1158e9
JK
135}
136
5b1158e9
JK
137/* Is this tuple already taken? (not by us) */
138int
139nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
140 const struct nf_conn *ignored_conntrack)
141{
142 /* Conntrack tracking doesn't keep track of outgoing tuples; only
c7232c99
PM
143 * incoming ones. NAT means they don't have a fixed mapping,
144 * so we invert the tuple and look for the incoming reply.
145 *
146 * We could keep a separate hash if this proves too slow.
147 */
5b1158e9
JK
148 struct nf_conntrack_tuple reply;
149
150 nf_ct_invert_tuplepr(&reply, tuple);
151 return nf_conntrack_tuple_taken(&reply, ignored_conntrack);
152}
153EXPORT_SYMBOL(nf_nat_used_tuple);
154
155/* If we source map this tuple so reply looks like reply_tuple, will
c7232c99
PM
156 * that meet the constraints of range.
157 */
158static int in_range(const struct nf_nat_l3proto *l3proto,
159 const struct nf_nat_l4proto *l4proto,
160 const struct nf_conntrack_tuple *tuple,
161 const struct nf_nat_range *range)
5b1158e9 162{
5b1158e9 163 /* If we are supposed to map IPs, then we must be in the
c7232c99
PM
164 * range specified, otherwise let this drag us onto a new src IP.
165 */
166 if (range->flags & NF_NAT_RANGE_MAP_IPS &&
167 !l3proto->in_range(tuple, range))
168 return 0;
5b1158e9 169
cbc9f2f4 170 if (!(range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) ||
c7232c99
PM
171 l4proto->in_range(tuple, NF_NAT_MANIP_SRC,
172 &range->min_proto, &range->max_proto))
173 return 1;
5b1158e9 174
c7232c99 175 return 0;
5b1158e9
JK
176}
177
178static inline int
179same_src(const struct nf_conn *ct,
180 const struct nf_conntrack_tuple *tuple)
181{
182 const struct nf_conntrack_tuple *t;
183
184 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
185 return (t->dst.protonum == tuple->dst.protonum &&
c7232c99 186 nf_inet_addr_cmp(&t->src.u3, &tuple->src.u3) &&
5b1158e9
JK
187 t->src.u.all == tuple->src.u.all);
188}
189
870190a9
FW
190static int nf_nat_bysource_cmp(struct rhashtable_compare_arg *arg,
191 const void *obj)
192{
193 const struct nf_nat_conn_key *key = arg->key;
194 const struct nf_conn *ct = obj;
195
728e87b4
FW
196 if (!same_src(ct, key->tuple) ||
197 !net_eq(nf_ct_net(ct), key->net) ||
198 !nf_ct_zone_equal(ct, key->zone, IP_CT_DIR_ORIGINAL))
199 return 1;
200
201 return 0;
870190a9
FW
202}
203
204static struct rhashtable_params nf_nat_bysource_params = {
205 .head_offset = offsetof(struct nf_conn, nat_bysource),
206 .obj_hashfn = nf_nat_bysource_hash,
207 .obj_cmpfn = nf_nat_bysource_cmp,
208 .nelem_hint = 256,
209 .min_size = 1024,
210 .nulls_base = (1U << RHT_BASE_SHIFT),
211};
212
5b1158e9
JK
213/* Only called for SRC manip */
214static int
308ac914
DB
215find_appropriate_src(struct net *net,
216 const struct nf_conntrack_zone *zone,
c7232c99
PM
217 const struct nf_nat_l3proto *l3proto,
218 const struct nf_nat_l4proto *l4proto,
0c4c9288 219 const struct nf_conntrack_tuple *tuple,
5b1158e9 220 struct nf_conntrack_tuple *result,
c7232c99 221 const struct nf_nat_range *range)
5b1158e9 222{
72b72949 223 const struct nf_conn *ct;
870190a9
FW
224 struct nf_nat_conn_key key = {
225 .net = net,
226 .tuple = tuple,
227 .zone = zone
228 };
5b1158e9 229
870190a9
FW
230 ct = rhashtable_lookup_fast(&nf_nat_bysource_table, &key,
231 nf_nat_bysource_params);
232 if (!ct)
233 return 0;
234
235 nf_ct_invert_tuplepr(result,
236 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
237 result->dst = tuple->dst;
238
239 return in_range(l3proto, l4proto, result, range);
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 struct nf_conn_nat *nat;
5b1158e9 413
2d59e5ca 414 /* nat helper or nfctnetlink also setup binding */
f768e5bd
FW
415 nat = nf_ct_nat_ext_add(ct);
416 if (nat == NULL)
417 return NF_ACCEPT;
2d59e5ca 418
cbc9f2f4
PM
419 NF_CT_ASSERT(maniptype == NF_NAT_MANIP_SRC ||
420 maniptype == NF_NAT_MANIP_DST);
5b1158e9
JK
421 BUG_ON(nf_nat_initialized(ct, maniptype));
422
423 /* What we've got will look like inverse of reply. Normally
c7232c99
PM
424 * this is what is in the conntrack, except for prior
425 * manipulations (future optimization: if num_manips == 0,
426 * orig_tp = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
427 */
5b1158e9
JK
428 nf_ct_invert_tuplepr(&curr_tuple,
429 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
430
431 get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);
432
433 if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {
434 struct nf_conntrack_tuple reply;
435
436 /* Alter conntrack table so will recognize replies. */
437 nf_ct_invert_tuplepr(&reply, &new_tuple);
438 nf_conntrack_alter_reply(ct, &reply);
439
440 /* Non-atomic: we own this at the moment. */
cbc9f2f4 441 if (maniptype == NF_NAT_MANIP_SRC)
5b1158e9
JK
442 ct->status |= IPS_SRC_NAT;
443 else
444 ct->status |= IPS_DST_NAT;
41d73ec0
PM
445
446 if (nfct_help(ct))
4440a2ab
GF
447 if (!nfct_seqadj_ext_add(ct))
448 return NF_DROP;
5b1158e9
JK
449 }
450
cbc9f2f4 451 if (maniptype == NF_NAT_MANIP_SRC) {
870190a9
FW
452 int err;
453
454 err = rhashtable_insert_fast(&nf_nat_bysource_table,
455 &ct->nat_bysource,
456 nf_nat_bysource_params);
457 if (err)
458 return NF_DROP;
5b1158e9
JK
459 }
460
461 /* It's done. */
cbc9f2f4 462 if (maniptype == NF_NAT_MANIP_DST)
a7c2f4d7 463 ct->status |= IPS_DST_NAT_DONE;
5b1158e9 464 else
a7c2f4d7 465 ct->status |= IPS_SRC_NAT_DONE;
5b1158e9
JK
466
467 return NF_ACCEPT;
468}
469EXPORT_SYMBOL(nf_nat_setup_info);
470
0eba801b
PNA
471static unsigned int
472__nf_nat_alloc_null_binding(struct nf_conn *ct, enum nf_nat_manip_type manip)
f59cb045
PNA
473{
474 /* Force range to this IP; let proto decide mapping for
475 * per-proto parts (hence not IP_NAT_RANGE_PROTO_SPECIFIED).
476 * Use reply in case it's already been mangled (eg local packet).
477 */
478 union nf_inet_addr ip =
0eba801b 479 (manip == NF_NAT_MANIP_SRC ?
f59cb045
PNA
480 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3 :
481 ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.u3);
482 struct nf_nat_range range = {
483 .flags = NF_NAT_RANGE_MAP_IPS,
484 .min_addr = ip,
485 .max_addr = ip,
486 };
0eba801b
PNA
487 return nf_nat_setup_info(ct, &range, manip);
488}
489
490unsigned int
491nf_nat_alloc_null_binding(struct nf_conn *ct, unsigned int hooknum)
492{
493 return __nf_nat_alloc_null_binding(ct, HOOK2MANIP(hooknum));
f59cb045
PNA
494}
495EXPORT_SYMBOL_GPL(nf_nat_alloc_null_binding);
496
5b1158e9
JK
497/* Do packet manipulations according to nf_nat_setup_info. */
498unsigned int nf_nat_packet(struct nf_conn *ct,
499 enum ip_conntrack_info ctinfo,
500 unsigned int hooknum,
3db05fea 501 struct sk_buff *skb)
5b1158e9 502{
c7232c99
PM
503 const struct nf_nat_l3proto *l3proto;
504 const struct nf_nat_l4proto *l4proto;
5b1158e9
JK
505 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
506 unsigned long statusbit;
507 enum nf_nat_manip_type mtype = HOOK2MANIP(hooknum);
508
cbc9f2f4 509 if (mtype == NF_NAT_MANIP_SRC)
5b1158e9
JK
510 statusbit = IPS_SRC_NAT;
511 else
512 statusbit = IPS_DST_NAT;
513
514 /* Invert if this is reply dir. */
515 if (dir == IP_CT_DIR_REPLY)
516 statusbit ^= IPS_NAT_MASK;
517
518 /* Non-atomic: these bits don't change. */
519 if (ct->status & statusbit) {
520 struct nf_conntrack_tuple target;
521
522 /* We are aiming to look like inverse of other direction. */
523 nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
524
c7232c99
PM
525 l3proto = __nf_nat_l3proto_find(target.src.l3num);
526 l4proto = __nf_nat_l4proto_find(target.src.l3num,
527 target.dst.protonum);
528 if (!l3proto->manip_pkt(skb, 0, l4proto, &target, mtype))
5b1158e9
JK
529 return NF_DROP;
530 }
531 return NF_ACCEPT;
532}
533EXPORT_SYMBOL_GPL(nf_nat_packet);
534
c7232c99
PM
535struct nf_nat_proto_clean {
536 u8 l3proto;
537 u8 l4proto;
c7232c99
PM
538};
539
c2d421e1
FW
540/* kill conntracks with affected NAT section */
541static int nf_nat_proto_remove(struct nf_conn *i, void *data)
5b1158e9 542{
c7232c99
PM
543 const struct nf_nat_proto_clean *clean = data;
544 struct nf_conn_nat *nat = nfct_nat(i);
5b1158e9 545
c7232c99 546 if (!nat)
5b1158e9 547 return 0;
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{
558 struct nf_conn_nat *nat = nfct_nat(ct);
559
560 if (nf_nat_proto_remove(ct, data))
561 return 1;
562
7c966435 563 if (!nat)
945b2b2d
FW
564 return 0;
565
566 /* This netns is being destroyed, and conntrack has nat null binding.
567 * Remove it from bysource hash, as the table will be freed soon.
568 *
569 * Else, when the conntrack is destoyed, nf_nat_cleanup_conntrack()
570 * will delete entry from already-freed table.
571 */
945b2b2d 572 ct->status &= ~IPS_NAT_DONE_MASK;
870190a9
FW
573 rhashtable_remove_fast(&nf_nat_bysource_table, &ct->nat_bysource,
574 nf_nat_bysource_params);
945b2b2d 575
945b2b2d
FW
576 /* don't delete conntrack. Although that would make things a lot
577 * simpler, we'd end up flushing all conntracks on nat rmmod.
578 */
579 return 0;
580}
581
c7232c99
PM
582static void nf_nat_l4proto_clean(u8 l3proto, u8 l4proto)
583{
584 struct nf_nat_proto_clean clean = {
585 .l3proto = l3proto,
586 .l4proto = l4proto,
587 };
588 struct net *net;
589
590 rtnl_lock();
c7232c99 591 for_each_net(net)
c655bc68 592 nf_ct_iterate_cleanup(net, nf_nat_proto_remove, &clean, 0, 0);
c7232c99
PM
593 rtnl_unlock();
594}
5b1158e9 595
c7232c99
PM
596static void nf_nat_l3proto_clean(u8 l3proto)
597{
598 struct nf_nat_proto_clean clean = {
599 .l3proto = l3proto,
600 };
601 struct net *net;
602
603 rtnl_lock();
5b1158e9 604
c7232c99 605 for_each_net(net)
c655bc68 606 nf_ct_iterate_cleanup(net, nf_nat_proto_remove, &clean, 0, 0);
c7232c99 607 rtnl_unlock();
5b1158e9 608}
5b1158e9
JK
609
610/* Protocol registration. */
c7232c99 611int nf_nat_l4proto_register(u8 l3proto, const struct nf_nat_l4proto *l4proto)
5b1158e9 612{
c7232c99
PM
613 const struct nf_nat_l4proto **l4protos;
614 unsigned int i;
5b1158e9
JK
615 int ret = 0;
616
c7232c99
PM
617 mutex_lock(&nf_nat_proto_mutex);
618 if (nf_nat_l4protos[l3proto] == NULL) {
619 l4protos = kmalloc(IPPROTO_MAX * sizeof(struct nf_nat_l4proto *),
620 GFP_KERNEL);
621 if (l4protos == NULL) {
622 ret = -ENOMEM;
623 goto out;
624 }
625
626 for (i = 0; i < IPPROTO_MAX; i++)
627 RCU_INIT_POINTER(l4protos[i], &nf_nat_l4proto_unknown);
628
629 /* Before making proto_array visible to lockless readers,
630 * we must make sure its content is committed to memory.
631 */
632 smp_wmb();
633
634 nf_nat_l4protos[l3proto] = l4protos;
635 }
636
eb733162 637 if (rcu_dereference_protected(
c7232c99
PM
638 nf_nat_l4protos[l3proto][l4proto->l4proto],
639 lockdep_is_held(&nf_nat_proto_mutex)
640 ) != &nf_nat_l4proto_unknown) {
5b1158e9
JK
641 ret = -EBUSY;
642 goto out;
643 }
c7232c99 644 RCU_INIT_POINTER(nf_nat_l4protos[l3proto][l4proto->l4proto], l4proto);
5b1158e9 645 out:
c7232c99 646 mutex_unlock(&nf_nat_proto_mutex);
5b1158e9
JK
647 return ret;
648}
c7232c99 649EXPORT_SYMBOL_GPL(nf_nat_l4proto_register);
5b1158e9 650
25985edc 651/* No one stores the protocol anywhere; simply delete it. */
c7232c99 652void nf_nat_l4proto_unregister(u8 l3proto, const struct nf_nat_l4proto *l4proto)
5b1158e9 653{
c7232c99
PM
654 mutex_lock(&nf_nat_proto_mutex);
655 RCU_INIT_POINTER(nf_nat_l4protos[l3proto][l4proto->l4proto],
656 &nf_nat_l4proto_unknown);
657 mutex_unlock(&nf_nat_proto_mutex);
e22a0548 658 synchronize_rcu();
c7232c99
PM
659
660 nf_nat_l4proto_clean(l3proto, l4proto->l4proto);
5b1158e9 661}
c7232c99
PM
662EXPORT_SYMBOL_GPL(nf_nat_l4proto_unregister);
663
664int nf_nat_l3proto_register(const struct nf_nat_l3proto *l3proto)
665{
666 int err;
667
668 err = nf_ct_l3proto_try_module_get(l3proto->l3proto);
669 if (err < 0)
670 return err;
671
672 mutex_lock(&nf_nat_proto_mutex);
673 RCU_INIT_POINTER(nf_nat_l4protos[l3proto->l3proto][IPPROTO_TCP],
674 &nf_nat_l4proto_tcp);
675 RCU_INIT_POINTER(nf_nat_l4protos[l3proto->l3proto][IPPROTO_UDP],
676 &nf_nat_l4proto_udp);
677 mutex_unlock(&nf_nat_proto_mutex);
678
679 RCU_INIT_POINTER(nf_nat_l3protos[l3proto->l3proto], l3proto);
680 return 0;
681}
682EXPORT_SYMBOL_GPL(nf_nat_l3proto_register);
683
684void nf_nat_l3proto_unregister(const struct nf_nat_l3proto *l3proto)
685{
686 mutex_lock(&nf_nat_proto_mutex);
687 RCU_INIT_POINTER(nf_nat_l3protos[l3proto->l3proto], NULL);
688 mutex_unlock(&nf_nat_proto_mutex);
689 synchronize_rcu();
690
691 nf_nat_l3proto_clean(l3proto->l3proto);
692 nf_ct_l3proto_module_put(l3proto->l3proto);
693}
694EXPORT_SYMBOL_GPL(nf_nat_l3proto_unregister);
5b1158e9 695
25985edc 696/* No one using conntrack by the time this called. */
d8a0509a
YK
697static void nf_nat_cleanup_conntrack(struct nf_conn *ct)
698{
699 struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT);
700
7c966435 701 if (!nat)
d8a0509a
YK
702 return;
703
870190a9
FW
704 rhashtable_remove_fast(&nf_nat_bysource_table, &ct->nat_bysource,
705 nf_nat_bysource_params);
2d59e5ca
YK
706}
707
61eb3107 708static struct nf_ct_ext_type nat_extend __read_mostly = {
d8a0509a
YK
709 .len = sizeof(struct nf_conn_nat),
710 .align = __alignof__(struct nf_conn_nat),
711 .destroy = nf_nat_cleanup_conntrack,
d8a0509a
YK
712 .id = NF_CT_EXT_NAT,
713 .flags = NF_CT_EXT_F_PREALLOC,
2d59e5ca
YK
714};
715
24de3d37 716#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
e6a7d3c0
PNA
717
718#include <linux/netfilter/nfnetlink.h>
719#include <linux/netfilter/nfnetlink_conntrack.h>
720
721static const struct nla_policy protonat_nla_policy[CTA_PROTONAT_MAX+1] = {
722 [CTA_PROTONAT_PORT_MIN] = { .type = NLA_U16 },
723 [CTA_PROTONAT_PORT_MAX] = { .type = NLA_U16 },
724};
725
726static int nfnetlink_parse_nat_proto(struct nlattr *attr,
727 const struct nf_conn *ct,
c7232c99 728 struct nf_nat_range *range)
e6a7d3c0
PNA
729{
730 struct nlattr *tb[CTA_PROTONAT_MAX+1];
c7232c99 731 const struct nf_nat_l4proto *l4proto;
e6a7d3c0
PNA
732 int err;
733
734 err = nla_parse_nested(tb, CTA_PROTONAT_MAX, attr, protonat_nla_policy);
735 if (err < 0)
736 return err;
737
c7232c99
PM
738 l4proto = __nf_nat_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
739 if (l4proto->nlattr_to_range)
740 err = l4proto->nlattr_to_range(tb, range);
741
e6a7d3c0
PNA
742 return err;
743}
744
745static const struct nla_policy nat_nla_policy[CTA_NAT_MAX+1] = {
c7232c99
PM
746 [CTA_NAT_V4_MINIP] = { .type = NLA_U32 },
747 [CTA_NAT_V4_MAXIP] = { .type = NLA_U32 },
58a317f1
PM
748 [CTA_NAT_V6_MINIP] = { .len = sizeof(struct in6_addr) },
749 [CTA_NAT_V6_MAXIP] = { .len = sizeof(struct in6_addr) },
329fb58a 750 [CTA_NAT_PROTO] = { .type = NLA_NESTED },
e6a7d3c0
PNA
751};
752
753static int
39938324 754nfnetlink_parse_nat(const struct nlattr *nat,
0eba801b
PNA
755 const struct nf_conn *ct, struct nf_nat_range *range,
756 const struct nf_nat_l3proto *l3proto)
e6a7d3c0
PNA
757{
758 struct nlattr *tb[CTA_NAT_MAX+1];
759 int err;
760
761 memset(range, 0, sizeof(*range));
762
763 err = nla_parse_nested(tb, CTA_NAT_MAX, nat, nat_nla_policy);
764 if (err < 0)
765 return err;
766
c7232c99
PM
767 err = l3proto->nlattr_to_range(tb, range);
768 if (err < 0)
0eba801b 769 return err;
e6a7d3c0
PNA
770
771 if (!tb[CTA_NAT_PROTO])
0eba801b 772 return 0;
e6a7d3c0 773
0eba801b 774 return nfnetlink_parse_nat_proto(tb[CTA_NAT_PROTO], ct, range);
e6a7d3c0
PNA
775}
776
0eba801b 777/* This function is called under rcu_read_lock() */
e6a7d3c0
PNA
778static int
779nfnetlink_parse_nat_setup(struct nf_conn *ct,
780 enum nf_nat_manip_type manip,
39938324 781 const struct nlattr *attr)
e6a7d3c0 782{
c7232c99 783 struct nf_nat_range range;
0eba801b 784 const struct nf_nat_l3proto *l3proto;
c7232c99 785 int err;
e6a7d3c0 786
0eba801b
PNA
787 /* Should not happen, restricted to creating new conntracks
788 * via ctnetlink.
789 */
790 if (WARN_ON_ONCE(nf_nat_initialized(ct, manip)))
791 return -EEXIST;
792
793 /* Make sure that L3 NAT is there by when we call nf_nat_setup_info to
794 * attach the null binding, otherwise this may oops.
795 */
796 l3proto = __nf_nat_l3proto_find(nf_ct_l3num(ct));
797 if (l3proto == NULL)
798 return -EAGAIN;
799
800 /* No NAT information has been passed, allocate the null-binding */
801 if (attr == NULL)
802 return __nf_nat_alloc_null_binding(ct, manip);
803
804 err = nfnetlink_parse_nat(attr, ct, &range, l3proto);
c7232c99
PM
805 if (err < 0)
806 return err;
e6a7d3c0 807
ecfcdfec 808 return nf_nat_setup_info(ct, &range, manip) == NF_DROP ? -ENOMEM : 0;
e6a7d3c0
PNA
809}
810#else
811static int
812nfnetlink_parse_nat_setup(struct nf_conn *ct,
813 enum nf_nat_manip_type manip,
39938324 814 const struct nlattr *attr)
e6a7d3c0
PNA
815{
816 return -EOPNOTSUPP;
817}
818#endif
819
0c4c9288
AD
820static void __net_exit nf_nat_net_exit(struct net *net)
821{
c7232c99
PM
822 struct nf_nat_proto_clean clean = {};
823
945b2b2d 824 nf_ct_iterate_cleanup(net, nf_nat_proto_clean, &clean, 0, 0);
0c4c9288
AD
825}
826
827static struct pernet_operations nf_nat_net_ops = {
0c4c9288
AD
828 .exit = nf_nat_net_exit,
829};
830
544d5c7d
PNA
831static struct nf_ct_helper_expectfn follow_master_nat = {
832 .name = "nat-follow-master",
833 .expectfn = nf_nat_follow_master,
834};
835
5b1158e9
JK
836static int __init nf_nat_init(void)
837{
2d59e5ca
YK
838 int ret;
839
870190a9
FW
840 ret = rhashtable_init(&nf_nat_bysource_table, &nf_nat_bysource_params);
841 if (ret)
842 return ret;
a76ae1c8 843
2d59e5ca
YK
844 ret = nf_ct_extend_register(&nat_extend);
845 if (ret < 0) {
870190a9 846 rhashtable_destroy(&nf_nat_bysource_table);
2d59e5ca
YK
847 printk(KERN_ERR "nf_nat_core: Unable to register extension\n");
848 return ret;
849 }
5b1158e9 850
0c4c9288
AD
851 ret = register_pernet_subsys(&nf_nat_net_ops);
852 if (ret < 0)
2d59e5ca 853 goto cleanup_extend;
5b1158e9 854
c7232c99 855 nf_ct_helper_expectfn_register(&follow_master_nat);
5b1158e9 856
5b1158e9 857 /* Initialize fake conntrack so that NAT will skip it */
5bfddbd4 858 nf_ct_untracked_status_or(IPS_NAT_DONE_MASK);
5b1158e9 859
e6a7d3c0 860 BUG_ON(nfnetlink_parse_nat_setup_hook != NULL);
a9b3cd7f 861 RCU_INIT_POINTER(nfnetlink_parse_nat_setup_hook,
e6a7d3c0 862 nfnetlink_parse_nat_setup);
c7232c99
PM
863#ifdef CONFIG_XFRM
864 BUG_ON(nf_nat_decode_session_hook != NULL);
865 RCU_INIT_POINTER(nf_nat_decode_session_hook, __nf_nat_decode_session);
866#endif
5b1158e9 867 return 0;
2d59e5ca
YK
868
869 cleanup_extend:
870190a9 870 rhashtable_destroy(&nf_nat_bysource_table);
2d59e5ca
YK
871 nf_ct_extend_unregister(&nat_extend);
872 return ret;
5b1158e9
JK
873}
874
5b1158e9
JK
875static void __exit nf_nat_cleanup(void)
876{
c7232c99
PM
877 unsigned int i;
878
0c4c9288 879 unregister_pernet_subsys(&nf_nat_net_ops);
2d59e5ca 880 nf_ct_extend_unregister(&nat_extend);
544d5c7d 881 nf_ct_helper_expectfn_unregister(&follow_master_nat);
a9b3cd7f 882 RCU_INIT_POINTER(nfnetlink_parse_nat_setup_hook, NULL);
c7232c99
PM
883#ifdef CONFIG_XFRM
884 RCU_INIT_POINTER(nf_nat_decode_session_hook, NULL);
885#endif
886 for (i = 0; i < NFPROTO_NUMPROTO; i++)
887 kfree(nf_nat_l4protos[i]);
870190a9
FW
888
889 rhashtable_destroy(&nf_nat_bysource_table);
5b1158e9
JK
890}
891
892MODULE_LICENSE("GPL");
893
894module_init(nf_nat_init);
895module_exit(nf_nat_cleanup);