2 * Asynchronous block chaining cipher operations.
4 * This is the asynchronous version of blkcipher.c indicating completion
7 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
16 #include <crypto/internal/skcipher.h>
17 #include <linux/cpumask.h>
18 #include <linux/err.h>
19 #include <linux/kernel.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/seq_file.h>
24 #include <linux/cryptouser.h>
25 #include <net/netlink.h>
27 #include <crypto/scatterwalk.h>
31 struct ablkcipher_buffer
{
32 struct list_head entry
;
33 struct scatter_walk dst
;
39 ABLKCIPHER_WALK_SLOW
= 1 << 0,
42 static inline void ablkcipher_buffer_write(struct ablkcipher_buffer
*p
)
44 scatterwalk_copychunks(p
->data
, &p
->dst
, p
->len
, 1);
47 void __ablkcipher_walk_complete(struct ablkcipher_walk
*walk
)
49 struct ablkcipher_buffer
*p
, *tmp
;
51 list_for_each_entry_safe(p
, tmp
, &walk
->buffers
, entry
) {
52 ablkcipher_buffer_write(p
);
57 EXPORT_SYMBOL_GPL(__ablkcipher_walk_complete
);
59 static inline void ablkcipher_queue_write(struct ablkcipher_walk
*walk
,
60 struct ablkcipher_buffer
*p
)
63 list_add_tail(&p
->entry
, &walk
->buffers
);
66 /* Get a spot of the specified length that does not straddle a page.
67 * The caller needs to ensure that there is enough space for this operation.
69 static inline u8
*ablkcipher_get_spot(u8
*start
, unsigned int len
)
71 u8
*end_page
= (u8
*)(((unsigned long)(start
+ len
- 1)) & PAGE_MASK
);
72 return max(start
, end_page
);
75 static inline unsigned int ablkcipher_done_slow(struct ablkcipher_walk
*walk
,
78 unsigned int n
= bsize
;
81 unsigned int len_this_page
= scatterwalk_pagelen(&walk
->out
);
83 if (len_this_page
> n
)
85 scatterwalk_advance(&walk
->out
, n
);
86 if (n
== len_this_page
)
89 scatterwalk_start(&walk
->out
, scatterwalk_sg_next(walk
->out
.sg
));
95 static inline unsigned int ablkcipher_done_fast(struct ablkcipher_walk
*walk
,
98 scatterwalk_advance(&walk
->in
, n
);
99 scatterwalk_advance(&walk
->out
, n
);
104 static int ablkcipher_walk_next(struct ablkcipher_request
*req
,
105 struct ablkcipher_walk
*walk
);
107 int ablkcipher_walk_done(struct ablkcipher_request
*req
,
108 struct ablkcipher_walk
*walk
, int err
)
110 struct crypto_tfm
*tfm
= req
->base
.tfm
;
111 unsigned int nbytes
= 0;
113 if (likely(err
>= 0)) {
114 unsigned int n
= walk
->nbytes
- err
;
116 if (likely(!(walk
->flags
& ABLKCIPHER_WALK_SLOW
)))
117 n
= ablkcipher_done_fast(walk
, n
);
118 else if (WARN_ON(err
)) {
122 n
= ablkcipher_done_slow(walk
, n
);
124 nbytes
= walk
->total
- n
;
128 scatterwalk_done(&walk
->in
, 0, nbytes
);
129 scatterwalk_done(&walk
->out
, 1, nbytes
);
132 walk
->total
= nbytes
;
133 walk
->nbytes
= nbytes
;
136 crypto_yield(req
->base
.flags
);
137 return ablkcipher_walk_next(req
, walk
);
140 if (walk
->iv
!= req
->info
)
141 memcpy(req
->info
, walk
->iv
, tfm
->crt_ablkcipher
.ivsize
);
142 kfree(walk
->iv_buffer
);
146 EXPORT_SYMBOL_GPL(ablkcipher_walk_done
);
148 static inline int ablkcipher_next_slow(struct ablkcipher_request
*req
,
149 struct ablkcipher_walk
*walk
,
151 unsigned int alignmask
,
152 void **src_p
, void **dst_p
)
154 unsigned aligned_bsize
= ALIGN(bsize
, alignmask
+ 1);
155 struct ablkcipher_buffer
*p
;
156 void *src
, *dst
, *base
;
159 n
= ALIGN(sizeof(struct ablkcipher_buffer
), alignmask
+ 1);
160 n
+= (aligned_bsize
* 3 - (alignmask
+ 1) +
161 (alignmask
& ~(crypto_tfm_ctx_alignment() - 1)));
163 p
= kmalloc(n
, GFP_ATOMIC
);
165 return ablkcipher_walk_done(req
, walk
, -ENOMEM
);
169 dst
= (u8
*)ALIGN((unsigned long)base
, alignmask
+ 1);
170 src
= dst
= ablkcipher_get_spot(dst
, bsize
);
175 scatterwalk_copychunks(src
, &walk
->in
, bsize
, 0);
177 ablkcipher_queue_write(walk
, p
);
179 walk
->nbytes
= bsize
;
180 walk
->flags
|= ABLKCIPHER_WALK_SLOW
;
188 static inline int ablkcipher_copy_iv(struct ablkcipher_walk
*walk
,
189 struct crypto_tfm
*tfm
,
190 unsigned int alignmask
)
192 unsigned bs
= walk
->blocksize
;
193 unsigned int ivsize
= tfm
->crt_ablkcipher
.ivsize
;
194 unsigned aligned_bs
= ALIGN(bs
, alignmask
+ 1);
195 unsigned int size
= aligned_bs
* 2 + ivsize
+ max(aligned_bs
, ivsize
) -
199 size
+= alignmask
& ~(crypto_tfm_ctx_alignment() - 1);
200 walk
->iv_buffer
= kmalloc(size
, GFP_ATOMIC
);
201 if (!walk
->iv_buffer
)
204 iv
= (u8
*)ALIGN((unsigned long)walk
->iv_buffer
, alignmask
+ 1);
205 iv
= ablkcipher_get_spot(iv
, bs
) + aligned_bs
;
206 iv
= ablkcipher_get_spot(iv
, bs
) + aligned_bs
;
207 iv
= ablkcipher_get_spot(iv
, ivsize
);
209 walk
->iv
= memcpy(iv
, walk
->iv
, ivsize
);
213 static inline int ablkcipher_next_fast(struct ablkcipher_request
*req
,
214 struct ablkcipher_walk
*walk
)
216 walk
->src
.page
= scatterwalk_page(&walk
->in
);
217 walk
->src
.offset
= offset_in_page(walk
->in
.offset
);
218 walk
->dst
.page
= scatterwalk_page(&walk
->out
);
219 walk
->dst
.offset
= offset_in_page(walk
->out
.offset
);
224 static int ablkcipher_walk_next(struct ablkcipher_request
*req
,
225 struct ablkcipher_walk
*walk
)
227 struct crypto_tfm
*tfm
= req
->base
.tfm
;
228 unsigned int alignmask
, bsize
, n
;
232 alignmask
= crypto_tfm_alg_alignmask(tfm
);
234 if (unlikely(n
< crypto_tfm_alg_blocksize(tfm
))) {
235 req
->base
.flags
|= CRYPTO_TFM_RES_BAD_BLOCK_LEN
;
236 return ablkcipher_walk_done(req
, walk
, -EINVAL
);
239 walk
->flags
&= ~ABLKCIPHER_WALK_SLOW
;
242 bsize
= min(walk
->blocksize
, n
);
243 n
= scatterwalk_clamp(&walk
->in
, n
);
244 n
= scatterwalk_clamp(&walk
->out
, n
);
247 !scatterwalk_aligned(&walk
->in
, alignmask
) ||
248 !scatterwalk_aligned(&walk
->out
, alignmask
)) {
249 err
= ablkcipher_next_slow(req
, walk
, bsize
, alignmask
,
251 goto set_phys_lowmem
;
256 return ablkcipher_next_fast(req
, walk
);
260 walk
->src
.page
= virt_to_page(src
);
261 walk
->dst
.page
= virt_to_page(dst
);
262 walk
->src
.offset
= ((unsigned long)src
& (PAGE_SIZE
- 1));
263 walk
->dst
.offset
= ((unsigned long)dst
& (PAGE_SIZE
- 1));
269 static int ablkcipher_walk_first(struct ablkcipher_request
*req
,
270 struct ablkcipher_walk
*walk
)
272 struct crypto_tfm
*tfm
= req
->base
.tfm
;
273 unsigned int alignmask
;
275 alignmask
= crypto_tfm_alg_alignmask(tfm
);
276 if (WARN_ON_ONCE(in_irq()))
279 walk
->nbytes
= walk
->total
;
280 if (unlikely(!walk
->total
))
283 walk
->iv_buffer
= NULL
;
284 walk
->iv
= req
->info
;
285 if (unlikely(((unsigned long)walk
->iv
& alignmask
))) {
286 int err
= ablkcipher_copy_iv(walk
, tfm
, alignmask
);
291 scatterwalk_start(&walk
->in
, walk
->in
.sg
);
292 scatterwalk_start(&walk
->out
, walk
->out
.sg
);
294 return ablkcipher_walk_next(req
, walk
);
297 int ablkcipher_walk_phys(struct ablkcipher_request
*req
,
298 struct ablkcipher_walk
*walk
)
300 walk
->blocksize
= crypto_tfm_alg_blocksize(req
->base
.tfm
);
301 return ablkcipher_walk_first(req
, walk
);
303 EXPORT_SYMBOL_GPL(ablkcipher_walk_phys
);
305 static int setkey_unaligned(struct crypto_ablkcipher
*tfm
, const u8
*key
,
308 struct ablkcipher_alg
*cipher
= crypto_ablkcipher_alg(tfm
);
309 unsigned long alignmask
= crypto_ablkcipher_alignmask(tfm
);
311 u8
*buffer
, *alignbuffer
;
312 unsigned long absize
;
314 absize
= keylen
+ alignmask
;
315 buffer
= kmalloc(absize
, GFP_ATOMIC
);
319 alignbuffer
= (u8
*)ALIGN((unsigned long)buffer
, alignmask
+ 1);
320 memcpy(alignbuffer
, key
, keylen
);
321 ret
= cipher
->setkey(tfm
, alignbuffer
, keylen
);
322 memset(alignbuffer
, 0, keylen
);
327 static int setkey(struct crypto_ablkcipher
*tfm
, const u8
*key
,
330 struct ablkcipher_alg
*cipher
= crypto_ablkcipher_alg(tfm
);
331 unsigned long alignmask
= crypto_ablkcipher_alignmask(tfm
);
333 if (keylen
< cipher
->min_keysize
|| keylen
> cipher
->max_keysize
) {
334 crypto_ablkcipher_set_flags(tfm
, CRYPTO_TFM_RES_BAD_KEY_LEN
);
338 if ((unsigned long)key
& alignmask
)
339 return setkey_unaligned(tfm
, key
, keylen
);
341 return cipher
->setkey(tfm
, key
, keylen
);
344 static unsigned int crypto_ablkcipher_ctxsize(struct crypto_alg
*alg
, u32 type
,
347 return alg
->cra_ctxsize
;
350 int skcipher_null_givencrypt(struct skcipher_givcrypt_request
*req
)
352 return crypto_ablkcipher_encrypt(&req
->creq
);
355 int skcipher_null_givdecrypt(struct skcipher_givcrypt_request
*req
)
357 return crypto_ablkcipher_decrypt(&req
->creq
);
360 static int crypto_init_ablkcipher_ops(struct crypto_tfm
*tfm
, u32 type
,
363 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
364 struct ablkcipher_tfm
*crt
= &tfm
->crt_ablkcipher
;
366 if (alg
->ivsize
> PAGE_SIZE
/ 8)
369 crt
->setkey
= setkey
;
370 crt
->encrypt
= alg
->encrypt
;
371 crt
->decrypt
= alg
->decrypt
;
373 crt
->givencrypt
= skcipher_null_givencrypt
;
374 crt
->givdecrypt
= skcipher_null_givdecrypt
;
376 crt
->base
= __crypto_ablkcipher_cast(tfm
);
377 crt
->ivsize
= alg
->ivsize
;
383 static int crypto_ablkcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
385 struct crypto_report_blkcipher rblkcipher
;
387 strncpy(rblkcipher
.type
, "ablkcipher", sizeof(rblkcipher
.type
));
388 strncpy(rblkcipher
.geniv
, alg
->cra_ablkcipher
.geniv
?: "<default>",
389 sizeof(rblkcipher
.geniv
));
391 rblkcipher
.blocksize
= alg
->cra_blocksize
;
392 rblkcipher
.min_keysize
= alg
->cra_ablkcipher
.min_keysize
;
393 rblkcipher
.max_keysize
= alg
->cra_ablkcipher
.max_keysize
;
394 rblkcipher
.ivsize
= alg
->cra_ablkcipher
.ivsize
;
396 if (nla_put(skb
, CRYPTOCFGA_REPORT_BLKCIPHER
,
397 sizeof(struct crypto_report_blkcipher
), &rblkcipher
))
398 goto nla_put_failure
;
405 static int crypto_ablkcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
411 static void crypto_ablkcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
412 __attribute__ ((unused
));
413 static void crypto_ablkcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
415 struct ablkcipher_alg
*ablkcipher
= &alg
->cra_ablkcipher
;
417 seq_printf(m
, "type : ablkcipher\n");
418 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
420 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
421 seq_printf(m
, "min keysize : %u\n", ablkcipher
->min_keysize
);
422 seq_printf(m
, "max keysize : %u\n", ablkcipher
->max_keysize
);
423 seq_printf(m
, "ivsize : %u\n", ablkcipher
->ivsize
);
424 seq_printf(m
, "geniv : %s\n", ablkcipher
->geniv
?: "<default>");
427 const struct crypto_type crypto_ablkcipher_type
= {
428 .ctxsize
= crypto_ablkcipher_ctxsize
,
429 .init
= crypto_init_ablkcipher_ops
,
430 #ifdef CONFIG_PROC_FS
431 .show
= crypto_ablkcipher_show
,
433 .report
= crypto_ablkcipher_report
,
435 EXPORT_SYMBOL_GPL(crypto_ablkcipher_type
);
437 static int no_givdecrypt(struct skcipher_givcrypt_request
*req
)
442 static int crypto_init_givcipher_ops(struct crypto_tfm
*tfm
, u32 type
,
445 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
446 struct ablkcipher_tfm
*crt
= &tfm
->crt_ablkcipher
;
448 if (alg
->ivsize
> PAGE_SIZE
/ 8)
451 crt
->setkey
= tfm
->__crt_alg
->cra_flags
& CRYPTO_ALG_GENIV
?
452 alg
->setkey
: setkey
;
453 crt
->encrypt
= alg
->encrypt
;
454 crt
->decrypt
= alg
->decrypt
;
455 crt
->givencrypt
= alg
->givencrypt
;
456 crt
->givdecrypt
= alg
->givdecrypt
?: no_givdecrypt
;
457 crt
->base
= __crypto_ablkcipher_cast(tfm
);
458 crt
->ivsize
= alg
->ivsize
;
464 static int crypto_givcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
466 struct crypto_report_blkcipher rblkcipher
;
468 strncpy(rblkcipher
.type
, "givcipher", sizeof(rblkcipher
.type
));
469 strncpy(rblkcipher
.geniv
, alg
->cra_ablkcipher
.geniv
?: "<built-in>",
470 sizeof(rblkcipher
.geniv
));
472 rblkcipher
.blocksize
= alg
->cra_blocksize
;
473 rblkcipher
.min_keysize
= alg
->cra_ablkcipher
.min_keysize
;
474 rblkcipher
.max_keysize
= alg
->cra_ablkcipher
.max_keysize
;
475 rblkcipher
.ivsize
= alg
->cra_ablkcipher
.ivsize
;
477 if (nla_put(skb
, CRYPTOCFGA_REPORT_BLKCIPHER
,
478 sizeof(struct crypto_report_blkcipher
), &rblkcipher
))
479 goto nla_put_failure
;
486 static int crypto_givcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
492 static void crypto_givcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
493 __attribute__ ((unused
));
494 static void crypto_givcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
496 struct ablkcipher_alg
*ablkcipher
= &alg
->cra_ablkcipher
;
498 seq_printf(m
, "type : givcipher\n");
499 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
501 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
502 seq_printf(m
, "min keysize : %u\n", ablkcipher
->min_keysize
);
503 seq_printf(m
, "max keysize : %u\n", ablkcipher
->max_keysize
);
504 seq_printf(m
, "ivsize : %u\n", ablkcipher
->ivsize
);
505 seq_printf(m
, "geniv : %s\n", ablkcipher
->geniv
?: "<built-in>");
508 const struct crypto_type crypto_givcipher_type
= {
509 .ctxsize
= crypto_ablkcipher_ctxsize
,
510 .init
= crypto_init_givcipher_ops
,
511 #ifdef CONFIG_PROC_FS
512 .show
= crypto_givcipher_show
,
514 .report
= crypto_givcipher_report
,
516 EXPORT_SYMBOL_GPL(crypto_givcipher_type
);
518 const char *crypto_default_geniv(const struct crypto_alg
*alg
)
520 if (((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
521 CRYPTO_ALG_TYPE_BLKCIPHER
? alg
->cra_blkcipher
.ivsize
:
522 alg
->cra_ablkcipher
.ivsize
) !=
529 static int crypto_givcipher_default(struct crypto_alg
*alg
, u32 type
, u32 mask
)
531 struct rtattr
*tb
[3];
534 struct crypto_attr_type data
;
538 struct crypto_attr_alg data
;
540 struct crypto_template
*tmpl
;
541 struct crypto_instance
*inst
;
542 struct crypto_alg
*larval
;
546 larval
= crypto_larval_lookup(alg
->cra_driver_name
,
547 (type
& ~CRYPTO_ALG_TYPE_MASK
) |
548 CRYPTO_ALG_TYPE_GIVCIPHER
,
549 mask
| CRYPTO_ALG_TYPE_MASK
);
550 err
= PTR_ERR(larval
);
555 if (!crypto_is_larval(larval
))
558 ptype
.attr
.rta_len
= sizeof(ptype
);
559 ptype
.attr
.rta_type
= CRYPTOA_TYPE
;
560 ptype
.data
.type
= type
| CRYPTO_ALG_GENIV
;
561 /* GENIV tells the template that we're making a default geniv. */
562 ptype
.data
.mask
= mask
| CRYPTO_ALG_GENIV
;
565 palg
.attr
.rta_len
= sizeof(palg
);
566 palg
.attr
.rta_type
= CRYPTOA_ALG
;
567 /* Must use the exact name to locate ourselves. */
568 memcpy(palg
.data
.name
, alg
->cra_driver_name
, CRYPTO_MAX_ALG_NAME
);
573 if ((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
574 CRYPTO_ALG_TYPE_BLKCIPHER
)
575 geniv
= alg
->cra_blkcipher
.geniv
;
577 geniv
= alg
->cra_ablkcipher
.geniv
;
580 geniv
= crypto_default_geniv(alg
);
582 tmpl
= crypto_lookup_template(geniv
);
587 inst
= tmpl
->alloc(tb
);
592 if ((err
= crypto_register_instance(tmpl
, inst
))) {
597 /* Redo the lookup to use the instance we just registered. */
601 crypto_tmpl_put(tmpl
);
603 crypto_larval_kill(larval
);
605 crypto_mod_put(larval
);
611 struct crypto_alg
*crypto_lookup_skcipher(const char *name
, u32 type
, u32 mask
)
613 struct crypto_alg
*alg
;
615 alg
= crypto_alg_mod_lookup(name
, type
, mask
);
619 if ((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
620 CRYPTO_ALG_TYPE_GIVCIPHER
)
623 if (!((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
624 CRYPTO_ALG_TYPE_BLKCIPHER
? alg
->cra_blkcipher
.ivsize
:
625 alg
->cra_ablkcipher
.ivsize
))
629 alg
= crypto_alg_mod_lookup(name
, type
| CRYPTO_ALG_TESTED
,
630 mask
& ~CRYPTO_ALG_TESTED
);
634 if ((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
635 CRYPTO_ALG_TYPE_GIVCIPHER
) {
636 if ((alg
->cra_flags
^ type
^ ~mask
) & CRYPTO_ALG_TESTED
) {
638 alg
= ERR_PTR(-ENOENT
);
643 BUG_ON(!((alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
) ==
644 CRYPTO_ALG_TYPE_BLKCIPHER
? alg
->cra_blkcipher
.ivsize
:
645 alg
->cra_ablkcipher
.ivsize
));
647 return ERR_PTR(crypto_givcipher_default(alg
, type
, mask
));
649 EXPORT_SYMBOL_GPL(crypto_lookup_skcipher
);
651 int crypto_grab_skcipher(struct crypto_skcipher_spawn
*spawn
, const char *name
,
654 struct crypto_alg
*alg
;
657 type
= crypto_skcipher_type(type
);
658 mask
= crypto_skcipher_mask(mask
);
660 alg
= crypto_lookup_skcipher(name
, type
, mask
);
664 err
= crypto_init_spawn(&spawn
->base
, alg
, spawn
->base
.inst
, mask
);
668 EXPORT_SYMBOL_GPL(crypto_grab_skcipher
);
670 struct crypto_ablkcipher
*crypto_alloc_ablkcipher(const char *alg_name
,
673 struct crypto_tfm
*tfm
;
676 type
= crypto_skcipher_type(type
);
677 mask
= crypto_skcipher_mask(mask
);
680 struct crypto_alg
*alg
;
682 alg
= crypto_lookup_skcipher(alg_name
, type
, mask
);
688 tfm
= __crypto_alloc_tfm(alg
, type
, mask
);
690 return __crypto_ablkcipher_cast(tfm
);
698 if (signal_pending(current
)) {
706 EXPORT_SYMBOL_GPL(crypto_alloc_ablkcipher
);