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