GNU Linux-libre 4.14.251-gnu1
[releases.git] / net / ipv6 / esp6.c
1 /*
2  * Copyright (C)2002 USAGI/WIDE Project
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 as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, see <http://www.gnu.org/licenses/>.
16  *
17  * Authors
18  *
19  *      Mitsuru KANDA @USAGI       : IPv6 Support
20  *      Kazunori MIYAZAWA @USAGI   :
21  *      Kunihiro Ishiguro <kunihiro@ipinfusion.com>
22  *
23  *      This file is derived from net/ipv4/esp.c
24  */
25
26 #define pr_fmt(fmt) "IPv6: " fmt
27
28 #include <crypto/aead.h>
29 #include <crypto/authenc.h>
30 #include <linux/err.h>
31 #include <linux/module.h>
32 #include <net/ip.h>
33 #include <net/xfrm.h>
34 #include <net/esp.h>
35 #include <linux/scatterlist.h>
36 #include <linux/kernel.h>
37 #include <linux/pfkeyv2.h>
38 #include <linux/random.h>
39 #include <linux/slab.h>
40 #include <linux/spinlock.h>
41 #include <net/ip6_route.h>
42 #include <net/icmp.h>
43 #include <net/ipv6.h>
44 #include <net/protocol.h>
45 #include <linux/icmpv6.h>
46
47 #include <linux/highmem.h>
48
49 struct esp_skb_cb {
50         struct xfrm_skb_cb xfrm;
51         void *tmp;
52 };
53
54 #define ESP_SKB_CB(__skb) ((struct esp_skb_cb *)&((__skb)->cb[0]))
55
56 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu);
57
58 /*
59  * Allocate an AEAD request structure with extra space for SG and IV.
60  *
61  * For alignment considerations the upper 32 bits of the sequence number are
62  * placed at the front, if present. Followed by the IV, the request and finally
63  * the SG list.
64  *
65  * TODO: Use spare space in skb for this where possible.
66  */
67 static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int seqihlen)
68 {
69         unsigned int len;
70
71         len = seqihlen;
72
73         len += crypto_aead_ivsize(aead);
74
75         if (len) {
76                 len += crypto_aead_alignmask(aead) &
77                        ~(crypto_tfm_ctx_alignment() - 1);
78                 len = ALIGN(len, crypto_tfm_ctx_alignment());
79         }
80
81         len += sizeof(struct aead_request) + crypto_aead_reqsize(aead);
82         len = ALIGN(len, __alignof__(struct scatterlist));
83
84         len += sizeof(struct scatterlist) * nfrags;
85
86         return kmalloc(len, GFP_ATOMIC);
87 }
88
89 static inline __be32 *esp_tmp_seqhi(void *tmp)
90 {
91         return PTR_ALIGN((__be32 *)tmp, __alignof__(__be32));
92 }
93
94 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int seqhilen)
95 {
96         return crypto_aead_ivsize(aead) ?
97                PTR_ALIGN((u8 *)tmp + seqhilen,
98                          crypto_aead_alignmask(aead) + 1) : tmp + seqhilen;
99 }
100
101 static inline struct aead_request *esp_tmp_req(struct crypto_aead *aead, u8 *iv)
102 {
103         struct aead_request *req;
104
105         req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead),
106                                 crypto_tfm_ctx_alignment());
107         aead_request_set_tfm(req, aead);
108         return req;
109 }
110
111 static inline struct scatterlist *esp_req_sg(struct crypto_aead *aead,
112                                              struct aead_request *req)
113 {
114         return (void *)ALIGN((unsigned long)(req + 1) +
115                              crypto_aead_reqsize(aead),
116                              __alignof__(struct scatterlist));
117 }
118
119 static void esp_ssg_unref(struct xfrm_state *x, void *tmp)
120 {
121         struct crypto_aead *aead = x->data;
122         int seqhilen = 0;
123         u8 *iv;
124         struct aead_request *req;
125         struct scatterlist *sg;
126
127         if (x->props.flags & XFRM_STATE_ESN)
128                 seqhilen += sizeof(__be32);
129
130         iv = esp_tmp_iv(aead, tmp, seqhilen);
131         req = esp_tmp_req(aead, iv);
132
133         /* Unref skb_frag_pages in the src scatterlist if necessary.
134          * Skip the first sg which comes from skb->data.
135          */
136         if (req->src != req->dst)
137                 for (sg = sg_next(req->src); sg; sg = sg_next(sg))
138                         put_page(sg_page(sg));
139 }
140
141 static void esp_output_done(struct crypto_async_request *base, int err)
142 {
143         struct sk_buff *skb = base->data;
144         void *tmp;
145         struct dst_entry *dst = skb_dst(skb);
146         struct xfrm_state *x = dst->xfrm;
147
148         tmp = ESP_SKB_CB(skb)->tmp;
149         esp_ssg_unref(x, tmp);
150         kfree(tmp);
151         xfrm_output_resume(skb, err);
152 }
153
154 /* Move ESP header back into place. */
155 static void esp_restore_header(struct sk_buff *skb, unsigned int offset)
156 {
157         struct ip_esp_hdr *esph = (void *)(skb->data + offset);
158         void *tmp = ESP_SKB_CB(skb)->tmp;
159         __be32 *seqhi = esp_tmp_seqhi(tmp);
160
161         esph->seq_no = esph->spi;
162         esph->spi = *seqhi;
163 }
164
165 static void esp_output_restore_header(struct sk_buff *skb)
166 {
167         esp_restore_header(skb, skb_transport_offset(skb) - sizeof(__be32));
168 }
169
170 static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb,
171                                              struct xfrm_state *x,
172                                              struct ip_esp_hdr *esph,
173                                              __be32 *seqhi)
174 {
175         /* For ESN we move the header forward by 4 bytes to
176          * accomodate the high bits.  We will move it back after
177          * encryption.
178          */
179         if ((x->props.flags & XFRM_STATE_ESN)) {
180                 struct xfrm_offload *xo = xfrm_offload(skb);
181
182                 esph = (void *)(skb_transport_header(skb) - sizeof(__be32));
183                 *seqhi = esph->spi;
184                 if (xo)
185                         esph->seq_no = htonl(xo->seq.hi);
186                 else
187                         esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.hi);
188         }
189
190         esph->spi = x->id.spi;
191
192         return esph;
193 }
194
195 static void esp_output_done_esn(struct crypto_async_request *base, int err)
196 {
197         struct sk_buff *skb = base->data;
198
199         esp_output_restore_header(skb);
200         esp_output_done(base, err);
201 }
202
203 static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto)
204 {
205         /* Fill padding... */
206         if (tfclen) {
207                 memset(tail, 0, tfclen);
208                 tail += tfclen;
209         }
210         do {
211                 int i;
212                 for (i = 0; i < plen - 2; i++)
213                         tail[i] = i + 1;
214         } while (0);
215         tail[plen - 2] = plen - 2;
216         tail[plen - 1] = proto;
217 }
218
219 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
220 {
221         u8 *tail;
222         int nfrags;
223         struct page *page;
224         struct sk_buff *trailer;
225         int tailen = esp->tailen;
226
227         if (!skb_cloned(skb)) {
228                 if (tailen <= skb_tailroom(skb)) {
229                         nfrags = 1;
230                         trailer = skb;
231                         tail = skb_tail_pointer(trailer);
232
233                         goto skip_cow;
234                 } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS)
235                            && !skb_has_frag_list(skb)) {
236                         int allocsize;
237                         struct sock *sk = skb->sk;
238                         struct page_frag *pfrag = &x->xfrag;
239
240                         esp->inplace = false;
241
242                         allocsize = ALIGN(tailen, L1_CACHE_BYTES);
243
244                         spin_lock_bh(&x->lock);
245
246                         if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
247                                 spin_unlock_bh(&x->lock);
248                                 goto cow;
249                         }
250
251                         page = pfrag->page;
252                         get_page(page);
253
254                         tail = page_address(page) + pfrag->offset;
255
256                         esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
257
258                         nfrags = skb_shinfo(skb)->nr_frags;
259
260                         __skb_fill_page_desc(skb, nfrags, page, pfrag->offset,
261                                              tailen);
262                         skb_shinfo(skb)->nr_frags = ++nfrags;
263
264                         pfrag->offset = pfrag->offset + allocsize;
265
266                         spin_unlock_bh(&x->lock);
267
268                         nfrags++;
269
270                         skb->len += tailen;
271                         skb->data_len += tailen;
272                         skb->truesize += tailen;
273                         if (sk && sk_fullsock(sk))
274                                 refcount_add(tailen, &sk->sk_wmem_alloc);
275
276                         goto out;
277                 }
278         }
279
280 cow:
281         nfrags = skb_cow_data(skb, tailen, &trailer);
282         if (nfrags < 0)
283                 goto out;
284         tail = skb_tail_pointer(trailer);
285
286 skip_cow:
287         esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
288         pskb_put(skb, trailer, tailen);
289
290 out:
291         return nfrags;
292 }
293 EXPORT_SYMBOL_GPL(esp6_output_head);
294
295 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
296 {
297         u8 *iv;
298         int alen;
299         void *tmp;
300         int ivlen;
301         int assoclen;
302         int seqhilen;
303         __be32 *seqhi;
304         struct page *page;
305         struct ip_esp_hdr *esph;
306         struct aead_request *req;
307         struct crypto_aead *aead;
308         struct scatterlist *sg, *dsg;
309         int err = -ENOMEM;
310
311         assoclen = sizeof(struct ip_esp_hdr);
312         seqhilen = 0;
313
314         if (x->props.flags & XFRM_STATE_ESN) {
315                 seqhilen += sizeof(__be32);
316                 assoclen += sizeof(__be32);
317         }
318
319         aead = x->data;
320         alen = crypto_aead_authsize(aead);
321         ivlen = crypto_aead_ivsize(aead);
322
323         tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen);
324         if (!tmp)
325                 goto error;
326
327         seqhi = esp_tmp_seqhi(tmp);
328         iv = esp_tmp_iv(aead, tmp, seqhilen);
329         req = esp_tmp_req(aead, iv);
330         sg = esp_req_sg(aead, req);
331
332         if (esp->inplace)
333                 dsg = sg;
334         else
335                 dsg = &sg[esp->nfrags];
336
337         esph = esp_output_set_esn(skb, x, ip_esp_hdr(skb), seqhi);
338
339         sg_init_table(sg, esp->nfrags);
340         err = skb_to_sgvec(skb, sg,
341                            (unsigned char *)esph - skb->data,
342                            assoclen + ivlen + esp->clen + alen);
343         if (unlikely(err < 0))
344                 goto error_free;
345
346         if (!esp->inplace) {
347                 int allocsize;
348                 struct page_frag *pfrag = &x->xfrag;
349
350                 allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES);
351
352                 spin_lock_bh(&x->lock);
353                 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
354                         spin_unlock_bh(&x->lock);
355                         goto error_free;
356                 }
357
358                 skb_shinfo(skb)->nr_frags = 1;
359
360                 page = pfrag->page;
361                 get_page(page);
362                 /* replace page frags in skb with new page */
363                 __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len);
364                 pfrag->offset = pfrag->offset + allocsize;
365                 spin_unlock_bh(&x->lock);
366
367                 sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1);
368                 err = skb_to_sgvec(skb, dsg,
369                                    (unsigned char *)esph - skb->data,
370                                    assoclen + ivlen + esp->clen + alen);
371                 if (unlikely(err < 0))
372                         goto error_free;
373         }
374
375         if ((x->props.flags & XFRM_STATE_ESN))
376                 aead_request_set_callback(req, 0, esp_output_done_esn, skb);
377         else
378                 aead_request_set_callback(req, 0, esp_output_done, skb);
379
380         aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv);
381         aead_request_set_ad(req, assoclen);
382
383         memset(iv, 0, ivlen);
384         memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8),
385                min(ivlen, 8));
386
387         ESP_SKB_CB(skb)->tmp = tmp;
388         err = crypto_aead_encrypt(req);
389
390         switch (err) {
391         case -EINPROGRESS:
392                 goto error;
393
394         case -EBUSY:
395                 err = NET_XMIT_DROP;
396                 break;
397
398         case 0:
399                 if ((x->props.flags & XFRM_STATE_ESN))
400                         esp_output_restore_header(skb);
401         }
402
403         if (sg != dsg)
404                 esp_ssg_unref(x, tmp);
405
406 error_free:
407         kfree(tmp);
408 error:
409         return err;
410 }
411 EXPORT_SYMBOL_GPL(esp6_output_tail);
412
413 static int esp6_output(struct xfrm_state *x, struct sk_buff *skb)
414 {
415         int alen;
416         int blksize;
417         struct ip_esp_hdr *esph;
418         struct crypto_aead *aead;
419         struct esp_info esp;
420
421         esp.inplace = true;
422
423         esp.proto = *skb_mac_header(skb);
424         *skb_mac_header(skb) = IPPROTO_ESP;
425
426         /* skb is pure payload to encrypt */
427
428         aead = x->data;
429         alen = crypto_aead_authsize(aead);
430
431         esp.tfclen = 0;
432         if (x->tfcpad) {
433                 struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb);
434                 u32 padto;
435
436                 padto = min(x->tfcpad, esp6_get_mtu(x, dst->child_mtu_cached));
437                 if (skb->len < padto)
438                         esp.tfclen = padto - skb->len;
439         }
440         blksize = ALIGN(crypto_aead_blocksize(aead), 4);
441         esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
442         esp.plen = esp.clen - skb->len - esp.tfclen;
443         esp.tailen = esp.tfclen + esp.plen + alen;
444
445         esp.nfrags = esp6_output_head(x, skb, &esp);
446         if (esp.nfrags < 0)
447                 return esp.nfrags;
448
449         esph = ip_esp_hdr(skb);
450         esph->spi = x->id.spi;
451
452         esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
453         esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low +
454                             ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32));
455
456         skb_push(skb, -skb_network_offset(skb));
457
458         return esp6_output_tail(x, skb, &esp);
459 }
460
461 static inline int esp_remove_trailer(struct sk_buff *skb)
462 {
463         struct xfrm_state *x = xfrm_input_state(skb);
464         struct xfrm_offload *xo = xfrm_offload(skb);
465         struct crypto_aead *aead = x->data;
466         int alen, hlen, elen;
467         int padlen, trimlen;
468         __wsum csumdiff;
469         u8 nexthdr[2];
470         int ret;
471
472         alen = crypto_aead_authsize(aead);
473         hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
474         elen = skb->len - hlen;
475
476         if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
477                 ret = xo->proto;
478                 goto out;
479         }
480
481         if (skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2))
482                 BUG();
483
484         ret = -EINVAL;
485         padlen = nexthdr[0];
486         if (padlen + 2 + alen >= elen) {
487                 net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n",
488                                     padlen + 2, elen - alen);
489                 goto out;
490         }
491
492         trimlen = alen + padlen + 2;
493         if (skb->ip_summed == CHECKSUM_COMPLETE) {
494                 csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0);
495                 skb->csum = csum_block_sub(skb->csum, csumdiff,
496                                            skb->len - trimlen);
497         }
498         pskb_trim(skb, skb->len - trimlen);
499
500         ret = nexthdr[1];
501
502 out:
503         return ret;
504 }
505
506 int esp6_input_done2(struct sk_buff *skb, int err)
507 {
508         struct xfrm_state *x = xfrm_input_state(skb);
509         struct xfrm_offload *xo = xfrm_offload(skb);
510         struct crypto_aead *aead = x->data;
511         int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
512         int hdr_len = skb_network_header_len(skb);
513
514         if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
515                 kfree(ESP_SKB_CB(skb)->tmp);
516
517         if (unlikely(err))
518                 goto out;
519
520         err = esp_remove_trailer(skb);
521         if (unlikely(err < 0))
522                 goto out;
523
524         skb_postpull_rcsum(skb, skb_network_header(skb),
525                            skb_network_header_len(skb));
526         skb_pull_rcsum(skb, hlen);
527         if (x->props.mode == XFRM_MODE_TUNNEL)
528                 skb_reset_transport_header(skb);
529         else
530                 skb_set_transport_header(skb, -hdr_len);
531
532         /* RFC4303: Drop dummy packets without any error */
533         if (err == IPPROTO_NONE)
534                 err = -EINVAL;
535
536 out:
537         return err;
538 }
539 EXPORT_SYMBOL_GPL(esp6_input_done2);
540
541 static void esp_input_done(struct crypto_async_request *base, int err)
542 {
543         struct sk_buff *skb = base->data;
544
545         xfrm_input_resume(skb, esp6_input_done2(skb, err));
546 }
547
548 static void esp_input_restore_header(struct sk_buff *skb)
549 {
550         esp_restore_header(skb, 0);
551         __skb_pull(skb, 4);
552 }
553
554 static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
555 {
556         struct xfrm_state *x = xfrm_input_state(skb);
557         struct ip_esp_hdr *esph = (struct ip_esp_hdr *)skb->data;
558
559         /* For ESN we move the header forward by 4 bytes to
560          * accomodate the high bits.  We will move it back after
561          * decryption.
562          */
563         if ((x->props.flags & XFRM_STATE_ESN)) {
564                 esph = skb_push(skb, 4);
565                 *seqhi = esph->spi;
566                 esph->spi = esph->seq_no;
567                 esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi;
568         }
569 }
570
571 static void esp_input_done_esn(struct crypto_async_request *base, int err)
572 {
573         struct sk_buff *skb = base->data;
574
575         esp_input_restore_header(skb);
576         esp_input_done(base, err);
577 }
578
579 static int esp6_input(struct xfrm_state *x, struct sk_buff *skb)
580 {
581         struct ip_esp_hdr *esph;
582         struct crypto_aead *aead = x->data;
583         struct aead_request *req;
584         struct sk_buff *trailer;
585         int ivlen = crypto_aead_ivsize(aead);
586         int elen = skb->len - sizeof(*esph) - ivlen;
587         int nfrags;
588         int assoclen;
589         int seqhilen;
590         int ret = 0;
591         void *tmp;
592         __be32 *seqhi;
593         u8 *iv;
594         struct scatterlist *sg;
595
596         if (!pskb_may_pull(skb, sizeof(*esph) + ivlen)) {
597                 ret = -EINVAL;
598                 goto out;
599         }
600
601         if (elen <= 0) {
602                 ret = -EINVAL;
603                 goto out;
604         }
605
606         assoclen = sizeof(*esph);
607         seqhilen = 0;
608
609         if (x->props.flags & XFRM_STATE_ESN) {
610                 seqhilen += sizeof(__be32);
611                 assoclen += seqhilen;
612         }
613
614         if (!skb_cloned(skb)) {
615                 if (!skb_is_nonlinear(skb)) {
616                         nfrags = 1;
617
618                         goto skip_cow;
619                 } else if (!skb_has_frag_list(skb)) {
620                         nfrags = skb_shinfo(skb)->nr_frags;
621                         nfrags++;
622
623                         goto skip_cow;
624                 }
625         }
626
627         nfrags = skb_cow_data(skb, 0, &trailer);
628         if (nfrags < 0) {
629                 ret = -EINVAL;
630                 goto out;
631         }
632
633 skip_cow:
634         ret = -ENOMEM;
635         tmp = esp_alloc_tmp(aead, nfrags, seqhilen);
636         if (!tmp)
637                 goto out;
638
639         ESP_SKB_CB(skb)->tmp = tmp;
640         seqhi = esp_tmp_seqhi(tmp);
641         iv = esp_tmp_iv(aead, tmp, seqhilen);
642         req = esp_tmp_req(aead, iv);
643         sg = esp_req_sg(aead, req);
644
645         esp_input_set_header(skb, seqhi);
646
647         sg_init_table(sg, nfrags);
648         ret = skb_to_sgvec(skb, sg, 0, skb->len);
649         if (unlikely(ret < 0)) {
650                 kfree(tmp);
651                 goto out;
652         }
653
654         skb->ip_summed = CHECKSUM_NONE;
655
656         if ((x->props.flags & XFRM_STATE_ESN))
657                 aead_request_set_callback(req, 0, esp_input_done_esn, skb);
658         else
659                 aead_request_set_callback(req, 0, esp_input_done, skb);
660
661         aead_request_set_crypt(req, sg, sg, elen + ivlen, iv);
662         aead_request_set_ad(req, assoclen);
663
664         ret = crypto_aead_decrypt(req);
665         if (ret == -EINPROGRESS)
666                 goto out;
667
668         if ((x->props.flags & XFRM_STATE_ESN))
669                 esp_input_restore_header(skb);
670
671         ret = esp6_input_done2(skb, ret);
672
673 out:
674         return ret;
675 }
676
677 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu)
678 {
679         struct crypto_aead *aead = x->data;
680         u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
681         unsigned int net_adj;
682
683         if (x->props.mode != XFRM_MODE_TUNNEL)
684                 net_adj = sizeof(struct ipv6hdr);
685         else
686                 net_adj = 0;
687
688         return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
689                  net_adj) & ~(blksize - 1)) + net_adj - 2;
690 }
691
692 static int esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
693                     u8 type, u8 code, int offset, __be32 info)
694 {
695         struct net *net = dev_net(skb->dev);
696         const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
697         struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data + offset);
698         struct xfrm_state *x;
699
700         if (type != ICMPV6_PKT_TOOBIG &&
701             type != NDISC_REDIRECT)
702                 return 0;
703
704         x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
705                               esph->spi, IPPROTO_ESP, AF_INET6);
706         if (!x)
707                 return 0;
708
709         if (type == NDISC_REDIRECT)
710                 ip6_redirect(skb, net, skb->dev->ifindex, 0,
711                              sock_net_uid(net, NULL));
712         else
713                 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
714         xfrm_state_put(x);
715
716         return 0;
717 }
718
719 static void esp6_destroy(struct xfrm_state *x)
720 {
721         struct crypto_aead *aead = x->data;
722
723         if (!aead)
724                 return;
725
726         crypto_free_aead(aead);
727 }
728
729 static int esp_init_aead(struct xfrm_state *x)
730 {
731         char aead_name[CRYPTO_MAX_ALG_NAME];
732         struct crypto_aead *aead;
733         int err;
734         u32 mask = 0;
735
736         err = -ENAMETOOLONG;
737         if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
738                      x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME)
739                 goto error;
740
741         if (x->xso.offload_handle)
742                 mask |= CRYPTO_ALG_ASYNC;
743
744         aead = crypto_alloc_aead(aead_name, 0, mask);
745         err = PTR_ERR(aead);
746         if (IS_ERR(aead))
747                 goto error;
748
749         x->data = aead;
750
751         err = crypto_aead_setkey(aead, x->aead->alg_key,
752                                  (x->aead->alg_key_len + 7) / 8);
753         if (err)
754                 goto error;
755
756         err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
757         if (err)
758                 goto error;
759
760 error:
761         return err;
762 }
763
764 static int esp_init_authenc(struct xfrm_state *x)
765 {
766         struct crypto_aead *aead;
767         struct crypto_authenc_key_param *param;
768         struct rtattr *rta;
769         char *key;
770         char *p;
771         char authenc_name[CRYPTO_MAX_ALG_NAME];
772         unsigned int keylen;
773         int err;
774         u32 mask = 0;
775
776         err = -EINVAL;
777         if (!x->ealg)
778                 goto error;
779
780         err = -ENAMETOOLONG;
781
782         if ((x->props.flags & XFRM_STATE_ESN)) {
783                 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
784                              "%s%sauthencesn(%s,%s)%s",
785                              x->geniv ?: "", x->geniv ? "(" : "",
786                              x->aalg ? x->aalg->alg_name : "digest_null",
787                              x->ealg->alg_name,
788                              x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
789                         goto error;
790         } else {
791                 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
792                              "%s%sauthenc(%s,%s)%s",
793                              x->geniv ?: "", x->geniv ? "(" : "",
794                              x->aalg ? x->aalg->alg_name : "digest_null",
795                              x->ealg->alg_name,
796                              x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
797                         goto error;
798         }
799
800         if (x->xso.offload_handle)
801                 mask |= CRYPTO_ALG_ASYNC;
802
803         aead = crypto_alloc_aead(authenc_name, 0, mask);
804         err = PTR_ERR(aead);
805         if (IS_ERR(aead))
806                 goto error;
807
808         x->data = aead;
809
810         keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) +
811                  (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param));
812         err = -ENOMEM;
813         key = kmalloc(keylen, GFP_KERNEL);
814         if (!key)
815                 goto error;
816
817         p = key;
818         rta = (void *)p;
819         rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
820         rta->rta_len = RTA_LENGTH(sizeof(*param));
821         param = RTA_DATA(rta);
822         p += RTA_SPACE(sizeof(*param));
823
824         if (x->aalg) {
825                 struct xfrm_algo_desc *aalg_desc;
826
827                 memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8);
828                 p += (x->aalg->alg_key_len + 7) / 8;
829
830                 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
831                 BUG_ON(!aalg_desc);
832
833                 err = -EINVAL;
834                 if (aalg_desc->uinfo.auth.icv_fullbits / 8 !=
835                     crypto_aead_authsize(aead)) {
836                         pr_info("ESP: %s digestsize %u != %hu\n",
837                                 x->aalg->alg_name,
838                                 crypto_aead_authsize(aead),
839                                 aalg_desc->uinfo.auth.icv_fullbits / 8);
840                         goto free_key;
841                 }
842
843                 err = crypto_aead_setauthsize(
844                         aead, x->aalg->alg_trunc_len / 8);
845                 if (err)
846                         goto free_key;
847         }
848
849         param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8);
850         memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8);
851
852         err = crypto_aead_setkey(aead, key, keylen);
853
854 free_key:
855         kfree(key);
856
857 error:
858         return err;
859 }
860
861 static int esp6_init_state(struct xfrm_state *x)
862 {
863         struct crypto_aead *aead;
864         u32 align;
865         int err;
866
867         if (x->encap)
868                 return -EINVAL;
869
870         x->data = NULL;
871
872         if (x->aead)
873                 err = esp_init_aead(x);
874         else
875                 err = esp_init_authenc(x);
876
877         if (err)
878                 goto error;
879
880         aead = x->data;
881
882         x->props.header_len = sizeof(struct ip_esp_hdr) +
883                               crypto_aead_ivsize(aead);
884         switch (x->props.mode) {
885         case XFRM_MODE_BEET:
886                 if (x->sel.family != AF_INET6)
887                         x->props.header_len += IPV4_BEET_PHMAXLEN +
888                                                (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
889                 break;
890         case XFRM_MODE_TRANSPORT:
891                 break;
892         case XFRM_MODE_TUNNEL:
893                 x->props.header_len += sizeof(struct ipv6hdr);
894                 break;
895         default:
896                 goto error;
897         }
898
899         align = ALIGN(crypto_aead_blocksize(aead), 4);
900         x->props.trailer_len = align + 1 + crypto_aead_authsize(aead);
901
902 error:
903         return err;
904 }
905
906 static int esp6_rcv_cb(struct sk_buff *skb, int err)
907 {
908         return 0;
909 }
910
911 static const struct xfrm_type esp6_type = {
912         .description    = "ESP6",
913         .owner          = THIS_MODULE,
914         .proto          = IPPROTO_ESP,
915         .flags          = XFRM_TYPE_REPLAY_PROT,
916         .init_state     = esp6_init_state,
917         .destructor     = esp6_destroy,
918         .get_mtu        = esp6_get_mtu,
919         .input          = esp6_input,
920         .output         = esp6_output,
921         .hdr_offset     = xfrm6_find_1stfragopt,
922 };
923
924 static struct xfrm6_protocol esp6_protocol = {
925         .handler        =       xfrm6_rcv,
926         .cb_handler     =       esp6_rcv_cb,
927         .err_handler    =       esp6_err,
928         .priority       =       0,
929 };
930
931 static int __init esp6_init(void)
932 {
933         if (xfrm_register_type(&esp6_type, AF_INET6) < 0) {
934                 pr_info("%s: can't add xfrm type\n", __func__);
935                 return -EAGAIN;
936         }
937         if (xfrm6_protocol_register(&esp6_protocol, IPPROTO_ESP) < 0) {
938                 pr_info("%s: can't add protocol\n", __func__);
939                 xfrm_unregister_type(&esp6_type, AF_INET6);
940                 return -EAGAIN;
941         }
942
943         return 0;
944 }
945
946 static void __exit esp6_fini(void)
947 {
948         if (xfrm6_protocol_deregister(&esp6_protocol, IPPROTO_ESP) < 0)
949                 pr_info("%s: can't remove protocol\n", __func__);
950         if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0)
951                 pr_info("%s: can't remove xfrm type\n", __func__);
952 }
953
954 module_init(esp6_init);
955 module_exit(esp6_fini);
956
957 MODULE_LICENSE("GPL");
958 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP);