2 * Asynchronous Cryptographic Hash operations.
4 * This is the asynchronous version of hash.c with notification of
5 * completion via a callback.
7 * Copyright (c) 2008 Loc Ho <lho@amcc.com>
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/hash.h>
17 #include <crypto/scatterwalk.h>
18 #include <linux/bug.h>
19 #include <linux/err.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/sched.h>
23 #include <linux/slab.h>
24 #include <linux/seq_file.h>
25 #include <linux/cryptouser.h>
26 #include <net/netlink.h>
30 struct ahash_request_priv
{
31 crypto_completion_t complete
;
35 void *ubuf
[] CRYPTO_MINALIGN_ATTR
;
38 static inline struct ahash_alg
*crypto_ahash_alg(struct crypto_ahash
*hash
)
40 return container_of(crypto_hash_alg_common(hash
), struct ahash_alg
,
44 static int hash_walk_next(struct crypto_hash_walk
*walk
)
46 unsigned int alignmask
= walk
->alignmask
;
47 unsigned int offset
= walk
->offset
;
48 unsigned int nbytes
= min(walk
->entrylen
,
49 ((unsigned int)(PAGE_SIZE
)) - offset
);
51 if (walk
->flags
& CRYPTO_ALG_ASYNC
)
52 walk
->data
= kmap(walk
->pg
);
54 walk
->data
= kmap_atomic(walk
->pg
);
57 if (offset
& alignmask
) {
58 unsigned int unaligned
= alignmask
+ 1 - (offset
& alignmask
);
60 if (nbytes
> unaligned
)
64 walk
->entrylen
-= nbytes
;
68 static int hash_walk_new_entry(struct crypto_hash_walk
*walk
)
70 struct scatterlist
*sg
;
73 walk
->offset
= sg
->offset
;
74 walk
->pg
= sg_page(walk
->sg
) + (walk
->offset
>> PAGE_SHIFT
);
75 walk
->offset
= offset_in_page(walk
->offset
);
76 walk
->entrylen
= sg
->length
;
78 if (walk
->entrylen
> walk
->total
)
79 walk
->entrylen
= walk
->total
;
80 walk
->total
-= walk
->entrylen
;
82 return hash_walk_next(walk
);
85 int crypto_hash_walk_done(struct crypto_hash_walk
*walk
, int err
)
87 unsigned int alignmask
= walk
->alignmask
;
89 walk
->data
-= walk
->offset
;
91 if (walk
->entrylen
&& (walk
->offset
& alignmask
) && !err
) {
94 walk
->offset
= ALIGN(walk
->offset
, alignmask
+ 1);
95 nbytes
= min(walk
->entrylen
,
96 (unsigned int)(PAGE_SIZE
- walk
->offset
));
98 walk
->entrylen
-= nbytes
;
99 walk
->data
+= walk
->offset
;
104 if (walk
->flags
& CRYPTO_ALG_ASYNC
)
107 kunmap_atomic(walk
->data
);
109 * The may sleep test only makes sense for sync users.
110 * Async users don't need to sleep here anyway.
112 crypto_yield(walk
->flags
);
118 if (walk
->entrylen
) {
121 return hash_walk_next(walk
);
127 walk
->sg
= sg_next(walk
->sg
);
129 return hash_walk_new_entry(walk
);
131 EXPORT_SYMBOL_GPL(crypto_hash_walk_done
);
133 int crypto_hash_walk_first(struct ahash_request
*req
,
134 struct crypto_hash_walk
*walk
)
136 walk
->total
= req
->nbytes
;
143 walk
->alignmask
= crypto_ahash_alignmask(crypto_ahash_reqtfm(req
));
145 walk
->flags
= req
->base
.flags
& CRYPTO_TFM_REQ_MASK
;
147 return hash_walk_new_entry(walk
);
149 EXPORT_SYMBOL_GPL(crypto_hash_walk_first
);
151 int crypto_ahash_walk_first(struct ahash_request
*req
,
152 struct crypto_hash_walk
*walk
)
154 walk
->total
= req
->nbytes
;
161 walk
->alignmask
= crypto_ahash_alignmask(crypto_ahash_reqtfm(req
));
163 walk
->flags
= req
->base
.flags
& CRYPTO_TFM_REQ_MASK
;
164 walk
->flags
|= CRYPTO_ALG_ASYNC
;
166 BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK
& CRYPTO_ALG_ASYNC
);
168 return hash_walk_new_entry(walk
);
170 EXPORT_SYMBOL_GPL(crypto_ahash_walk_first
);
172 static int ahash_setkey_unaligned(struct crypto_ahash
*tfm
, const u8
*key
,
175 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
177 u8
*buffer
, *alignbuffer
;
178 unsigned long absize
;
180 absize
= keylen
+ alignmask
;
181 buffer
= kmalloc(absize
, GFP_KERNEL
);
185 alignbuffer
= (u8
*)ALIGN((unsigned long)buffer
, alignmask
+ 1);
186 memcpy(alignbuffer
, key
, keylen
);
187 ret
= tfm
->setkey(tfm
, alignbuffer
, keylen
);
192 static int ahash_nosetkey(struct crypto_ahash
*tfm
, const u8
*key
,
198 static void ahash_set_needkey(struct crypto_ahash
*tfm
)
200 const struct hash_alg_common
*alg
= crypto_hash_alg_common(tfm
);
202 if (tfm
->setkey
!= ahash_nosetkey
&&
203 !(alg
->base
.cra_flags
& CRYPTO_ALG_OPTIONAL_KEY
))
204 crypto_ahash_set_flags(tfm
, CRYPTO_TFM_NEED_KEY
);
207 int crypto_ahash_setkey(struct crypto_ahash
*tfm
, const u8
*key
,
210 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
213 if ((unsigned long)key
& alignmask
)
214 err
= ahash_setkey_unaligned(tfm
, key
, keylen
);
216 err
= tfm
->setkey(tfm
, key
, keylen
);
219 ahash_set_needkey(tfm
);
223 crypto_ahash_clear_flags(tfm
, CRYPTO_TFM_NEED_KEY
);
226 EXPORT_SYMBOL_GPL(crypto_ahash_setkey
);
228 static inline unsigned int ahash_align_buffer_size(unsigned len
,
231 return len
+ (mask
& ~(crypto_tfm_ctx_alignment() - 1));
234 static int ahash_save_req(struct ahash_request
*req
, crypto_completion_t cplt
)
236 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
237 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
238 unsigned int ds
= crypto_ahash_digestsize(tfm
);
239 struct ahash_request_priv
*priv
;
241 priv
= kmalloc(sizeof(*priv
) + ahash_align_buffer_size(ds
, alignmask
),
242 (req
->base
.flags
& CRYPTO_TFM_REQ_MAY_SLEEP
) ?
243 GFP_KERNEL
: GFP_ATOMIC
);
248 * WARNING: Voodoo programming below!
250 * The code below is obscure and hard to understand, thus explanation
251 * is necessary. See include/crypto/hash.h and include/linux/crypto.h
252 * to understand the layout of structures used here!
254 * The code here will replace portions of the ORIGINAL request with
255 * pointers to new code and buffers so the hashing operation can store
256 * the result in aligned buffer. We will call the modified request
257 * an ADJUSTED request.
259 * The newly mangled request will look as such:
262 * .result = ADJUSTED[new aligned buffer]
263 * .base.complete = ADJUSTED[pointer to completion function]
264 * .base.data = ADJUSTED[*req (pointer to self)]
265 * .priv = ADJUSTED[new priv] {
266 * .result = ORIGINAL(result)
267 * .complete = ORIGINAL(base.complete)
268 * .data = ORIGINAL(base.data)
272 priv
->result
= req
->result
;
273 priv
->complete
= req
->base
.complete
;
274 priv
->data
= req
->base
.data
;
275 priv
->flags
= req
->base
.flags
;
278 * WARNING: We do not backup req->priv here! The req->priv
279 * is for internal use of the Crypto API and the
280 * user must _NOT_ _EVER_ depend on it's content!
283 req
->result
= PTR_ALIGN((u8
*)priv
->ubuf
, alignmask
+ 1);
284 req
->base
.complete
= cplt
;
285 req
->base
.data
= req
;
291 static void ahash_restore_req(struct ahash_request
*req
, int err
)
293 struct ahash_request_priv
*priv
= req
->priv
;
296 memcpy(priv
->result
, req
->result
,
297 crypto_ahash_digestsize(crypto_ahash_reqtfm(req
)));
299 /* Restore the original crypto request. */
300 req
->result
= priv
->result
;
302 ahash_request_set_callback(req
, priv
->flags
,
303 priv
->complete
, priv
->data
);
306 /* Free the req->priv.priv from the ADJUSTED request. */
310 static void ahash_notify_einprogress(struct ahash_request
*req
)
312 struct ahash_request_priv
*priv
= req
->priv
;
313 struct crypto_async_request oreq
;
315 oreq
.data
= priv
->data
;
317 priv
->complete(&oreq
, -EINPROGRESS
);
320 static void ahash_op_unaligned_done(struct crypto_async_request
*req
, int err
)
322 struct ahash_request
*areq
= req
->data
;
324 if (err
== -EINPROGRESS
) {
325 ahash_notify_einprogress(areq
);
330 * Restore the original request, see ahash_op_unaligned() for what
333 * The "struct ahash_request *req" here is in fact the "req.base"
334 * from the ADJUSTED request from ahash_op_unaligned(), thus as it
335 * is a pointer to self, it is also the ADJUSTED "req" .
338 /* First copy req->result into req->priv.result */
339 ahash_restore_req(areq
, err
);
341 /* Complete the ORIGINAL request. */
342 areq
->base
.complete(&areq
->base
, err
);
345 static int ahash_op_unaligned(struct ahash_request
*req
,
346 int (*op
)(struct ahash_request
*))
350 err
= ahash_save_req(req
, ahash_op_unaligned_done
);
355 if (err
== -EINPROGRESS
||
356 (err
== -EBUSY
&& (ahash_request_flags(req
) &
357 CRYPTO_TFM_REQ_MAY_BACKLOG
)))
360 ahash_restore_req(req
, err
);
365 static int crypto_ahash_op(struct ahash_request
*req
,
366 int (*op
)(struct ahash_request
*))
368 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
369 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
371 if ((unsigned long)req
->result
& alignmask
)
372 return ahash_op_unaligned(req
, op
);
377 int crypto_ahash_final(struct ahash_request
*req
)
379 return crypto_ahash_op(req
, crypto_ahash_reqtfm(req
)->final
);
381 EXPORT_SYMBOL_GPL(crypto_ahash_final
);
383 int crypto_ahash_finup(struct ahash_request
*req
)
385 return crypto_ahash_op(req
, crypto_ahash_reqtfm(req
)->finup
);
387 EXPORT_SYMBOL_GPL(crypto_ahash_finup
);
389 int crypto_ahash_digest(struct ahash_request
*req
)
391 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
393 if (crypto_ahash_get_flags(tfm
) & CRYPTO_TFM_NEED_KEY
)
396 return crypto_ahash_op(req
, tfm
->digest
);
398 EXPORT_SYMBOL_GPL(crypto_ahash_digest
);
400 static void ahash_def_finup_done2(struct crypto_async_request
*req
, int err
)
402 struct ahash_request
*areq
= req
->data
;
404 if (err
== -EINPROGRESS
)
407 ahash_restore_req(areq
, err
);
409 areq
->base
.complete(&areq
->base
, err
);
412 static int ahash_def_finup_finish1(struct ahash_request
*req
, int err
)
417 req
->base
.complete
= ahash_def_finup_done2
;
419 err
= crypto_ahash_reqtfm(req
)->final(req
);
420 if (err
== -EINPROGRESS
||
421 (err
== -EBUSY
&& (ahash_request_flags(req
) &
422 CRYPTO_TFM_REQ_MAY_BACKLOG
)))
426 ahash_restore_req(req
, err
);
430 static void ahash_def_finup_done1(struct crypto_async_request
*req
, int err
)
432 struct ahash_request
*areq
= req
->data
;
434 if (err
== -EINPROGRESS
) {
435 ahash_notify_einprogress(areq
);
439 areq
->base
.flags
&= ~CRYPTO_TFM_REQ_MAY_SLEEP
;
441 err
= ahash_def_finup_finish1(areq
, err
);
445 areq
->base
.complete(&areq
->base
, err
);
448 static int ahash_def_finup(struct ahash_request
*req
)
450 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
453 err
= ahash_save_req(req
, ahash_def_finup_done1
);
457 err
= tfm
->update(req
);
458 if (err
== -EINPROGRESS
||
459 (err
== -EBUSY
&& (ahash_request_flags(req
) &
460 CRYPTO_TFM_REQ_MAY_BACKLOG
)))
463 return ahash_def_finup_finish1(req
, err
);
466 static int ahash_no_export(struct ahash_request
*req
, void *out
)
471 static int ahash_no_import(struct ahash_request
*req
, const void *in
)
476 static int crypto_ahash_init_tfm(struct crypto_tfm
*tfm
)
478 struct crypto_ahash
*hash
= __crypto_ahash_cast(tfm
);
479 struct ahash_alg
*alg
= crypto_ahash_alg(hash
);
481 hash
->setkey
= ahash_nosetkey
;
482 hash
->export
= ahash_no_export
;
483 hash
->import
= ahash_no_import
;
485 if (tfm
->__crt_alg
->cra_type
!= &crypto_ahash_type
)
486 return crypto_init_shash_ops_async(tfm
);
488 hash
->init
= alg
->init
;
489 hash
->update
= alg
->update
;
490 hash
->final
= alg
->final
;
491 hash
->finup
= alg
->finup
?: ahash_def_finup
;
492 hash
->digest
= alg
->digest
;
495 hash
->setkey
= alg
->setkey
;
496 ahash_set_needkey(hash
);
499 hash
->export
= alg
->export
;
501 hash
->import
= alg
->import
;
506 static unsigned int crypto_ahash_extsize(struct crypto_alg
*alg
)
508 if (alg
->cra_type
!= &crypto_ahash_type
)
509 return sizeof(struct crypto_shash
*);
511 return crypto_alg_extsize(alg
);
515 static int crypto_ahash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
517 struct crypto_report_hash rhash
;
519 strncpy(rhash
.type
, "ahash", sizeof(rhash
.type
));
521 rhash
.blocksize
= alg
->cra_blocksize
;
522 rhash
.digestsize
= __crypto_hash_alg_common(alg
)->digestsize
;
524 if (nla_put(skb
, CRYPTOCFGA_REPORT_HASH
,
525 sizeof(struct crypto_report_hash
), &rhash
))
526 goto nla_put_failure
;
533 static int crypto_ahash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
539 static void crypto_ahash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
540 __attribute__ ((unused
));
541 static void crypto_ahash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
543 seq_printf(m
, "type : ahash\n");
544 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
546 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
547 seq_printf(m
, "digestsize : %u\n",
548 __crypto_hash_alg_common(alg
)->digestsize
);
551 const struct crypto_type crypto_ahash_type
= {
552 .extsize
= crypto_ahash_extsize
,
553 .init_tfm
= crypto_ahash_init_tfm
,
554 #ifdef CONFIG_PROC_FS
555 .show
= crypto_ahash_show
,
557 .report
= crypto_ahash_report
,
558 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
559 .maskset
= CRYPTO_ALG_TYPE_AHASH_MASK
,
560 .type
= CRYPTO_ALG_TYPE_AHASH
,
561 .tfmsize
= offsetof(struct crypto_ahash
, base
),
563 EXPORT_SYMBOL_GPL(crypto_ahash_type
);
565 struct crypto_ahash
*crypto_alloc_ahash(const char *alg_name
, u32 type
,
568 return crypto_alloc_tfm(alg_name
, &crypto_ahash_type
, type
, mask
);
570 EXPORT_SYMBOL_GPL(crypto_alloc_ahash
);
572 int crypto_has_ahash(const char *alg_name
, u32 type
, u32 mask
)
574 return crypto_type_has_alg(alg_name
, &crypto_ahash_type
, type
, mask
);
576 EXPORT_SYMBOL_GPL(crypto_has_ahash
);
578 static int ahash_prepare_alg(struct ahash_alg
*alg
)
580 struct crypto_alg
*base
= &alg
->halg
.base
;
582 if (alg
->halg
.digestsize
> PAGE_SIZE
/ 8 ||
583 alg
->halg
.statesize
> PAGE_SIZE
/ 8 ||
584 alg
->halg
.statesize
== 0)
587 base
->cra_type
= &crypto_ahash_type
;
588 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
589 base
->cra_flags
|= CRYPTO_ALG_TYPE_AHASH
;
594 int crypto_register_ahash(struct ahash_alg
*alg
)
596 struct crypto_alg
*base
= &alg
->halg
.base
;
599 err
= ahash_prepare_alg(alg
);
603 return crypto_register_alg(base
);
605 EXPORT_SYMBOL_GPL(crypto_register_ahash
);
607 int crypto_unregister_ahash(struct ahash_alg
*alg
)
609 return crypto_unregister_alg(&alg
->halg
.base
);
611 EXPORT_SYMBOL_GPL(crypto_unregister_ahash
);
613 int ahash_register_instance(struct crypto_template
*tmpl
,
614 struct ahash_instance
*inst
)
618 err
= ahash_prepare_alg(&inst
->alg
);
622 return crypto_register_instance(tmpl
, ahash_crypto_instance(inst
));
624 EXPORT_SYMBOL_GPL(ahash_register_instance
);
626 void ahash_free_instance(struct crypto_instance
*inst
)
628 crypto_drop_spawn(crypto_instance_ctx(inst
));
629 kfree(ahash_instance(inst
));
631 EXPORT_SYMBOL_GPL(ahash_free_instance
);
633 int crypto_init_ahash_spawn(struct crypto_ahash_spawn
*spawn
,
634 struct hash_alg_common
*alg
,
635 struct crypto_instance
*inst
)
637 return crypto_init_spawn2(&spawn
->base
, &alg
->base
, inst
,
640 EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn
);
642 struct hash_alg_common
*ahash_attr_alg(struct rtattr
*rta
, u32 type
, u32 mask
)
644 struct crypto_alg
*alg
;
646 alg
= crypto_attr_alg2(rta
, &crypto_ahash_type
, type
, mask
);
647 return IS_ERR(alg
) ? ERR_CAST(alg
) : __crypto_hash_alg_common(alg
);
649 EXPORT_SYMBOL_GPL(ahash_attr_alg
);
651 bool crypto_hash_alg_has_setkey(struct hash_alg_common
*halg
)
653 struct crypto_alg
*alg
= &halg
->base
;
655 if (alg
->cra_type
!= &crypto_ahash_type
)
656 return crypto_shash_alg_has_setkey(__crypto_shash_alg(alg
));
658 return __crypto_ahash_alg(alg
)->setkey
!= NULL
;
660 EXPORT_SYMBOL_GPL(crypto_hash_alg_has_setkey
);
662 MODULE_LICENSE("GPL");
663 MODULE_DESCRIPTION("Asynchronous cryptographic hash type");