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