GNU Linux-libre 4.19.209-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         struct xfrm_offload *xo = xfrm_offload(skb);
145         void *tmp;
146         struct xfrm_state *x;
147
148         if (xo && (xo->flags & XFRM_DEV_RESUME))
149                 x = skb->sp->xvec[skb->sp->len - 1];
150         else
151                 x = skb_dst(skb)->xfrm;
152
153         tmp = ESP_SKB_CB(skb)->tmp;
154         esp_ssg_unref(x, tmp);
155         kfree(tmp);
156
157         if (xo && (xo->flags & XFRM_DEV_RESUME)) {
158                 if (err) {
159                         XFRM_INC_STATS(xs_net(x), LINUX_MIB_XFRMOUTSTATEPROTOERROR);
160                         kfree_skb(skb);
161                         return;
162                 }
163
164                 skb_push(skb, skb->data - skb_mac_header(skb));
165                 secpath_reset(skb);
166                 xfrm_dev_resume(skb);
167         } else {
168                 xfrm_output_resume(skb, err);
169         }
170 }
171
172 /* Move ESP header back into place. */
173 static void esp_restore_header(struct sk_buff *skb, unsigned int offset)
174 {
175         struct ip_esp_hdr *esph = (void *)(skb->data + offset);
176         void *tmp = ESP_SKB_CB(skb)->tmp;
177         __be32 *seqhi = esp_tmp_seqhi(tmp);
178
179         esph->seq_no = esph->spi;
180         esph->spi = *seqhi;
181 }
182
183 static void esp_output_restore_header(struct sk_buff *skb)
184 {
185         esp_restore_header(skb, skb_transport_offset(skb) - sizeof(__be32));
186 }
187
188 static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb,
189                                              struct xfrm_state *x,
190                                              struct ip_esp_hdr *esph,
191                                              __be32 *seqhi)
192 {
193         /* For ESN we move the header forward by 4 bytes to
194          * accomodate the high bits.  We will move it back after
195          * encryption.
196          */
197         if ((x->props.flags & XFRM_STATE_ESN)) {
198                 struct xfrm_offload *xo = xfrm_offload(skb);
199
200                 esph = (void *)(skb_transport_header(skb) - sizeof(__be32));
201                 *seqhi = esph->spi;
202                 if (xo)
203                         esph->seq_no = htonl(xo->seq.hi);
204                 else
205                         esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.hi);
206         }
207
208         esph->spi = x->id.spi;
209
210         return esph;
211 }
212
213 static void esp_output_done_esn(struct crypto_async_request *base, int err)
214 {
215         struct sk_buff *skb = base->data;
216
217         esp_output_restore_header(skb);
218         esp_output_done(base, err);
219 }
220
221 static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto)
222 {
223         /* Fill padding... */
224         if (tfclen) {
225                 memset(tail, 0, tfclen);
226                 tail += tfclen;
227         }
228         do {
229                 int i;
230                 for (i = 0; i < plen - 2; i++)
231                         tail[i] = i + 1;
232         } while (0);
233         tail[plen - 2] = plen - 2;
234         tail[plen - 1] = proto;
235 }
236
237 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
238 {
239         u8 *tail;
240         int nfrags;
241         struct page *page;
242         struct sk_buff *trailer;
243         int tailen = esp->tailen;
244
245         if (!skb_cloned(skb)) {
246                 if (tailen <= skb_tailroom(skb)) {
247                         nfrags = 1;
248                         trailer = skb;
249                         tail = skb_tail_pointer(trailer);
250
251                         goto skip_cow;
252                 } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS)
253                            && !skb_has_frag_list(skb)) {
254                         int allocsize;
255                         struct sock *sk = skb->sk;
256                         struct page_frag *pfrag = &x->xfrag;
257
258                         esp->inplace = false;
259
260                         allocsize = ALIGN(tailen, L1_CACHE_BYTES);
261
262                         spin_lock_bh(&x->lock);
263
264                         if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
265                                 spin_unlock_bh(&x->lock);
266                                 goto cow;
267                         }
268
269                         page = pfrag->page;
270                         get_page(page);
271
272                         tail = page_address(page) + pfrag->offset;
273
274                         esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
275
276                         nfrags = skb_shinfo(skb)->nr_frags;
277
278                         __skb_fill_page_desc(skb, nfrags, page, pfrag->offset,
279                                              tailen);
280                         skb_shinfo(skb)->nr_frags = ++nfrags;
281
282                         pfrag->offset = pfrag->offset + allocsize;
283
284                         spin_unlock_bh(&x->lock);
285
286                         nfrags++;
287
288                         skb->len += tailen;
289                         skb->data_len += tailen;
290                         skb->truesize += tailen;
291                         if (sk && sk_fullsock(sk))
292                                 refcount_add(tailen, &sk->sk_wmem_alloc);
293
294                         goto out;
295                 }
296         }
297
298 cow:
299         nfrags = skb_cow_data(skb, tailen, &trailer);
300         if (nfrags < 0)
301                 goto out;
302         tail = skb_tail_pointer(trailer);
303
304 skip_cow:
305         esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
306         pskb_put(skb, trailer, tailen);
307
308 out:
309         return nfrags;
310 }
311 EXPORT_SYMBOL_GPL(esp6_output_head);
312
313 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
314 {
315         u8 *iv;
316         int alen;
317         void *tmp;
318         int ivlen;
319         int assoclen;
320         int seqhilen;
321         __be32 *seqhi;
322         struct page *page;
323         struct ip_esp_hdr *esph;
324         struct aead_request *req;
325         struct crypto_aead *aead;
326         struct scatterlist *sg, *dsg;
327         int err = -ENOMEM;
328
329         assoclen = sizeof(struct ip_esp_hdr);
330         seqhilen = 0;
331
332         if (x->props.flags & XFRM_STATE_ESN) {
333                 seqhilen += sizeof(__be32);
334                 assoclen += sizeof(__be32);
335         }
336
337         aead = x->data;
338         alen = crypto_aead_authsize(aead);
339         ivlen = crypto_aead_ivsize(aead);
340
341         tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen);
342         if (!tmp)
343                 goto error;
344
345         seqhi = esp_tmp_seqhi(tmp);
346         iv = esp_tmp_iv(aead, tmp, seqhilen);
347         req = esp_tmp_req(aead, iv);
348         sg = esp_req_sg(aead, req);
349
350         if (esp->inplace)
351                 dsg = sg;
352         else
353                 dsg = &sg[esp->nfrags];
354
355         esph = esp_output_set_esn(skb, x, ip_esp_hdr(skb), seqhi);
356
357         sg_init_table(sg, esp->nfrags);
358         err = skb_to_sgvec(skb, sg,
359                            (unsigned char *)esph - skb->data,
360                            assoclen + ivlen + esp->clen + alen);
361         if (unlikely(err < 0))
362                 goto error_free;
363
364         if (!esp->inplace) {
365                 int allocsize;
366                 struct page_frag *pfrag = &x->xfrag;
367
368                 allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES);
369
370                 spin_lock_bh(&x->lock);
371                 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
372                         spin_unlock_bh(&x->lock);
373                         goto error_free;
374                 }
375
376                 skb_shinfo(skb)->nr_frags = 1;
377
378                 page = pfrag->page;
379                 get_page(page);
380                 /* replace page frags in skb with new page */
381                 __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len);
382                 pfrag->offset = pfrag->offset + allocsize;
383                 spin_unlock_bh(&x->lock);
384
385                 sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1);
386                 err = skb_to_sgvec(skb, dsg,
387                                    (unsigned char *)esph - skb->data,
388                                    assoclen + ivlen + esp->clen + alen);
389                 if (unlikely(err < 0))
390                         goto error_free;
391         }
392
393         if ((x->props.flags & XFRM_STATE_ESN))
394                 aead_request_set_callback(req, 0, esp_output_done_esn, skb);
395         else
396                 aead_request_set_callback(req, 0, esp_output_done, skb);
397
398         aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv);
399         aead_request_set_ad(req, assoclen);
400
401         memset(iv, 0, ivlen);
402         memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8),
403                min(ivlen, 8));
404
405         ESP_SKB_CB(skb)->tmp = tmp;
406         err = crypto_aead_encrypt(req);
407
408         switch (err) {
409         case -EINPROGRESS:
410                 goto error;
411
412         case -ENOSPC:
413                 err = NET_XMIT_DROP;
414                 break;
415
416         case 0:
417                 if ((x->props.flags & XFRM_STATE_ESN))
418                         esp_output_restore_header(skb);
419         }
420
421         if (sg != dsg)
422                 esp_ssg_unref(x, tmp);
423
424 error_free:
425         kfree(tmp);
426 error:
427         return err;
428 }
429 EXPORT_SYMBOL_GPL(esp6_output_tail);
430
431 static int esp6_output(struct xfrm_state *x, struct sk_buff *skb)
432 {
433         int alen;
434         int blksize;
435         struct ip_esp_hdr *esph;
436         struct crypto_aead *aead;
437         struct esp_info esp;
438
439         esp.inplace = true;
440
441         esp.proto = *skb_mac_header(skb);
442         *skb_mac_header(skb) = IPPROTO_ESP;
443
444         /* skb is pure payload to encrypt */
445
446         aead = x->data;
447         alen = crypto_aead_authsize(aead);
448
449         esp.tfclen = 0;
450         if (x->tfcpad) {
451                 struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb);
452                 u32 padto;
453
454                 padto = min(x->tfcpad, esp6_get_mtu(x, dst->child_mtu_cached));
455                 if (skb->len < padto)
456                         esp.tfclen = padto - skb->len;
457         }
458         blksize = ALIGN(crypto_aead_blocksize(aead), 4);
459         esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
460         esp.plen = esp.clen - skb->len - esp.tfclen;
461         esp.tailen = esp.tfclen + esp.plen + alen;
462
463         esp.nfrags = esp6_output_head(x, skb, &esp);
464         if (esp.nfrags < 0)
465                 return esp.nfrags;
466
467         esph = ip_esp_hdr(skb);
468         esph->spi = x->id.spi;
469
470         esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
471         esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low +
472                             ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32));
473
474         skb_push(skb, -skb_network_offset(skb));
475
476         return esp6_output_tail(x, skb, &esp);
477 }
478
479 static inline int esp_remove_trailer(struct sk_buff *skb)
480 {
481         struct xfrm_state *x = xfrm_input_state(skb);
482         struct xfrm_offload *xo = xfrm_offload(skb);
483         struct crypto_aead *aead = x->data;
484         int alen, hlen, elen;
485         int padlen, trimlen;
486         __wsum csumdiff;
487         u8 nexthdr[2];
488         int ret;
489
490         alen = crypto_aead_authsize(aead);
491         hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
492         elen = skb->len - hlen;
493
494         if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
495                 ret = xo->proto;
496                 goto out;
497         }
498
499         ret = skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2);
500         BUG_ON(ret);
501
502         ret = -EINVAL;
503         padlen = nexthdr[0];
504         if (padlen + 2 + alen >= elen) {
505                 net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n",
506                                     padlen + 2, elen - alen);
507                 goto out;
508         }
509
510         trimlen = alen + padlen + 2;
511         if (skb->ip_summed == CHECKSUM_COMPLETE) {
512                 csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0);
513                 skb->csum = csum_block_sub(skb->csum, csumdiff,
514                                            skb->len - trimlen);
515         }
516         pskb_trim(skb, skb->len - trimlen);
517
518         ret = nexthdr[1];
519
520 out:
521         return ret;
522 }
523
524 int esp6_input_done2(struct sk_buff *skb, int err)
525 {
526         struct xfrm_state *x = xfrm_input_state(skb);
527         struct xfrm_offload *xo = xfrm_offload(skb);
528         struct crypto_aead *aead = x->data;
529         int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
530         int hdr_len = skb_network_header_len(skb);
531
532         if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
533                 kfree(ESP_SKB_CB(skb)->tmp);
534
535         if (unlikely(err))
536                 goto out;
537
538         err = esp_remove_trailer(skb);
539         if (unlikely(err < 0))
540                 goto out;
541
542         skb_postpull_rcsum(skb, skb_network_header(skb),
543                            skb_network_header_len(skb));
544         skb_pull_rcsum(skb, hlen);
545         if (x->props.mode == XFRM_MODE_TUNNEL)
546                 skb_reset_transport_header(skb);
547         else
548                 skb_set_transport_header(skb, -hdr_len);
549
550         /* RFC4303: Drop dummy packets without any error */
551         if (err == IPPROTO_NONE)
552                 err = -EINVAL;
553
554 out:
555         return err;
556 }
557 EXPORT_SYMBOL_GPL(esp6_input_done2);
558
559 static void esp_input_done(struct crypto_async_request *base, int err)
560 {
561         struct sk_buff *skb = base->data;
562
563         xfrm_input_resume(skb, esp6_input_done2(skb, err));
564 }
565
566 static void esp_input_restore_header(struct sk_buff *skb)
567 {
568         esp_restore_header(skb, 0);
569         __skb_pull(skb, 4);
570 }
571
572 static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
573 {
574         struct xfrm_state *x = xfrm_input_state(skb);
575
576         /* For ESN we move the header forward by 4 bytes to
577          * accomodate the high bits.  We will move it back after
578          * decryption.
579          */
580         if ((x->props.flags & XFRM_STATE_ESN)) {
581                 struct ip_esp_hdr *esph = skb_push(skb, 4);
582
583                 *seqhi = esph->spi;
584                 esph->spi = esph->seq_no;
585                 esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi;
586         }
587 }
588
589 static void esp_input_done_esn(struct crypto_async_request *base, int err)
590 {
591         struct sk_buff *skb = base->data;
592
593         esp_input_restore_header(skb);
594         esp_input_done(base, err);
595 }
596
597 static int esp6_input(struct xfrm_state *x, struct sk_buff *skb)
598 {
599         struct ip_esp_hdr *esph;
600         struct crypto_aead *aead = x->data;
601         struct aead_request *req;
602         struct sk_buff *trailer;
603         int ivlen = crypto_aead_ivsize(aead);
604         int elen = skb->len - sizeof(*esph) - ivlen;
605         int nfrags;
606         int assoclen;
607         int seqhilen;
608         int ret = 0;
609         void *tmp;
610         __be32 *seqhi;
611         u8 *iv;
612         struct scatterlist *sg;
613
614         if (!pskb_may_pull(skb, sizeof(*esph) + ivlen)) {
615                 ret = -EINVAL;
616                 goto out;
617         }
618
619         if (elen <= 0) {
620                 ret = -EINVAL;
621                 goto out;
622         }
623
624         assoclen = sizeof(*esph);
625         seqhilen = 0;
626
627         if (x->props.flags & XFRM_STATE_ESN) {
628                 seqhilen += sizeof(__be32);
629                 assoclen += seqhilen;
630         }
631
632         if (!skb_cloned(skb)) {
633                 if (!skb_is_nonlinear(skb)) {
634                         nfrags = 1;
635
636                         goto skip_cow;
637                 } else if (!skb_has_frag_list(skb)) {
638                         nfrags = skb_shinfo(skb)->nr_frags;
639                         nfrags++;
640
641                         goto skip_cow;
642                 }
643         }
644
645         nfrags = skb_cow_data(skb, 0, &trailer);
646         if (nfrags < 0) {
647                 ret = -EINVAL;
648                 goto out;
649         }
650
651 skip_cow:
652         ret = -ENOMEM;
653         tmp = esp_alloc_tmp(aead, nfrags, seqhilen);
654         if (!tmp)
655                 goto out;
656
657         ESP_SKB_CB(skb)->tmp = tmp;
658         seqhi = esp_tmp_seqhi(tmp);
659         iv = esp_tmp_iv(aead, tmp, seqhilen);
660         req = esp_tmp_req(aead, iv);
661         sg = esp_req_sg(aead, req);
662
663         esp_input_set_header(skb, seqhi);
664
665         sg_init_table(sg, nfrags);
666         ret = skb_to_sgvec(skb, sg, 0, skb->len);
667         if (unlikely(ret < 0)) {
668                 kfree(tmp);
669                 goto out;
670         }
671
672         skb->ip_summed = CHECKSUM_NONE;
673
674         if ((x->props.flags & XFRM_STATE_ESN))
675                 aead_request_set_callback(req, 0, esp_input_done_esn, skb);
676         else
677                 aead_request_set_callback(req, 0, esp_input_done, skb);
678
679         aead_request_set_crypt(req, sg, sg, elen + ivlen, iv);
680         aead_request_set_ad(req, assoclen);
681
682         ret = crypto_aead_decrypt(req);
683         if (ret == -EINPROGRESS)
684                 goto out;
685
686         if ((x->props.flags & XFRM_STATE_ESN))
687                 esp_input_restore_header(skb);
688
689         ret = esp6_input_done2(skb, ret);
690
691 out:
692         return ret;
693 }
694
695 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu)
696 {
697         struct crypto_aead *aead = x->data;
698         u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
699         unsigned int net_adj;
700
701         if (x->props.mode != XFRM_MODE_TUNNEL)
702                 net_adj = sizeof(struct ipv6hdr);
703         else
704                 net_adj = 0;
705
706         return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
707                  net_adj) & ~(blksize - 1)) + net_adj - 2;
708 }
709
710 static int esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
711                     u8 type, u8 code, int offset, __be32 info)
712 {
713         struct net *net = dev_net(skb->dev);
714         const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
715         struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data + offset);
716         struct xfrm_state *x;
717
718         if (type != ICMPV6_PKT_TOOBIG &&
719             type != NDISC_REDIRECT)
720                 return 0;
721
722         x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
723                               esph->spi, IPPROTO_ESP, AF_INET6);
724         if (!x)
725                 return 0;
726
727         if (type == NDISC_REDIRECT)
728                 ip6_redirect(skb, net, skb->dev->ifindex, 0,
729                              sock_net_uid(net, NULL));
730         else
731                 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
732         xfrm_state_put(x);
733
734         return 0;
735 }
736
737 static void esp6_destroy(struct xfrm_state *x)
738 {
739         struct crypto_aead *aead = x->data;
740
741         if (!aead)
742                 return;
743
744         crypto_free_aead(aead);
745 }
746
747 static int esp_init_aead(struct xfrm_state *x)
748 {
749         char aead_name[CRYPTO_MAX_ALG_NAME];
750         struct crypto_aead *aead;
751         int err;
752
753         err = -ENAMETOOLONG;
754         if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
755                      x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME)
756                 goto error;
757
758         aead = crypto_alloc_aead(aead_name, 0, 0);
759         err = PTR_ERR(aead);
760         if (IS_ERR(aead))
761                 goto error;
762
763         x->data = aead;
764
765         err = crypto_aead_setkey(aead, x->aead->alg_key,
766                                  (x->aead->alg_key_len + 7) / 8);
767         if (err)
768                 goto error;
769
770         err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
771         if (err)
772                 goto error;
773
774 error:
775         return err;
776 }
777
778 static int esp_init_authenc(struct xfrm_state *x)
779 {
780         struct crypto_aead *aead;
781         struct crypto_authenc_key_param *param;
782         struct rtattr *rta;
783         char *key;
784         char *p;
785         char authenc_name[CRYPTO_MAX_ALG_NAME];
786         unsigned int keylen;
787         int err;
788
789         err = -EINVAL;
790         if (!x->ealg)
791                 goto error;
792
793         err = -ENAMETOOLONG;
794
795         if ((x->props.flags & XFRM_STATE_ESN)) {
796                 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
797                              "%s%sauthencesn(%s,%s)%s",
798                              x->geniv ?: "", x->geniv ? "(" : "",
799                              x->aalg ? x->aalg->alg_name : "digest_null",
800                              x->ealg->alg_name,
801                              x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
802                         goto error;
803         } else {
804                 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
805                              "%s%sauthenc(%s,%s)%s",
806                              x->geniv ?: "", x->geniv ? "(" : "",
807                              x->aalg ? x->aalg->alg_name : "digest_null",
808                              x->ealg->alg_name,
809                              x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
810                         goto error;
811         }
812
813         aead = crypto_alloc_aead(authenc_name, 0, 0);
814         err = PTR_ERR(aead);
815         if (IS_ERR(aead))
816                 goto error;
817
818         x->data = aead;
819
820         keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) +
821                  (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param));
822         err = -ENOMEM;
823         key = kmalloc(keylen, GFP_KERNEL);
824         if (!key)
825                 goto error;
826
827         p = key;
828         rta = (void *)p;
829         rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
830         rta->rta_len = RTA_LENGTH(sizeof(*param));
831         param = RTA_DATA(rta);
832         p += RTA_SPACE(sizeof(*param));
833
834         if (x->aalg) {
835                 struct xfrm_algo_desc *aalg_desc;
836
837                 memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8);
838                 p += (x->aalg->alg_key_len + 7) / 8;
839
840                 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
841                 BUG_ON(!aalg_desc);
842
843                 err = -EINVAL;
844                 if (aalg_desc->uinfo.auth.icv_fullbits / 8 !=
845                     crypto_aead_authsize(aead)) {
846                         pr_info("ESP: %s digestsize %u != %hu\n",
847                                 x->aalg->alg_name,
848                                 crypto_aead_authsize(aead),
849                                 aalg_desc->uinfo.auth.icv_fullbits / 8);
850                         goto free_key;
851                 }
852
853                 err = crypto_aead_setauthsize(
854                         aead, x->aalg->alg_trunc_len / 8);
855                 if (err)
856                         goto free_key;
857         }
858
859         param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8);
860         memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8);
861
862         err = crypto_aead_setkey(aead, key, keylen);
863
864 free_key:
865         kfree(key);
866
867 error:
868         return err;
869 }
870
871 static int esp6_init_state(struct xfrm_state *x)
872 {
873         struct crypto_aead *aead;
874         u32 align;
875         int err;
876
877         if (x->encap)
878                 return -EINVAL;
879
880         x->data = NULL;
881
882         if (x->aead)
883                 err = esp_init_aead(x);
884         else
885                 err = esp_init_authenc(x);
886
887         if (err)
888                 goto error;
889
890         aead = x->data;
891
892         x->props.header_len = sizeof(struct ip_esp_hdr) +
893                               crypto_aead_ivsize(aead);
894         switch (x->props.mode) {
895         case XFRM_MODE_BEET:
896                 if (x->sel.family != AF_INET6)
897                         x->props.header_len += IPV4_BEET_PHMAXLEN +
898                                                (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
899                 break;
900         default:
901         case XFRM_MODE_TRANSPORT:
902                 break;
903         case XFRM_MODE_TUNNEL:
904                 x->props.header_len += sizeof(struct ipv6hdr);
905                 break;
906         }
907
908         align = ALIGN(crypto_aead_blocksize(aead), 4);
909         x->props.trailer_len = align + 1 + crypto_aead_authsize(aead);
910
911 error:
912         return err;
913 }
914
915 static int esp6_rcv_cb(struct sk_buff *skb, int err)
916 {
917         return 0;
918 }
919
920 static const struct xfrm_type esp6_type = {
921         .description    = "ESP6",
922         .owner          = THIS_MODULE,
923         .proto          = IPPROTO_ESP,
924         .flags          = XFRM_TYPE_REPLAY_PROT,
925         .init_state     = esp6_init_state,
926         .destructor     = esp6_destroy,
927         .get_mtu        = esp6_get_mtu,
928         .input          = esp6_input,
929         .output         = esp6_output,
930         .hdr_offset     = xfrm6_find_1stfragopt,
931 };
932
933 static struct xfrm6_protocol esp6_protocol = {
934         .handler        =       xfrm6_rcv,
935         .cb_handler     =       esp6_rcv_cb,
936         .err_handler    =       esp6_err,
937         .priority       =       0,
938 };
939
940 static int __init esp6_init(void)
941 {
942         if (xfrm_register_type(&esp6_type, AF_INET6) < 0) {
943                 pr_info("%s: can't add xfrm type\n", __func__);
944                 return -EAGAIN;
945         }
946         if (xfrm6_protocol_register(&esp6_protocol, IPPROTO_ESP) < 0) {
947                 pr_info("%s: can't add protocol\n", __func__);
948                 xfrm_unregister_type(&esp6_type, AF_INET6);
949                 return -EAGAIN;
950         }
951
952         return 0;
953 }
954
955 static void __exit esp6_fini(void)
956 {
957         if (xfrm6_protocol_deregister(&esp6_protocol, IPPROTO_ESP) < 0)
958                 pr_info("%s: can't remove protocol\n", __func__);
959         if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0)
960                 pr_info("%s: can't remove xfrm type\n", __func__);
961 }
962
963 module_init(esp6_init);
964 module_exit(esp6_fini);
965
966 MODULE_LICENSE("GPL");
967 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP);