]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - crypto/cryptd.c
crypto: poly1305 - remove ->setkey() method
[mirror_ubuntu-jammy-kernel.git] / crypto / cryptd.c
CommitLineData
124b53d0
HX
1/*
2 * Software async crypto daemon.
3 *
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
5 *
298c926c
AH
6 * Added AEAD support to cryptd.
7 * Authors: Tadeusz Struk (tadeusz.struk@intel.com)
8 * Adrian Hoban <adrian.hoban@intel.com>
9 * Gabriele Paoloni <gabriele.paoloni@intel.com>
10 * Aidan O'Mahony (aidan.o.mahony@intel.com)
11 * Copyright (c) 2010, Intel Corporation.
12 *
124b53d0
HX
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the Free
15 * Software Foundation; either version 2 of the License, or (at your option)
16 * any later version.
17 *
18 */
19
18e33e6d 20#include <crypto/internal/hash.h>
298c926c 21#include <crypto/internal/aead.h>
4e0958d1 22#include <crypto/internal/skcipher.h>
1cac2cbc 23#include <crypto/cryptd.h>
254eff77 24#include <crypto/crypto_wq.h>
81760ea6 25#include <linux/atomic.h>
124b53d0
HX
26#include <linux/err.h>
27#include <linux/init.h>
28#include <linux/kernel.h>
124b53d0
HX
29#include <linux/list.h>
30#include <linux/module.h>
124b53d0
HX
31#include <linux/scatterlist.h>
32#include <linux/sched.h>
33#include <linux/slab.h>
124b53d0 34
eaf356e4 35static unsigned int cryptd_max_cpu_qlen = 1000;
c3a53605
JM
36module_param(cryptd_max_cpu_qlen, uint, 0);
37MODULE_PARM_DESC(cryptd_max_cpu_qlen, "Set cryptd Max queue depth");
124b53d0 38
254eff77 39struct cryptd_cpu_queue {
124b53d0 40 struct crypto_queue queue;
254eff77
HY
41 struct work_struct work;
42};
43
44struct cryptd_queue {
a29d8b8e 45 struct cryptd_cpu_queue __percpu *cpu_queue;
124b53d0
HX
46};
47
48struct cryptd_instance_ctx {
49 struct crypto_spawn spawn;
254eff77 50 struct cryptd_queue *queue;
124b53d0
HX
51};
52
4e0958d1
HX
53struct skcipherd_instance_ctx {
54 struct crypto_skcipher_spawn spawn;
55 struct cryptd_queue *queue;
56};
57
46309d89
HX
58struct hashd_instance_ctx {
59 struct crypto_shash_spawn spawn;
60 struct cryptd_queue *queue;
61};
62
298c926c
AH
63struct aead_instance_ctx {
64 struct crypto_aead_spawn aead_spawn;
65 struct cryptd_queue *queue;
66};
67
124b53d0 68struct cryptd_blkcipher_ctx {
81760ea6 69 atomic_t refcnt;
124b53d0
HX
70 struct crypto_blkcipher *child;
71};
72
73struct cryptd_blkcipher_request_ctx {
74 crypto_completion_t complete;
75};
76
4e0958d1
HX
77struct cryptd_skcipher_ctx {
78 atomic_t refcnt;
79 struct crypto_skcipher *child;
80};
81
82struct cryptd_skcipher_request_ctx {
83 crypto_completion_t complete;
84};
85
b8a28251 86struct cryptd_hash_ctx {
81760ea6 87 atomic_t refcnt;
46309d89 88 struct crypto_shash *child;
b8a28251
LH
89};
90
91struct cryptd_hash_request_ctx {
92 crypto_completion_t complete;
46309d89 93 struct shash_desc desc;
b8a28251 94};
124b53d0 95
298c926c 96struct cryptd_aead_ctx {
81760ea6 97 atomic_t refcnt;
298c926c
AH
98 struct crypto_aead *child;
99};
100
101struct cryptd_aead_request_ctx {
102 crypto_completion_t complete;
103};
104
254eff77
HY
105static void cryptd_queue_worker(struct work_struct *work);
106
107static int cryptd_init_queue(struct cryptd_queue *queue,
108 unsigned int max_cpu_qlen)
109{
110 int cpu;
111 struct cryptd_cpu_queue *cpu_queue;
112
113 queue->cpu_queue = alloc_percpu(struct cryptd_cpu_queue);
114 if (!queue->cpu_queue)
115 return -ENOMEM;
116 for_each_possible_cpu(cpu) {
117 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
118 crypto_init_queue(&cpu_queue->queue, max_cpu_qlen);
119 INIT_WORK(&cpu_queue->work, cryptd_queue_worker);
120 }
c3a53605 121 pr_info("cryptd: max_cpu_qlen set to %d\n", max_cpu_qlen);
254eff77
HY
122 return 0;
123}
124
125static void cryptd_fini_queue(struct cryptd_queue *queue)
126{
127 int cpu;
128 struct cryptd_cpu_queue *cpu_queue;
129
130 for_each_possible_cpu(cpu) {
131 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
132 BUG_ON(cpu_queue->queue.qlen);
133 }
134 free_percpu(queue->cpu_queue);
135}
136
137static int cryptd_enqueue_request(struct cryptd_queue *queue,
138 struct crypto_async_request *request)
139{
140 int cpu, err;
141 struct cryptd_cpu_queue *cpu_queue;
81760ea6 142 atomic_t *refcnt;
254eff77
HY
143
144 cpu = get_cpu();
0b44f486 145 cpu_queue = this_cpu_ptr(queue->cpu_queue);
254eff77 146 err = crypto_enqueue_request(&cpu_queue->queue, request);
81760ea6
HX
147
148 refcnt = crypto_tfm_ctx(request->tfm);
81760ea6 149
6b80ea38 150 if (err == -ENOSPC)
81760ea6
HX
151 goto out_put_cpu;
152
254eff77 153 queue_work_on(cpu, kcrypto_wq, &cpu_queue->work);
81760ea6
HX
154
155 if (!atomic_read(refcnt))
156 goto out_put_cpu;
157
81760ea6
HX
158 atomic_inc(refcnt);
159
160out_put_cpu:
254eff77
HY
161 put_cpu();
162
163 return err;
164}
165
166/* Called in workqueue context, do one real cryption work (via
167 * req->complete) and reschedule itself if there are more work to
168 * do. */
169static void cryptd_queue_worker(struct work_struct *work)
170{
171 struct cryptd_cpu_queue *cpu_queue;
172 struct crypto_async_request *req, *backlog;
173
174 cpu_queue = container_of(work, struct cryptd_cpu_queue, work);
9efade1b
JK
175 /*
176 * Only handle one request at a time to avoid hogging crypto workqueue.
177 * preempt_disable/enable is used to prevent being preempted by
178 * cryptd_enqueue_request(). local_bh_disable/enable is used to prevent
179 * cryptd_enqueue_request() being accessed from software interrupts.
180 */
181 local_bh_disable();
254eff77
HY
182 preempt_disable();
183 backlog = crypto_get_backlog(&cpu_queue->queue);
184 req = crypto_dequeue_request(&cpu_queue->queue);
185 preempt_enable();
9efade1b 186 local_bh_enable();
254eff77
HY
187
188 if (!req)
189 return;
190
191 if (backlog)
192 backlog->complete(backlog, -EINPROGRESS);
193 req->complete(req, 0);
194
195 if (cpu_queue->queue.qlen)
196 queue_work(kcrypto_wq, &cpu_queue->work);
197}
198
199static inline struct cryptd_queue *cryptd_get_queue(struct crypto_tfm *tfm)
124b53d0
HX
200{
201 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
202 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
254eff77 203 return ictx->queue;
124b53d0
HX
204}
205
466a7b9e
SM
206static inline void cryptd_check_internal(struct rtattr **tb, u32 *type,
207 u32 *mask)
208{
209 struct crypto_attr_type *algt;
210
211 algt = crypto_get_attr_type(tb);
212 if (IS_ERR(algt))
213 return;
f6da3205 214
5e4b8c1f
HX
215 *type |= algt->type & CRYPTO_ALG_INTERNAL;
216 *mask |= algt->mask & CRYPTO_ALG_INTERNAL;
466a7b9e
SM
217}
218
124b53d0
HX
219static int cryptd_blkcipher_setkey(struct crypto_ablkcipher *parent,
220 const u8 *key, unsigned int keylen)
221{
222 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(parent);
223 struct crypto_blkcipher *child = ctx->child;
224 int err;
225
226 crypto_blkcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
227 crypto_blkcipher_set_flags(child, crypto_ablkcipher_get_flags(parent) &
228 CRYPTO_TFM_REQ_MASK);
229 err = crypto_blkcipher_setkey(child, key, keylen);
230 crypto_ablkcipher_set_flags(parent, crypto_blkcipher_get_flags(child) &
231 CRYPTO_TFM_RES_MASK);
232 return err;
233}
234
235static void cryptd_blkcipher_crypt(struct ablkcipher_request *req,
236 struct crypto_blkcipher *child,
237 int err,
238 int (*crypt)(struct blkcipher_desc *desc,
239 struct scatterlist *dst,
240 struct scatterlist *src,
241 unsigned int len))
242{
243 struct cryptd_blkcipher_request_ctx *rctx;
81760ea6
HX
244 struct cryptd_blkcipher_ctx *ctx;
245 struct crypto_ablkcipher *tfm;
124b53d0 246 struct blkcipher_desc desc;
81760ea6 247 int refcnt;
124b53d0
HX
248
249 rctx = ablkcipher_request_ctx(req);
250
93aa7f8a
HX
251 if (unlikely(err == -EINPROGRESS))
252 goto out;
124b53d0
HX
253
254 desc.tfm = child;
255 desc.info = req->info;
256 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
257
258 err = crypt(&desc, req->dst, req->src, req->nbytes);
259
260 req->base.complete = rctx->complete;
261
93aa7f8a 262out:
81760ea6
HX
263 tfm = crypto_ablkcipher_reqtfm(req);
264 ctx = crypto_ablkcipher_ctx(tfm);
265 refcnt = atomic_read(&ctx->refcnt);
266
124b53d0 267 local_bh_disable();
93aa7f8a 268 rctx->complete(&req->base, err);
124b53d0 269 local_bh_enable();
81760ea6
HX
270
271 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
272 crypto_free_ablkcipher(tfm);
124b53d0
HX
273}
274
275static void cryptd_blkcipher_encrypt(struct crypto_async_request *req, int err)
276{
277 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
278 struct crypto_blkcipher *child = ctx->child;
279
280 cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
281 crypto_blkcipher_crt(child)->encrypt);
282}
283
284static void cryptd_blkcipher_decrypt(struct crypto_async_request *req, int err)
285{
286 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
287 struct crypto_blkcipher *child = ctx->child;
288
289 cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
290 crypto_blkcipher_crt(child)->decrypt);
291}
292
293static int cryptd_blkcipher_enqueue(struct ablkcipher_request *req,
3e3dc25f 294 crypto_completion_t compl)
124b53d0
HX
295{
296 struct cryptd_blkcipher_request_ctx *rctx = ablkcipher_request_ctx(req);
297 struct crypto_ablkcipher *tfm = crypto_ablkcipher_reqtfm(req);
254eff77 298 struct cryptd_queue *queue;
124b53d0 299
254eff77 300 queue = cryptd_get_queue(crypto_ablkcipher_tfm(tfm));
124b53d0 301 rctx->complete = req->base.complete;
3e3dc25f 302 req->base.complete = compl;
124b53d0 303
254eff77 304 return cryptd_enqueue_request(queue, &req->base);
124b53d0
HX
305}
306
307static int cryptd_blkcipher_encrypt_enqueue(struct ablkcipher_request *req)
308{
309 return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_encrypt);
310}
311
312static int cryptd_blkcipher_decrypt_enqueue(struct ablkcipher_request *req)
313{
314 return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_decrypt);
315}
316
317static int cryptd_blkcipher_init_tfm(struct crypto_tfm *tfm)
318{
319 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
320 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
321 struct crypto_spawn *spawn = &ictx->spawn;
322 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
323 struct crypto_blkcipher *cipher;
324
325 cipher = crypto_spawn_blkcipher(spawn);
326 if (IS_ERR(cipher))
327 return PTR_ERR(cipher);
328
329 ctx->child = cipher;
330 tfm->crt_ablkcipher.reqsize =
331 sizeof(struct cryptd_blkcipher_request_ctx);
332 return 0;
333}
334
335static void cryptd_blkcipher_exit_tfm(struct crypto_tfm *tfm)
336{
337 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
124b53d0
HX
338
339 crypto_free_blkcipher(ctx->child);
340}
341
9b8c456e
HX
342static int cryptd_init_instance(struct crypto_instance *inst,
343 struct crypto_alg *alg)
344{
345 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
346 "cryptd(%s)",
347 alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
348 return -ENAMETOOLONG;
349
350 memcpy(inst->alg.cra_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
351
352 inst->alg.cra_priority = alg->cra_priority + 50;
353 inst->alg.cra_blocksize = alg->cra_blocksize;
354 inst->alg.cra_alignmask = alg->cra_alignmask;
355
356 return 0;
357}
358
0b535adf
HX
359static void *cryptd_alloc_instance(struct crypto_alg *alg, unsigned int head,
360 unsigned int tail)
124b53d0 361{
0b535adf 362 char *p;
124b53d0 363 struct crypto_instance *inst;
124b53d0
HX
364 int err;
365
0b535adf
HX
366 p = kzalloc(head + sizeof(*inst) + tail, GFP_KERNEL);
367 if (!p)
368 return ERR_PTR(-ENOMEM);
369
370 inst = (void *)(p + head);
124b53d0 371
9b8c456e
HX
372 err = cryptd_init_instance(inst, alg);
373 if (err)
124b53d0
HX
374 goto out_free_inst;
375
124b53d0 376out:
0b535adf 377 return p;
124b53d0
HX
378
379out_free_inst:
0b535adf
HX
380 kfree(p);
381 p = ERR_PTR(err);
124b53d0
HX
382 goto out;
383}
384
9cd899a3
HX
385static int cryptd_create_blkcipher(struct crypto_template *tmpl,
386 struct rtattr **tb,
387 struct cryptd_queue *queue)
124b53d0 388{
46309d89 389 struct cryptd_instance_ctx *ctx;
124b53d0
HX
390 struct crypto_instance *inst;
391 struct crypto_alg *alg;
466a7b9e
SM
392 u32 type = CRYPTO_ALG_TYPE_BLKCIPHER;
393 u32 mask = CRYPTO_ALG_TYPE_MASK;
46309d89 394 int err;
124b53d0 395
466a7b9e
SM
396 cryptd_check_internal(tb, &type, &mask);
397
398 alg = crypto_get_attr_alg(tb, type, mask);
124b53d0 399 if (IS_ERR(alg))
9cd899a3 400 return PTR_ERR(alg);
124b53d0 401
0b535adf 402 inst = cryptd_alloc_instance(alg, 0, sizeof(*ctx));
05ed8758 403 err = PTR_ERR(inst);
124b53d0
HX
404 if (IS_ERR(inst))
405 goto out_put_alg;
406
46309d89
HX
407 ctx = crypto_instance_ctx(inst);
408 ctx->queue = queue;
409
410 err = crypto_init_spawn(&ctx->spawn, alg, inst,
411 CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
412 if (err)
413 goto out_free_inst;
414
466a7b9e
SM
415 type = CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC;
416 if (alg->cra_flags & CRYPTO_ALG_INTERNAL)
417 type |= CRYPTO_ALG_INTERNAL;
418 inst->alg.cra_flags = type;
124b53d0
HX
419 inst->alg.cra_type = &crypto_ablkcipher_type;
420
421 inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize;
422 inst->alg.cra_ablkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
423 inst->alg.cra_ablkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
424
927eead5
HX
425 inst->alg.cra_ablkcipher.geniv = alg->cra_blkcipher.geniv;
426
124b53d0
HX
427 inst->alg.cra_ctxsize = sizeof(struct cryptd_blkcipher_ctx);
428
429 inst->alg.cra_init = cryptd_blkcipher_init_tfm;
430 inst->alg.cra_exit = cryptd_blkcipher_exit_tfm;
431
432 inst->alg.cra_ablkcipher.setkey = cryptd_blkcipher_setkey;
433 inst->alg.cra_ablkcipher.encrypt = cryptd_blkcipher_encrypt_enqueue;
434 inst->alg.cra_ablkcipher.decrypt = cryptd_blkcipher_decrypt_enqueue;
435
9cd899a3
HX
436 err = crypto_register_instance(tmpl, inst);
437 if (err) {
438 crypto_drop_spawn(&ctx->spawn);
439out_free_inst:
440 kfree(inst);
441 }
442
124b53d0
HX
443out_put_alg:
444 crypto_mod_put(alg);
9cd899a3 445 return err;
124b53d0
HX
446}
447
4e0958d1
HX
448static int cryptd_skcipher_setkey(struct crypto_skcipher *parent,
449 const u8 *key, unsigned int keylen)
450{
451 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(parent);
452 struct crypto_skcipher *child = ctx->child;
453 int err;
454
455 crypto_skcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
456 crypto_skcipher_set_flags(child, crypto_skcipher_get_flags(parent) &
457 CRYPTO_TFM_REQ_MASK);
458 err = crypto_skcipher_setkey(child, key, keylen);
459 crypto_skcipher_set_flags(parent, crypto_skcipher_get_flags(child) &
460 CRYPTO_TFM_RES_MASK);
461 return err;
462}
463
464static void cryptd_skcipher_complete(struct skcipher_request *req, int err)
465{
466 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
467 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
468 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
469 int refcnt = atomic_read(&ctx->refcnt);
470
471 local_bh_disable();
472 rctx->complete(&req->base, err);
473 local_bh_enable();
474
475 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
476 crypto_free_skcipher(tfm);
477}
478
479static void cryptd_skcipher_encrypt(struct crypto_async_request *base,
480 int err)
481{
482 struct skcipher_request *req = skcipher_request_cast(base);
483 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
484 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
485 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
486 struct crypto_skcipher *child = ctx->child;
487 SKCIPHER_REQUEST_ON_STACK(subreq, child);
488
489 if (unlikely(err == -EINPROGRESS))
490 goto out;
491
492 skcipher_request_set_tfm(subreq, child);
493 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
494 NULL, NULL);
495 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
496 req->iv);
497
498 err = crypto_skcipher_encrypt(subreq);
499 skcipher_request_zero(subreq);
500
501 req->base.complete = rctx->complete;
502
503out:
504 cryptd_skcipher_complete(req, err);
505}
506
507static void cryptd_skcipher_decrypt(struct crypto_async_request *base,
508 int err)
509{
510 struct skcipher_request *req = skcipher_request_cast(base);
511 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
512 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
513 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
514 struct crypto_skcipher *child = ctx->child;
515 SKCIPHER_REQUEST_ON_STACK(subreq, child);
516
517 if (unlikely(err == -EINPROGRESS))
518 goto out;
519
520 skcipher_request_set_tfm(subreq, child);
521 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
522 NULL, NULL);
523 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
524 req->iv);
525
526 err = crypto_skcipher_decrypt(subreq);
527 skcipher_request_zero(subreq);
528
529 req->base.complete = rctx->complete;
530
531out:
532 cryptd_skcipher_complete(req, err);
533}
534
535static int cryptd_skcipher_enqueue(struct skcipher_request *req,
536 crypto_completion_t compl)
537{
538 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
539 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
540 struct cryptd_queue *queue;
541
542 queue = cryptd_get_queue(crypto_skcipher_tfm(tfm));
543 rctx->complete = req->base.complete;
544 req->base.complete = compl;
545
546 return cryptd_enqueue_request(queue, &req->base);
547}
548
549static int cryptd_skcipher_encrypt_enqueue(struct skcipher_request *req)
550{
551 return cryptd_skcipher_enqueue(req, cryptd_skcipher_encrypt);
552}
553
554static int cryptd_skcipher_decrypt_enqueue(struct skcipher_request *req)
555{
556 return cryptd_skcipher_enqueue(req, cryptd_skcipher_decrypt);
557}
558
559static int cryptd_skcipher_init_tfm(struct crypto_skcipher *tfm)
560{
561 struct skcipher_instance *inst = skcipher_alg_instance(tfm);
562 struct skcipherd_instance_ctx *ictx = skcipher_instance_ctx(inst);
563 struct crypto_skcipher_spawn *spawn = &ictx->spawn;
564 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
565 struct crypto_skcipher *cipher;
566
567 cipher = crypto_spawn_skcipher(spawn);
568 if (IS_ERR(cipher))
569 return PTR_ERR(cipher);
570
571 ctx->child = cipher;
572 crypto_skcipher_set_reqsize(
573 tfm, sizeof(struct cryptd_skcipher_request_ctx));
574 return 0;
575}
576
577static void cryptd_skcipher_exit_tfm(struct crypto_skcipher *tfm)
578{
579 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
580
581 crypto_free_skcipher(ctx->child);
582}
583
584static void cryptd_skcipher_free(struct skcipher_instance *inst)
585{
586 struct skcipherd_instance_ctx *ctx = skcipher_instance_ctx(inst);
587
588 crypto_drop_skcipher(&ctx->spawn);
589}
590
591static int cryptd_create_skcipher(struct crypto_template *tmpl,
592 struct rtattr **tb,
593 struct cryptd_queue *queue)
594{
595 struct skcipherd_instance_ctx *ctx;
596 struct skcipher_instance *inst;
597 struct skcipher_alg *alg;
598 const char *name;
599 u32 type;
600 u32 mask;
601 int err;
602
603 type = 0;
604 mask = CRYPTO_ALG_ASYNC;
605
606 cryptd_check_internal(tb, &type, &mask);
607
608 name = crypto_attr_alg_name(tb[1]);
609 if (IS_ERR(name))
610 return PTR_ERR(name);
611
612 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
613 if (!inst)
614 return -ENOMEM;
615
616 ctx = skcipher_instance_ctx(inst);
617 ctx->queue = queue;
618
619 crypto_set_skcipher_spawn(&ctx->spawn, skcipher_crypto_instance(inst));
620 err = crypto_grab_skcipher(&ctx->spawn, name, type, mask);
621 if (err)
622 goto out_free_inst;
623
624 alg = crypto_spawn_skcipher_alg(&ctx->spawn);
625 err = cryptd_init_instance(skcipher_crypto_instance(inst), &alg->base);
626 if (err)
627 goto out_drop_skcipher;
628
629 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
630 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
631
632 inst->alg.ivsize = crypto_skcipher_alg_ivsize(alg);
633 inst->alg.chunksize = crypto_skcipher_alg_chunksize(alg);
634 inst->alg.min_keysize = crypto_skcipher_alg_min_keysize(alg);
635 inst->alg.max_keysize = crypto_skcipher_alg_max_keysize(alg);
636
637 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_skcipher_ctx);
638
639 inst->alg.init = cryptd_skcipher_init_tfm;
640 inst->alg.exit = cryptd_skcipher_exit_tfm;
641
642 inst->alg.setkey = cryptd_skcipher_setkey;
643 inst->alg.encrypt = cryptd_skcipher_encrypt_enqueue;
644 inst->alg.decrypt = cryptd_skcipher_decrypt_enqueue;
645
646 inst->free = cryptd_skcipher_free;
647
648 err = skcipher_register_instance(tmpl, inst);
649 if (err) {
650out_drop_skcipher:
651 crypto_drop_skcipher(&ctx->spawn);
652out_free_inst:
653 kfree(inst);
654 }
655 return err;
656}
657
b8a28251
LH
658static int cryptd_hash_init_tfm(struct crypto_tfm *tfm)
659{
660 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
46309d89
HX
661 struct hashd_instance_ctx *ictx = crypto_instance_ctx(inst);
662 struct crypto_shash_spawn *spawn = &ictx->spawn;
b8a28251 663 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
46309d89 664 struct crypto_shash *hash;
b8a28251 665
46309d89
HX
666 hash = crypto_spawn_shash(spawn);
667 if (IS_ERR(hash))
668 return PTR_ERR(hash);
b8a28251 669
46309d89 670 ctx->child = hash;
0d6669e2
HX
671 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
672 sizeof(struct cryptd_hash_request_ctx) +
673 crypto_shash_descsize(hash));
b8a28251
LH
674 return 0;
675}
676
677static void cryptd_hash_exit_tfm(struct crypto_tfm *tfm)
678{
679 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
b8a28251 680
46309d89 681 crypto_free_shash(ctx->child);
b8a28251
LH
682}
683
684static int cryptd_hash_setkey(struct crypto_ahash *parent,
685 const u8 *key, unsigned int keylen)
686{
687 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(parent);
46309d89 688 struct crypto_shash *child = ctx->child;
b8a28251
LH
689 int err;
690
46309d89
HX
691 crypto_shash_clear_flags(child, CRYPTO_TFM_REQ_MASK);
692 crypto_shash_set_flags(child, crypto_ahash_get_flags(parent) &
693 CRYPTO_TFM_REQ_MASK);
694 err = crypto_shash_setkey(child, key, keylen);
695 crypto_ahash_set_flags(parent, crypto_shash_get_flags(child) &
696 CRYPTO_TFM_RES_MASK);
b8a28251
LH
697 return err;
698}
699
700static int cryptd_hash_enqueue(struct ahash_request *req,
3e3dc25f 701 crypto_completion_t compl)
b8a28251
LH
702{
703 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
704 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
254eff77
HY
705 struct cryptd_queue *queue =
706 cryptd_get_queue(crypto_ahash_tfm(tfm));
b8a28251
LH
707
708 rctx->complete = req->base.complete;
3e3dc25f 709 req->base.complete = compl;
b8a28251 710
254eff77 711 return cryptd_enqueue_request(queue, &req->base);
b8a28251
LH
712}
713
81760ea6
HX
714static void cryptd_hash_complete(struct ahash_request *req, int err)
715{
716 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
717 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
718 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
719 int refcnt = atomic_read(&ctx->refcnt);
720
721 local_bh_disable();
722 rctx->complete(&req->base, err);
723 local_bh_enable();
724
725 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
726 crypto_free_ahash(tfm);
727}
728
b8a28251
LH
729static void cryptd_hash_init(struct crypto_async_request *req_async, int err)
730{
46309d89
HX
731 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
732 struct crypto_shash *child = ctx->child;
733 struct ahash_request *req = ahash_request_cast(req_async);
734 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
735 struct shash_desc *desc = &rctx->desc;
b8a28251
LH
736
737 if (unlikely(err == -EINPROGRESS))
738 goto out;
739
46309d89
HX
740 desc->tfm = child;
741 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
b8a28251 742
46309d89 743 err = crypto_shash_init(desc);
b8a28251
LH
744
745 req->base.complete = rctx->complete;
746
747out:
81760ea6 748 cryptd_hash_complete(req, err);
b8a28251
LH
749}
750
751static int cryptd_hash_init_enqueue(struct ahash_request *req)
752{
753 return cryptd_hash_enqueue(req, cryptd_hash_init);
754}
755
756static void cryptd_hash_update(struct crypto_async_request *req_async, int err)
757{
46309d89 758 struct ahash_request *req = ahash_request_cast(req_async);
b8a28251 759 struct cryptd_hash_request_ctx *rctx;
b8a28251
LH
760
761 rctx = ahash_request_ctx(req);
762
763 if (unlikely(err == -EINPROGRESS))
764 goto out;
765
46309d89 766 err = shash_ahash_update(req, &rctx->desc);
b8a28251
LH
767
768 req->base.complete = rctx->complete;
769
770out:
81760ea6 771 cryptd_hash_complete(req, err);
b8a28251
LH
772}
773
774static int cryptd_hash_update_enqueue(struct ahash_request *req)
775{
776 return cryptd_hash_enqueue(req, cryptd_hash_update);
777}
778
779static void cryptd_hash_final(struct crypto_async_request *req_async, int err)
780{
46309d89
HX
781 struct ahash_request *req = ahash_request_cast(req_async);
782 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
b8a28251
LH
783
784 if (unlikely(err == -EINPROGRESS))
785 goto out;
786
46309d89 787 err = crypto_shash_final(&rctx->desc, req->result);
b8a28251
LH
788
789 req->base.complete = rctx->complete;
790
791out:
81760ea6 792 cryptd_hash_complete(req, err);
b8a28251
LH
793}
794
795static int cryptd_hash_final_enqueue(struct ahash_request *req)
796{
797 return cryptd_hash_enqueue(req, cryptd_hash_final);
798}
799
6fba00d1
HX
800static void cryptd_hash_finup(struct crypto_async_request *req_async, int err)
801{
802 struct ahash_request *req = ahash_request_cast(req_async);
803 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
804
805 if (unlikely(err == -EINPROGRESS))
806 goto out;
807
808 err = shash_ahash_finup(req, &rctx->desc);
809
810 req->base.complete = rctx->complete;
811
812out:
81760ea6 813 cryptd_hash_complete(req, err);
6fba00d1
HX
814}
815
816static int cryptd_hash_finup_enqueue(struct ahash_request *req)
817{
818 return cryptd_hash_enqueue(req, cryptd_hash_finup);
819}
820
b8a28251
LH
821static void cryptd_hash_digest(struct crypto_async_request *req_async, int err)
822{
46309d89
HX
823 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
824 struct crypto_shash *child = ctx->child;
825 struct ahash_request *req = ahash_request_cast(req_async);
826 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
827 struct shash_desc *desc = &rctx->desc;
b8a28251
LH
828
829 if (unlikely(err == -EINPROGRESS))
830 goto out;
831
46309d89
HX
832 desc->tfm = child;
833 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
b8a28251 834
46309d89 835 err = shash_ahash_digest(req, desc);
b8a28251
LH
836
837 req->base.complete = rctx->complete;
838
839out:
81760ea6 840 cryptd_hash_complete(req, err);
b8a28251
LH
841}
842
843static int cryptd_hash_digest_enqueue(struct ahash_request *req)
844{
845 return cryptd_hash_enqueue(req, cryptd_hash_digest);
846}
847
6fba00d1
HX
848static int cryptd_hash_export(struct ahash_request *req, void *out)
849{
850 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
851
852 return crypto_shash_export(&rctx->desc, out);
853}
854
855static int cryptd_hash_import(struct ahash_request *req, const void *in)
856{
0bd22235
AB
857 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
858 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
859 struct shash_desc *desc = cryptd_shash_desc(req);
860
861 desc->tfm = ctx->child;
862 desc->flags = req->base.flags;
6fba00d1 863
0bd22235 864 return crypto_shash_import(desc, in);
6fba00d1
HX
865}
866
9cd899a3
HX
867static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb,
868 struct cryptd_queue *queue)
b8a28251 869{
46309d89 870 struct hashd_instance_ctx *ctx;
0b535adf 871 struct ahash_instance *inst;
46309d89 872 struct shash_alg *salg;
b8a28251 873 struct crypto_alg *alg;
466a7b9e
SM
874 u32 type = 0;
875 u32 mask = 0;
46309d89 876 int err;
b8a28251 877
466a7b9e
SM
878 cryptd_check_internal(tb, &type, &mask);
879
880 salg = shash_attr_alg(tb[1], type, mask);
46309d89 881 if (IS_ERR(salg))
9cd899a3 882 return PTR_ERR(salg);
b8a28251 883
46309d89 884 alg = &salg->base;
0b535adf
HX
885 inst = cryptd_alloc_instance(alg, ahash_instance_headroom(),
886 sizeof(*ctx));
05ed8758 887 err = PTR_ERR(inst);
b8a28251
LH
888 if (IS_ERR(inst))
889 goto out_put_alg;
890
0b535adf 891 ctx = ahash_instance_ctx(inst);
46309d89
HX
892 ctx->queue = queue;
893
0b535adf
HX
894 err = crypto_init_shash_spawn(&ctx->spawn, salg,
895 ahash_crypto_instance(inst));
46309d89
HX
896 if (err)
897 goto out_free_inst;
898
466a7b9e
SM
899 type = CRYPTO_ALG_ASYNC;
900 if (alg->cra_flags & CRYPTO_ALG_INTERNAL)
901 type |= CRYPTO_ALG_INTERNAL;
902 inst->alg.halg.base.cra_flags = type;
b8a28251 903
0b535adf 904 inst->alg.halg.digestsize = salg->digestsize;
1a078340 905 inst->alg.halg.statesize = salg->statesize;
0b535adf 906 inst->alg.halg.base.cra_ctxsize = sizeof(struct cryptd_hash_ctx);
b8a28251 907
0b535adf
HX
908 inst->alg.halg.base.cra_init = cryptd_hash_init_tfm;
909 inst->alg.halg.base.cra_exit = cryptd_hash_exit_tfm;
b8a28251 910
0b535adf
HX
911 inst->alg.init = cryptd_hash_init_enqueue;
912 inst->alg.update = cryptd_hash_update_enqueue;
913 inst->alg.final = cryptd_hash_final_enqueue;
6fba00d1
HX
914 inst->alg.finup = cryptd_hash_finup_enqueue;
915 inst->alg.export = cryptd_hash_export;
916 inst->alg.import = cryptd_hash_import;
841a3ff3
EB
917 if (crypto_shash_alg_has_setkey(salg))
918 inst->alg.setkey = cryptd_hash_setkey;
0b535adf 919 inst->alg.digest = cryptd_hash_digest_enqueue;
b8a28251 920
0b535adf 921 err = ahash_register_instance(tmpl, inst);
9cd899a3
HX
922 if (err) {
923 crypto_drop_shash(&ctx->spawn);
924out_free_inst:
925 kfree(inst);
926 }
927
b8a28251
LH
928out_put_alg:
929 crypto_mod_put(alg);
9cd899a3 930 return err;
b8a28251
LH
931}
932
92b9876b
HX
933static int cryptd_aead_setkey(struct crypto_aead *parent,
934 const u8 *key, unsigned int keylen)
935{
936 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
937 struct crypto_aead *child = ctx->child;
938
939 return crypto_aead_setkey(child, key, keylen);
940}
941
942static int cryptd_aead_setauthsize(struct crypto_aead *parent,
943 unsigned int authsize)
944{
945 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
946 struct crypto_aead *child = ctx->child;
947
948 return crypto_aead_setauthsize(child, authsize);
949}
950
298c926c
AH
951static void cryptd_aead_crypt(struct aead_request *req,
952 struct crypto_aead *child,
953 int err,
954 int (*crypt)(struct aead_request *req))
955{
956 struct cryptd_aead_request_ctx *rctx;
81760ea6 957 struct cryptd_aead_ctx *ctx;
ec9f2006 958 crypto_completion_t compl;
81760ea6
HX
959 struct crypto_aead *tfm;
960 int refcnt;
ec9f2006 961
298c926c 962 rctx = aead_request_ctx(req);
ec9f2006 963 compl = rctx->complete;
298c926c 964
31bd44e7
HX
965 tfm = crypto_aead_reqtfm(req);
966
298c926c
AH
967 if (unlikely(err == -EINPROGRESS))
968 goto out;
969 aead_request_set_tfm(req, child);
970 err = crypt( req );
81760ea6 971
298c926c 972out:
81760ea6
HX
973 ctx = crypto_aead_ctx(tfm);
974 refcnt = atomic_read(&ctx->refcnt);
975
298c926c 976 local_bh_disable();
ec9f2006 977 compl(&req->base, err);
298c926c 978 local_bh_enable();
81760ea6
HX
979
980 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
981 crypto_free_aead(tfm);
298c926c
AH
982}
983
984static void cryptd_aead_encrypt(struct crypto_async_request *areq, int err)
985{
986 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
987 struct crypto_aead *child = ctx->child;
988 struct aead_request *req;
989
990 req = container_of(areq, struct aead_request, base);
ba3749a7 991 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->encrypt);
298c926c
AH
992}
993
994static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
995{
996 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
997 struct crypto_aead *child = ctx->child;
998 struct aead_request *req;
999
1000 req = container_of(areq, struct aead_request, base);
ba3749a7 1001 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->decrypt);
298c926c
AH
1002}
1003
1004static int cryptd_aead_enqueue(struct aead_request *req,
3e3dc25f 1005 crypto_completion_t compl)
298c926c
AH
1006{
1007 struct cryptd_aead_request_ctx *rctx = aead_request_ctx(req);
1008 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1009 struct cryptd_queue *queue = cryptd_get_queue(crypto_aead_tfm(tfm));
1010
1011 rctx->complete = req->base.complete;
3e3dc25f 1012 req->base.complete = compl;
298c926c
AH
1013 return cryptd_enqueue_request(queue, &req->base);
1014}
1015
1016static int cryptd_aead_encrypt_enqueue(struct aead_request *req)
1017{
1018 return cryptd_aead_enqueue(req, cryptd_aead_encrypt );
1019}
1020
1021static int cryptd_aead_decrypt_enqueue(struct aead_request *req)
1022{
1023 return cryptd_aead_enqueue(req, cryptd_aead_decrypt );
1024}
1025
f614e546 1026static int cryptd_aead_init_tfm(struct crypto_aead *tfm)
298c926c 1027{
f614e546
HX
1028 struct aead_instance *inst = aead_alg_instance(tfm);
1029 struct aead_instance_ctx *ictx = aead_instance_ctx(inst);
298c926c 1030 struct crypto_aead_spawn *spawn = &ictx->aead_spawn;
f614e546 1031 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
298c926c
AH
1032 struct crypto_aead *cipher;
1033
1034 cipher = crypto_spawn_aead(spawn);
1035 if (IS_ERR(cipher))
1036 return PTR_ERR(cipher);
1037
298c926c 1038 ctx->child = cipher;
ec9f2006
HX
1039 crypto_aead_set_reqsize(
1040 tfm, max((unsigned)sizeof(struct cryptd_aead_request_ctx),
1041 crypto_aead_reqsize(cipher)));
298c926c
AH
1042 return 0;
1043}
1044
f614e546 1045static void cryptd_aead_exit_tfm(struct crypto_aead *tfm)
298c926c 1046{
f614e546 1047 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
298c926c
AH
1048 crypto_free_aead(ctx->child);
1049}
1050
1051static int cryptd_create_aead(struct crypto_template *tmpl,
1052 struct rtattr **tb,
1053 struct cryptd_queue *queue)
1054{
1055 struct aead_instance_ctx *ctx;
f614e546
HX
1056 struct aead_instance *inst;
1057 struct aead_alg *alg;
9b8c456e
HX
1058 const char *name;
1059 u32 type = 0;
ec9f2006 1060 u32 mask = CRYPTO_ALG_ASYNC;
298c926c
AH
1061 int err;
1062
466a7b9e
SM
1063 cryptd_check_internal(tb, &type, &mask);
1064
9b8c456e
HX
1065 name = crypto_attr_alg_name(tb[1]);
1066 if (IS_ERR(name))
1067 return PTR_ERR(name);
298c926c 1068
9b8c456e
HX
1069 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
1070 if (!inst)
1071 return -ENOMEM;
298c926c 1072
f614e546 1073 ctx = aead_instance_ctx(inst);
298c926c
AH
1074 ctx->queue = queue;
1075
f614e546 1076 crypto_set_aead_spawn(&ctx->aead_spawn, aead_crypto_instance(inst));
9b8c456e 1077 err = crypto_grab_aead(&ctx->aead_spawn, name, type, mask);
298c926c
AH
1078 if (err)
1079 goto out_free_inst;
1080
f614e546
HX
1081 alg = crypto_spawn_aead_alg(&ctx->aead_spawn);
1082 err = cryptd_init_instance(aead_crypto_instance(inst), &alg->base);
9b8c456e
HX
1083 if (err)
1084 goto out_drop_aead;
1085
f614e546 1086 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
5e4b8c1f 1087 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
f614e546 1088 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_aead_ctx);
298c926c 1089
f614e546
HX
1090 inst->alg.ivsize = crypto_aead_alg_ivsize(alg);
1091 inst->alg.maxauthsize = crypto_aead_alg_maxauthsize(alg);
1092
1093 inst->alg.init = cryptd_aead_init_tfm;
1094 inst->alg.exit = cryptd_aead_exit_tfm;
1095 inst->alg.setkey = cryptd_aead_setkey;
1096 inst->alg.setauthsize = cryptd_aead_setauthsize;
1097 inst->alg.encrypt = cryptd_aead_encrypt_enqueue;
1098 inst->alg.decrypt = cryptd_aead_decrypt_enqueue;
1099
1100 err = aead_register_instance(tmpl, inst);
298c926c 1101 if (err) {
9b8c456e
HX
1102out_drop_aead:
1103 crypto_drop_aead(&ctx->aead_spawn);
298c926c
AH
1104out_free_inst:
1105 kfree(inst);
1106 }
298c926c
AH
1107 return err;
1108}
1109
254eff77 1110static struct cryptd_queue queue;
124b53d0 1111
9cd899a3 1112static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb)
124b53d0
HX
1113{
1114 struct crypto_attr_type *algt;
1115
1116 algt = crypto_get_attr_type(tb);
1117 if (IS_ERR(algt))
9cd899a3 1118 return PTR_ERR(algt);
124b53d0
HX
1119
1120 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) {
1121 case CRYPTO_ALG_TYPE_BLKCIPHER:
4e0958d1
HX
1122 if ((algt->type & CRYPTO_ALG_TYPE_MASK) ==
1123 CRYPTO_ALG_TYPE_BLKCIPHER)
1124 return cryptd_create_blkcipher(tmpl, tb, &queue);
1125
1126 return cryptd_create_skcipher(tmpl, tb, &queue);
b8a28251 1127 case CRYPTO_ALG_TYPE_DIGEST:
9cd899a3 1128 return cryptd_create_hash(tmpl, tb, &queue);
298c926c
AH
1129 case CRYPTO_ALG_TYPE_AEAD:
1130 return cryptd_create_aead(tmpl, tb, &queue);
124b53d0
HX
1131 }
1132
9cd899a3 1133 return -EINVAL;
124b53d0
HX
1134}
1135
1136static void cryptd_free(struct crypto_instance *inst)
1137{
1138 struct cryptd_instance_ctx *ctx = crypto_instance_ctx(inst);
0b535adf 1139 struct hashd_instance_ctx *hctx = crypto_instance_ctx(inst);
298c926c 1140 struct aead_instance_ctx *aead_ctx = crypto_instance_ctx(inst);
0b535adf
HX
1141
1142 switch (inst->alg.cra_flags & CRYPTO_ALG_TYPE_MASK) {
1143 case CRYPTO_ALG_TYPE_AHASH:
1144 crypto_drop_shash(&hctx->spawn);
1145 kfree(ahash_instance(inst));
1146 return;
298c926c 1147 case CRYPTO_ALG_TYPE_AEAD:
f614e546
HX
1148 crypto_drop_aead(&aead_ctx->aead_spawn);
1149 kfree(aead_instance(inst));
298c926c
AH
1150 return;
1151 default:
1152 crypto_drop_spawn(&ctx->spawn);
1153 kfree(inst);
0b535adf 1154 }
124b53d0
HX
1155}
1156
1157static struct crypto_template cryptd_tmpl = {
1158 .name = "cryptd",
9cd899a3 1159 .create = cryptd_create,
124b53d0
HX
1160 .free = cryptd_free,
1161 .module = THIS_MODULE,
1162};
1163
1cac2cbc
HY
1164struct cryptd_ablkcipher *cryptd_alloc_ablkcipher(const char *alg_name,
1165 u32 type, u32 mask)
1166{
1167 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
81760ea6 1168 struct cryptd_blkcipher_ctx *ctx;
505fd21d 1169 struct crypto_tfm *tfm;
1cac2cbc
HY
1170
1171 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1172 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1173 return ERR_PTR(-EINVAL);
c012a79d 1174 type = crypto_skcipher_type(type);
505fd21d
HY
1175 mask &= ~CRYPTO_ALG_TYPE_MASK;
1176 mask |= (CRYPTO_ALG_GENIV | CRYPTO_ALG_TYPE_BLKCIPHER_MASK);
1177 tfm = crypto_alloc_base(cryptd_alg_name, type, mask);
1cac2cbc
HY
1178 if (IS_ERR(tfm))
1179 return ERR_CAST(tfm);
505fd21d
HY
1180 if (tfm->__crt_alg->cra_module != THIS_MODULE) {
1181 crypto_free_tfm(tfm);
1cac2cbc
HY
1182 return ERR_PTR(-EINVAL);
1183 }
1184
81760ea6
HX
1185 ctx = crypto_tfm_ctx(tfm);
1186 atomic_set(&ctx->refcnt, 1);
1187
505fd21d 1188 return __cryptd_ablkcipher_cast(__crypto_ablkcipher_cast(tfm));
1cac2cbc
HY
1189}
1190EXPORT_SYMBOL_GPL(cryptd_alloc_ablkcipher);
1191
1192struct crypto_blkcipher *cryptd_ablkcipher_child(struct cryptd_ablkcipher *tfm)
1193{
1194 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1195 return ctx->child;
1196}
1197EXPORT_SYMBOL_GPL(cryptd_ablkcipher_child);
1198
81760ea6
HX
1199bool cryptd_ablkcipher_queued(struct cryptd_ablkcipher *tfm)
1200{
1201 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1202
1203 return atomic_read(&ctx->refcnt) - 1;
1204}
1205EXPORT_SYMBOL_GPL(cryptd_ablkcipher_queued);
1206
1cac2cbc
HY
1207void cryptd_free_ablkcipher(struct cryptd_ablkcipher *tfm)
1208{
81760ea6
HX
1209 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1210
1211 if (atomic_dec_and_test(&ctx->refcnt))
1212 crypto_free_ablkcipher(&tfm->base);
1cac2cbc
HY
1213}
1214EXPORT_SYMBOL_GPL(cryptd_free_ablkcipher);
1215
4e0958d1
HX
1216struct cryptd_skcipher *cryptd_alloc_skcipher(const char *alg_name,
1217 u32 type, u32 mask)
1218{
1219 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
1220 struct cryptd_skcipher_ctx *ctx;
1221 struct crypto_skcipher *tfm;
1222
1223 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1224 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1225 return ERR_PTR(-EINVAL);
1226
1227 tfm = crypto_alloc_skcipher(cryptd_alg_name, type, mask);
1228 if (IS_ERR(tfm))
1229 return ERR_CAST(tfm);
1230
1231 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1232 crypto_free_skcipher(tfm);
1233 return ERR_PTR(-EINVAL);
1234 }
1235
1236 ctx = crypto_skcipher_ctx(tfm);
1237 atomic_set(&ctx->refcnt, 1);
1238
1239 return container_of(tfm, struct cryptd_skcipher, base);
1240}
1241EXPORT_SYMBOL_GPL(cryptd_alloc_skcipher);
1242
1243struct crypto_skcipher *cryptd_skcipher_child(struct cryptd_skcipher *tfm)
1244{
1245 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1246
1247 return ctx->child;
1248}
1249EXPORT_SYMBOL_GPL(cryptd_skcipher_child);
1250
1251bool cryptd_skcipher_queued(struct cryptd_skcipher *tfm)
1252{
1253 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1254
1255 return atomic_read(&ctx->refcnt) - 1;
1256}
1257EXPORT_SYMBOL_GPL(cryptd_skcipher_queued);
1258
1259void cryptd_free_skcipher(struct cryptd_skcipher *tfm)
1260{
1261 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1262
1263 if (atomic_dec_and_test(&ctx->refcnt))
1264 crypto_free_skcipher(&tfm->base);
1265}
1266EXPORT_SYMBOL_GPL(cryptd_free_skcipher);
1267
ace13663
HY
1268struct cryptd_ahash *cryptd_alloc_ahash(const char *alg_name,
1269 u32 type, u32 mask)
1270{
1271 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
81760ea6 1272 struct cryptd_hash_ctx *ctx;
ace13663
HY
1273 struct crypto_ahash *tfm;
1274
1275 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1276 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1277 return ERR_PTR(-EINVAL);
1278 tfm = crypto_alloc_ahash(cryptd_alg_name, type, mask);
1279 if (IS_ERR(tfm))
1280 return ERR_CAST(tfm);
1281 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1282 crypto_free_ahash(tfm);
1283 return ERR_PTR(-EINVAL);
1284 }
1285
81760ea6
HX
1286 ctx = crypto_ahash_ctx(tfm);
1287 atomic_set(&ctx->refcnt, 1);
1288
ace13663
HY
1289 return __cryptd_ahash_cast(tfm);
1290}
1291EXPORT_SYMBOL_GPL(cryptd_alloc_ahash);
1292
1293struct crypto_shash *cryptd_ahash_child(struct cryptd_ahash *tfm)
1294{
1295 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1296
1297 return ctx->child;
1298}
1299EXPORT_SYMBOL_GPL(cryptd_ahash_child);
1300
0e1227d3
HY
1301struct shash_desc *cryptd_shash_desc(struct ahash_request *req)
1302{
1303 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
1304 return &rctx->desc;
1305}
1306EXPORT_SYMBOL_GPL(cryptd_shash_desc);
1307
81760ea6
HX
1308bool cryptd_ahash_queued(struct cryptd_ahash *tfm)
1309{
1310 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1311
1312 return atomic_read(&ctx->refcnt) - 1;
1313}
1314EXPORT_SYMBOL_GPL(cryptd_ahash_queued);
1315
ace13663
HY
1316void cryptd_free_ahash(struct cryptd_ahash *tfm)
1317{
81760ea6
HX
1318 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1319
1320 if (atomic_dec_and_test(&ctx->refcnt))
1321 crypto_free_ahash(&tfm->base);
ace13663
HY
1322}
1323EXPORT_SYMBOL_GPL(cryptd_free_ahash);
1324
298c926c
AH
1325struct cryptd_aead *cryptd_alloc_aead(const char *alg_name,
1326 u32 type, u32 mask)
1327{
1328 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
81760ea6 1329 struct cryptd_aead_ctx *ctx;
298c926c
AH
1330 struct crypto_aead *tfm;
1331
1332 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1333 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1334 return ERR_PTR(-EINVAL);
1335 tfm = crypto_alloc_aead(cryptd_alg_name, type, mask);
1336 if (IS_ERR(tfm))
1337 return ERR_CAST(tfm);
1338 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1339 crypto_free_aead(tfm);
1340 return ERR_PTR(-EINVAL);
1341 }
81760ea6
HX
1342
1343 ctx = crypto_aead_ctx(tfm);
1344 atomic_set(&ctx->refcnt, 1);
1345
298c926c
AH
1346 return __cryptd_aead_cast(tfm);
1347}
1348EXPORT_SYMBOL_GPL(cryptd_alloc_aead);
1349
1350struct crypto_aead *cryptd_aead_child(struct cryptd_aead *tfm)
1351{
1352 struct cryptd_aead_ctx *ctx;
1353 ctx = crypto_aead_ctx(&tfm->base);
1354 return ctx->child;
1355}
1356EXPORT_SYMBOL_GPL(cryptd_aead_child);
1357
81760ea6
HX
1358bool cryptd_aead_queued(struct cryptd_aead *tfm)
1359{
1360 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1361
1362 return atomic_read(&ctx->refcnt) - 1;
1363}
1364EXPORT_SYMBOL_GPL(cryptd_aead_queued);
1365
298c926c
AH
1366void cryptd_free_aead(struct cryptd_aead *tfm)
1367{
81760ea6
HX
1368 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1369
1370 if (atomic_dec_and_test(&ctx->refcnt))
1371 crypto_free_aead(&tfm->base);
298c926c
AH
1372}
1373EXPORT_SYMBOL_GPL(cryptd_free_aead);
1374
124b53d0
HX
1375static int __init cryptd_init(void)
1376{
1377 int err;
1378
c3a53605 1379 err = cryptd_init_queue(&queue, cryptd_max_cpu_qlen);
124b53d0
HX
1380 if (err)
1381 return err;
1382
1383 err = crypto_register_template(&cryptd_tmpl);
1384 if (err)
254eff77 1385 cryptd_fini_queue(&queue);
124b53d0
HX
1386
1387 return err;
1388}
1389
1390static void __exit cryptd_exit(void)
1391{
254eff77 1392 cryptd_fini_queue(&queue);
124b53d0
HX
1393 crypto_unregister_template(&cryptd_tmpl);
1394}
1395
b2bac6ac 1396subsys_initcall(cryptd_init);
124b53d0
HX
1397module_exit(cryptd_exit);
1398
1399MODULE_LICENSE("GPL");
1400MODULE_DESCRIPTION("Software async crypto daemon");
4943ba16 1401MODULE_ALIAS_CRYPTO("cryptd");