2 * Synchronous Cryptographic Hash operations.
4 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
13 #include <crypto/scatterwalk.h>
14 #include <crypto/internal/hash.h>
15 #include <linux/err.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/seq_file.h>
20 #include <linux/cryptouser.h>
21 #include <net/netlink.h>
25 static const struct crypto_type crypto_shash_type
;
27 int shash_no_setkey(struct crypto_shash
*tfm
, const u8
*key
,
32 EXPORT_SYMBOL_GPL(shash_no_setkey
);
34 static int shash_setkey_unaligned(struct crypto_shash
*tfm
, const u8
*key
,
37 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
38 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
40 u8
*buffer
, *alignbuffer
;
43 absize
= keylen
+ (alignmask
& ~(crypto_tfm_ctx_alignment() - 1));
44 buffer
= kmalloc(absize
, GFP_ATOMIC
);
48 alignbuffer
= (u8
*)ALIGN((unsigned long)buffer
, alignmask
+ 1);
49 memcpy(alignbuffer
, key
, keylen
);
50 err
= shash
->setkey(tfm
, alignbuffer
, keylen
);
55 static void shash_set_needkey(struct crypto_shash
*tfm
, struct shash_alg
*alg
)
57 if (crypto_shash_alg_has_setkey(alg
) &&
58 !(alg
->base
.cra_flags
& CRYPTO_ALG_OPTIONAL_KEY
))
59 crypto_shash_set_flags(tfm
, CRYPTO_TFM_NEED_KEY
);
62 int crypto_shash_setkey(struct crypto_shash
*tfm
, const u8
*key
,
65 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
66 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
69 if ((unsigned long)key
& alignmask
)
70 err
= shash_setkey_unaligned(tfm
, key
, keylen
);
72 err
= shash
->setkey(tfm
, key
, keylen
);
75 shash_set_needkey(tfm
, shash
);
79 crypto_shash_clear_flags(tfm
, CRYPTO_TFM_NEED_KEY
);
82 EXPORT_SYMBOL_GPL(crypto_shash_setkey
);
84 static inline unsigned int shash_align_buffer_size(unsigned len
,
87 typedef u8
__attribute__ ((aligned
)) u8_aligned
;
88 return len
+ (mask
& ~(__alignof__(u8_aligned
) - 1));
91 static int shash_update_unaligned(struct shash_desc
*desc
, const u8
*data
,
94 struct crypto_shash
*tfm
= desc
->tfm
;
95 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
96 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
97 unsigned int unaligned_len
= alignmask
+ 1 -
98 ((unsigned long)data
& alignmask
);
99 u8 ubuf
[shash_align_buffer_size(unaligned_len
, alignmask
)]
100 __attribute__ ((aligned
));
101 u8
*buf
= PTR_ALIGN(&ubuf
[0], alignmask
+ 1);
104 if (unaligned_len
> len
)
107 memcpy(buf
, data
, unaligned_len
);
108 err
= shash
->update(desc
, buf
, unaligned_len
);
109 memset(buf
, 0, unaligned_len
);
112 shash
->update(desc
, data
+ unaligned_len
, len
- unaligned_len
);
115 int crypto_shash_update(struct shash_desc
*desc
, const u8
*data
,
118 struct crypto_shash
*tfm
= desc
->tfm
;
119 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
120 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
122 if ((unsigned long)data
& alignmask
)
123 return shash_update_unaligned(desc
, data
, len
);
125 return shash
->update(desc
, data
, len
);
127 EXPORT_SYMBOL_GPL(crypto_shash_update
);
129 static int shash_final_unaligned(struct shash_desc
*desc
, u8
*out
)
131 struct crypto_shash
*tfm
= desc
->tfm
;
132 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
133 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
134 unsigned int ds
= crypto_shash_digestsize(tfm
);
135 u8 ubuf
[shash_align_buffer_size(ds
, alignmask
)]
136 __attribute__ ((aligned
));
137 u8
*buf
= PTR_ALIGN(&ubuf
[0], alignmask
+ 1);
140 err
= shash
->final(desc
, buf
);
144 memcpy(out
, buf
, ds
);
151 int crypto_shash_final(struct shash_desc
*desc
, u8
*out
)
153 struct crypto_shash
*tfm
= desc
->tfm
;
154 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
155 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
157 if ((unsigned long)out
& alignmask
)
158 return shash_final_unaligned(desc
, out
);
160 return shash
->final(desc
, out
);
162 EXPORT_SYMBOL_GPL(crypto_shash_final
);
164 static int shash_finup_unaligned(struct shash_desc
*desc
, const u8
*data
,
165 unsigned int len
, u8
*out
)
167 return crypto_shash_update(desc
, data
, len
) ?:
168 crypto_shash_final(desc
, out
);
171 int crypto_shash_finup(struct shash_desc
*desc
, const u8
*data
,
172 unsigned int len
, u8
*out
)
174 struct crypto_shash
*tfm
= desc
->tfm
;
175 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
176 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
178 if (((unsigned long)data
| (unsigned long)out
) & alignmask
)
179 return shash_finup_unaligned(desc
, data
, len
, out
);
181 return shash
->finup(desc
, data
, len
, out
);
183 EXPORT_SYMBOL_GPL(crypto_shash_finup
);
185 static int shash_digest_unaligned(struct shash_desc
*desc
, const u8
*data
,
186 unsigned int len
, u8
*out
)
188 return crypto_shash_init(desc
) ?:
189 crypto_shash_finup(desc
, data
, len
, out
);
192 int crypto_shash_digest(struct shash_desc
*desc
, const u8
*data
,
193 unsigned int len
, u8
*out
)
195 struct crypto_shash
*tfm
= desc
->tfm
;
196 struct shash_alg
*shash
= crypto_shash_alg(tfm
);
197 unsigned long alignmask
= crypto_shash_alignmask(tfm
);
199 if (crypto_shash_get_flags(tfm
) & CRYPTO_TFM_NEED_KEY
)
202 if (((unsigned long)data
| (unsigned long)out
) & alignmask
)
203 return shash_digest_unaligned(desc
, data
, len
, out
);
205 return shash
->digest(desc
, data
, len
, out
);
207 EXPORT_SYMBOL_GPL(crypto_shash_digest
);
209 static int shash_default_export(struct shash_desc
*desc
, void *out
)
211 memcpy(out
, shash_desc_ctx(desc
), crypto_shash_descsize(desc
->tfm
));
215 static int shash_default_import(struct shash_desc
*desc
, const void *in
)
217 memcpy(shash_desc_ctx(desc
), in
, crypto_shash_descsize(desc
->tfm
));
221 static int shash_async_setkey(struct crypto_ahash
*tfm
, const u8
*key
,
224 struct crypto_shash
**ctx
= crypto_ahash_ctx(tfm
);
226 return crypto_shash_setkey(*ctx
, key
, keylen
);
229 static int shash_async_init(struct ahash_request
*req
)
231 struct crypto_shash
**ctx
= crypto_ahash_ctx(crypto_ahash_reqtfm(req
));
232 struct shash_desc
*desc
= ahash_request_ctx(req
);
235 desc
->flags
= req
->base
.flags
;
237 return crypto_shash_init(desc
);
240 int shash_ahash_update(struct ahash_request
*req
, struct shash_desc
*desc
)
242 struct crypto_hash_walk walk
;
245 for (nbytes
= crypto_hash_walk_first(req
, &walk
); nbytes
> 0;
246 nbytes
= crypto_hash_walk_done(&walk
, nbytes
))
247 nbytes
= crypto_shash_update(desc
, walk
.data
, nbytes
);
251 EXPORT_SYMBOL_GPL(shash_ahash_update
);
253 static int shash_async_update(struct ahash_request
*req
)
255 return shash_ahash_update(req
, ahash_request_ctx(req
));
258 static int shash_async_final(struct ahash_request
*req
)
260 return crypto_shash_final(ahash_request_ctx(req
), req
->result
);
263 int shash_ahash_finup(struct ahash_request
*req
, struct shash_desc
*desc
)
265 struct crypto_hash_walk walk
;
268 nbytes
= crypto_hash_walk_first(req
, &walk
);
270 return crypto_shash_final(desc
, req
->result
);
273 nbytes
= crypto_hash_walk_last(&walk
) ?
274 crypto_shash_finup(desc
, walk
.data
, nbytes
,
276 crypto_shash_update(desc
, walk
.data
, nbytes
);
277 nbytes
= crypto_hash_walk_done(&walk
, nbytes
);
278 } while (nbytes
> 0);
282 EXPORT_SYMBOL_GPL(shash_ahash_finup
);
284 static int shash_async_finup(struct ahash_request
*req
)
286 struct crypto_shash
**ctx
= crypto_ahash_ctx(crypto_ahash_reqtfm(req
));
287 struct shash_desc
*desc
= ahash_request_ctx(req
);
290 desc
->flags
= req
->base
.flags
;
292 return shash_ahash_finup(req
, desc
);
295 int shash_ahash_digest(struct ahash_request
*req
, struct shash_desc
*desc
)
297 unsigned int nbytes
= req
->nbytes
;
298 struct scatterlist
*sg
;
303 (sg
= req
->src
, offset
= sg
->offset
,
304 nbytes
< min(sg
->length
, ((unsigned int)(PAGE_SIZE
)) - offset
))) {
307 data
= kmap_atomic(sg_page(sg
));
308 err
= crypto_shash_digest(desc
, data
+ offset
, nbytes
,
311 crypto_yield(desc
->flags
);
313 err
= crypto_shash_init(desc
) ?:
314 shash_ahash_finup(req
, desc
);
318 EXPORT_SYMBOL_GPL(shash_ahash_digest
);
320 static int shash_async_digest(struct ahash_request
*req
)
322 struct crypto_shash
**ctx
= crypto_ahash_ctx(crypto_ahash_reqtfm(req
));
323 struct shash_desc
*desc
= ahash_request_ctx(req
);
326 desc
->flags
= req
->base
.flags
;
328 return shash_ahash_digest(req
, desc
);
331 static int shash_async_export(struct ahash_request
*req
, void *out
)
333 return crypto_shash_export(ahash_request_ctx(req
), out
);
336 static int shash_async_import(struct ahash_request
*req
, const void *in
)
338 struct crypto_shash
**ctx
= crypto_ahash_ctx(crypto_ahash_reqtfm(req
));
339 struct shash_desc
*desc
= ahash_request_ctx(req
);
342 desc
->flags
= req
->base
.flags
;
344 return crypto_shash_import(desc
, in
);
347 static void crypto_exit_shash_ops_async(struct crypto_tfm
*tfm
)
349 struct crypto_shash
**ctx
= crypto_tfm_ctx(tfm
);
351 crypto_free_shash(*ctx
);
354 int crypto_init_shash_ops_async(struct crypto_tfm
*tfm
)
356 struct crypto_alg
*calg
= tfm
->__crt_alg
;
357 struct shash_alg
*alg
= __crypto_shash_alg(calg
);
358 struct crypto_ahash
*crt
= __crypto_ahash_cast(tfm
);
359 struct crypto_shash
**ctx
= crypto_tfm_ctx(tfm
);
360 struct crypto_shash
*shash
;
362 if (!crypto_mod_get(calg
))
365 shash
= crypto_create_tfm(calg
, &crypto_shash_type
);
367 crypto_mod_put(calg
);
368 return PTR_ERR(shash
);
372 tfm
->exit
= crypto_exit_shash_ops_async
;
374 crt
->init
= shash_async_init
;
375 crt
->update
= shash_async_update
;
376 crt
->final
= shash_async_final
;
377 crt
->finup
= shash_async_finup
;
378 crt
->digest
= shash_async_digest
;
379 if (crypto_shash_alg_has_setkey(alg
))
380 crt
->setkey
= shash_async_setkey
;
382 crypto_ahash_set_flags(crt
, crypto_shash_get_flags(shash
) &
383 CRYPTO_TFM_NEED_KEY
);
386 crt
->export
= shash_async_export
;
388 crt
->import
= shash_async_import
;
390 crt
->reqsize
= sizeof(struct shash_desc
) + crypto_shash_descsize(shash
);
395 static int crypto_shash_init_tfm(struct crypto_tfm
*tfm
)
397 struct crypto_shash
*hash
= __crypto_shash_cast(tfm
);
398 struct shash_alg
*alg
= crypto_shash_alg(hash
);
400 hash
->descsize
= alg
->descsize
;
402 shash_set_needkey(hash
, alg
);
408 static int crypto_shash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
410 struct crypto_report_hash rhash
;
411 struct shash_alg
*salg
= __crypto_shash_alg(alg
);
413 strncpy(rhash
.type
, "shash", sizeof(rhash
.type
));
415 rhash
.blocksize
= alg
->cra_blocksize
;
416 rhash
.digestsize
= salg
->digestsize
;
418 if (nla_put(skb
, CRYPTOCFGA_REPORT_HASH
,
419 sizeof(struct crypto_report_hash
), &rhash
))
420 goto nla_put_failure
;
427 static int crypto_shash_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
433 static void crypto_shash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
434 __attribute__ ((unused
));
435 static void crypto_shash_show(struct seq_file
*m
, struct crypto_alg
*alg
)
437 struct shash_alg
*salg
= __crypto_shash_alg(alg
);
439 seq_printf(m
, "type : shash\n");
440 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
441 seq_printf(m
, "digestsize : %u\n", salg
->digestsize
);
444 static const struct crypto_type crypto_shash_type
= {
445 .extsize
= crypto_alg_extsize
,
446 .init_tfm
= crypto_shash_init_tfm
,
447 #ifdef CONFIG_PROC_FS
448 .show
= crypto_shash_show
,
450 .report
= crypto_shash_report
,
451 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
452 .maskset
= CRYPTO_ALG_TYPE_MASK
,
453 .type
= CRYPTO_ALG_TYPE_SHASH
,
454 .tfmsize
= offsetof(struct crypto_shash
, base
),
457 struct crypto_shash
*crypto_alloc_shash(const char *alg_name
, u32 type
,
460 return crypto_alloc_tfm(alg_name
, &crypto_shash_type
, type
, mask
);
462 EXPORT_SYMBOL_GPL(crypto_alloc_shash
);
464 static int shash_prepare_alg(struct shash_alg
*alg
)
466 struct crypto_alg
*base
= &alg
->base
;
468 if (alg
->digestsize
> PAGE_SIZE
/ 8 ||
469 alg
->descsize
> PAGE_SIZE
/ 8 ||
470 alg
->statesize
> PAGE_SIZE
/ 8)
473 base
->cra_type
= &crypto_shash_type
;
474 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
475 base
->cra_flags
|= CRYPTO_ALG_TYPE_SHASH
;
478 alg
->finup
= shash_finup_unaligned
;
480 alg
->digest
= shash_digest_unaligned
;
482 alg
->export
= shash_default_export
;
483 alg
->import
= shash_default_import
;
484 alg
->statesize
= alg
->descsize
;
487 alg
->setkey
= shash_no_setkey
;
492 int crypto_register_shash(struct shash_alg
*alg
)
494 struct crypto_alg
*base
= &alg
->base
;
497 err
= shash_prepare_alg(alg
);
501 return crypto_register_alg(base
);
503 EXPORT_SYMBOL_GPL(crypto_register_shash
);
505 int crypto_unregister_shash(struct shash_alg
*alg
)
507 return crypto_unregister_alg(&alg
->base
);
509 EXPORT_SYMBOL_GPL(crypto_unregister_shash
);
511 int crypto_register_shashes(struct shash_alg
*algs
, int count
)
515 for (i
= 0; i
< count
; i
++) {
516 ret
= crypto_register_shash(&algs
[i
]);
524 for (--i
; i
>= 0; --i
)
525 crypto_unregister_shash(&algs
[i
]);
529 EXPORT_SYMBOL_GPL(crypto_register_shashes
);
531 int crypto_unregister_shashes(struct shash_alg
*algs
, int count
)
535 for (i
= count
- 1; i
>= 0; --i
) {
536 ret
= crypto_unregister_shash(&algs
[i
]);
538 pr_err("Failed to unregister %s %s: %d\n",
539 algs
[i
].base
.cra_driver_name
,
540 algs
[i
].base
.cra_name
, ret
);
545 EXPORT_SYMBOL_GPL(crypto_unregister_shashes
);
547 int shash_register_instance(struct crypto_template
*tmpl
,
548 struct shash_instance
*inst
)
552 err
= shash_prepare_alg(&inst
->alg
);
556 return crypto_register_instance(tmpl
, shash_crypto_instance(inst
));
558 EXPORT_SYMBOL_GPL(shash_register_instance
);
560 void shash_free_instance(struct crypto_instance
*inst
)
562 crypto_drop_spawn(crypto_instance_ctx(inst
));
563 kfree(shash_instance(inst
));
565 EXPORT_SYMBOL_GPL(shash_free_instance
);
567 int crypto_init_shash_spawn(struct crypto_shash_spawn
*spawn
,
568 struct shash_alg
*alg
,
569 struct crypto_instance
*inst
)
571 return crypto_init_spawn2(&spawn
->base
, &alg
->base
, inst
,
574 EXPORT_SYMBOL_GPL(crypto_init_shash_spawn
);
576 struct shash_alg
*shash_attr_alg(struct rtattr
*rta
, u32 type
, u32 mask
)
578 struct crypto_alg
*alg
;
580 alg
= crypto_attr_alg2(rta
, &crypto_shash_type
, type
, mask
);
581 return IS_ERR(alg
) ? ERR_CAST(alg
) :
582 container_of(alg
, struct shash_alg
, base
);
584 EXPORT_SYMBOL_GPL(shash_attr_alg
);
586 MODULE_LICENSE("GPL");
587 MODULE_DESCRIPTION("Synchronous cryptographic hash type");