blob: 9a4e87755a0b4f9da6755558d141fb3454cf3eec [file] [log] [blame]
Loc Ho004a4032008-05-14 20:41:47 +08001/*
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
Herbert Xu20036252008-07-07 22:19:53 +080016#include <crypto/internal/hash.h>
17#include <crypto/scatterwalk.h>
Herbert Xu75ecb232014-05-21 20:56:12 +080018#include <linux/bug.h>
Loc Ho004a4032008-05-14 20:41:47 +080019#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>
Steffen Klassert6238cba2011-09-27 07:41:07 +020025#include <linux/cryptouser.h>
26#include <net/netlink.h>
Loc Ho004a4032008-05-14 20:41:47 +080027
28#include "internal.h"
29
Herbert Xu66f6ce52009-07-15 12:40:40 +080030struct ahash_request_priv {
31 crypto_completion_t complete;
32 void *data;
33 u8 *result;
Herbert Xuc1047952017-04-10 17:27:57 +080034 u32 flags;
Herbert Xu66f6ce52009-07-15 12:40:40 +080035 void *ubuf[] CRYPTO_MINALIGN_ATTR;
36};
37
Herbert Xu88056ec2009-07-14 12:28:26 +080038static 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
Herbert Xu20036252008-07-07 22:19:53 +080044static 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
Herbert Xu75ecb232014-05-21 20:56:12 +080051 if (walk->flags & CRYPTO_ALG_ASYNC)
52 walk->data = kmap(walk->pg);
53 else
54 walk->data = kmap_atomic(walk->pg);
Herbert Xu20036252008-07-07 22:19:53 +080055 walk->data += offset;
56
Szilveszter Ördög23a75ee2010-08-06 09:26:38 +080057 if (offset & alignmask) {
58 unsigned int unaligned = alignmask + 1 - (offset & alignmask);
Joshua I. Jamesb516d512014-12-05 14:44:54 +090059
Szilveszter Ördög23a75ee2010-08-06 09:26:38 +080060 if (nbytes > unaligned)
61 nbytes = unaligned;
62 }
Herbert Xu20036252008-07-07 22:19:53 +080063
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;
Herbert Xu20036252008-07-07 22:19:53 +080073 walk->offset = sg->offset;
Herbert Xu13f4bb72016-05-04 17:52:56 +080074 walk->pg = sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT);
75 walk->offset = offset_in_page(walk->offset);
Herbert Xu20036252008-07-07 22:19:53 +080076 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;
Herbert Xu20036252008-07-07 22:19:53 +080088
89 walk->data -= walk->offset;
90
Eric Biggers38605cc2019-01-31 23:51:41 -080091 if (walk->entrylen && (walk->offset & alignmask) && !err) {
92 unsigned int nbytes;
Herbert Xu20036252008-07-07 22:19:53 +080093
Eric Biggers38605cc2019-01-31 23:51:41 -080094 walk->offset = ALIGN(walk->offset, alignmask + 1);
95 nbytes = min(walk->entrylen,
96 (unsigned int)(PAGE_SIZE - walk->offset));
Herbert Xu7246bf32018-03-26 08:53:25 +080097 if (nbytes) {
Eric Biggers38605cc2019-01-31 23:51:41 -080098 walk->entrylen -= nbytes;
Herbert Xu7246bf32018-03-26 08:53:25 +080099 walk->data += walk->offset;
100 return nbytes;
101 }
Herbert Xu20036252008-07-07 22:19:53 +0800102 }
103
Herbert Xu75ecb232014-05-21 20:56:12 +0800104 if (walk->flags & CRYPTO_ALG_ASYNC)
105 kunmap(walk->pg);
106 else {
107 kunmap_atomic(walk->data);
108 /*
109 * The may sleep test only makes sense for sync users.
110 * Async users don't need to sleep here anyway.
111 */
112 crypto_yield(walk->flags);
113 }
Herbert Xu20036252008-07-07 22:19:53 +0800114
115 if (err)
116 return err;
117
Eric Biggers38605cc2019-01-31 23:51:41 -0800118 if (walk->entrylen) {
Herbert Xud315a0e2009-05-31 23:09:22 +1000119 walk->offset = 0;
120 walk->pg++;
Herbert Xu20036252008-07-07 22:19:53 +0800121 return hash_walk_next(walk);
Herbert Xud315a0e2009-05-31 23:09:22 +1000122 }
Herbert Xu20036252008-07-07 22:19:53 +0800123
124 if (!walk->total)
125 return 0;
126
Cristian Stoica5be4d4c2015-01-20 10:06:16 +0200127 walk->sg = sg_next(walk->sg);
Herbert Xu20036252008-07-07 22:19:53 +0800128
129 return hash_walk_new_entry(walk);
130}
131EXPORT_SYMBOL_GPL(crypto_hash_walk_done);
132
133int crypto_hash_walk_first(struct ahash_request *req,
134 struct crypto_hash_walk *walk)
135{
136 walk->total = req->nbytes;
137
Tim Chen6d9529c2014-07-10 16:18:08 -0700138 if (!walk->total) {
139 walk->entrylen = 0;
Herbert Xu20036252008-07-07 22:19:53 +0800140 return 0;
Tim Chen6d9529c2014-07-10 16:18:08 -0700141 }
Herbert Xu20036252008-07-07 22:19:53 +0800142
143 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
144 walk->sg = req->src;
Herbert Xu75ecb232014-05-21 20:56:12 +0800145 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
Herbert Xu20036252008-07-07 22:19:53 +0800146
147 return hash_walk_new_entry(walk);
148}
149EXPORT_SYMBOL_GPL(crypto_hash_walk_first);
150
Herbert Xu75ecb232014-05-21 20:56:12 +0800151int crypto_ahash_walk_first(struct ahash_request *req,
152 struct crypto_hash_walk *walk)
153{
154 walk->total = req->nbytes;
155
Tim Chen6d9529c2014-07-10 16:18:08 -0700156 if (!walk->total) {
157 walk->entrylen = 0;
Herbert Xu75ecb232014-05-21 20:56:12 +0800158 return 0;
Tim Chen6d9529c2014-07-10 16:18:08 -0700159 }
Herbert Xu75ecb232014-05-21 20:56:12 +0800160
161 walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
162 walk->sg = req->src;
163 walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK;
164 walk->flags |= CRYPTO_ALG_ASYNC;
165
166 BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK & CRYPTO_ALG_ASYNC);
167
168 return hash_walk_new_entry(walk);
169}
170EXPORT_SYMBOL_GPL(crypto_ahash_walk_first);
171
Loc Ho004a4032008-05-14 20:41:47 +0800172static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key,
173 unsigned int keylen)
174{
Loc Ho004a4032008-05-14 20:41:47 +0800175 unsigned long alignmask = crypto_ahash_alignmask(tfm);
176 int ret;
177 u8 *buffer, *alignbuffer;
178 unsigned long absize;
179
180 absize = keylen + alignmask;
Herbert Xu093900c2009-07-14 21:48:35 +0800181 buffer = kmalloc(absize, GFP_KERNEL);
Loc Ho004a4032008-05-14 20:41:47 +0800182 if (!buffer)
183 return -ENOMEM;
184
185 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
186 memcpy(alignbuffer, key, keylen);
Herbert Xua70c5222009-07-15 20:39:05 +0800187 ret = tfm->setkey(tfm, alignbuffer, keylen);
Herbert Xu8c32c512009-07-14 21:35:36 +0800188 kzfree(buffer);
Loc Ho004a4032008-05-14 20:41:47 +0800189 return ret;
190}
191
Eric Biggersdd39aff2019-01-06 18:47:42 -0800192static int ahash_nosetkey(struct crypto_ahash *tfm, const u8 *key,
193 unsigned int keylen)
194{
195 return -ENOSYS;
196}
197
198static void ahash_set_needkey(struct crypto_ahash *tfm)
199{
200 const struct hash_alg_common *alg = crypto_hash_alg_common(tfm);
201
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);
205}
206
Herbert Xu66f6ce52009-07-15 12:40:40 +0800207int crypto_ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
Loc Ho004a4032008-05-14 20:41:47 +0800208 unsigned int keylen)
209{
Loc Ho004a4032008-05-14 20:41:47 +0800210 unsigned long alignmask = crypto_ahash_alignmask(tfm);
Eric Biggersadf26e82018-01-03 11:16:27 -0800211 int err;
Loc Ho004a4032008-05-14 20:41:47 +0800212
213 if ((unsigned long)key & alignmask)
Eric Biggersadf26e82018-01-03 11:16:27 -0800214 err = ahash_setkey_unaligned(tfm, key, keylen);
215 else
216 err = tfm->setkey(tfm, key, keylen);
Loc Ho004a4032008-05-14 20:41:47 +0800217
Eric Biggersdd39aff2019-01-06 18:47:42 -0800218 if (unlikely(err)) {
219 ahash_set_needkey(tfm);
Eric Biggersadf26e82018-01-03 11:16:27 -0800220 return err;
Eric Biggersdd39aff2019-01-06 18:47:42 -0800221 }
Eric Biggersadf26e82018-01-03 11:16:27 -0800222
223 crypto_ahash_clear_flags(tfm, CRYPTO_TFM_NEED_KEY);
224 return 0;
Loc Ho004a4032008-05-14 20:41:47 +0800225}
Herbert Xu66f6ce52009-07-15 12:40:40 +0800226EXPORT_SYMBOL_GPL(crypto_ahash_setkey);
Loc Ho004a4032008-05-14 20:41:47 +0800227
Herbert Xu66f6ce52009-07-15 12:40:40 +0800228static inline unsigned int ahash_align_buffer_size(unsigned len,
229 unsigned long mask)
230{
231 return len + (mask & ~(crypto_tfm_ctx_alignment() - 1));
232}
233
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100234static int ahash_save_req(struct ahash_request *req, crypto_completion_t cplt)
Herbert Xu66f6ce52009-07-15 12:40:40 +0800235{
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;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800240
241 priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask),
242 (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
Steffen Klassert5befbd52009-07-24 13:56:31 +0800243 GFP_KERNEL : GFP_ATOMIC);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800244 if (!priv)
245 return -ENOMEM;
246
Marek Vasutab6bf4e2014-03-14 02:37:04 +0100247 /*
248 * WARNING: Voodoo programming below!
249 *
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!
253 *
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.
258 *
259 * The newly mangled request will look as such:
260 *
261 * req {
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)
269 * }
270 */
271
Herbert Xu66f6ce52009-07-15 12:40:40 +0800272 priv->result = req->result;
273 priv->complete = req->base.complete;
274 priv->data = req->base.data;
Herbert Xuc1047952017-04-10 17:27:57 +0800275 priv->flags = req->base.flags;
276
Marek Vasutab6bf4e2014-03-14 02:37:04 +0100277 /*
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!
281 */
Herbert Xu66f6ce52009-07-15 12:40:40 +0800282
283 req->result = PTR_ALIGN((u8 *)priv->ubuf, alignmask + 1);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100284 req->base.complete = cplt;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800285 req->base.data = req;
286 req->priv = priv;
287
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100288 return 0;
289}
290
Herbert Xuc1047952017-04-10 17:27:57 +0800291static void ahash_restore_req(struct ahash_request *req, int err)
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100292{
293 struct ahash_request_priv *priv = req->priv;
294
Herbert Xuc1047952017-04-10 17:27:57 +0800295 if (!err)
296 memcpy(priv->result, req->result,
297 crypto_ahash_digestsize(crypto_ahash_reqtfm(req)));
298
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100299 /* Restore the original crypto request. */
300 req->result = priv->result;
Herbert Xuc1047952017-04-10 17:27:57 +0800301
302 ahash_request_set_callback(req, priv->flags,
303 priv->complete, priv->data);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100304 req->priv = NULL;
305
306 /* Free the req->priv.priv from the ADJUSTED request. */
307 kzfree(priv);
308}
309
Herbert Xuc1047952017-04-10 17:27:57 +0800310static void ahash_notify_einprogress(struct ahash_request *req)
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100311{
312 struct ahash_request_priv *priv = req->priv;
Herbert Xuc1047952017-04-10 17:27:57 +0800313 struct crypto_async_request oreq;
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100314
Herbert Xuc1047952017-04-10 17:27:57 +0800315 oreq.data = priv->data;
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100316
Herbert Xuc1047952017-04-10 17:27:57 +0800317 priv->complete(&oreq, -EINPROGRESS);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100318}
319
320static void ahash_op_unaligned_done(struct crypto_async_request *req, int err)
321{
322 struct ahash_request *areq = req->data;
323
Herbert Xuc1047952017-04-10 17:27:57 +0800324 if (err == -EINPROGRESS) {
325 ahash_notify_einprogress(areq);
326 return;
327 }
328
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100329 /*
330 * Restore the original request, see ahash_op_unaligned() for what
331 * goes where.
332 *
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" .
336 */
337
338 /* First copy req->result into req->priv.result */
Herbert Xuc1047952017-04-10 17:27:57 +0800339 ahash_restore_req(areq, err);
Marek Vasut1ffc9fb2014-03-14 02:37:05 +0100340
341 /* Complete the ORIGINAL request. */
342 areq->base.complete(&areq->base, err);
343}
344
345static int ahash_op_unaligned(struct ahash_request *req,
346 int (*op)(struct ahash_request *))
347{
348 int err;
349
350 err = ahash_save_req(req, ahash_op_unaligned_done);
351 if (err)
352 return err;
353
Herbert Xu66f6ce52009-07-15 12:40:40 +0800354 err = op(req);
Herbert Xuc1047952017-04-10 17:27:57 +0800355 if (err == -EINPROGRESS ||
356 (err == -EBUSY && (ahash_request_flags(req) &
357 CRYPTO_TFM_REQ_MAY_BACKLOG)))
358 return err;
359
360 ahash_restore_req(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800361
362 return err;
363}
364
365static int crypto_ahash_op(struct ahash_request *req,
366 int (*op)(struct ahash_request *))
367{
368 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
369 unsigned long alignmask = crypto_ahash_alignmask(tfm);
370
371 if ((unsigned long)req->result & alignmask)
372 return ahash_op_unaligned(req, op);
373
374 return op(req);
375}
376
377int crypto_ahash_final(struct ahash_request *req)
378{
379 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->final);
380}
381EXPORT_SYMBOL_GPL(crypto_ahash_final);
382
383int crypto_ahash_finup(struct ahash_request *req)
384{
385 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->finup);
386}
387EXPORT_SYMBOL_GPL(crypto_ahash_finup);
388
389int crypto_ahash_digest(struct ahash_request *req)
390{
Eric Biggersadf26e82018-01-03 11:16:27 -0800391 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
392
393 if (crypto_ahash_get_flags(tfm) & CRYPTO_TFM_NEED_KEY)
394 return -ENOKEY;
395
396 return crypto_ahash_op(req, tfm->digest);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800397}
398EXPORT_SYMBOL_GPL(crypto_ahash_digest);
399
Herbert Xu66f6ce52009-07-15 12:40:40 +0800400static void ahash_def_finup_done2(struct crypto_async_request *req, int err)
401{
402 struct ahash_request *areq = req->data;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800403
Herbert Xuc1047952017-04-10 17:27:57 +0800404 if (err == -EINPROGRESS)
405 return;
406
407 ahash_restore_req(areq, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800408
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100409 areq->base.complete(&areq->base, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800410}
411
412static int ahash_def_finup_finish1(struct ahash_request *req, int err)
413{
414 if (err)
415 goto out;
416
417 req->base.complete = ahash_def_finup_done2;
Herbert Xuc1047952017-04-10 17:27:57 +0800418
Herbert Xu66f6ce52009-07-15 12:40:40 +0800419 err = crypto_ahash_reqtfm(req)->final(req);
Herbert Xuc1047952017-04-10 17:27:57 +0800420 if (err == -EINPROGRESS ||
421 (err == -EBUSY && (ahash_request_flags(req) &
422 CRYPTO_TFM_REQ_MAY_BACKLOG)))
423 return err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800424
425out:
Herbert Xuc1047952017-04-10 17:27:57 +0800426 ahash_restore_req(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800427 return err;
428}
429
430static void ahash_def_finup_done1(struct crypto_async_request *req, int err)
431{
432 struct ahash_request *areq = req->data;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800433
Herbert Xuc1047952017-04-10 17:27:57 +0800434 if (err == -EINPROGRESS) {
435 ahash_notify_einprogress(areq);
436 return;
437 }
438
439 areq->base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP;
440
Herbert Xu66f6ce52009-07-15 12:40:40 +0800441 err = ahash_def_finup_finish1(areq, err);
Herbert Xuc1047952017-04-10 17:27:57 +0800442 if (areq->priv)
443 return;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800444
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100445 areq->base.complete(&areq->base, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800446}
447
448static int ahash_def_finup(struct ahash_request *req)
449{
450 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100451 int err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800452
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100453 err = ahash_save_req(req, ahash_def_finup_done1);
454 if (err)
455 return err;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800456
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100457 err = tfm->update(req);
Herbert Xuc1047952017-04-10 17:27:57 +0800458 if (err == -EINPROGRESS ||
459 (err == -EBUSY && (ahash_request_flags(req) &
460 CRYPTO_TFM_REQ_MAY_BACKLOG)))
461 return err;
462
Marek Vasutd4a7a0f2014-03-14 02:37:06 +0100463 return ahash_def_finup_finish1(req, err);
Herbert Xu66f6ce52009-07-15 12:40:40 +0800464}
465
466static int ahash_no_export(struct ahash_request *req, void *out)
467{
468 return -ENOSYS;
469}
470
471static int ahash_no_import(struct ahash_request *req, const void *in)
472{
473 return -ENOSYS;
474}
475
Herbert Xu88056ec2009-07-14 12:28:26 +0800476static int crypto_ahash_init_tfm(struct crypto_tfm *tfm)
477{
478 struct crypto_ahash *hash = __crypto_ahash_cast(tfm);
479 struct ahash_alg *alg = crypto_ahash_alg(hash);
Herbert Xu88056ec2009-07-14 12:28:26 +0800480
Herbert Xu66f6ce52009-07-15 12:40:40 +0800481 hash->setkey = ahash_nosetkey;
482 hash->export = ahash_no_export;
483 hash->import = ahash_no_import;
484
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;
Herbert Xu66f6ce52009-07-15 12:40:40 +0800493
Herbert Xua5596d62016-01-08 21:28:26 +0800494 if (alg->setkey) {
Herbert Xu66f6ce52009-07-15 12:40:40 +0800495 hash->setkey = alg->setkey;
Eric Biggersdd39aff2019-01-06 18:47:42 -0800496 ahash_set_needkey(hash);
Herbert Xua5596d62016-01-08 21:28:26 +0800497 }
Herbert Xu66f6ce52009-07-15 12:40:40 +0800498 if (alg->export)
499 hash->export = alg->export;
500 if (alg->import)
501 hash->import = alg->import;
Herbert Xu88056ec2009-07-14 12:28:26 +0800502
503 return 0;
504}
505
506static unsigned int crypto_ahash_extsize(struct crypto_alg *alg)
507{
Herbert Xu2495cf22016-06-29 18:03:47 +0800508 if (alg->cra_type != &crypto_ahash_type)
509 return sizeof(struct crypto_shash *);
Herbert Xu88056ec2009-07-14 12:28:26 +0800510
Herbert Xu2495cf22016-06-29 18:03:47 +0800511 return crypto_alg_extsize(alg);
Herbert Xu88056ec2009-07-14 12:28:26 +0800512}
513
Herbert Xu3acc8472011-11-03 23:46:07 +1100514#ifdef CONFIG_NET
Steffen Klassert6238cba2011-09-27 07:41:07 +0200515static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
516{
517 struct crypto_report_hash rhash;
518
Mathias Krause9a5467b2013-02-05 18:19:13 +0100519 strncpy(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
David S. Miller6662df32012-04-01 20:19:05 -0400524 if (nla_put(skb, CRYPTOCFGA_REPORT_HASH,
525 sizeof(struct crypto_report_hash), &rhash))
526 goto nla_put_failure;
Steffen Klassert6238cba2011-09-27 07:41:07 +0200527 return 0;
528
529nla_put_failure:
530 return -EMSGSIZE;
531}
Herbert Xu3acc8472011-11-03 23:46:07 +1100532#else
533static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg)
534{
535 return -ENOSYS;
536}
537#endif
Steffen Klassert6238cba2011-09-27 07:41:07 +0200538
Loc Ho004a4032008-05-14 20:41:47 +0800539static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
540 __attribute__ ((unused));
541static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
542{
543 seq_printf(m, "type : ahash\n");
544 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
545 "yes" : "no");
546 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
Herbert Xu88056ec2009-07-14 12:28:26 +0800547 seq_printf(m, "digestsize : %u\n",
548 __crypto_hash_alg_common(alg)->digestsize);
Loc Ho004a4032008-05-14 20:41:47 +0800549}
550
551const struct crypto_type crypto_ahash_type = {
Herbert Xu88056ec2009-07-14 12:28:26 +0800552 .extsize = crypto_ahash_extsize,
553 .init_tfm = crypto_ahash_init_tfm,
Loc Ho004a4032008-05-14 20:41:47 +0800554#ifdef CONFIG_PROC_FS
555 .show = crypto_ahash_show,
556#endif
Steffen Klassert6238cba2011-09-27 07:41:07 +0200557 .report = crypto_ahash_report,
Herbert Xu88056ec2009-07-14 12:28:26 +0800558 .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),
Loc Ho004a4032008-05-14 20:41:47 +0800562};
563EXPORT_SYMBOL_GPL(crypto_ahash_type);
564
Herbert Xu88056ec2009-07-14 12:28:26 +0800565struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type,
566 u32 mask)
567{
568 return crypto_alloc_tfm(alg_name, &crypto_ahash_type, type, mask);
569}
570EXPORT_SYMBOL_GPL(crypto_alloc_ahash);
571
Herbert Xu8d18e342016-01-23 13:52:40 +0800572int crypto_has_ahash(const char *alg_name, u32 type, u32 mask)
573{
574 return crypto_type_has_alg(alg_name, &crypto_ahash_type, type, mask);
575}
576EXPORT_SYMBOL_GPL(crypto_has_ahash);
577
Herbert Xu01c2dec2009-07-14 14:06:06 +0800578static int ahash_prepare_alg(struct ahash_alg *alg)
579{
580 struct crypto_alg *base = &alg->halg.base;
581
582 if (alg->halg.digestsize > PAGE_SIZE / 8 ||
Russell King8996eaf2015-10-09 20:43:33 +0100583 alg->halg.statesize > PAGE_SIZE / 8 ||
584 alg->halg.statesize == 0)
Herbert Xu01c2dec2009-07-14 14:06:06 +0800585 return -EINVAL;
586
587 base->cra_type = &crypto_ahash_type;
588 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
589 base->cra_flags |= CRYPTO_ALG_TYPE_AHASH;
590
591 return 0;
592}
593
594int crypto_register_ahash(struct ahash_alg *alg)
595{
596 struct crypto_alg *base = &alg->halg.base;
597 int err;
598
599 err = ahash_prepare_alg(alg);
600 if (err)
601 return err;
602
603 return crypto_register_alg(base);
604}
605EXPORT_SYMBOL_GPL(crypto_register_ahash);
606
607int crypto_unregister_ahash(struct ahash_alg *alg)
608{
609 return crypto_unregister_alg(&alg->halg.base);
610}
611EXPORT_SYMBOL_GPL(crypto_unregister_ahash);
612
613int ahash_register_instance(struct crypto_template *tmpl,
614 struct ahash_instance *inst)
615{
616 int err;
617
618 err = ahash_prepare_alg(&inst->alg);
619 if (err)
620 return err;
621
622 return crypto_register_instance(tmpl, ahash_crypto_instance(inst));
623}
624EXPORT_SYMBOL_GPL(ahash_register_instance);
625
626void ahash_free_instance(struct crypto_instance *inst)
627{
628 crypto_drop_spawn(crypto_instance_ctx(inst));
629 kfree(ahash_instance(inst));
630}
631EXPORT_SYMBOL_GPL(ahash_free_instance);
632
633int crypto_init_ahash_spawn(struct crypto_ahash_spawn *spawn,
634 struct hash_alg_common *alg,
635 struct crypto_instance *inst)
636{
637 return crypto_init_spawn2(&spawn->base, &alg->base, inst,
638 &crypto_ahash_type);
639}
640EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn);
641
642struct hash_alg_common *ahash_attr_alg(struct rtattr *rta, u32 type, u32 mask)
643{
644 struct crypto_alg *alg;
645
646 alg = crypto_attr_alg2(rta, &crypto_ahash_type, type, mask);
647 return IS_ERR(alg) ? ERR_CAST(alg) : __crypto_hash_alg_common(alg);
648}
649EXPORT_SYMBOL_GPL(ahash_attr_alg);
650
Eric Biggersd2b492b2018-01-03 11:16:22 -0800651bool crypto_hash_alg_has_setkey(struct hash_alg_common *halg)
652{
653 struct crypto_alg *alg = &halg->base;
654
655 if (alg->cra_type != &crypto_ahash_type)
656 return crypto_shash_alg_has_setkey(__crypto_shash_alg(alg));
657
658 return __crypto_ahash_alg(alg)->setkey != NULL;
659}
660EXPORT_SYMBOL_GPL(crypto_hash_alg_has_setkey);
661
Loc Ho004a4032008-05-14 20:41:47 +0800662MODULE_LICENSE("GPL");
663MODULE_DESCRIPTION("Asynchronous cryptographic hash type");