blob: 3815b363a6934b1f195d855d5591b026d59ceccb [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Loc Ho004a4032008-05-14 20:41:47 +08002/*
3 * Asynchronous Cryptographic Hash operations.
4 *
5 * This is the asynchronous version of hash.c with notification of
6 * completion via a callback.
7 *
8 * Copyright (c) 2008 Loc Ho <lho@amcc.com>
Loc Ho004a4032008-05-14 20:41:47 +08009 */
10
Herbert Xu20036252008-07-07 22:19:53 +080011#include <crypto/internal/hash.h>
12#include <crypto/scatterwalk.h>
Herbert Xu75ecb232014-05-21 20:56:12 +080013#include <linux/bug.h>
Loc Ho004a4032008-05-14 20:41:47 +080014#include <linux/err.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19#include <linux/seq_file.h>
Steffen Klassert6238cba2011-09-27 07:41:07 +020020#include <linux/cryptouser.h>
Gideon Israel Dsouzad8c34b92016-12-31 21:26:23 +053021#include <linux/compiler.h>
Steffen Klassert6238cba2011-09-27 07:41:07 +020022#include <net/netlink.h>
Loc Ho004a4032008-05-14 20:41:47 +080023
24#include "internal.h"
25
Herbert Xu66f6ce52009-07-15 12:40:40 +080026struct ahash_request_priv {
27 crypto_completion_t complete;
28 void *data;
29 u8 *result;
Herbert Xuef0579b2017-04-10 17:27:57 +080030 u32 flags;
Herbert Xu66f6ce52009-07-15 12:40:40 +080031 void *ubuf[] CRYPTO_MINALIGN_ATTR;
32};
33
Herbert Xu88056ec2009-07-14 12:28:26 +080034static inline struct ahash_alg *crypto_ahash_alg(struct crypto_ahash *hash)
35{
36 return container_of(crypto_hash_alg_common(hash), struct ahash_alg,
37 halg);
38}
39
Herbert Xu20036252008-07-07 22:19:53 +080040static int hash_walk_next(struct crypto_hash_walk *walk)
41{
42 unsigned int alignmask = walk->alignmask;
43 unsigned int offset = walk->offset;
44 unsigned int nbytes = min(walk->entrylen,
45 ((unsigned int)(PAGE_SIZE)) - offset);
46
Herbert Xu75ecb232014-05-21 20:56:12 +080047 if (walk->flags & CRYPTO_ALG_ASYNC)
48 walk->data = kmap(walk->pg);
49 else
50 walk->data = kmap_atomic(walk->pg);
Herbert Xu20036252008-07-07 22:19:53 +080051 walk->data += offset;
52
Szilveszter Ördög23a75ee2010-08-06 09:26:38 +080053 if (offset & alignmask) {
54 unsigned int unaligned = alignmask + 1 - (offset & alignmask);
Joshua I. Jamesb516d5142014-12-05 14:44:54 +090055
Szilveszter Ördög23a75ee2010-08-06 09:26:38 +080056 if (nbytes > unaligned)
57 nbytes = unaligned;
58 }
Herbert Xu20036252008-07-07 22:19:53 +080059
60 walk->entrylen -= nbytes;
61 return nbytes;
62}
63
64static int hash_walk_new_entry(struct crypto_hash_walk *walk)
65{
66 struct scatterlist *sg;
67
68 sg = walk->sg;
Herbert Xu20036252008-07-07 22:19:53 +080069 walk->offset = sg->offset;
Herbert Xu13f4bb72016-05-04 17:52:56 +080070 walk->pg = sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT);
71 walk->offset = offset_in_page(walk->offset);
Herbert Xu20036252008-07-07 22:19:53 +080072 walk->entrylen = sg->length;
73
74 if (walk->entrylen > walk->total)
75 walk->entrylen = walk->total;
76 walk->total -= walk->entrylen;
77
78 return hash_walk_next(walk);
79}
80
81int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err)
82{
83 unsigned int alignmask = walk->alignmask;
Herbert Xu20036252008-07-07 22:19:53 +080084
85 walk->data -= walk->offset;
86
Eric Biggers77568e52019-01-31 23:51:41 -080087 if (walk->entrylen && (walk->offset & alignmask) && !err) {
88 unsigned int nbytes;
Herbert Xu20036252008-07-07 22:19:53 +080089
Eric Biggers77568e52019-01-31 23:51:41 -080090 walk->offset = ALIGN(walk->offset, alignmask + 1);
91 nbytes = min(walk->entrylen,
92 (unsigned int)(PAGE_SIZE - walk->offset));
Herbert Xu900a0812018-03-26 08:53:25 +080093 if (nbytes) {
Eric Biggers77568e52019-01-31 23:51:41 -080094 walk->entrylen -= nbytes;
Herbert Xu900a0812018-03-26 08:53:25 +080095 walk->data += walk->offset;
96 return nbytes;
97 }
Herbert Xu20036252008-07-07 22:19:53 +080098 }
99
Herbert Xu75ecb232014-05-21 20:56:12 +0800100 if (walk->flags & CRYPTO_ALG_ASYNC)
101 kunmap(walk->pg);
102 else {
103 kunmap_atomic(walk->data);
104 /*
105 * The may sleep test only makes sense for sync users.
106 * Async users don't need to sleep here anyway.
107 */
108 crypto_yield(walk->flags);
109 }
Herbert Xu20036252008-07-07 22:19:53 +0800110
111 if (err)
112 return err;
113
Eric Biggers77568e52019-01-31 23:51:41 -0800114 if (walk->entrylen) {
Herbert Xud315a0e2009-05-31 23:09:22 +1000115 walk->offset = 0;
116 walk->pg++;
Herbert Xu20036252008-07-07 22:19:53 +0800117 return hash_walk_next(walk);
Herbert Xud315a0e2009-05-31 23:09:22 +1000118 }
Herbert Xu20036252008-07-07 22:19:53 +0800119
120 if (!walk->total)
121 return 0;
122
Cristian Stoica5be4d4c2015-01-20 10:06:16 +0200123 walk->sg = sg_next(walk->sg);
Herbert Xu20036252008-07-07 22:19:53 +0800124
125 return hash_walk_new_entry(walk);
126}
127EXPORT_SYMBOL_GPL(crypto_hash_walk_done);
128
129int crypto_hash_walk_first(struct ahash_request *req,
130 struct crypto_hash_walk *walk)
131{
132 walk->total = req->nbytes;
133
Tim Chen6d9529c2014-07-10 16:18:08 -0700134 if (!walk->total) {
135 walk->entrylen = 0;
Herbert Xu20036252008-07-07 22:19:53 +0800136 return 0;
Tim Chen6d9529c2014-07-10 16:18:08 -0700137 }
Herbert Xu20036252008-07-07 22:19:53 +0800138
139 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
140 walk->sg = req->src;
Herbert Xu75ecb232014-05-21 20:56:12 +0800141 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
Herbert Xu20036252008-07-07 22:19:53 +0800142
143 return hash_walk_new_entry(walk);
144}
145EXPORT_SYMBOL_GPL(crypto_hash_walk_first);
146
Herbert Xu75ecb232014-05-21 20:56:12 +0800147int crypto_ahash_walk_first(struct ahash_request *req,
148 struct crypto_hash_walk *walk)
149{
150 walk->total = req->nbytes;
151
Tim Chen6d9529c2014-07-10 16:18:08 -0700152 if (!walk->total) {
153 walk->entrylen = 0;
Herbert Xu75ecb232014-05-21 20:56:12 +0800154 return 0;
Tim Chen6d9529c2014-07-10 16:18:08 -0700155 }
Herbert Xu75ecb232014-05-21 20:56:12 +0800156
157 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
158 walk->sg = req->src;
159 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
160 walk->flags |= CRYPTO_ALG_ASYNC;
161
162 BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK & CRYPTO_ALG_ASYNC);
163
164 return hash_walk_new_entry(walk);
165}
166EXPORT_SYMBOL_GPL(crypto_ahash_walk_first);
167
Loc Ho004a4032008-05-14 20:41:47 +0800168static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key,
169 unsigned int keylen)
170{
Loc Ho004a4032008-05-14 20:41:47 +0800171 unsigned long alignmask = crypto_ahash_alignmask(tfm);
172 int ret;
173 u8 *buffer, *alignbuffer;
174 unsigned long absize;
175
176 absize = keylen + alignmask;
Herbert Xu093900c2009-07-14 21:48:35 +0800177 buffer = kmalloc(absize, GFP_KERNEL);
Loc Ho004a4032008-05-14 20:41:47 +0800178 if (!buffer)
179 return -ENOMEM;
180
181 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
182 memcpy(alignbuffer, key, keylen);
Herbert Xua70c5222009-07-15 20:39:05 +0800183 ret = tfm->setkey(tfm, alignbuffer, keylen);
Herbert Xu8c32c512009-07-14 21:35:36 +0800184 kzfree(buffer);
Loc Ho004a4032008-05-14 20:41:47 +0800185 return ret;
186}
187
Eric Biggersba7d7432019-01-06 18:47:42 -0800188static int ahash_nosetkey(struct crypto_ahash *tfm, const u8 *key,
189 unsigned int keylen)
190{
191 return -ENOSYS;
192}
193
194static void ahash_set_needkey(struct crypto_ahash *tfm)
195{
196 const struct hash_alg_common *alg = crypto_hash_alg_common(tfm);
197
198 if (tfm->setkey != ahash_nosetkey &&
199 !(alg->base.cra_flags & CRYPTO_ALG_OPTIONAL_KEY))
200 crypto_ahash_set_flags(tfm, CRYPTO_TFM_NEED_KEY);
201}
202
Herbert Xu66f6ce52009-07-15 12:40:40 +0800203int crypto_ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
Loc Ho004a4032008-05-14 20:41:47 +0800204 unsigned int keylen)
205{
Loc Ho004a4032008-05-14 20:41:47 +0800206 unsigned long alignmask = crypto_ahash_alignmask(tfm);
Eric Biggers9fa68f62018-01-03 11:16:27 -0800207 int err;
Loc Ho004a4032008-05-14 20:41:47 +0800208
209 if ((unsigned long)key & alignmask)
Eric Biggers9fa68f62018-01-03 11:16:27 -0800210 err = ahash_setkey_unaligned(tfm, key, keylen);
211 else
212 err = tfm->setkey(tfm, key, keylen);
Loc Ho004a4032008-05-14 20:41:47 +0800213
Eric Biggersba7d7432019-01-06 18:47:42 -0800214 if (unlikely(err)) {
215 ahash_set_needkey(tfm);
Eric Biggers9fa68f62018-01-03 11:16:27 -0800216 return err;
Eric Biggersba7d7432019-01-06 18:47:42 -0800217 }
Eric Biggers9fa68f62018-01-03 11:16:27 -0800218
219 crypto_ahash_clear_flags(tfm, CRYPTO_TFM_NEED_KEY);
220 return 0;
Loc Ho004a4032008-05-14 20:41:47 +0800221}
Herbert Xu66f6ce52009-07-15 12:40:40 +0800222EXPORT_SYMBOL_GPL(crypto_ahash_setkey);
Loc Ho004a4032008-05-14 20:41:47 +0800223
Herbert Xu66f6ce52009-07-15 12:40:40 +0800224static inline unsigned int ahash_align_buffer_size(unsigned len,
225 unsigned long mask)
226{
227 return len + (mask & ~(crypto_tfm_ctx_alignment() - 1));
228}
229
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100230static int ahash_save_req(struct ahash_request *req, crypto_completion_t cplt)
Herbert Xu66f6ce52009-07-15 12:40:40 +0800231{
232 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
233 unsigned long alignmask = crypto_ahash_alignmask(tfm);
234 unsigned int ds = crypto_ahash_digestsize(tfm);
235 struct ahash_request_priv *priv;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800236
237 priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask),
238 (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
Steffen Klassert5befbd52009-07-24 13:56:31 +0800239 GFP_KERNEL : GFP_ATOMIC);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800240 if (!priv)
241 return -ENOMEM;
242
Marek Vasutab6bf4e2014-03-14 02:37:04 +0100243 /*
244 * WARNING: Voodoo programming below!
245 *
246 * The code below is obscure and hard to understand, thus explanation
247 * is necessary. See include/crypto/hash.h and include/linux/crypto.h
248 * to understand the layout of structures used here!
249 *
250 * The code here will replace portions of the ORIGINAL request with
251 * pointers to new code and buffers so the hashing operation can store
252 * the result in aligned buffer. We will call the modified request
253 * an ADJUSTED request.
254 *
255 * The newly mangled request will look as such:
256 *
257 * req {
258 * .result = ADJUSTED[new aligned buffer]
259 * .base.complete = ADJUSTED[pointer to completion function]
260 * .base.data = ADJUSTED[*req (pointer to self)]
261 * .priv = ADJUSTED[new priv] {
262 * .result = ORIGINAL(result)
263 * .complete = ORIGINAL(base.complete)
264 * .data = ORIGINAL(base.data)
265 * }
266 */
267
Herbert Xu66f6ce52009-07-15 12:40:40 +0800268 priv->result = req->result;
269 priv->complete = req->base.complete;
270 priv->data = req->base.data;
Herbert Xuef0579b2017-04-10 17:27:57 +0800271 priv->flags = req->base.flags;
272
Marek Vasutab6bf4e2014-03-14 02:37:04 +0100273 /*
274 * WARNING: We do not backup req->priv here! The req->priv
275 * is for internal use of the Crypto API and the
276 * user must _NOT_ _EVER_ depend on it's content!
277 */
Herbert Xu66f6ce52009-07-15 12:40:40 +0800278
279 req->result = PTR_ALIGN((u8 *)priv->ubuf, alignmask + 1);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100280 req->base.complete = cplt;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800281 req->base.data = req;
282 req->priv = priv;
283
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100284 return 0;
285}
286
Herbert Xuef0579b2017-04-10 17:27:57 +0800287static void ahash_restore_req(struct ahash_request *req, int err)
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100288{
289 struct ahash_request_priv *priv = req->priv;
290
Herbert Xuef0579b2017-04-10 17:27:57 +0800291 if (!err)
292 memcpy(priv->result, req->result,
293 crypto_ahash_digestsize(crypto_ahash_reqtfm(req)));
294
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100295 /* Restore the original crypto request. */
296 req->result = priv->result;
Herbert Xuef0579b2017-04-10 17:27:57 +0800297
298 ahash_request_set_callback(req, priv->flags,
299 priv->complete, priv->data);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100300 req->priv = NULL;
301
302 /* Free the req->priv.priv from the ADJUSTED request. */
303 kzfree(priv);
304}
305
Herbert Xuef0579b2017-04-10 17:27:57 +0800306static void ahash_notify_einprogress(struct ahash_request *req)
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100307{
308 struct ahash_request_priv *priv = req->priv;
Herbert Xuef0579b2017-04-10 17:27:57 +0800309 struct crypto_async_request oreq;
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100310
Herbert Xuef0579b2017-04-10 17:27:57 +0800311 oreq.data = priv->data;
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100312
Herbert Xuef0579b2017-04-10 17:27:57 +0800313 priv->complete(&oreq, -EINPROGRESS);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100314}
315
316static void ahash_op_unaligned_done(struct crypto_async_request *req, int err)
317{
318 struct ahash_request *areq = req->data;
319
Herbert Xuef0579b2017-04-10 17:27:57 +0800320 if (err == -EINPROGRESS) {
321 ahash_notify_einprogress(areq);
322 return;
323 }
324
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100325 /*
326 * Restore the original request, see ahash_op_unaligned() for what
327 * goes where.
328 *
329 * The "struct ahash_request *req" here is in fact the "req.base"
330 * from the ADJUSTED request from ahash_op_unaligned(), thus as it
331 * is a pointer to self, it is also the ADJUSTED "req" .
332 */
333
334 /* First copy req->result into req->priv.result */
Herbert Xuef0579b2017-04-10 17:27:57 +0800335 ahash_restore_req(areq, err);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100336
337 /* Complete the ORIGINAL request. */
338 areq->base.complete(&areq->base, err);
339}
340
341static int ahash_op_unaligned(struct ahash_request *req,
342 int (*op)(struct ahash_request *))
343{
344 int err;
345
346 err = ahash_save_req(req, ahash_op_unaligned_done);
347 if (err)
348 return err;
349
Herbert Xu66f6ce52009-07-15 12:40:40 +0800350 err = op(req);
Gilad Ben-Yossef4e5b0ad2017-10-18 08:00:36 +0100351 if (err == -EINPROGRESS || err == -EBUSY)
Herbert Xuef0579b2017-04-10 17:27:57 +0800352 return err;
353
354 ahash_restore_req(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800355
356 return err;
357}
358
359static int crypto_ahash_op(struct ahash_request *req,
360 int (*op)(struct ahash_request *))
361{
362 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
363 unsigned long alignmask = crypto_ahash_alignmask(tfm);
364
365 if ((unsigned long)req->result & alignmask)
366 return ahash_op_unaligned(req, op);
367
368 return op(req);
369}
370
371int crypto_ahash_final(struct ahash_request *req)
372{
Corentin Labbef7d76e02018-11-29 14:42:21 +0000373 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
374 struct crypto_alg *alg = tfm->base.__crt_alg;
375 unsigned int nbytes = req->nbytes;
Corentin Labbecac58182018-09-19 10:10:54 +0000376 int ret;
377
Corentin Labbef7d76e02018-11-29 14:42:21 +0000378 crypto_stats_get(alg);
Corentin Labbecac58182018-09-19 10:10:54 +0000379 ret = crypto_ahash_op(req, crypto_ahash_reqtfm(req)->final);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000380 crypto_stats_ahash_final(nbytes, ret, alg);
Corentin Labbecac58182018-09-19 10:10:54 +0000381 return ret;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800382}
383EXPORT_SYMBOL_GPL(crypto_ahash_final);
384
385int crypto_ahash_finup(struct ahash_request *req)
386{
Corentin Labbef7d76e02018-11-29 14:42:21 +0000387 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
388 struct crypto_alg *alg = tfm->base.__crt_alg;
389 unsigned int nbytes = req->nbytes;
Corentin Labbecac58182018-09-19 10:10:54 +0000390 int ret;
391
Corentin Labbef7d76e02018-11-29 14:42:21 +0000392 crypto_stats_get(alg);
Corentin Labbecac58182018-09-19 10:10:54 +0000393 ret = crypto_ahash_op(req, crypto_ahash_reqtfm(req)->finup);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000394 crypto_stats_ahash_final(nbytes, ret, alg);
Corentin Labbecac58182018-09-19 10:10:54 +0000395 return ret;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800396}
397EXPORT_SYMBOL_GPL(crypto_ahash_finup);
398
399int crypto_ahash_digest(struct ahash_request *req)
400{
Eric Biggers9fa68f62018-01-03 11:16:27 -0800401 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000402 struct crypto_alg *alg = tfm->base.__crt_alg;
403 unsigned int nbytes = req->nbytes;
Corentin Labbecac58182018-09-19 10:10:54 +0000404 int ret;
Eric Biggers9fa68f62018-01-03 11:16:27 -0800405
Corentin Labbef7d76e02018-11-29 14:42:21 +0000406 crypto_stats_get(alg);
Eric Biggers9fa68f62018-01-03 11:16:27 -0800407 if (crypto_ahash_get_flags(tfm) & CRYPTO_TFM_NEED_KEY)
Corentin Labbecac58182018-09-19 10:10:54 +0000408 ret = -ENOKEY;
409 else
410 ret = crypto_ahash_op(req, tfm->digest);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000411 crypto_stats_ahash_final(nbytes, ret, alg);
Corentin Labbecac58182018-09-19 10:10:54 +0000412 return ret;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800413}
414EXPORT_SYMBOL_GPL(crypto_ahash_digest);
415
Herbert Xu66f6ce52009-07-15 12:40:40 +0800416static void ahash_def_finup_done2(struct crypto_async_request *req, int err)
417{
418 struct ahash_request *areq = req->data;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800419
Herbert Xuef0579b2017-04-10 17:27:57 +0800420 if (err == -EINPROGRESS)
421 return;
422
423 ahash_restore_req(areq, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800424
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100425 areq->base.complete(&areq->base, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800426}
427
428static int ahash_def_finup_finish1(struct ahash_request *req, int err)
429{
430 if (err)
431 goto out;
432
433 req->base.complete = ahash_def_finup_done2;
Herbert Xuef0579b2017-04-10 17:27:57 +0800434
Herbert Xu66f6ce52009-07-15 12:40:40 +0800435 err = crypto_ahash_reqtfm(req)->final(req);
Gilad Ben-Yossef4e5b0ad2017-10-18 08:00:36 +0100436 if (err == -EINPROGRESS || err == -EBUSY)
Herbert Xuef0579b2017-04-10 17:27:57 +0800437 return err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800438
439out:
Herbert Xuef0579b2017-04-10 17:27:57 +0800440 ahash_restore_req(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800441 return err;
442}
443
444static void ahash_def_finup_done1(struct crypto_async_request *req, int err)
445{
446 struct ahash_request *areq = req->data;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800447
Herbert Xuef0579b2017-04-10 17:27:57 +0800448 if (err == -EINPROGRESS) {
449 ahash_notify_einprogress(areq);
450 return;
451 }
452
453 areq->base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP;
454
Herbert Xu66f6ce52009-07-15 12:40:40 +0800455 err = ahash_def_finup_finish1(areq, err);
Herbert Xuef0579b2017-04-10 17:27:57 +0800456 if (areq->priv)
457 return;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800458
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100459 areq->base.complete(&areq->base, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800460}
461
462static int ahash_def_finup(struct ahash_request *req)
463{
464 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100465 int err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800466
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100467 err = ahash_save_req(req, ahash_def_finup_done1);
468 if (err)
469 return err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800470
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100471 err = tfm->update(req);
Gilad Ben-Yossef4e5b0ad2017-10-18 08:00:36 +0100472 if (err == -EINPROGRESS || err == -EBUSY)
Herbert Xuef0579b2017-04-10 17:27:57 +0800473 return err;
474
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100475 return ahash_def_finup_finish1(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800476}
477
Herbert Xu88056ec2009-07-14 12:28:26 +0800478static int crypto_ahash_init_tfm(struct crypto_tfm *tfm)
479{
480 struct crypto_ahash *hash = __crypto_ahash_cast(tfm);
481 struct ahash_alg *alg = crypto_ahash_alg(hash);
Herbert Xu88056ec2009-07-14 12:28:26 +0800482
Herbert Xu66f6ce52009-07-15 12:40:40 +0800483 hash->setkey = ahash_nosetkey;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800484
Herbert Xu88056ec2009-07-14 12:28:26 +0800485 if (tfm->__crt_alg->cra_type != &crypto_ahash_type)
486 return crypto_init_shash_ops_async(tfm);
487
Herbert Xu88056ec2009-07-14 12:28:26 +0800488 hash->init = alg->init;
489 hash->update = alg->update;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800490 hash->final = alg->final;
491 hash->finup = alg->finup ?: ahash_def_finup;
Herbert Xu88056ec2009-07-14 12:28:26 +0800492 hash->digest = alg->digest;
Kamil Konieczny6f221f72018-01-18 19:34:04 +0100493 hash->export = alg->export;
494 hash->import = alg->import;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800495
Herbert Xua5596d62016-01-08 21:28:26 +0800496 if (alg->setkey) {
Herbert Xu66f6ce52009-07-15 12:40:40 +0800497 hash->setkey = alg->setkey;
Eric Biggersba7d7432019-01-06 18:47:42 -0800498 ahash_set_needkey(hash);
Herbert Xua5596d62016-01-08 21:28:26 +0800499 }
Herbert Xu88056ec2009-07-14 12:28:26 +0800500
501 return 0;
502}
503
504static unsigned int crypto_ahash_extsize(struct crypto_alg *alg)
505{
Herbert Xu2495cf22016-06-29 18:03:47 +0800506 if (alg->cra_type != &crypto_ahash_type)
507 return sizeof(struct crypto_shash *);
Herbert Xu88056ec2009-07-14 12:28:26 +0800508
Herbert Xu2495cf22016-06-29 18:03:47 +0800509 return crypto_alg_extsize(alg);
Herbert Xu88056ec2009-07-14 12:28:26 +0800510}
511
Herbert Xu3acc8472011-11-03 23:46:07 +1100512#ifdef CONFIG_NET
Steffen Klassert6238cba2011-09-27 07:41:07 +0200513static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
514{
515 struct crypto_report_hash rhash;
516
Eric Biggers37db69e2018-11-03 14:56:03 -0700517 memset(&rhash, 0, sizeof(rhash));
518
519 strscpy(rhash.type, "ahash", sizeof(rhash.type));
Steffen Klassert6238cba2011-09-27 07:41:07 +0200520
521 rhash.blocksize = alg->cra_blocksize;
522 rhash.digestsize = __crypto_hash_alg_common(alg)->digestsize;
523
Eric Biggers37db69e2018-11-03 14:56:03 -0700524 return nla_put(skb, CRYPTOCFGA_REPORT_HASH, sizeof(rhash), &rhash);
Steffen Klassert6238cba2011-09-27 07:41:07 +0200525}
Herbert Xu3acc8472011-11-03 23:46:07 +1100526#else
527static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
528{
529 return -ENOSYS;
530}
531#endif
Steffen Klassert6238cba2011-09-27 07:41:07 +0200532
Loc Ho004a4032008-05-14 20:41:47 +0800533static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
Gideon Israel Dsouzad8c34b92016-12-31 21:26:23 +0530534 __maybe_unused;
Loc Ho004a4032008-05-14 20:41:47 +0800535static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
536{
537 seq_printf(m, "type : ahash\n");
538 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
539 "yes" : "no");
540 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
Herbert Xu88056ec2009-07-14 12:28:26 +0800541 seq_printf(m, "digestsize : %u\n",
542 __crypto_hash_alg_common(alg)->digestsize);
Loc Ho004a4032008-05-14 20:41:47 +0800543}
544
545const struct crypto_type crypto_ahash_type = {
Herbert Xu88056ec2009-07-14 12:28:26 +0800546 .extsize = crypto_ahash_extsize,
547 .init_tfm = crypto_ahash_init_tfm,
Loc Ho004a4032008-05-14 20:41:47 +0800548#ifdef CONFIG_PROC_FS
549 .show = crypto_ahash_show,
550#endif
Steffen Klassert6238cba2011-09-27 07:41:07 +0200551 .report = crypto_ahash_report,
Herbert Xu88056ec2009-07-14 12:28:26 +0800552 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
553 .maskset = CRYPTO_ALG_TYPE_AHASH_MASK,
554 .type = CRYPTO_ALG_TYPE_AHASH,
555 .tfmsize = offsetof(struct crypto_ahash, base),
Loc Ho004a4032008-05-14 20:41:47 +0800556};
557EXPORT_SYMBOL_GPL(crypto_ahash_type);
558
Herbert Xu88056ec2009-07-14 12:28:26 +0800559struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type,
560 u32 mask)
561{
562 return crypto_alloc_tfm(alg_name, &crypto_ahash_type, type, mask);
563}
564EXPORT_SYMBOL_GPL(crypto_alloc_ahash);
565
Herbert Xu8d18e342016-01-23 13:52:40 +0800566int crypto_has_ahash(const char *alg_name, u32 type, u32 mask)
567{
568 return crypto_type_has_alg(alg_name, &crypto_ahash_type, type, mask);
569}
570EXPORT_SYMBOL_GPL(crypto_has_ahash);
571
Herbert Xu01c2dec2009-07-14 14:06:06 +0800572static int ahash_prepare_alg(struct ahash_alg *alg)
573{
574 struct crypto_alg *base = &alg->halg.base;
575
Kees Cookb68a7ec2018-08-07 14:18:38 -0700576 if (alg->halg.digestsize > HASH_MAX_DIGESTSIZE ||
577 alg->halg.statesize > HASH_MAX_STATESIZE ||
Russell King8996eaf2015-10-09 20:43:33 +0100578 alg->halg.statesize == 0)
Herbert Xu01c2dec2009-07-14 14:06:06 +0800579 return -EINVAL;
580
581 base->cra_type = &crypto_ahash_type;
582 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
583 base->cra_flags |= CRYPTO_ALG_TYPE_AHASH;
584
585 return 0;
586}
587
588int crypto_register_ahash(struct ahash_alg *alg)
589{
590 struct crypto_alg *base = &alg->halg.base;
591 int err;
592
593 err = ahash_prepare_alg(alg);
594 if (err)
595 return err;
596
597 return crypto_register_alg(base);
598}
599EXPORT_SYMBOL_GPL(crypto_register_ahash);
600
601int crypto_unregister_ahash(struct ahash_alg *alg)
602{
603 return crypto_unregister_alg(&alg->halg.base);
604}
605EXPORT_SYMBOL_GPL(crypto_unregister_ahash);
606
Rabin Vincent6f7473c2017-08-10 14:53:52 +0200607int crypto_register_ahashes(struct ahash_alg *algs, int count)
608{
609 int i, ret;
610
611 for (i = 0; i < count; i++) {
612 ret = crypto_register_ahash(&algs[i]);
613 if (ret)
614 goto err;
615 }
616
617 return 0;
618
619err:
620 for (--i; i >= 0; --i)
621 crypto_unregister_ahash(&algs[i]);
622
623 return ret;
624}
625EXPORT_SYMBOL_GPL(crypto_register_ahashes);
626
627void crypto_unregister_ahashes(struct ahash_alg *algs, int count)
628{
629 int i;
630
631 for (i = count - 1; i >= 0; --i)
632 crypto_unregister_ahash(&algs[i]);
633}
634EXPORT_SYMBOL_GPL(crypto_unregister_ahashes);
635
Herbert Xu01c2dec2009-07-14 14:06:06 +0800636int ahash_register_instance(struct crypto_template *tmpl,
637 struct ahash_instance *inst)
638{
639 int err;
640
641 err = ahash_prepare_alg(&inst->alg);
642 if (err)
643 return err;
644
645 return crypto_register_instance(tmpl, ahash_crypto_instance(inst));
646}
647EXPORT_SYMBOL_GPL(ahash_register_instance);
648
649void ahash_free_instance(struct crypto_instance *inst)
650{
651 crypto_drop_spawn(crypto_instance_ctx(inst));
652 kfree(ahash_instance(inst));
653}
654EXPORT_SYMBOL_GPL(ahash_free_instance);
655
656int crypto_init_ahash_spawn(struct crypto_ahash_spawn *spawn,
657 struct hash_alg_common *alg,
658 struct crypto_instance *inst)
659{
660 return crypto_init_spawn2(&spawn->base, &alg->base, inst,
661 &crypto_ahash_type);
662}
663EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn);
664
665struct hash_alg_common *ahash_attr_alg(struct rtattr *rta, u32 type, u32 mask)
666{
667 struct crypto_alg *alg;
668
669 alg = crypto_attr_alg2(rta, &crypto_ahash_type, type, mask);
670 return IS_ERR(alg) ? ERR_CAST(alg) : __crypto_hash_alg_common(alg);
671}
672EXPORT_SYMBOL_GPL(ahash_attr_alg);
673
Eric Biggerscd6ed772018-01-03 11:16:22 -0800674bool crypto_hash_alg_has_setkey(struct hash_alg_common *halg)
675{
676 struct crypto_alg *alg = &halg->base;
677
678 if (alg->cra_type != &crypto_ahash_type)
679 return crypto_shash_alg_has_setkey(__crypto_shash_alg(alg));
680
681 return __crypto_ahash_alg(alg)->setkey != NULL;
682}
683EXPORT_SYMBOL_GPL(crypto_hash_alg_has_setkey);
684
Loc Ho004a4032008-05-14 20:41:47 +0800685MODULE_LICENSE("GPL");
686MODULE_DESCRIPTION("Asynchronous cryptographic hash type");