GNU Linux-libre 4.9.309-gnu1
[releases.git] / net / ipv6 / netfilter / nf_nat_l3proto_ipv6.c
1 /*
2  * Copyright (c) 2011 Patrick McHardy <kaber@trash.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * Development of IPv6 NAT funded by Astaro.
9  */
10 #include <linux/types.h>
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/ipv6.h>
14 #include <linux/netfilter.h>
15 #include <linux/netfilter_ipv6.h>
16 #include <net/secure_seq.h>
17 #include <net/checksum.h>
18 #include <net/ip6_checksum.h>
19 #include <net/ip6_route.h>
20 #include <net/ipv6.h>
21
22 #include <net/netfilter/nf_conntrack_core.h>
23 #include <net/netfilter/nf_conntrack.h>
24 #include <net/netfilter/nf_nat_core.h>
25 #include <net/netfilter/nf_nat_l3proto.h>
26 #include <net/netfilter/nf_nat_l4proto.h>
27
28 static const struct nf_nat_l3proto nf_nat_l3proto_ipv6;
29
30 #ifdef CONFIG_XFRM
31 static void nf_nat_ipv6_decode_session(struct sk_buff *skb,
32                                        const struct nf_conn *ct,
33                                        enum ip_conntrack_dir dir,
34                                        unsigned long statusbit,
35                                        struct flowi *fl)
36 {
37         const struct nf_conntrack_tuple *t = &ct->tuplehash[dir].tuple;
38         struct flowi6 *fl6 = &fl->u.ip6;
39
40         if (ct->status & statusbit) {
41                 fl6->daddr = t->dst.u3.in6;
42                 if (t->dst.protonum == IPPROTO_TCP ||
43                     t->dst.protonum == IPPROTO_UDP ||
44                     t->dst.protonum == IPPROTO_UDPLITE ||
45                     t->dst.protonum == IPPROTO_DCCP ||
46                     t->dst.protonum == IPPROTO_SCTP)
47                         fl6->fl6_dport = t->dst.u.all;
48         }
49
50         statusbit ^= IPS_NAT_MASK;
51
52         if (ct->status & statusbit) {
53                 fl6->saddr = t->src.u3.in6;
54                 if (t->dst.protonum == IPPROTO_TCP ||
55                     t->dst.protonum == IPPROTO_UDP ||
56                     t->dst.protonum == IPPROTO_UDPLITE ||
57                     t->dst.protonum == IPPROTO_DCCP ||
58                     t->dst.protonum == IPPROTO_SCTP)
59                         fl6->fl6_sport = t->src.u.all;
60         }
61 }
62 #endif
63
64 static bool nf_nat_ipv6_in_range(const struct nf_conntrack_tuple *t,
65                                  const struct nf_nat_range *range)
66 {
67         return ipv6_addr_cmp(&t->src.u3.in6, &range->min_addr.in6) >= 0 &&
68                ipv6_addr_cmp(&t->src.u3.in6, &range->max_addr.in6) <= 0;
69 }
70
71 static u32 nf_nat_ipv6_secure_port(const struct nf_conntrack_tuple *t,
72                                    __be16 dport)
73 {
74         return secure_ipv6_port_ephemeral(t->src.u3.ip6, t->dst.u3.ip6, dport);
75 }
76
77 static bool nf_nat_ipv6_manip_pkt(struct sk_buff *skb,
78                                   unsigned int iphdroff,
79                                   const struct nf_nat_l4proto *l4proto,
80                                   const struct nf_conntrack_tuple *target,
81                                   enum nf_nat_manip_type maniptype)
82 {
83         struct ipv6hdr *ipv6h;
84         __be16 frag_off;
85         int hdroff;
86         u8 nexthdr;
87
88         if (!skb_make_writable(skb, iphdroff + sizeof(*ipv6h)))
89                 return false;
90
91         ipv6h = (void *)skb->data + iphdroff;
92         nexthdr = ipv6h->nexthdr;
93         hdroff = ipv6_skip_exthdr(skb, iphdroff + sizeof(*ipv6h),
94                                   &nexthdr, &frag_off);
95         if (hdroff < 0)
96                 goto manip_addr;
97
98         if ((frag_off & htons(~0x7)) == 0 &&
99             !l4proto->manip_pkt(skb, &nf_nat_l3proto_ipv6, iphdroff, hdroff,
100                                 target, maniptype))
101                 return false;
102
103         /* must reload, offset might have changed */
104         ipv6h = (void *)skb->data + iphdroff;
105
106 manip_addr:
107         if (maniptype == NF_NAT_MANIP_SRC)
108                 ipv6h->saddr = target->src.u3.in6;
109         else
110                 ipv6h->daddr = target->dst.u3.in6;
111
112         return true;
113 }
114
115 static void nf_nat_ipv6_csum_update(struct sk_buff *skb,
116                                     unsigned int iphdroff, __sum16 *check,
117                                     const struct nf_conntrack_tuple *t,
118                                     enum nf_nat_manip_type maniptype)
119 {
120         const struct ipv6hdr *ipv6h = (struct ipv6hdr *)(skb->data + iphdroff);
121         const struct in6_addr *oldip, *newip;
122
123         if (maniptype == NF_NAT_MANIP_SRC) {
124                 oldip = &ipv6h->saddr;
125                 newip = &t->src.u3.in6;
126         } else {
127                 oldip = &ipv6h->daddr;
128                 newip = &t->dst.u3.in6;
129         }
130         inet_proto_csum_replace16(check, skb, oldip->s6_addr32,
131                                   newip->s6_addr32, true);
132 }
133
134 static void nf_nat_ipv6_csum_recalc(struct sk_buff *skb,
135                                     u8 proto, void *data, __sum16 *check,
136                                     int datalen, int oldlen)
137 {
138         if (skb->ip_summed != CHECKSUM_PARTIAL) {
139                 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
140
141                 skb->ip_summed = CHECKSUM_PARTIAL;
142                 skb->csum_start = skb_headroom(skb) + skb_network_offset(skb) +
143                         (data - (void *)skb->data);
144                 skb->csum_offset = (void *)check - data;
145                 *check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
146                                           datalen, proto, 0);
147         } else
148                 inet_proto_csum_replace2(check, skb,
149                                          htons(oldlen), htons(datalen), true);
150 }
151
152 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
153 static int nf_nat_ipv6_nlattr_to_range(struct nlattr *tb[],
154                                        struct nf_nat_range *range)
155 {
156         if (tb[CTA_NAT_V6_MINIP]) {
157                 nla_memcpy(&range->min_addr.ip6, tb[CTA_NAT_V6_MINIP],
158                            sizeof(struct in6_addr));
159                 range->flags |= NF_NAT_RANGE_MAP_IPS;
160         }
161
162         if (tb[CTA_NAT_V6_MAXIP])
163                 nla_memcpy(&range->max_addr.ip6, tb[CTA_NAT_V6_MAXIP],
164                            sizeof(struct in6_addr));
165         else
166                 range->max_addr = range->min_addr;
167
168         return 0;
169 }
170 #endif
171
172 static const struct nf_nat_l3proto nf_nat_l3proto_ipv6 = {
173         .l3proto                = NFPROTO_IPV6,
174         .secure_port            = nf_nat_ipv6_secure_port,
175         .in_range               = nf_nat_ipv6_in_range,
176         .manip_pkt              = nf_nat_ipv6_manip_pkt,
177         .csum_update            = nf_nat_ipv6_csum_update,
178         .csum_recalc            = nf_nat_ipv6_csum_recalc,
179 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
180         .nlattr_to_range        = nf_nat_ipv6_nlattr_to_range,
181 #endif
182 #ifdef CONFIG_XFRM
183         .decode_session = nf_nat_ipv6_decode_session,
184 #endif
185 };
186
187 int nf_nat_icmpv6_reply_translation(struct sk_buff *skb,
188                                     struct nf_conn *ct,
189                                     enum ip_conntrack_info ctinfo,
190                                     unsigned int hooknum,
191                                     unsigned int hdrlen)
192 {
193         struct {
194                 struct icmp6hdr icmp6;
195                 struct ipv6hdr  ip6;
196         } *inside;
197         enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
198         enum nf_nat_manip_type manip = HOOK2MANIP(hooknum);
199         const struct nf_nat_l4proto *l4proto;
200         struct nf_conntrack_tuple target;
201         unsigned long statusbit;
202
203         NF_CT_ASSERT(ctinfo == IP_CT_RELATED || ctinfo == IP_CT_RELATED_REPLY);
204
205         if (!skb_make_writable(skb, hdrlen + sizeof(*inside)))
206                 return 0;
207         if (nf_ip6_checksum(skb, hooknum, hdrlen, IPPROTO_ICMPV6))
208                 return 0;
209
210         inside = (void *)skb->data + hdrlen;
211         if (inside->icmp6.icmp6_type == NDISC_REDIRECT) {
212                 if ((ct->status & IPS_NAT_DONE_MASK) != IPS_NAT_DONE_MASK)
213                         return 0;
214                 if (ct->status & IPS_NAT_MASK)
215                         return 0;
216         }
217
218         if (manip == NF_NAT_MANIP_SRC)
219                 statusbit = IPS_SRC_NAT;
220         else
221                 statusbit = IPS_DST_NAT;
222
223         /* Invert if this is reply direction */
224         if (dir == IP_CT_DIR_REPLY)
225                 statusbit ^= IPS_NAT_MASK;
226
227         if (!(ct->status & statusbit))
228                 return 1;
229
230         l4proto = __nf_nat_l4proto_find(NFPROTO_IPV6, inside->ip6.nexthdr);
231         if (!nf_nat_ipv6_manip_pkt(skb, hdrlen + sizeof(inside->icmp6),
232                                    l4proto, &ct->tuplehash[!dir].tuple, !manip))
233                 return 0;
234
235         if (skb->ip_summed != CHECKSUM_PARTIAL) {
236                 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
237                 inside = (void *)skb->data + hdrlen;
238                 inside->icmp6.icmp6_cksum = 0;
239                 inside->icmp6.icmp6_cksum =
240                         csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
241                                         skb->len - hdrlen, IPPROTO_ICMPV6,
242                                         csum_partial(&inside->icmp6,
243                                                      skb->len - hdrlen, 0));
244         }
245
246         nf_ct_invert_tuplepr(&target, &ct->tuplehash[!dir].tuple);
247         l4proto = __nf_nat_l4proto_find(NFPROTO_IPV6, IPPROTO_ICMPV6);
248         if (!nf_nat_ipv6_manip_pkt(skb, 0, l4proto, &target, manip))
249                 return 0;
250
251         return 1;
252 }
253 EXPORT_SYMBOL_GPL(nf_nat_icmpv6_reply_translation);
254
255 unsigned int
256 nf_nat_ipv6_fn(void *priv, struct sk_buff *skb,
257                const struct nf_hook_state *state,
258                unsigned int (*do_chain)(void *priv,
259                                         struct sk_buff *skb,
260                                         const struct nf_hook_state *state,
261                                         struct nf_conn *ct))
262 {
263         struct nf_conn *ct;
264         enum ip_conntrack_info ctinfo;
265         struct nf_conn_nat *nat;
266         enum nf_nat_manip_type maniptype = HOOK2MANIP(state->hook);
267         __be16 frag_off;
268         int hdrlen;
269         u8 nexthdr;
270
271         ct = nf_ct_get(skb, &ctinfo);
272         /* Can't track?  It's not due to stress, or conntrack would
273          * have dropped it.  Hence it's the user's responsibilty to
274          * packet filter it out, or implement conntrack/NAT for that
275          * protocol. 8) --RR
276          */
277         if (!ct)
278                 return NF_ACCEPT;
279
280         /* Don't try to NAT if this packet is not conntracked */
281         if (nf_ct_is_untracked(ct))
282                 return NF_ACCEPT;
283
284         nat = nf_ct_nat_ext_add(ct);
285         if (nat == NULL)
286                 return NF_ACCEPT;
287
288         switch (ctinfo) {
289         case IP_CT_RELATED:
290         case IP_CT_RELATED_REPLY:
291                 nexthdr = ipv6_hdr(skb)->nexthdr;
292                 hdrlen = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr),
293                                           &nexthdr, &frag_off);
294
295                 if (hdrlen >= 0 && nexthdr == IPPROTO_ICMPV6) {
296                         if (!nf_nat_icmpv6_reply_translation(skb, ct, ctinfo,
297                                                              state->hook,
298                                                              hdrlen))
299                                 return NF_DROP;
300                         else
301                                 return NF_ACCEPT;
302                 }
303                 /* Fall thru... (Only ICMPs can be IP_CT_IS_REPLY) */
304         case IP_CT_NEW:
305                 /* Seen it before?  This can happen for loopback, retrans,
306                  * or local packets.
307                  */
308                 if (!nf_nat_initialized(ct, maniptype)) {
309                         unsigned int ret;
310
311                         ret = do_chain(priv, skb, state, ct);
312                         if (ret != NF_ACCEPT)
313                                 return ret;
314
315                         if (nf_nat_initialized(ct, HOOK2MANIP(state->hook)))
316                                 break;
317
318                         ret = nf_nat_alloc_null_binding(ct, state->hook);
319                         if (ret != NF_ACCEPT)
320                                 return ret;
321                 } else {
322                         pr_debug("Already setup manip %s for ct %p\n",
323                                  maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST",
324                                  ct);
325                         if (nf_nat_oif_changed(state->hook, ctinfo, nat, state->out))
326                                 goto oif_changed;
327                 }
328                 break;
329
330         default:
331                 /* ESTABLISHED */
332                 NF_CT_ASSERT(ctinfo == IP_CT_ESTABLISHED ||
333                              ctinfo == IP_CT_ESTABLISHED_REPLY);
334                 if (nf_nat_oif_changed(state->hook, ctinfo, nat, state->out))
335                         goto oif_changed;
336         }
337
338         return nf_nat_packet(ct, ctinfo, state->hook, skb);
339
340 oif_changed:
341         nf_ct_kill_acct(ct, ctinfo, skb);
342         return NF_DROP;
343 }
344 EXPORT_SYMBOL_GPL(nf_nat_ipv6_fn);
345
346 unsigned int
347 nf_nat_ipv6_in(void *priv, struct sk_buff *skb,
348                const struct nf_hook_state *state,
349                unsigned int (*do_chain)(void *priv,
350                                         struct sk_buff *skb,
351                                         const struct nf_hook_state *state,
352                                         struct nf_conn *ct))
353 {
354         unsigned int ret;
355         struct in6_addr daddr = ipv6_hdr(skb)->daddr;
356
357         ret = nf_nat_ipv6_fn(priv, skb, state, do_chain);
358         if (ret != NF_DROP && ret != NF_STOLEN &&
359             ipv6_addr_cmp(&daddr, &ipv6_hdr(skb)->daddr))
360                 skb_dst_drop(skb);
361
362         return ret;
363 }
364 EXPORT_SYMBOL_GPL(nf_nat_ipv6_in);
365
366 unsigned int
367 nf_nat_ipv6_out(void *priv, struct sk_buff *skb,
368                 const struct nf_hook_state *state,
369                 unsigned int (*do_chain)(void *priv,
370                                          struct sk_buff *skb,
371                                          const struct nf_hook_state *state,
372                                          struct nf_conn *ct))
373 {
374 #ifdef CONFIG_XFRM
375         const struct nf_conn *ct;
376         enum ip_conntrack_info ctinfo;
377         int err;
378 #endif
379         unsigned int ret;
380
381         /* root is playing with raw sockets. */
382         if (skb->len < sizeof(struct ipv6hdr))
383                 return NF_ACCEPT;
384
385         ret = nf_nat_ipv6_fn(priv, skb, state, do_chain);
386 #ifdef CONFIG_XFRM
387         if (ret != NF_DROP && ret != NF_STOLEN &&
388             !(IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED) &&
389             (ct = nf_ct_get(skb, &ctinfo)) != NULL) {
390                 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
391
392                 if (!nf_inet_addr_cmp(&ct->tuplehash[dir].tuple.src.u3,
393                                       &ct->tuplehash[!dir].tuple.dst.u3) ||
394                     (ct->tuplehash[dir].tuple.dst.protonum != IPPROTO_ICMPV6 &&
395                      ct->tuplehash[dir].tuple.src.u.all !=
396                      ct->tuplehash[!dir].tuple.dst.u.all)) {
397                         err = nf_xfrm_me_harder(state->net, skb, AF_INET6);
398                         if (err < 0)
399                                 ret = NF_DROP_ERR(err);
400                 }
401         }
402 #endif
403         return ret;
404 }
405 EXPORT_SYMBOL_GPL(nf_nat_ipv6_out);
406
407 unsigned int
408 nf_nat_ipv6_local_fn(void *priv, struct sk_buff *skb,
409                      const struct nf_hook_state *state,
410                      unsigned int (*do_chain)(void *priv,
411                                               struct sk_buff *skb,
412                                               const struct nf_hook_state *state,
413                                               struct nf_conn *ct))
414 {
415         const struct nf_conn *ct;
416         enum ip_conntrack_info ctinfo;
417         unsigned int ret;
418         int err;
419
420         /* root is playing with raw sockets. */
421         if (skb->len < sizeof(struct ipv6hdr))
422                 return NF_ACCEPT;
423
424         ret = nf_nat_ipv6_fn(priv, skb, state, do_chain);
425         if (ret != NF_DROP && ret != NF_STOLEN &&
426             (ct = nf_ct_get(skb, &ctinfo)) != NULL) {
427                 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
428
429                 if (!nf_inet_addr_cmp(&ct->tuplehash[dir].tuple.dst.u3,
430                                       &ct->tuplehash[!dir].tuple.src.u3)) {
431                         err = ip6_route_me_harder(state->net, skb);
432                         if (err < 0)
433                                 ret = NF_DROP_ERR(err);
434                 }
435 #ifdef CONFIG_XFRM
436                 else if (!(IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED) &&
437                          ct->tuplehash[dir].tuple.dst.protonum != IPPROTO_ICMPV6 &&
438                          ct->tuplehash[dir].tuple.dst.u.all !=
439                          ct->tuplehash[!dir].tuple.src.u.all) {
440                         err = nf_xfrm_me_harder(state->net, skb, AF_INET6);
441                         if (err < 0)
442                                 ret = NF_DROP_ERR(err);
443                 }
444 #endif
445         }
446         return ret;
447 }
448 EXPORT_SYMBOL_GPL(nf_nat_ipv6_local_fn);
449
450 static int __init nf_nat_l3proto_ipv6_init(void)
451 {
452         int err;
453
454         err = nf_nat_l4proto_register(NFPROTO_IPV6, &nf_nat_l4proto_icmpv6);
455         if (err < 0)
456                 goto err1;
457         err = nf_nat_l3proto_register(&nf_nat_l3proto_ipv6);
458         if (err < 0)
459                 goto err2;
460         return err;
461
462 err2:
463         nf_nat_l4proto_unregister(NFPROTO_IPV6, &nf_nat_l4proto_icmpv6);
464 err1:
465         return err;
466 }
467
468 static void __exit nf_nat_l3proto_ipv6_exit(void)
469 {
470         nf_nat_l3proto_unregister(&nf_nat_l3proto_ipv6);
471         nf_nat_l4proto_unregister(NFPROTO_IPV6, &nf_nat_l4proto_icmpv6);
472 }
473
474 MODULE_LICENSE("GPL");
475 MODULE_ALIAS("nf-nat-" __stringify(AF_INET6));
476
477 module_init(nf_nat_l3proto_ipv6_init);
478 module_exit(nf_nat_l3proto_ipv6_exit);