2 * Symmetric key cipher operations.
4 * Generic encrypt/decrypt wrapper for ciphers, handles operations across
5 * multiple page boundaries by using temporary blocks. In user context,
6 * the kernel is given a chance to schedule us once per page.
8 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
17 #include <crypto/internal/aead.h>
18 #include <crypto/internal/skcipher.h>
19 #include <crypto/scatterwalk.h>
20 #include <linux/bug.h>
21 #include <linux/cryptouser.h>
22 #include <linux/compiler.h>
23 #include <linux/list.h>
24 #include <linux/module.h>
25 #include <linux/rtnetlink.h>
26 #include <linux/seq_file.h>
27 #include <net/netlink.h>
32 SKCIPHER_WALK_PHYS
= 1 << 0,
33 SKCIPHER_WALK_SLOW
= 1 << 1,
34 SKCIPHER_WALK_COPY
= 1 << 2,
35 SKCIPHER_WALK_DIFF
= 1 << 3,
36 SKCIPHER_WALK_SLEEP
= 1 << 4,
39 struct skcipher_walk_buffer
{
40 struct list_head entry
;
41 struct scatter_walk dst
;
47 static int skcipher_walk_next(struct skcipher_walk
*walk
);
49 static inline void skcipher_unmap(struct scatter_walk
*walk
, void *vaddr
)
51 if (PageHighMem(scatterwalk_page(walk
)))
55 static inline void *skcipher_map(struct scatter_walk
*walk
)
57 struct page
*page
= scatterwalk_page(walk
);
59 return (PageHighMem(page
) ? kmap_atomic(page
) : page_address(page
)) +
60 offset_in_page(walk
->offset
);
63 static inline void skcipher_map_src(struct skcipher_walk
*walk
)
65 walk
->src
.virt
.addr
= skcipher_map(&walk
->in
);
68 static inline void skcipher_map_dst(struct skcipher_walk
*walk
)
70 walk
->dst
.virt
.addr
= skcipher_map(&walk
->out
);
73 static inline void skcipher_unmap_src(struct skcipher_walk
*walk
)
75 skcipher_unmap(&walk
->in
, walk
->src
.virt
.addr
);
78 static inline void skcipher_unmap_dst(struct skcipher_walk
*walk
)
80 skcipher_unmap(&walk
->out
, walk
->dst
.virt
.addr
);
83 static inline gfp_t
skcipher_walk_gfp(struct skcipher_walk
*walk
)
85 return walk
->flags
& SKCIPHER_WALK_SLEEP
? GFP_KERNEL
: GFP_ATOMIC
;
88 /* Get a spot of the specified length that does not straddle a page.
89 * The caller needs to ensure that there is enough space for this operation.
91 static inline u8
*skcipher_get_spot(u8
*start
, unsigned int len
)
93 u8
*end_page
= (u8
*)(((unsigned long)(start
+ len
- 1)) & PAGE_MASK
);
95 return max(start
, end_page
);
98 static void skcipher_done_slow(struct skcipher_walk
*walk
, unsigned int bsize
)
102 addr
= (u8
*)ALIGN((unsigned long)walk
->buffer
, walk
->alignmask
+ 1);
103 addr
= skcipher_get_spot(addr
, bsize
);
104 scatterwalk_copychunks(addr
, &walk
->out
, bsize
,
105 (walk
->flags
& SKCIPHER_WALK_PHYS
) ? 2 : 1);
108 int skcipher_walk_done(struct skcipher_walk
*walk
, int err
)
110 unsigned int n
; /* bytes processed */
113 if (unlikely(err
< 0))
116 n
= walk
->nbytes
- err
;
118 more
= (walk
->total
!= 0);
120 if (likely(!(walk
->flags
& (SKCIPHER_WALK_PHYS
|
123 SKCIPHER_WALK_DIFF
)))) {
125 skcipher_unmap_src(walk
);
126 } else if (walk
->flags
& SKCIPHER_WALK_DIFF
) {
127 skcipher_unmap_dst(walk
);
129 } else if (walk
->flags
& SKCIPHER_WALK_COPY
) {
130 skcipher_map_dst(walk
);
131 memcpy(walk
->dst
.virt
.addr
, walk
->page
, n
);
132 skcipher_unmap_dst(walk
);
133 } else if (unlikely(walk
->flags
& SKCIPHER_WALK_SLOW
)) {
136 * Didn't process all bytes. Either the algorithm is
137 * broken, or this was the last step and it turned out
138 * the message wasn't evenly divisible into blocks but
139 * the algorithm requires it.
144 skcipher_done_slow(walk
, n
);
145 goto already_advanced
;
148 scatterwalk_advance(&walk
->in
, n
);
149 scatterwalk_advance(&walk
->out
, n
);
151 scatterwalk_done(&walk
->in
, 0, more
);
152 scatterwalk_done(&walk
->out
, 1, more
);
155 crypto_yield(walk
->flags
& SKCIPHER_WALK_SLEEP
?
156 CRYPTO_TFM_REQ_MAY_SLEEP
: 0);
157 return skcipher_walk_next(walk
);
163 /* Short-circuit for the common/fast path. */
164 if (!((unsigned long)walk
->buffer
| (unsigned long)walk
->page
))
167 if (walk
->flags
& SKCIPHER_WALK_PHYS
)
170 if (walk
->iv
!= walk
->oiv
)
171 memcpy(walk
->oiv
, walk
->iv
, walk
->ivsize
);
172 if (walk
->buffer
!= walk
->page
)
175 free_page((unsigned long)walk
->page
);
180 EXPORT_SYMBOL_GPL(skcipher_walk_done
);
182 void skcipher_walk_complete(struct skcipher_walk
*walk
, int err
)
184 struct skcipher_walk_buffer
*p
, *tmp
;
186 list_for_each_entry_safe(p
, tmp
, &walk
->buffers
, entry
) {
194 data
= PTR_ALIGN(&p
->buffer
[0], walk
->alignmask
+ 1);
195 data
= skcipher_get_spot(data
, walk
->stride
);
198 scatterwalk_copychunks(data
, &p
->dst
, p
->len
, 1);
200 if (offset_in_page(p
->data
) + p
->len
+ walk
->stride
>
202 free_page((unsigned long)p
->data
);
209 if (!err
&& walk
->iv
!= walk
->oiv
)
210 memcpy(walk
->oiv
, walk
->iv
, walk
->ivsize
);
211 if (walk
->buffer
!= walk
->page
)
214 free_page((unsigned long)walk
->page
);
216 EXPORT_SYMBOL_GPL(skcipher_walk_complete
);
218 static void skcipher_queue_write(struct skcipher_walk
*walk
,
219 struct skcipher_walk_buffer
*p
)
222 list_add_tail(&p
->entry
, &walk
->buffers
);
225 static int skcipher_next_slow(struct skcipher_walk
*walk
, unsigned int bsize
)
227 bool phys
= walk
->flags
& SKCIPHER_WALK_PHYS
;
228 unsigned alignmask
= walk
->alignmask
;
229 struct skcipher_walk_buffer
*p
;
237 walk
->buffer
= walk
->page
;
238 buffer
= walk
->buffer
;
243 /* Start with the minimum alignment of kmalloc. */
244 a
= crypto_tfm_ctx_alignment() - 1;
248 /* Calculate the minimum alignment of p->buffer. */
249 a
&= (sizeof(*p
) ^ (sizeof(*p
) - 1)) >> 1;
253 /* Minimum size to align p->buffer by alignmask. */
256 /* Minimum size to ensure p->buffer does not straddle a page. */
257 n
+= (bsize
- 1) & ~(alignmask
| a
);
259 v
= kzalloc(n
, skcipher_walk_gfp(walk
));
261 return skcipher_walk_done(walk
, -ENOMEM
);
266 skcipher_queue_write(walk
, p
);
274 walk
->dst
.virt
.addr
= PTR_ALIGN(buffer
, alignmask
+ 1);
275 walk
->dst
.virt
.addr
= skcipher_get_spot(walk
->dst
.virt
.addr
, bsize
);
276 walk
->src
.virt
.addr
= walk
->dst
.virt
.addr
;
278 scatterwalk_copychunks(walk
->src
.virt
.addr
, &walk
->in
, bsize
, 0);
280 walk
->nbytes
= bsize
;
281 walk
->flags
|= SKCIPHER_WALK_SLOW
;
286 static int skcipher_next_copy(struct skcipher_walk
*walk
)
288 struct skcipher_walk_buffer
*p
;
289 u8
*tmp
= walk
->page
;
291 skcipher_map_src(walk
);
292 memcpy(tmp
, walk
->src
.virt
.addr
, walk
->nbytes
);
293 skcipher_unmap_src(walk
);
295 walk
->src
.virt
.addr
= tmp
;
296 walk
->dst
.virt
.addr
= tmp
;
298 if (!(walk
->flags
& SKCIPHER_WALK_PHYS
))
301 p
= kmalloc(sizeof(*p
), skcipher_walk_gfp(walk
));
305 p
->data
= walk
->page
;
306 p
->len
= walk
->nbytes
;
307 skcipher_queue_write(walk
, p
);
309 if (offset_in_page(walk
->page
) + walk
->nbytes
+ walk
->stride
>
313 walk
->page
+= walk
->nbytes
;
318 static int skcipher_next_fast(struct skcipher_walk
*walk
)
322 walk
->src
.phys
.page
= scatterwalk_page(&walk
->in
);
323 walk
->src
.phys
.offset
= offset_in_page(walk
->in
.offset
);
324 walk
->dst
.phys
.page
= scatterwalk_page(&walk
->out
);
325 walk
->dst
.phys
.offset
= offset_in_page(walk
->out
.offset
);
327 if (walk
->flags
& SKCIPHER_WALK_PHYS
)
330 diff
= walk
->src
.phys
.offset
- walk
->dst
.phys
.offset
;
331 diff
|= walk
->src
.virt
.page
- walk
->dst
.virt
.page
;
333 skcipher_map_src(walk
);
334 walk
->dst
.virt
.addr
= walk
->src
.virt
.addr
;
337 walk
->flags
|= SKCIPHER_WALK_DIFF
;
338 skcipher_map_dst(walk
);
344 static int skcipher_walk_next(struct skcipher_walk
*walk
)
350 walk
->flags
&= ~(SKCIPHER_WALK_SLOW
| SKCIPHER_WALK_COPY
|
354 bsize
= min(walk
->stride
, max(n
, walk
->blocksize
));
355 n
= scatterwalk_clamp(&walk
->in
, n
);
356 n
= scatterwalk_clamp(&walk
->out
, n
);
358 if (unlikely(n
< bsize
)) {
359 if (unlikely(walk
->total
< walk
->blocksize
))
360 return skcipher_walk_done(walk
, -EINVAL
);
363 err
= skcipher_next_slow(walk
, bsize
);
364 goto set_phys_lowmem
;
367 if (unlikely((walk
->in
.offset
| walk
->out
.offset
) & walk
->alignmask
)) {
369 gfp_t gfp
= skcipher_walk_gfp(walk
);
371 walk
->page
= (void *)__get_free_page(gfp
);
376 walk
->nbytes
= min_t(unsigned, n
,
377 PAGE_SIZE
- offset_in_page(walk
->page
));
378 walk
->flags
|= SKCIPHER_WALK_COPY
;
379 err
= skcipher_next_copy(walk
);
380 goto set_phys_lowmem
;
385 return skcipher_next_fast(walk
);
388 if (!err
&& (walk
->flags
& SKCIPHER_WALK_PHYS
)) {
389 walk
->src
.phys
.page
= virt_to_page(walk
->src
.virt
.addr
);
390 walk
->dst
.phys
.page
= virt_to_page(walk
->dst
.virt
.addr
);
391 walk
->src
.phys
.offset
&= PAGE_SIZE
- 1;
392 walk
->dst
.phys
.offset
&= PAGE_SIZE
- 1;
396 EXPORT_SYMBOL_GPL(skcipher_walk_next
);
398 static int skcipher_copy_iv(struct skcipher_walk
*walk
)
400 unsigned a
= crypto_tfm_ctx_alignment() - 1;
401 unsigned alignmask
= walk
->alignmask
;
402 unsigned ivsize
= walk
->ivsize
;
403 unsigned bs
= walk
->stride
;
408 aligned_bs
= ALIGN(bs
, alignmask
+ 1);
410 /* Minimum size to align buffer by alignmask. */
411 size
= alignmask
& ~a
;
413 if (walk
->flags
& SKCIPHER_WALK_PHYS
)
416 size
+= aligned_bs
+ ivsize
;
418 /* Minimum size to ensure buffer does not straddle a page. */
419 size
+= (bs
- 1) & ~(alignmask
| a
);
422 walk
->buffer
= kmalloc(size
, skcipher_walk_gfp(walk
));
426 iv
= PTR_ALIGN(walk
->buffer
, alignmask
+ 1);
427 iv
= skcipher_get_spot(iv
, bs
) + aligned_bs
;
429 walk
->iv
= memcpy(iv
, walk
->iv
, walk
->ivsize
);
433 static int skcipher_walk_first(struct skcipher_walk
*walk
)
435 if (WARN_ON_ONCE(in_irq()))
439 if (unlikely(((unsigned long)walk
->iv
& walk
->alignmask
))) {
440 int err
= skcipher_copy_iv(walk
);
446 walk
->nbytes
= walk
->total
;
448 return skcipher_walk_next(walk
);
451 static int skcipher_walk_skcipher(struct skcipher_walk
*walk
,
452 struct skcipher_request
*req
)
454 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(req
);
456 walk
->total
= req
->cryptlen
;
461 if (unlikely(!walk
->total
))
464 scatterwalk_start(&walk
->in
, req
->src
);
465 scatterwalk_start(&walk
->out
, req
->dst
);
467 walk
->flags
&= ~SKCIPHER_WALK_SLEEP
;
468 walk
->flags
|= req
->base
.flags
& CRYPTO_TFM_REQ_MAY_SLEEP
?
469 SKCIPHER_WALK_SLEEP
: 0;
471 walk
->blocksize
= crypto_skcipher_blocksize(tfm
);
472 walk
->stride
= crypto_skcipher_walksize(tfm
);
473 walk
->ivsize
= crypto_skcipher_ivsize(tfm
);
474 walk
->alignmask
= crypto_skcipher_alignmask(tfm
);
476 return skcipher_walk_first(walk
);
479 int skcipher_walk_virt(struct skcipher_walk
*walk
,
480 struct skcipher_request
*req
, bool atomic
)
484 walk
->flags
&= ~SKCIPHER_WALK_PHYS
;
486 err
= skcipher_walk_skcipher(walk
, req
);
488 walk
->flags
&= atomic
? ~SKCIPHER_WALK_SLEEP
: ~0;
492 EXPORT_SYMBOL_GPL(skcipher_walk_virt
);
494 void skcipher_walk_atomise(struct skcipher_walk
*walk
)
496 walk
->flags
&= ~SKCIPHER_WALK_SLEEP
;
498 EXPORT_SYMBOL_GPL(skcipher_walk_atomise
);
500 int skcipher_walk_async(struct skcipher_walk
*walk
,
501 struct skcipher_request
*req
)
503 walk
->flags
|= SKCIPHER_WALK_PHYS
;
505 INIT_LIST_HEAD(&walk
->buffers
);
507 return skcipher_walk_skcipher(walk
, req
);
509 EXPORT_SYMBOL_GPL(skcipher_walk_async
);
511 static int skcipher_walk_aead_common(struct skcipher_walk
*walk
,
512 struct aead_request
*req
, bool atomic
)
514 struct crypto_aead
*tfm
= crypto_aead_reqtfm(req
);
521 if (unlikely(!walk
->total
))
524 walk
->flags
&= ~SKCIPHER_WALK_PHYS
;
526 scatterwalk_start(&walk
->in
, req
->src
);
527 scatterwalk_start(&walk
->out
, req
->dst
);
529 scatterwalk_copychunks(NULL
, &walk
->in
, req
->assoclen
, 2);
530 scatterwalk_copychunks(NULL
, &walk
->out
, req
->assoclen
, 2);
532 scatterwalk_done(&walk
->in
, 0, walk
->total
);
533 scatterwalk_done(&walk
->out
, 0, walk
->total
);
535 if (req
->base
.flags
& CRYPTO_TFM_REQ_MAY_SLEEP
)
536 walk
->flags
|= SKCIPHER_WALK_SLEEP
;
538 walk
->flags
&= ~SKCIPHER_WALK_SLEEP
;
540 walk
->blocksize
= crypto_aead_blocksize(tfm
);
541 walk
->stride
= crypto_aead_chunksize(tfm
);
542 walk
->ivsize
= crypto_aead_ivsize(tfm
);
543 walk
->alignmask
= crypto_aead_alignmask(tfm
);
545 err
= skcipher_walk_first(walk
);
548 walk
->flags
&= ~SKCIPHER_WALK_SLEEP
;
553 int skcipher_walk_aead(struct skcipher_walk
*walk
, struct aead_request
*req
,
556 walk
->total
= req
->cryptlen
;
558 return skcipher_walk_aead_common(walk
, req
, atomic
);
560 EXPORT_SYMBOL_GPL(skcipher_walk_aead
);
562 int skcipher_walk_aead_encrypt(struct skcipher_walk
*walk
,
563 struct aead_request
*req
, bool atomic
)
565 walk
->total
= req
->cryptlen
;
567 return skcipher_walk_aead_common(walk
, req
, atomic
);
569 EXPORT_SYMBOL_GPL(skcipher_walk_aead_encrypt
);
571 int skcipher_walk_aead_decrypt(struct skcipher_walk
*walk
,
572 struct aead_request
*req
, bool atomic
)
574 struct crypto_aead
*tfm
= crypto_aead_reqtfm(req
);
576 walk
->total
= req
->cryptlen
- crypto_aead_authsize(tfm
);
578 return skcipher_walk_aead_common(walk
, req
, atomic
);
580 EXPORT_SYMBOL_GPL(skcipher_walk_aead_decrypt
);
582 static unsigned int crypto_skcipher_extsize(struct crypto_alg
*alg
)
584 if (alg
->cra_type
== &crypto_blkcipher_type
)
585 return sizeof(struct crypto_blkcipher
*);
587 if (alg
->cra_type
== &crypto_ablkcipher_type
||
588 alg
->cra_type
== &crypto_givcipher_type
)
589 return sizeof(struct crypto_ablkcipher
*);
591 return crypto_alg_extsize(alg
);
594 static int skcipher_setkey_blkcipher(struct crypto_skcipher
*tfm
,
595 const u8
*key
, unsigned int keylen
)
597 struct crypto_blkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
598 struct crypto_blkcipher
*blkcipher
= *ctx
;
601 crypto_blkcipher_clear_flags(blkcipher
, ~0);
602 crypto_blkcipher_set_flags(blkcipher
, crypto_skcipher_get_flags(tfm
) &
603 CRYPTO_TFM_REQ_MASK
);
604 err
= crypto_blkcipher_setkey(blkcipher
, key
, keylen
);
605 crypto_skcipher_set_flags(tfm
, crypto_blkcipher_get_flags(blkcipher
) &
606 CRYPTO_TFM_RES_MASK
);
611 static int skcipher_crypt_blkcipher(struct skcipher_request
*req
,
612 int (*crypt
)(struct blkcipher_desc
*,
613 struct scatterlist
*,
614 struct scatterlist
*,
617 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(req
);
618 struct crypto_blkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
619 struct blkcipher_desc desc
= {
622 .flags
= req
->base
.flags
,
626 return crypt(&desc
, req
->dst
, req
->src
, req
->cryptlen
);
629 static int skcipher_encrypt_blkcipher(struct skcipher_request
*req
)
631 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
632 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
633 struct blkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_blkcipher
;
635 return skcipher_crypt_blkcipher(req
, alg
->encrypt
);
638 static int skcipher_decrypt_blkcipher(struct skcipher_request
*req
)
640 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
641 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
642 struct blkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_blkcipher
;
644 return skcipher_crypt_blkcipher(req
, alg
->decrypt
);
647 static void crypto_exit_skcipher_ops_blkcipher(struct crypto_tfm
*tfm
)
649 struct crypto_blkcipher
**ctx
= crypto_tfm_ctx(tfm
);
651 crypto_free_blkcipher(*ctx
);
654 static int crypto_init_skcipher_ops_blkcipher(struct crypto_tfm
*tfm
)
656 struct crypto_alg
*calg
= tfm
->__crt_alg
;
657 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
658 struct crypto_blkcipher
**ctx
= crypto_tfm_ctx(tfm
);
659 struct crypto_blkcipher
*blkcipher
;
660 struct crypto_tfm
*btfm
;
662 if (!crypto_mod_get(calg
))
665 btfm
= __crypto_alloc_tfm(calg
, CRYPTO_ALG_TYPE_BLKCIPHER
,
666 CRYPTO_ALG_TYPE_MASK
);
668 crypto_mod_put(calg
);
669 return PTR_ERR(btfm
);
672 blkcipher
= __crypto_blkcipher_cast(btfm
);
674 tfm
->exit
= crypto_exit_skcipher_ops_blkcipher
;
676 skcipher
->setkey
= skcipher_setkey_blkcipher
;
677 skcipher
->encrypt
= skcipher_encrypt_blkcipher
;
678 skcipher
->decrypt
= skcipher_decrypt_blkcipher
;
680 skcipher
->ivsize
= crypto_blkcipher_ivsize(blkcipher
);
681 skcipher
->keysize
= calg
->cra_blkcipher
.max_keysize
;
686 static int skcipher_setkey_ablkcipher(struct crypto_skcipher
*tfm
,
687 const u8
*key
, unsigned int keylen
)
689 struct crypto_ablkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
690 struct crypto_ablkcipher
*ablkcipher
= *ctx
;
693 crypto_ablkcipher_clear_flags(ablkcipher
, ~0);
694 crypto_ablkcipher_set_flags(ablkcipher
,
695 crypto_skcipher_get_flags(tfm
) &
696 CRYPTO_TFM_REQ_MASK
);
697 err
= crypto_ablkcipher_setkey(ablkcipher
, key
, keylen
);
698 crypto_skcipher_set_flags(tfm
,
699 crypto_ablkcipher_get_flags(ablkcipher
) &
700 CRYPTO_TFM_RES_MASK
);
705 static int skcipher_crypt_ablkcipher(struct skcipher_request
*req
,
706 int (*crypt
)(struct ablkcipher_request
*))
708 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(req
);
709 struct crypto_ablkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
710 struct ablkcipher_request
*subreq
= skcipher_request_ctx(req
);
712 ablkcipher_request_set_tfm(subreq
, *ctx
);
713 ablkcipher_request_set_callback(subreq
, skcipher_request_flags(req
),
714 req
->base
.complete
, req
->base
.data
);
715 ablkcipher_request_set_crypt(subreq
, req
->src
, req
->dst
, req
->cryptlen
,
718 return crypt(subreq
);
721 static int skcipher_encrypt_ablkcipher(struct skcipher_request
*req
)
723 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
724 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
725 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
727 return skcipher_crypt_ablkcipher(req
, alg
->encrypt
);
730 static int skcipher_decrypt_ablkcipher(struct skcipher_request
*req
)
732 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
733 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
734 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
736 return skcipher_crypt_ablkcipher(req
, alg
->decrypt
);
739 static void crypto_exit_skcipher_ops_ablkcipher(struct crypto_tfm
*tfm
)
741 struct crypto_ablkcipher
**ctx
= crypto_tfm_ctx(tfm
);
743 crypto_free_ablkcipher(*ctx
);
746 static int crypto_init_skcipher_ops_ablkcipher(struct crypto_tfm
*tfm
)
748 struct crypto_alg
*calg
= tfm
->__crt_alg
;
749 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
750 struct crypto_ablkcipher
**ctx
= crypto_tfm_ctx(tfm
);
751 struct crypto_ablkcipher
*ablkcipher
;
752 struct crypto_tfm
*abtfm
;
754 if (!crypto_mod_get(calg
))
757 abtfm
= __crypto_alloc_tfm(calg
, 0, 0);
759 crypto_mod_put(calg
);
760 return PTR_ERR(abtfm
);
763 ablkcipher
= __crypto_ablkcipher_cast(abtfm
);
765 tfm
->exit
= crypto_exit_skcipher_ops_ablkcipher
;
767 skcipher
->setkey
= skcipher_setkey_ablkcipher
;
768 skcipher
->encrypt
= skcipher_encrypt_ablkcipher
;
769 skcipher
->decrypt
= skcipher_decrypt_ablkcipher
;
771 skcipher
->ivsize
= crypto_ablkcipher_ivsize(ablkcipher
);
772 skcipher
->reqsize
= crypto_ablkcipher_reqsize(ablkcipher
) +
773 sizeof(struct ablkcipher_request
);
774 skcipher
->keysize
= calg
->cra_ablkcipher
.max_keysize
;
779 static int skcipher_setkey_unaligned(struct crypto_skcipher
*tfm
,
780 const u8
*key
, unsigned int keylen
)
782 unsigned long alignmask
= crypto_skcipher_alignmask(tfm
);
783 struct skcipher_alg
*cipher
= crypto_skcipher_alg(tfm
);
784 u8
*buffer
, *alignbuffer
;
785 unsigned long absize
;
788 absize
= keylen
+ alignmask
;
789 buffer
= kmalloc(absize
, GFP_ATOMIC
);
793 alignbuffer
= (u8
*)ALIGN((unsigned long)buffer
, alignmask
+ 1);
794 memcpy(alignbuffer
, key
, keylen
);
795 ret
= cipher
->setkey(tfm
, alignbuffer
, keylen
);
800 static int skcipher_setkey(struct crypto_skcipher
*tfm
, const u8
*key
,
803 struct skcipher_alg
*cipher
= crypto_skcipher_alg(tfm
);
804 unsigned long alignmask
= crypto_skcipher_alignmask(tfm
);
806 if (keylen
< cipher
->min_keysize
|| keylen
> cipher
->max_keysize
) {
807 crypto_skcipher_set_flags(tfm
, CRYPTO_TFM_RES_BAD_KEY_LEN
);
811 if ((unsigned long)key
& alignmask
)
812 return skcipher_setkey_unaligned(tfm
, key
, keylen
);
814 return cipher
->setkey(tfm
, key
, keylen
);
817 static void crypto_skcipher_exit_tfm(struct crypto_tfm
*tfm
)
819 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
820 struct skcipher_alg
*alg
= crypto_skcipher_alg(skcipher
);
825 static int crypto_skcipher_init_tfm(struct crypto_tfm
*tfm
)
827 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
828 struct skcipher_alg
*alg
= crypto_skcipher_alg(skcipher
);
830 if (tfm
->__crt_alg
->cra_type
== &crypto_blkcipher_type
)
831 return crypto_init_skcipher_ops_blkcipher(tfm
);
833 if (tfm
->__crt_alg
->cra_type
== &crypto_ablkcipher_type
||
834 tfm
->__crt_alg
->cra_type
== &crypto_givcipher_type
)
835 return crypto_init_skcipher_ops_ablkcipher(tfm
);
837 skcipher
->setkey
= skcipher_setkey
;
838 skcipher
->encrypt
= alg
->encrypt
;
839 skcipher
->decrypt
= alg
->decrypt
;
840 skcipher
->ivsize
= alg
->ivsize
;
841 skcipher
->keysize
= alg
->max_keysize
;
844 skcipher
->base
.exit
= crypto_skcipher_exit_tfm
;
847 return alg
->init(skcipher
);
852 static void crypto_skcipher_free_instance(struct crypto_instance
*inst
)
854 struct skcipher_instance
*skcipher
=
855 container_of(inst
, struct skcipher_instance
, s
.base
);
857 skcipher
->free(skcipher
);
860 static void crypto_skcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
862 static void crypto_skcipher_show(struct seq_file
*m
, struct crypto_alg
*alg
)
864 struct skcipher_alg
*skcipher
= container_of(alg
, struct skcipher_alg
,
867 seq_printf(m
, "type : skcipher\n");
868 seq_printf(m
, "async : %s\n",
869 alg
->cra_flags
& CRYPTO_ALG_ASYNC
? "yes" : "no");
870 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
871 seq_printf(m
, "min keysize : %u\n", skcipher
->min_keysize
);
872 seq_printf(m
, "max keysize : %u\n", skcipher
->max_keysize
);
873 seq_printf(m
, "ivsize : %u\n", skcipher
->ivsize
);
874 seq_printf(m
, "chunksize : %u\n", skcipher
->chunksize
);
875 seq_printf(m
, "walksize : %u\n", skcipher
->walksize
);
879 static int crypto_skcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
881 struct crypto_report_blkcipher rblkcipher
;
882 struct skcipher_alg
*skcipher
= container_of(alg
, struct skcipher_alg
,
885 strncpy(rblkcipher
.type
, "skcipher", sizeof(rblkcipher
.type
));
886 strncpy(rblkcipher
.geniv
, "<none>", sizeof(rblkcipher
.geniv
));
888 rblkcipher
.blocksize
= alg
->cra_blocksize
;
889 rblkcipher
.min_keysize
= skcipher
->min_keysize
;
890 rblkcipher
.max_keysize
= skcipher
->max_keysize
;
891 rblkcipher
.ivsize
= skcipher
->ivsize
;
893 if (nla_put(skb
, CRYPTOCFGA_REPORT_BLKCIPHER
,
894 sizeof(struct crypto_report_blkcipher
), &rblkcipher
))
895 goto nla_put_failure
;
902 static int crypto_skcipher_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
908 static const struct crypto_type crypto_skcipher_type2
= {
909 .extsize
= crypto_skcipher_extsize
,
910 .init_tfm
= crypto_skcipher_init_tfm
,
911 .free
= crypto_skcipher_free_instance
,
912 #ifdef CONFIG_PROC_FS
913 .show
= crypto_skcipher_show
,
915 .report
= crypto_skcipher_report
,
916 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
917 .maskset
= CRYPTO_ALG_TYPE_BLKCIPHER_MASK
,
918 .type
= CRYPTO_ALG_TYPE_SKCIPHER
,
919 .tfmsize
= offsetof(struct crypto_skcipher
, base
),
922 int crypto_grab_skcipher(struct crypto_skcipher_spawn
*spawn
,
923 const char *name
, u32 type
, u32 mask
)
925 spawn
->base
.frontend
= &crypto_skcipher_type2
;
926 return crypto_grab_spawn(&spawn
->base
, name
, type
, mask
);
928 EXPORT_SYMBOL_GPL(crypto_grab_skcipher
);
930 struct crypto_skcipher
*crypto_alloc_skcipher(const char *alg_name
,
933 return crypto_alloc_tfm(alg_name
, &crypto_skcipher_type2
, type
, mask
);
935 EXPORT_SYMBOL_GPL(crypto_alloc_skcipher
);
937 int crypto_has_skcipher2(const char *alg_name
, u32 type
, u32 mask
)
939 return crypto_type_has_alg(alg_name
, &crypto_skcipher_type2
,
942 EXPORT_SYMBOL_GPL(crypto_has_skcipher2
);
944 static int skcipher_prepare_alg(struct skcipher_alg
*alg
)
946 struct crypto_alg
*base
= &alg
->base
;
948 if (alg
->ivsize
> PAGE_SIZE
/ 8 || alg
->chunksize
> PAGE_SIZE
/ 8 ||
949 alg
->walksize
> PAGE_SIZE
/ 8)
953 alg
->chunksize
= base
->cra_blocksize
;
955 alg
->walksize
= alg
->chunksize
;
957 base
->cra_type
= &crypto_skcipher_type2
;
958 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
959 base
->cra_flags
|= CRYPTO_ALG_TYPE_SKCIPHER
;
964 int crypto_register_skcipher(struct skcipher_alg
*alg
)
966 struct crypto_alg
*base
= &alg
->base
;
969 err
= skcipher_prepare_alg(alg
);
973 return crypto_register_alg(base
);
975 EXPORT_SYMBOL_GPL(crypto_register_skcipher
);
977 void crypto_unregister_skcipher(struct skcipher_alg
*alg
)
979 crypto_unregister_alg(&alg
->base
);
981 EXPORT_SYMBOL_GPL(crypto_unregister_skcipher
);
983 int crypto_register_skciphers(struct skcipher_alg
*algs
, int count
)
987 for (i
= 0; i
< count
; i
++) {
988 ret
= crypto_register_skcipher(&algs
[i
]);
996 for (--i
; i
>= 0; --i
)
997 crypto_unregister_skcipher(&algs
[i
]);
1001 EXPORT_SYMBOL_GPL(crypto_register_skciphers
);
1003 void crypto_unregister_skciphers(struct skcipher_alg
*algs
, int count
)
1007 for (i
= count
- 1; i
>= 0; --i
)
1008 crypto_unregister_skcipher(&algs
[i
]);
1010 EXPORT_SYMBOL_GPL(crypto_unregister_skciphers
);
1012 int skcipher_register_instance(struct crypto_template
*tmpl
,
1013 struct skcipher_instance
*inst
)
1017 err
= skcipher_prepare_alg(&inst
->alg
);
1021 return crypto_register_instance(tmpl
, skcipher_crypto_instance(inst
));
1023 EXPORT_SYMBOL_GPL(skcipher_register_instance
);
1025 MODULE_LICENSE("GPL");
1026 MODULE_DESCRIPTION("Symmetric key cipher type");