]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - crypto/ahash.c
UBUNTU: snapcraft.yaml: various improvements
[mirror_ubuntu-artful-kernel.git] / crypto / ahash.c
CommitLineData
004a403c
LH
1/*
2 * Asynchronous Cryptographic Hash operations.
3 *
4 * This is the asynchronous version of hash.c with notification of
5 * completion via a callback.
6 *
7 * Copyright (c) 2008 Loc Ho <lho@amcc.com>
8 *
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)
12 * any later version.
13 *
14 */
15
20036252
HX
16#include <crypto/internal/hash.h>
17#include <crypto/scatterwalk.h>
75ecb231 18#include <linux/bug.h>
004a403c
LH
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>
6238cbae
SK
25#include <linux/cryptouser.h>
26#include <net/netlink.h>
004a403c
LH
27
28#include "internal.h"
29
66f6ce5e
HX
30struct ahash_request_priv {
31 crypto_completion_t complete;
32 void *data;
33 u8 *result;
bf994c44 34 u32 flags;
66f6ce5e
HX
35 void *ubuf[] CRYPTO_MINALIGN_ATTR;
36};
37
88056ec3
HX
38static inline struct ahash_alg *crypto_ahash_alg(struct crypto_ahash *hash)
39{
40 return container_of(crypto_hash_alg_common(hash), struct ahash_alg,
41 halg);
42}
43
20036252
HX
44static int hash_walk_next(struct crypto_hash_walk *walk)
45{
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);
50
75ecb231
HX
51 if (walk->flags & CRYPTO_ALG_ASYNC)
52 walk->data = kmap(walk->pg);
53 else
54 walk->data = kmap_atomic(walk->pg);
20036252
HX
55 walk->data += offset;
56
23a75eee
57 if (offset & alignmask) {
58 unsigned int unaligned = alignmask + 1 - (offset & alignmask);
b516d514 59
23a75eee
60 if (nbytes > unaligned)
61 nbytes = unaligned;
62 }
20036252
HX
63
64 walk->entrylen -= nbytes;
65 return nbytes;
66}
67
68static int hash_walk_new_entry(struct crypto_hash_walk *walk)
69{
70 struct scatterlist *sg;
71
72 sg = walk->sg;
20036252 73 walk->offset = sg->offset;
9b1f63ef
HX
74 walk->pg = sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT);
75 walk->offset = offset_in_page(walk->offset);
20036252
HX
76 walk->entrylen = sg->length;
77
78 if (walk->entrylen > walk->total)
79 walk->entrylen = walk->total;
80 walk->total -= walk->entrylen;
81
82 return hash_walk_next(walk);
83}
84
85int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err)
86{
87 unsigned int alignmask = walk->alignmask;
88 unsigned int nbytes = walk->entrylen;
89
90 walk->data -= walk->offset;
91
92 if (nbytes && walk->offset & alignmask && !err) {
20036252
HX
93 walk->offset = ALIGN(walk->offset, alignmask + 1);
94 walk->data += walk->offset;
95
96 nbytes = min(nbytes,
97 ((unsigned int)(PAGE_SIZE)) - walk->offset);
98 walk->entrylen -= nbytes;
99
100 return nbytes;
101 }
102
75ecb231
HX
103 if (walk->flags & CRYPTO_ALG_ASYNC)
104 kunmap(walk->pg);
105 else {
106 kunmap_atomic(walk->data);
107 /*
108 * The may sleep test only makes sense for sync users.
109 * Async users don't need to sleep here anyway.
110 */
111 crypto_yield(walk->flags);
112 }
20036252
HX
113
114 if (err)
115 return err;
116
d315a0e0
HX
117 if (nbytes) {
118 walk->offset = 0;
119 walk->pg++;
20036252 120 return hash_walk_next(walk);
d315a0e0 121 }
20036252
HX
122
123 if (!walk->total)
124 return 0;
125
5be4d4c9 126 walk->sg = sg_next(walk->sg);
20036252
HX
127
128 return hash_walk_new_entry(walk);
129}
130EXPORT_SYMBOL_GPL(crypto_hash_walk_done);
131
132int crypto_hash_walk_first(struct ahash_request *req,
133 struct crypto_hash_walk *walk)
134{
135 walk->total = req->nbytes;
136
6d9529c5
TC
137 if (!walk->total) {
138 walk->entrylen = 0;
20036252 139 return 0;
6d9529c5 140 }
20036252
HX
141
142 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
143 walk->sg = req->src;
75ecb231 144 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
20036252
HX
145
146 return hash_walk_new_entry(walk);
147}
148EXPORT_SYMBOL_GPL(crypto_hash_walk_first);
149
75ecb231
HX
150int crypto_ahash_walk_first(struct ahash_request *req,
151 struct crypto_hash_walk *walk)
152{
153 walk->total = req->nbytes;
154
6d9529c5
TC
155 if (!walk->total) {
156 walk->entrylen = 0;
75ecb231 157 return 0;
6d9529c5 158 }
75ecb231
HX
159
160 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
161 walk->sg = req->src;
162 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
163 walk->flags |= CRYPTO_ALG_ASYNC;
164
165 BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK & CRYPTO_ALG_ASYNC);
166
167 return hash_walk_new_entry(walk);
168}
169EXPORT_SYMBOL_GPL(crypto_ahash_walk_first);
170
5f7082ed
HX
171int crypto_hash_walk_first_compat(struct hash_desc *hdesc,
172 struct crypto_hash_walk *walk,
173 struct scatterlist *sg, unsigned int len)
174{
175 walk->total = len;
176
6d9529c5
TC
177 if (!walk->total) {
178 walk->entrylen = 0;
5f7082ed 179 return 0;
6d9529c5 180 }
5f7082ed
HX
181
182 walk->alignmask = crypto_hash_alignmask(hdesc->tfm);
183 walk->sg = sg;
75ecb231 184 walk->flags = hdesc->flags & CRYPTO_TFM_REQ_MASK;
5f7082ed
HX
185
186 return hash_walk_new_entry(walk);
187}
188
004a403c
LH
189static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key,
190 unsigned int keylen)
191{
004a403c
LH
192 unsigned long alignmask = crypto_ahash_alignmask(tfm);
193 int ret;
194 u8 *buffer, *alignbuffer;
195 unsigned long absize;
196
197 absize = keylen + alignmask;
093900c2 198 buffer = kmalloc(absize, GFP_KERNEL);
004a403c
LH
199 if (!buffer)
200 return -ENOMEM;
201
202 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
203 memcpy(alignbuffer, key, keylen);
a70c5225 204 ret = tfm->setkey(tfm, alignbuffer, keylen);
8c32c516 205 kzfree(buffer);
004a403c
LH
206 return ret;
207}
208
66f6ce5e 209int crypto_ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
004a403c
LH
210 unsigned int keylen)
211{
004a403c
LH
212 unsigned long alignmask = crypto_ahash_alignmask(tfm);
213
214 if ((unsigned long)key & alignmask)
215 return ahash_setkey_unaligned(tfm, key, keylen);
216
a70c5225 217 return tfm->setkey(tfm, key, keylen);
004a403c 218}
66f6ce5e 219EXPORT_SYMBOL_GPL(crypto_ahash_setkey);
004a403c 220
3751f402
HX
221static int ahash_nosetkey(struct crypto_ahash *tfm, const u8 *key,
222 unsigned int keylen)
223{
224 return -ENOSYS;
225}
226
66f6ce5e
HX
227static inline unsigned int ahash_align_buffer_size(unsigned len,
228 unsigned long mask)
229{
230 return len + (mask & ~(crypto_tfm_ctx_alignment() - 1));
231}
232
1ffc9fbd 233static int ahash_save_req(struct ahash_request *req, crypto_completion_t cplt)
66f6ce5e
HX
234{
235 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
236 unsigned long alignmask = crypto_ahash_alignmask(tfm);
237 unsigned int ds = crypto_ahash_digestsize(tfm);
238 struct ahash_request_priv *priv;
66f6ce5e
HX
239
240 priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask),
241 (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
5befbd5a 242 GFP_KERNEL : GFP_ATOMIC);
66f6ce5e
HX
243 if (!priv)
244 return -ENOMEM;
245
ab6bf4e5
MV
246 /*
247 * WARNING: Voodoo programming below!
248 *
249 * The code below is obscure and hard to understand, thus explanation
250 * is necessary. See include/crypto/hash.h and include/linux/crypto.h
251 * to understand the layout of structures used here!
252 *
253 * The code here will replace portions of the ORIGINAL request with
254 * pointers to new code and buffers so the hashing operation can store
255 * the result in aligned buffer. We will call the modified request
256 * an ADJUSTED request.
257 *
258 * The newly mangled request will look as such:
259 *
260 * req {
261 * .result = ADJUSTED[new aligned buffer]
262 * .base.complete = ADJUSTED[pointer to completion function]
263 * .base.data = ADJUSTED[*req (pointer to self)]
264 * .priv = ADJUSTED[new priv] {
265 * .result = ORIGINAL(result)
266 * .complete = ORIGINAL(base.complete)
267 * .data = ORIGINAL(base.data)
268 * }
269 */
270
66f6ce5e
HX
271 priv->result = req->result;
272 priv->complete = req->base.complete;
273 priv->data = req->base.data;
bf994c44
HX
274 priv->flags = req->base.flags;
275
ab6bf4e5
MV
276 /*
277 * WARNING: We do not backup req->priv here! The req->priv
278 * is for internal use of the Crypto API and the
279 * user must _NOT_ _EVER_ depend on it's content!
280 */
66f6ce5e
HX
281
282 req->result = PTR_ALIGN((u8 *)priv->ubuf, alignmask + 1);
1ffc9fbd 283 req->base.complete = cplt;
66f6ce5e
HX
284 req->base.data = req;
285 req->priv = priv;
286
1ffc9fbd
MV
287 return 0;
288}
289
bf994c44 290static void ahash_restore_req(struct ahash_request *req, int err)
1ffc9fbd
MV
291{
292 struct ahash_request_priv *priv = req->priv;
293
bf994c44
HX
294 if (!err)
295 memcpy(priv->result, req->result,
296 crypto_ahash_digestsize(crypto_ahash_reqtfm(req)));
297
1ffc9fbd
MV
298 /* Restore the original crypto request. */
299 req->result = priv->result;
bf994c44
HX
300
301 ahash_request_set_callback(req, priv->flags,
302 priv->complete, priv->data);
1ffc9fbd
MV
303 req->priv = NULL;
304
305 /* Free the req->priv.priv from the ADJUSTED request. */
306 kzfree(priv);
307}
308
bf994c44 309static void ahash_notify_einprogress(struct ahash_request *req)
1ffc9fbd
MV
310{
311 struct ahash_request_priv *priv = req->priv;
bf994c44 312 struct crypto_async_request oreq;
1ffc9fbd 313
bf994c44 314 oreq.data = priv->data;
1ffc9fbd 315
bf994c44 316 priv->complete(&oreq, -EINPROGRESS);
1ffc9fbd
MV
317}
318
319static void ahash_op_unaligned_done(struct crypto_async_request *req, int err)
320{
321 struct ahash_request *areq = req->data;
322
bf994c44
HX
323 if (err == -EINPROGRESS) {
324 ahash_notify_einprogress(areq);
325 return;
326 }
327
1ffc9fbd
MV
328 /*
329 * Restore the original request, see ahash_op_unaligned() for what
330 * goes where.
331 *
332 * The "struct ahash_request *req" here is in fact the "req.base"
333 * from the ADJUSTED request from ahash_op_unaligned(), thus as it
334 * is a pointer to self, it is also the ADJUSTED "req" .
335 */
336
337 /* First copy req->result into req->priv.result */
bf994c44 338 ahash_restore_req(areq, err);
1ffc9fbd
MV
339
340 /* Complete the ORIGINAL request. */
341 areq->base.complete(&areq->base, err);
342}
343
344static int ahash_op_unaligned(struct ahash_request *req,
345 int (*op)(struct ahash_request *))
346{
347 int err;
348
349 err = ahash_save_req(req, ahash_op_unaligned_done);
350 if (err)
351 return err;
352
66f6ce5e 353 err = op(req);
bf994c44
HX
354 if (err == -EINPROGRESS ||
355 (err == -EBUSY && (ahash_request_flags(req) &
356 CRYPTO_TFM_REQ_MAY_BACKLOG)))
357 return err;
358
359 ahash_restore_req(req, err);
66f6ce5e
HX
360
361 return err;
362}
363
364static int crypto_ahash_op(struct ahash_request *req,
365 int (*op)(struct ahash_request *))
366{
367 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
368 unsigned long alignmask = crypto_ahash_alignmask(tfm);
369
370 if ((unsigned long)req->result & alignmask)
371 return ahash_op_unaligned(req, op);
372
373 return op(req);
374}
375
376int crypto_ahash_final(struct ahash_request *req)
377{
378 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->final);
379}
380EXPORT_SYMBOL_GPL(crypto_ahash_final);
381
382int crypto_ahash_finup(struct ahash_request *req)
383{
384 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->finup);
385}
386EXPORT_SYMBOL_GPL(crypto_ahash_finup);
387
388int crypto_ahash_digest(struct ahash_request *req)
389{
390 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->digest);
391}
392EXPORT_SYMBOL_GPL(crypto_ahash_digest);
393
bf994c44 394static void ahash_def_finup_done2(struct crypto_async_request *req, int err)
66f6ce5e 395{
bf994c44 396 struct ahash_request *areq = req->data;
66f6ce5e
HX
397
398 if (err == -EINPROGRESS)
399 return;
400
bf994c44 401 ahash_restore_req(areq, err);
66f6ce5e 402
d4a7a0fb 403 areq->base.complete(&areq->base, err);
66f6ce5e
HX
404}
405
406static int ahash_def_finup_finish1(struct ahash_request *req, int err)
407{
408 if (err)
409 goto out;
410
411 req->base.complete = ahash_def_finup_done2;
bf994c44 412
66f6ce5e 413 err = crypto_ahash_reqtfm(req)->final(req);
bf994c44
HX
414 if (err == -EINPROGRESS ||
415 (err == -EBUSY && (ahash_request_flags(req) &
416 CRYPTO_TFM_REQ_MAY_BACKLOG)))
417 return err;
66f6ce5e
HX
418
419out:
bf994c44 420 ahash_restore_req(req, err);
66f6ce5e
HX
421 return err;
422}
423
424static void ahash_def_finup_done1(struct crypto_async_request *req, int err)
425{
426 struct ahash_request *areq = req->data;
66f6ce5e 427
bf994c44
HX
428 if (err == -EINPROGRESS) {
429 ahash_notify_einprogress(areq);
430 return;
431 }
432
433 areq->base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP;
434
66f6ce5e 435 err = ahash_def_finup_finish1(areq, err);
bf994c44
HX
436 if (areq->priv)
437 return;
66f6ce5e 438
d4a7a0fb 439 areq->base.complete(&areq->base, err);
66f6ce5e
HX
440}
441
442static int ahash_def_finup(struct ahash_request *req)
443{
444 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
d4a7a0fb 445 int err;
66f6ce5e 446
d4a7a0fb
MV
447 err = ahash_save_req(req, ahash_def_finup_done1);
448 if (err)
449 return err;
66f6ce5e 450
d4a7a0fb 451 err = tfm->update(req);
bf994c44
HX
452 if (err == -EINPROGRESS ||
453 (err == -EBUSY && (ahash_request_flags(req) &
454 CRYPTO_TFM_REQ_MAY_BACKLOG)))
455 return err;
456
d4a7a0fb 457 return ahash_def_finup_finish1(req, err);
66f6ce5e
HX
458}
459
460static int ahash_no_export(struct ahash_request *req, void *out)
461{
462 return -ENOSYS;
463}
464
465static int ahash_no_import(struct ahash_request *req, const void *in)
466{
467 return -ENOSYS;
468}
469
88056ec3
HX
470static int crypto_ahash_init_tfm(struct crypto_tfm *tfm)
471{
472 struct crypto_ahash *hash = __crypto_ahash_cast(tfm);
473 struct ahash_alg *alg = crypto_ahash_alg(hash);
88056ec3 474
66f6ce5e 475 hash->setkey = ahash_nosetkey;
f2e274ce 476 hash->has_setkey = false;
66f6ce5e
HX
477 hash->export = ahash_no_export;
478 hash->import = ahash_no_import;
479
88056ec3
HX
480 if (tfm->__crt_alg->cra_type != &crypto_ahash_type)
481 return crypto_init_shash_ops_async(tfm);
482
88056ec3
HX
483 hash->init = alg->init;
484 hash->update = alg->update;
66f6ce5e
HX
485 hash->final = alg->final;
486 hash->finup = alg->finup ?: ahash_def_finup;
88056ec3 487 hash->digest = alg->digest;
66f6ce5e 488
f2e274ce 489 if (alg->setkey) {
66f6ce5e 490 hash->setkey = alg->setkey;
f2e274ce
HX
491 hash->has_setkey = true;
492 }
66f6ce5e
HX
493 if (alg->export)
494 hash->export = alg->export;
495 if (alg->import)
496 hash->import = alg->import;
88056ec3
HX
497
498 return 0;
499}
500
501static unsigned int crypto_ahash_extsize(struct crypto_alg *alg)
502{
503 if (alg->cra_type == &crypto_ahash_type)
504 return alg->cra_ctxsize;
505
506 return sizeof(struct crypto_shash *);
507}
508
3acc8473 509#ifdef CONFIG_NET
6238cbae
SK
510static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
511{
512 struct crypto_report_hash rhash;
513
9a5467bf 514 strncpy(rhash.type, "ahash", sizeof(rhash.type));
6238cbae
SK
515
516 rhash.blocksize = alg->cra_blocksize;
517 rhash.digestsize = __crypto_hash_alg_common(alg)->digestsize;
518
6662df33
DM
519 if (nla_put(skb, CRYPTOCFGA_REPORT_HASH,
520 sizeof(struct crypto_report_hash), &rhash))
521 goto nla_put_failure;
6238cbae
SK
522 return 0;
523
524nla_put_failure:
525 return -EMSGSIZE;
526}
3acc8473
HX
527#else
528static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
529{
530 return -ENOSYS;
531}
532#endif
6238cbae 533
004a403c
LH
534static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
535 __attribute__ ((unused));
536static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
537{
538 seq_printf(m, "type : ahash\n");
539 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
540 "yes" : "no");
541 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
88056ec3
HX
542 seq_printf(m, "digestsize : %u\n",
543 __crypto_hash_alg_common(alg)->digestsize);
004a403c
LH
544}
545
546const struct crypto_type crypto_ahash_type = {
88056ec3
HX
547 .extsize = crypto_ahash_extsize,
548 .init_tfm = crypto_ahash_init_tfm,
004a403c
LH
549#ifdef CONFIG_PROC_FS
550 .show = crypto_ahash_show,
551#endif
6238cbae 552 .report = crypto_ahash_report,
88056ec3
HX
553 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
554 .maskset = CRYPTO_ALG_TYPE_AHASH_MASK,
555 .type = CRYPTO_ALG_TYPE_AHASH,
556 .tfmsize = offsetof(struct crypto_ahash, base),
004a403c
LH
557};
558EXPORT_SYMBOL_GPL(crypto_ahash_type);
559
88056ec3
HX
560struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type,
561 u32 mask)
562{
563 return crypto_alloc_tfm(alg_name, &crypto_ahash_type, type, mask);
564}
565EXPORT_SYMBOL_GPL(crypto_alloc_ahash);
566
01c2dece
HX
567static int ahash_prepare_alg(struct ahash_alg *alg)
568{
569 struct crypto_alg *base = &alg->halg.base;
570
571 if (alg->halg.digestsize > PAGE_SIZE / 8 ||
8996eafd
RK
572 alg->halg.statesize > PAGE_SIZE / 8 ||
573 alg->halg.statesize == 0)
01c2dece
HX
574 return -EINVAL;
575
576 base->cra_type = &crypto_ahash_type;
577 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
578 base->cra_flags |= CRYPTO_ALG_TYPE_AHASH;
579
580 return 0;
581}
582
583int crypto_register_ahash(struct ahash_alg *alg)
584{
585 struct crypto_alg *base = &alg->halg.base;
586 int err;
587
588 err = ahash_prepare_alg(alg);
589 if (err)
590 return err;
591
592 return crypto_register_alg(base);
593}
594EXPORT_SYMBOL_GPL(crypto_register_ahash);
595
596int crypto_unregister_ahash(struct ahash_alg *alg)
597{
598 return crypto_unregister_alg(&alg->halg.base);
599}
600EXPORT_SYMBOL_GPL(crypto_unregister_ahash);
601
602int ahash_register_instance(struct crypto_template *tmpl,
603 struct ahash_instance *inst)
604{
605 int err;
606
607 err = ahash_prepare_alg(&inst->alg);
608 if (err)
609 return err;
610
611 return crypto_register_instance(tmpl, ahash_crypto_instance(inst));
612}
613EXPORT_SYMBOL_GPL(ahash_register_instance);
614
615void ahash_free_instance(struct crypto_instance *inst)
616{
617 crypto_drop_spawn(crypto_instance_ctx(inst));
618 kfree(ahash_instance(inst));
619}
620EXPORT_SYMBOL_GPL(ahash_free_instance);
621
622int crypto_init_ahash_spawn(struct crypto_ahash_spawn *spawn,
623 struct hash_alg_common *alg,
624 struct crypto_instance *inst)
625{
626 return crypto_init_spawn2(&spawn->base, &alg->base, inst,
627 &crypto_ahash_type);
628}
629EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn);
630
631struct hash_alg_common *ahash_attr_alg(struct rtattr *rta, u32 type, u32 mask)
632{
633 struct crypto_alg *alg;
634
635 alg = crypto_attr_alg2(rta, &crypto_ahash_type, type, mask);
636 return IS_ERR(alg) ? ERR_CAST(alg) : __crypto_hash_alg_common(alg);
637}
638EXPORT_SYMBOL_GPL(ahash_attr_alg);
639
004a403c
LH
640MODULE_LICENSE("GPL");
641MODULE_DESCRIPTION("Asynchronous cryptographic hash type");