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 <linux/compiler.h>
27 #include <net/netlink.h>
31 struct ahash_request_priv
{
32 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
;
88 unsigned int nbytes
= walk
->entrylen
;
90 walk
->data
-= walk
->offset
;
92 if (nbytes
&& walk
->offset
& alignmask
&& !err
) {
93 walk
->offset
= ALIGN(walk
->offset
, alignmask
+ 1);
94 walk
->data
+= walk
->offset
;
97 ((unsigned int)(PAGE_SIZE
)) - walk
->offset
);
98 walk
->entrylen
-= nbytes
;
103 if (walk
->flags
& CRYPTO_ALG_ASYNC
)
106 kunmap_atomic(walk
->data
);
108 * The may sleep test only makes sense for sync users.
109 * Async users don't need to sleep here anyway.
111 crypto_yield(walk
->flags
);
120 return hash_walk_next(walk
);
126 walk
->sg
= sg_next(walk
->sg
);
128 return hash_walk_new_entry(walk
);
130 EXPORT_SYMBOL_GPL(crypto_hash_walk_done
);
132 int crypto_hash_walk_first(struct ahash_request
*req
,
133 struct crypto_hash_walk
*walk
)
135 walk
->total
= req
->nbytes
;
142 walk
->alignmask
= crypto_ahash_alignmask(crypto_ahash_reqtfm(req
));
144 walk
->flags
= req
->base
.flags
& CRYPTO_TFM_REQ_MASK
;
146 return hash_walk_new_entry(walk
);
148 EXPORT_SYMBOL_GPL(crypto_hash_walk_first
);
150 int crypto_ahash_walk_first(struct ahash_request
*req
,
151 struct crypto_hash_walk
*walk
)
153 walk
->total
= req
->nbytes
;
160 walk
->alignmask
= crypto_ahash_alignmask(crypto_ahash_reqtfm(req
));
162 walk
->flags
= req
->base
.flags
& CRYPTO_TFM_REQ_MASK
;
163 walk
->flags
|= CRYPTO_ALG_ASYNC
;
165 BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK
& CRYPTO_ALG_ASYNC
);
167 return hash_walk_new_entry(walk
);
169 EXPORT_SYMBOL_GPL(crypto_ahash_walk_first
);
171 static int ahash_setkey_unaligned(struct crypto_ahash
*tfm
, const u8
*key
,
174 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
176 u8
*buffer
, *alignbuffer
;
177 unsigned long absize
;
179 absize
= keylen
+ alignmask
;
180 buffer
= kmalloc(absize
, GFP_KERNEL
);
184 alignbuffer
= (u8
*)ALIGN((unsigned long)buffer
, alignmask
+ 1);
185 memcpy(alignbuffer
, key
, keylen
);
186 ret
= tfm
->setkey(tfm
, alignbuffer
, keylen
);
191 int crypto_ahash_setkey(struct crypto_ahash
*tfm
, const u8
*key
,
194 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
196 if ((unsigned long)key
& alignmask
)
197 return ahash_setkey_unaligned(tfm
, key
, keylen
);
199 return tfm
->setkey(tfm
, key
, keylen
);
201 EXPORT_SYMBOL_GPL(crypto_ahash_setkey
);
203 static int ahash_nosetkey(struct crypto_ahash
*tfm
, const u8
*key
,
209 static inline unsigned int ahash_align_buffer_size(unsigned len
,
212 return len
+ (mask
& ~(crypto_tfm_ctx_alignment() - 1));
215 static int ahash_save_req(struct ahash_request
*req
, crypto_completion_t cplt
)
217 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
218 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
219 unsigned int ds
= crypto_ahash_digestsize(tfm
);
220 struct ahash_request_priv
*priv
;
222 priv
= kmalloc(sizeof(*priv
) + ahash_align_buffer_size(ds
, alignmask
),
223 (req
->base
.flags
& CRYPTO_TFM_REQ_MAY_SLEEP
) ?
224 GFP_KERNEL
: GFP_ATOMIC
);
229 * WARNING: Voodoo programming below!
231 * The code below is obscure and hard to understand, thus explanation
232 * is necessary. See include/crypto/hash.h and include/linux/crypto.h
233 * to understand the layout of structures used here!
235 * The code here will replace portions of the ORIGINAL request with
236 * pointers to new code and buffers so the hashing operation can store
237 * the result in aligned buffer. We will call the modified request
238 * an ADJUSTED request.
240 * The newly mangled request will look as such:
243 * .result = ADJUSTED[new aligned buffer]
244 * .base.complete = ADJUSTED[pointer to completion function]
245 * .base.data = ADJUSTED[*req (pointer to self)]
246 * .priv = ADJUSTED[new priv] {
247 * .result = ORIGINAL(result)
248 * .complete = ORIGINAL(base.complete)
249 * .data = ORIGINAL(base.data)
253 priv
->result
= req
->result
;
254 priv
->complete
= req
->base
.complete
;
255 priv
->data
= req
->base
.data
;
257 * WARNING: We do not backup req->priv here! The req->priv
258 * is for internal use of the Crypto API and the
259 * user must _NOT_ _EVER_ depend on it's content!
262 req
->result
= PTR_ALIGN((u8
*)priv
->ubuf
, alignmask
+ 1);
263 req
->base
.complete
= cplt
;
264 req
->base
.data
= req
;
270 static void ahash_restore_req(struct ahash_request
*req
)
272 struct ahash_request_priv
*priv
= req
->priv
;
274 /* Restore the original crypto request. */
275 req
->result
= priv
->result
;
276 req
->base
.complete
= priv
->complete
;
277 req
->base
.data
= priv
->data
;
280 /* Free the req->priv.priv from the ADJUSTED request. */
284 static void ahash_op_unaligned_finish(struct ahash_request
*req
, int err
)
286 struct ahash_request_priv
*priv
= req
->priv
;
288 if (err
== -EINPROGRESS
)
292 memcpy(priv
->result
, req
->result
,
293 crypto_ahash_digestsize(crypto_ahash_reqtfm(req
)));
295 ahash_restore_req(req
);
298 static void ahash_op_unaligned_done(struct crypto_async_request
*req
, int err
)
300 struct ahash_request
*areq
= req
->data
;
303 * Restore the original request, see ahash_op_unaligned() for what
306 * The "struct ahash_request *req" here is in fact the "req.base"
307 * from the ADJUSTED request from ahash_op_unaligned(), thus as it
308 * is a pointer to self, it is also the ADJUSTED "req" .
311 /* First copy req->result into req->priv.result */
312 ahash_op_unaligned_finish(areq
, err
);
314 /* Complete the ORIGINAL request. */
315 areq
->base
.complete(&areq
->base
, err
);
318 static int ahash_op_unaligned(struct ahash_request
*req
,
319 int (*op
)(struct ahash_request
*))
323 err
= ahash_save_req(req
, ahash_op_unaligned_done
);
328 ahash_op_unaligned_finish(req
, err
);
333 static int crypto_ahash_op(struct ahash_request
*req
,
334 int (*op
)(struct ahash_request
*))
336 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
337 unsigned long alignmask
= crypto_ahash_alignmask(tfm
);
339 if ((unsigned long)req
->result
& alignmask
)
340 return ahash_op_unaligned(req
, op
);
345 int crypto_ahash_final(struct ahash_request
*req
)
347 return crypto_ahash_op(req
, crypto_ahash_reqtfm(req
)->final
);
349 EXPORT_SYMBOL_GPL(crypto_ahash_final
);
351 int crypto_ahash_finup(struct ahash_request
*req
)
353 return crypto_ahash_op(req
, crypto_ahash_reqtfm(req
)->finup
);
355 EXPORT_SYMBOL_GPL(crypto_ahash_finup
);
357 int crypto_ahash_digest(struct ahash_request
*req
)
359 return crypto_ahash_op(req
, crypto_ahash_reqtfm(req
)->digest
);
361 EXPORT_SYMBOL_GPL(crypto_ahash_digest
);
363 static void ahash_def_finup_finish2(struct ahash_request
*req
, int err
)
365 struct ahash_request_priv
*priv
= req
->priv
;
367 if (err
== -EINPROGRESS
)
371 memcpy(priv
->result
, req
->result
,
372 crypto_ahash_digestsize(crypto_ahash_reqtfm(req
)));
374 ahash_restore_req(req
);
377 static void ahash_def_finup_done2(struct crypto_async_request
*req
, int err
)
379 struct ahash_request
*areq
= req
->data
;
381 ahash_def_finup_finish2(areq
, err
);
383 areq
->base
.complete(&areq
->base
, err
);
386 static int ahash_def_finup_finish1(struct ahash_request
*req
, int err
)
391 req
->base
.complete
= ahash_def_finup_done2
;
392 req
->base
.flags
&= ~CRYPTO_TFM_REQ_MAY_SLEEP
;
393 err
= crypto_ahash_reqtfm(req
)->final(req
);
396 ahash_def_finup_finish2(req
, err
);
400 static void ahash_def_finup_done1(struct crypto_async_request
*req
, int err
)
402 struct ahash_request
*areq
= req
->data
;
404 err
= ahash_def_finup_finish1(areq
, err
);
406 areq
->base
.complete(&areq
->base
, err
);
409 static int ahash_def_finup(struct ahash_request
*req
)
411 struct crypto_ahash
*tfm
= crypto_ahash_reqtfm(req
);
414 err
= ahash_save_req(req
, ahash_def_finup_done1
);
418 err
= tfm
->update(req
);
419 return ahash_def_finup_finish1(req
, err
);
422 static int ahash_no_export(struct ahash_request
*req
, void *out
)
427 static int ahash_no_import(struct ahash_request
*req
, const void *in
)
432 static int crypto_ahash_init_tfm(struct crypto_tfm
*tfm
)
434 struct crypto_ahash
*hash
= __crypto_ahash_cast(tfm
);
435 struct ahash_alg
*alg
= crypto_ahash_alg(hash
);
437 hash
->setkey
= ahash_nosetkey
;
438 hash
->has_setkey
= false;
439 hash
->export
= ahash_no_export
;
440 hash
->import
= ahash_no_import
;
442 if (tfm
->__crt_alg
->cra_type
!= &crypto_ahash_type
)
443 return crypto_init_shash_ops_async(tfm
);
445 hash
->init
= alg
->init
;
446 hash
->update
= alg
->update
;
447 hash
->final
= alg
->final
;
448 hash
->finup
= alg
->finup
?: ahash_def_finup
;
449 hash
->digest
= alg
->digest
;
452 hash
->setkey
= alg
->setkey
;
453 hash
->has_setkey
= true;
456 hash
->export
= alg
->export
;
458 hash
->import
= alg
->import
;
463 static unsigned int crypto_ahash_extsize(struct crypto_alg
*alg
)
465 if (alg
->cra_type
!= &crypto_ahash_type
)
466 return sizeof(struct crypto_shash
*);
468 return crypto_alg_extsize(alg
);
472 static int crypto_ahash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
474 struct crypto_report_hash rhash
;
476 strncpy(rhash
.type
, "ahash", sizeof(rhash
.type
));
478 rhash
.blocksize
= alg
->cra_blocksize
;
479 rhash
.digestsize
= __crypto_hash_alg_common(alg
)->digestsize
;
481 if (nla_put(skb
, CRYPTOCFGA_REPORT_HASH
,
482 sizeof(struct crypto_report_hash
), &rhash
))
483 goto nla_put_failure
;
490 static int crypto_ahash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
496 static void crypto_ahash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
498 static void crypto_ahash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
500 seq_printf(m
, "type : ahash\n");
501 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
503 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
504 seq_printf(m
, "digestsize : %u\n",
505 __crypto_hash_alg_common(alg
)->digestsize
);
508 const struct crypto_type crypto_ahash_type
= {
509 .extsize
= crypto_ahash_extsize
,
510 .init_tfm
= crypto_ahash_init_tfm
,
511 #ifdef CONFIG_PROC_FS
512 .show
= crypto_ahash_show
,
514 .report
= crypto_ahash_report
,
515 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
516 .maskset
= CRYPTO_ALG_TYPE_AHASH_MASK
,
517 .type
= CRYPTO_ALG_TYPE_AHASH
,
518 .tfmsize
= offsetof(struct crypto_ahash
, base
),
520 EXPORT_SYMBOL_GPL(crypto_ahash_type
);
522 struct crypto_ahash
*crypto_alloc_ahash(const char *alg_name
, u32 type
,
525 return crypto_alloc_tfm(alg_name
, &crypto_ahash_type
, type
, mask
);
527 EXPORT_SYMBOL_GPL(crypto_alloc_ahash
);
529 int crypto_has_ahash(const char *alg_name
, u32 type
, u32 mask
)
531 return crypto_type_has_alg(alg_name
, &crypto_ahash_type
, type
, mask
);
533 EXPORT_SYMBOL_GPL(crypto_has_ahash
);
535 static int ahash_prepare_alg(struct ahash_alg
*alg
)
537 struct crypto_alg
*base
= &alg
->halg
.base
;
539 if (alg
->halg
.digestsize
> PAGE_SIZE
/ 8 ||
540 alg
->halg
.statesize
> PAGE_SIZE
/ 8 ||
541 alg
->halg
.statesize
== 0)
544 base
->cra_type
= &crypto_ahash_type
;
545 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
546 base
->cra_flags
|= CRYPTO_ALG_TYPE_AHASH
;
551 int crypto_register_ahash(struct ahash_alg
*alg
)
553 struct crypto_alg
*base
= &alg
->halg
.base
;
556 err
= ahash_prepare_alg(alg
);
560 return crypto_register_alg(base
);
562 EXPORT_SYMBOL_GPL(crypto_register_ahash
);
564 int crypto_unregister_ahash(struct ahash_alg
*alg
)
566 return crypto_unregister_alg(&alg
->halg
.base
);
568 EXPORT_SYMBOL_GPL(crypto_unregister_ahash
);
570 int ahash_register_instance(struct crypto_template
*tmpl
,
571 struct ahash_instance
*inst
)
575 err
= ahash_prepare_alg(&inst
->alg
);
579 return crypto_register_instance(tmpl
, ahash_crypto_instance(inst
));
581 EXPORT_SYMBOL_GPL(ahash_register_instance
);
583 void ahash_free_instance(struct crypto_instance
*inst
)
585 crypto_drop_spawn(crypto_instance_ctx(inst
));
586 kfree(ahash_instance(inst
));
588 EXPORT_SYMBOL_GPL(ahash_free_instance
);
590 int crypto_init_ahash_spawn(struct crypto_ahash_spawn
*spawn
,
591 struct hash_alg_common
*alg
,
592 struct crypto_instance
*inst
)
594 return crypto_init_spawn2(&spawn
->base
, &alg
->base
, inst
,
597 EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn
);
599 struct hash_alg_common
*ahash_attr_alg(struct rtattr
*rta
, u32 type
, u32 mask
)
601 struct crypto_alg
*alg
;
603 alg
= crypto_attr_alg2(rta
, &crypto_ahash_type
, type
, mask
);
604 return IS_ERR(alg
) ? ERR_CAST(alg
) : __crypto_hash_alg_common(alg
);
606 EXPORT_SYMBOL_GPL(ahash_attr_alg
);
608 MODULE_LICENSE("GPL");
609 MODULE_DESCRIPTION("Asynchronous cryptographic hash type");