crypto: cryptd - move kcrypto_wq into cryptd
[linux-block.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>
81760ea6 24#include <linux/atomic.h>
124b53d0
HX
25#include <linux/err.h>
26#include <linux/init.h>
27#include <linux/kernel.h>
124b53d0
HX
28#include <linux/list.h>
29#include <linux/module.h>
124b53d0
HX
30#include <linux/scatterlist.h>
31#include <linux/sched.h>
32#include <linux/slab.h>
3e56e168 33#include <linux/workqueue.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
3e56e168
EB
39static struct workqueue_struct *cryptd_wq;
40
254eff77 41struct cryptd_cpu_queue {
124b53d0 42 struct crypto_queue queue;
254eff77
HY
43 struct work_struct work;
44};
45
46struct cryptd_queue {
a29d8b8e 47 struct cryptd_cpu_queue __percpu *cpu_queue;
124b53d0
HX
48};
49
50struct cryptd_instance_ctx {
51 struct crypto_spawn spawn;
254eff77 52 struct cryptd_queue *queue;
124b53d0
HX
53};
54
4e0958d1
HX
55struct skcipherd_instance_ctx {
56 struct crypto_skcipher_spawn spawn;
57 struct cryptd_queue *queue;
58};
59
46309d89
HX
60struct hashd_instance_ctx {
61 struct crypto_shash_spawn spawn;
62 struct cryptd_queue *queue;
63};
64
298c926c
AH
65struct aead_instance_ctx {
66 struct crypto_aead_spawn aead_spawn;
67 struct cryptd_queue *queue;
68};
69
4e0958d1
HX
70struct cryptd_skcipher_ctx {
71 atomic_t refcnt;
36b3875a 72 struct crypto_sync_skcipher *child;
4e0958d1
HX
73};
74
75struct cryptd_skcipher_request_ctx {
76 crypto_completion_t complete;
77};
78
b8a28251 79struct cryptd_hash_ctx {
81760ea6 80 atomic_t refcnt;
46309d89 81 struct crypto_shash *child;
b8a28251
LH
82};
83
84struct cryptd_hash_request_ctx {
85 crypto_completion_t complete;
46309d89 86 struct shash_desc desc;
b8a28251 87};
124b53d0 88
298c926c 89struct cryptd_aead_ctx {
81760ea6 90 atomic_t refcnt;
298c926c
AH
91 struct crypto_aead *child;
92};
93
94struct cryptd_aead_request_ctx {
95 crypto_completion_t complete;
96};
97
254eff77
HY
98static void cryptd_queue_worker(struct work_struct *work);
99
100static int cryptd_init_queue(struct cryptd_queue *queue,
101 unsigned int max_cpu_qlen)
102{
103 int cpu;
104 struct cryptd_cpu_queue *cpu_queue;
105
106 queue->cpu_queue = alloc_percpu(struct cryptd_cpu_queue);
107 if (!queue->cpu_queue)
108 return -ENOMEM;
109 for_each_possible_cpu(cpu) {
110 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
111 crypto_init_queue(&cpu_queue->queue, max_cpu_qlen);
112 INIT_WORK(&cpu_queue->work, cryptd_queue_worker);
113 }
c3a53605 114 pr_info("cryptd: max_cpu_qlen set to %d\n", max_cpu_qlen);
254eff77
HY
115 return 0;
116}
117
118static void cryptd_fini_queue(struct cryptd_queue *queue)
119{
120 int cpu;
121 struct cryptd_cpu_queue *cpu_queue;
122
123 for_each_possible_cpu(cpu) {
124 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
125 BUG_ON(cpu_queue->queue.qlen);
126 }
127 free_percpu(queue->cpu_queue);
128}
129
130static int cryptd_enqueue_request(struct cryptd_queue *queue,
131 struct crypto_async_request *request)
132{
133 int cpu, err;
134 struct cryptd_cpu_queue *cpu_queue;
81760ea6 135 atomic_t *refcnt;
254eff77
HY
136
137 cpu = get_cpu();
0b44f486 138 cpu_queue = this_cpu_ptr(queue->cpu_queue);
254eff77 139 err = crypto_enqueue_request(&cpu_queue->queue, request);
81760ea6
HX
140
141 refcnt = crypto_tfm_ctx(request->tfm);
81760ea6 142
6b80ea38 143 if (err == -ENOSPC)
81760ea6
HX
144 goto out_put_cpu;
145
3e56e168 146 queue_work_on(cpu, cryptd_wq, &cpu_queue->work);
81760ea6
HX
147
148 if (!atomic_read(refcnt))
149 goto out_put_cpu;
150
81760ea6
HX
151 atomic_inc(refcnt);
152
153out_put_cpu:
254eff77
HY
154 put_cpu();
155
156 return err;
157}
158
159/* Called in workqueue context, do one real cryption work (via
160 * req->complete) and reschedule itself if there are more work to
161 * do. */
162static void cryptd_queue_worker(struct work_struct *work)
163{
164 struct cryptd_cpu_queue *cpu_queue;
165 struct crypto_async_request *req, *backlog;
166
167 cpu_queue = container_of(work, struct cryptd_cpu_queue, work);
9efade1b
JK
168 /*
169 * Only handle one request at a time to avoid hogging crypto workqueue.
170 * preempt_disable/enable is used to prevent being preempted by
171 * cryptd_enqueue_request(). local_bh_disable/enable is used to prevent
172 * cryptd_enqueue_request() being accessed from software interrupts.
173 */
174 local_bh_disable();
254eff77
HY
175 preempt_disable();
176 backlog = crypto_get_backlog(&cpu_queue->queue);
177 req = crypto_dequeue_request(&cpu_queue->queue);
178 preempt_enable();
9efade1b 179 local_bh_enable();
254eff77
HY
180
181 if (!req)
182 return;
183
184 if (backlog)
185 backlog->complete(backlog, -EINPROGRESS);
186 req->complete(req, 0);
187
188 if (cpu_queue->queue.qlen)
3e56e168 189 queue_work(cryptd_wq, &cpu_queue->work);
254eff77
HY
190}
191
192static inline struct cryptd_queue *cryptd_get_queue(struct crypto_tfm *tfm)
124b53d0
HX
193{
194 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
195 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
254eff77 196 return ictx->queue;
124b53d0
HX
197}
198
466a7b9e
SM
199static inline void cryptd_check_internal(struct rtattr **tb, u32 *type,
200 u32 *mask)
201{
202 struct crypto_attr_type *algt;
203
204 algt = crypto_get_attr_type(tb);
205 if (IS_ERR(algt))
206 return;
f6da3205 207
5e4b8c1f
HX
208 *type |= algt->type & CRYPTO_ALG_INTERNAL;
209 *mask |= algt->mask & CRYPTO_ALG_INTERNAL;
466a7b9e
SM
210}
211
9b8c456e
HX
212static int cryptd_init_instance(struct crypto_instance *inst,
213 struct crypto_alg *alg)
214{
215 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
216 "cryptd(%s)",
217 alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
218 return -ENAMETOOLONG;
219
220 memcpy(inst->alg.cra_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
221
222 inst->alg.cra_priority = alg->cra_priority + 50;
223 inst->alg.cra_blocksize = alg->cra_blocksize;
224 inst->alg.cra_alignmask = alg->cra_alignmask;
225
226 return 0;
227}
228
0b535adf
HX
229static void *cryptd_alloc_instance(struct crypto_alg *alg, unsigned int head,
230 unsigned int tail)
124b53d0 231{
0b535adf 232 char *p;
124b53d0 233 struct crypto_instance *inst;
124b53d0
HX
234 int err;
235
0b535adf
HX
236 p = kzalloc(head + sizeof(*inst) + tail, GFP_KERNEL);
237 if (!p)
238 return ERR_PTR(-ENOMEM);
239
240 inst = (void *)(p + head);
124b53d0 241
9b8c456e
HX
242 err = cryptd_init_instance(inst, alg);
243 if (err)
124b53d0
HX
244 goto out_free_inst;
245
124b53d0 246out:
0b535adf 247 return p;
124b53d0
HX
248
249out_free_inst:
0b535adf
HX
250 kfree(p);
251 p = ERR_PTR(err);
124b53d0
HX
252 goto out;
253}
254
4e0958d1
HX
255static int cryptd_skcipher_setkey(struct crypto_skcipher *parent,
256 const u8 *key, unsigned int keylen)
257{
258 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(parent);
36b3875a 259 struct crypto_sync_skcipher *child = ctx->child;
4e0958d1
HX
260 int err;
261
36b3875a
KC
262 crypto_sync_skcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
263 crypto_sync_skcipher_set_flags(child,
264 crypto_skcipher_get_flags(parent) &
4e0958d1 265 CRYPTO_TFM_REQ_MASK);
36b3875a
KC
266 err = crypto_sync_skcipher_setkey(child, key, keylen);
267 crypto_skcipher_set_flags(parent,
268 crypto_sync_skcipher_get_flags(child) &
4e0958d1
HX
269 CRYPTO_TFM_RES_MASK);
270 return err;
271}
272
273static void cryptd_skcipher_complete(struct skcipher_request *req, int err)
274{
275 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
276 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
277 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
278 int refcnt = atomic_read(&ctx->refcnt);
279
280 local_bh_disable();
281 rctx->complete(&req->base, err);
282 local_bh_enable();
283
284 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
285 crypto_free_skcipher(tfm);
286}
287
288static void cryptd_skcipher_encrypt(struct crypto_async_request *base,
289 int err)
290{
291 struct skcipher_request *req = skcipher_request_cast(base);
292 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
293 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
294 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
36b3875a
KC
295 struct crypto_sync_skcipher *child = ctx->child;
296 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, child);
4e0958d1
HX
297
298 if (unlikely(err == -EINPROGRESS))
299 goto out;
300
36b3875a 301 skcipher_request_set_sync_tfm(subreq, child);
4e0958d1
HX
302 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
303 NULL, NULL);
304 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
305 req->iv);
306
307 err = crypto_skcipher_encrypt(subreq);
308 skcipher_request_zero(subreq);
309
310 req->base.complete = rctx->complete;
311
312out:
313 cryptd_skcipher_complete(req, err);
314}
315
316static void cryptd_skcipher_decrypt(struct crypto_async_request *base,
317 int err)
318{
319 struct skcipher_request *req = skcipher_request_cast(base);
320 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
321 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
322 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
36b3875a
KC
323 struct crypto_sync_skcipher *child = ctx->child;
324 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, child);
4e0958d1
HX
325
326 if (unlikely(err == -EINPROGRESS))
327 goto out;
328
36b3875a 329 skcipher_request_set_sync_tfm(subreq, child);
4e0958d1
HX
330 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
331 NULL, NULL);
332 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
333 req->iv);
334
335 err = crypto_skcipher_decrypt(subreq);
336 skcipher_request_zero(subreq);
337
338 req->base.complete = rctx->complete;
339
340out:
341 cryptd_skcipher_complete(req, err);
342}
343
344static int cryptd_skcipher_enqueue(struct skcipher_request *req,
345 crypto_completion_t compl)
346{
347 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
348 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
349 struct cryptd_queue *queue;
350
351 queue = cryptd_get_queue(crypto_skcipher_tfm(tfm));
352 rctx->complete = req->base.complete;
353 req->base.complete = compl;
354
355 return cryptd_enqueue_request(queue, &req->base);
356}
357
358static int cryptd_skcipher_encrypt_enqueue(struct skcipher_request *req)
359{
360 return cryptd_skcipher_enqueue(req, cryptd_skcipher_encrypt);
361}
362
363static int cryptd_skcipher_decrypt_enqueue(struct skcipher_request *req)
364{
365 return cryptd_skcipher_enqueue(req, cryptd_skcipher_decrypt);
366}
367
368static int cryptd_skcipher_init_tfm(struct crypto_skcipher *tfm)
369{
370 struct skcipher_instance *inst = skcipher_alg_instance(tfm);
371 struct skcipherd_instance_ctx *ictx = skcipher_instance_ctx(inst);
372 struct crypto_skcipher_spawn *spawn = &ictx->spawn;
373 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
374 struct crypto_skcipher *cipher;
375
376 cipher = crypto_spawn_skcipher(spawn);
377 if (IS_ERR(cipher))
378 return PTR_ERR(cipher);
379
36b3875a 380 ctx->child = (struct crypto_sync_skcipher *)cipher;
4e0958d1
HX
381 crypto_skcipher_set_reqsize(
382 tfm, sizeof(struct cryptd_skcipher_request_ctx));
383 return 0;
384}
385
386static void cryptd_skcipher_exit_tfm(struct crypto_skcipher *tfm)
387{
388 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
389
36b3875a 390 crypto_free_sync_skcipher(ctx->child);
4e0958d1
HX
391}
392
393static void cryptd_skcipher_free(struct skcipher_instance *inst)
394{
395 struct skcipherd_instance_ctx *ctx = skcipher_instance_ctx(inst);
396
397 crypto_drop_skcipher(&ctx->spawn);
398}
399
400static int cryptd_create_skcipher(struct crypto_template *tmpl,
401 struct rtattr **tb,
402 struct cryptd_queue *queue)
403{
404 struct skcipherd_instance_ctx *ctx;
405 struct skcipher_instance *inst;
406 struct skcipher_alg *alg;
407 const char *name;
408 u32 type;
409 u32 mask;
410 int err;
411
412 type = 0;
413 mask = CRYPTO_ALG_ASYNC;
414
415 cryptd_check_internal(tb, &type, &mask);
416
417 name = crypto_attr_alg_name(tb[1]);
418 if (IS_ERR(name))
419 return PTR_ERR(name);
420
421 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
422 if (!inst)
423 return -ENOMEM;
424
425 ctx = skcipher_instance_ctx(inst);
426 ctx->queue = queue;
427
428 crypto_set_skcipher_spawn(&ctx->spawn, skcipher_crypto_instance(inst));
429 err = crypto_grab_skcipher(&ctx->spawn, name, type, mask);
430 if (err)
431 goto out_free_inst;
432
433 alg = crypto_spawn_skcipher_alg(&ctx->spawn);
434 err = cryptd_init_instance(skcipher_crypto_instance(inst), &alg->base);
435 if (err)
436 goto out_drop_skcipher;
437
438 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
439 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
440
441 inst->alg.ivsize = crypto_skcipher_alg_ivsize(alg);
442 inst->alg.chunksize = crypto_skcipher_alg_chunksize(alg);
443 inst->alg.min_keysize = crypto_skcipher_alg_min_keysize(alg);
444 inst->alg.max_keysize = crypto_skcipher_alg_max_keysize(alg);
445
446 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_skcipher_ctx);
447
448 inst->alg.init = cryptd_skcipher_init_tfm;
449 inst->alg.exit = cryptd_skcipher_exit_tfm;
450
451 inst->alg.setkey = cryptd_skcipher_setkey;
452 inst->alg.encrypt = cryptd_skcipher_encrypt_enqueue;
453 inst->alg.decrypt = cryptd_skcipher_decrypt_enqueue;
454
455 inst->free = cryptd_skcipher_free;
456
457 err = skcipher_register_instance(tmpl, inst);
458 if (err) {
459out_drop_skcipher:
460 crypto_drop_skcipher(&ctx->spawn);
461out_free_inst:
462 kfree(inst);
463 }
464 return err;
465}
466
b8a28251
LH
467static int cryptd_hash_init_tfm(struct crypto_tfm *tfm)
468{
469 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
46309d89
HX
470 struct hashd_instance_ctx *ictx = crypto_instance_ctx(inst);
471 struct crypto_shash_spawn *spawn = &ictx->spawn;
b8a28251 472 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
46309d89 473 struct crypto_shash *hash;
b8a28251 474
46309d89
HX
475 hash = crypto_spawn_shash(spawn);
476 if (IS_ERR(hash))
477 return PTR_ERR(hash);
b8a28251 478
46309d89 479 ctx->child = hash;
0d6669e2
HX
480 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
481 sizeof(struct cryptd_hash_request_ctx) +
482 crypto_shash_descsize(hash));
b8a28251
LH
483 return 0;
484}
485
486static void cryptd_hash_exit_tfm(struct crypto_tfm *tfm)
487{
488 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
b8a28251 489
46309d89 490 crypto_free_shash(ctx->child);
b8a28251
LH
491}
492
493static int cryptd_hash_setkey(struct crypto_ahash *parent,
494 const u8 *key, unsigned int keylen)
495{
496 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(parent);
46309d89 497 struct crypto_shash *child = ctx->child;
b8a28251
LH
498 int err;
499
46309d89
HX
500 crypto_shash_clear_flags(child, CRYPTO_TFM_REQ_MASK);
501 crypto_shash_set_flags(child, crypto_ahash_get_flags(parent) &
502 CRYPTO_TFM_REQ_MASK);
503 err = crypto_shash_setkey(child, key, keylen);
504 crypto_ahash_set_flags(parent, crypto_shash_get_flags(child) &
505 CRYPTO_TFM_RES_MASK);
b8a28251
LH
506 return err;
507}
508
509static int cryptd_hash_enqueue(struct ahash_request *req,
3e3dc25f 510 crypto_completion_t compl)
b8a28251
LH
511{
512 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
513 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
254eff77
HY
514 struct cryptd_queue *queue =
515 cryptd_get_queue(crypto_ahash_tfm(tfm));
b8a28251
LH
516
517 rctx->complete = req->base.complete;
3e3dc25f 518 req->base.complete = compl;
b8a28251 519
254eff77 520 return cryptd_enqueue_request(queue, &req->base);
b8a28251
LH
521}
522
81760ea6
HX
523static void cryptd_hash_complete(struct ahash_request *req, int err)
524{
525 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
526 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
527 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
528 int refcnt = atomic_read(&ctx->refcnt);
529
530 local_bh_disable();
531 rctx->complete(&req->base, err);
532 local_bh_enable();
533
534 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
535 crypto_free_ahash(tfm);
536}
537
b8a28251
LH
538static void cryptd_hash_init(struct crypto_async_request *req_async, int err)
539{
46309d89
HX
540 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
541 struct crypto_shash *child = ctx->child;
542 struct ahash_request *req = ahash_request_cast(req_async);
543 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
544 struct shash_desc *desc = &rctx->desc;
b8a28251
LH
545
546 if (unlikely(err == -EINPROGRESS))
547 goto out;
548
46309d89 549 desc->tfm = child;
b8a28251 550
46309d89 551 err = crypto_shash_init(desc);
b8a28251
LH
552
553 req->base.complete = rctx->complete;
554
555out:
81760ea6 556 cryptd_hash_complete(req, err);
b8a28251
LH
557}
558
559static int cryptd_hash_init_enqueue(struct ahash_request *req)
560{
561 return cryptd_hash_enqueue(req, cryptd_hash_init);
562}
563
564static void cryptd_hash_update(struct crypto_async_request *req_async, int err)
565{
46309d89 566 struct ahash_request *req = ahash_request_cast(req_async);
b8a28251 567 struct cryptd_hash_request_ctx *rctx;
b8a28251
LH
568
569 rctx = ahash_request_ctx(req);
570
571 if (unlikely(err == -EINPROGRESS))
572 goto out;
573
46309d89 574 err = shash_ahash_update(req, &rctx->desc);
b8a28251
LH
575
576 req->base.complete = rctx->complete;
577
578out:
81760ea6 579 cryptd_hash_complete(req, err);
b8a28251
LH
580}
581
582static int cryptd_hash_update_enqueue(struct ahash_request *req)
583{
584 return cryptd_hash_enqueue(req, cryptd_hash_update);
585}
586
587static void cryptd_hash_final(struct crypto_async_request *req_async, int err)
588{
46309d89
HX
589 struct ahash_request *req = ahash_request_cast(req_async);
590 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
b8a28251
LH
591
592 if (unlikely(err == -EINPROGRESS))
593 goto out;
594
46309d89 595 err = crypto_shash_final(&rctx->desc, req->result);
b8a28251
LH
596
597 req->base.complete = rctx->complete;
598
599out:
81760ea6 600 cryptd_hash_complete(req, err);
b8a28251
LH
601}
602
603static int cryptd_hash_final_enqueue(struct ahash_request *req)
604{
605 return cryptd_hash_enqueue(req, cryptd_hash_final);
606}
607
6fba00d1
HX
608static void cryptd_hash_finup(struct crypto_async_request *req_async, int err)
609{
610 struct ahash_request *req = ahash_request_cast(req_async);
611 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
612
613 if (unlikely(err == -EINPROGRESS))
614 goto out;
615
616 err = shash_ahash_finup(req, &rctx->desc);
617
618 req->base.complete = rctx->complete;
619
620out:
81760ea6 621 cryptd_hash_complete(req, err);
6fba00d1
HX
622}
623
624static int cryptd_hash_finup_enqueue(struct ahash_request *req)
625{
626 return cryptd_hash_enqueue(req, cryptd_hash_finup);
627}
628
b8a28251
LH
629static void cryptd_hash_digest(struct crypto_async_request *req_async, int err)
630{
46309d89
HX
631 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
632 struct crypto_shash *child = ctx->child;
633 struct ahash_request *req = ahash_request_cast(req_async);
634 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
635 struct shash_desc *desc = &rctx->desc;
b8a28251
LH
636
637 if (unlikely(err == -EINPROGRESS))
638 goto out;
639
46309d89 640 desc->tfm = child;
b8a28251 641
46309d89 642 err = shash_ahash_digest(req, desc);
b8a28251
LH
643
644 req->base.complete = rctx->complete;
645
646out:
81760ea6 647 cryptd_hash_complete(req, err);
b8a28251
LH
648}
649
650static int cryptd_hash_digest_enqueue(struct ahash_request *req)
651{
652 return cryptd_hash_enqueue(req, cryptd_hash_digest);
653}
654
6fba00d1
HX
655static int cryptd_hash_export(struct ahash_request *req, void *out)
656{
657 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
658
659 return crypto_shash_export(&rctx->desc, out);
660}
661
662static int cryptd_hash_import(struct ahash_request *req, const void *in)
663{
0bd22235
AB
664 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
665 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
666 struct shash_desc *desc = cryptd_shash_desc(req);
667
668 desc->tfm = ctx->child;
6fba00d1 669
0bd22235 670 return crypto_shash_import(desc, in);
6fba00d1
HX
671}
672
9cd899a3
HX
673static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb,
674 struct cryptd_queue *queue)
b8a28251 675{
46309d89 676 struct hashd_instance_ctx *ctx;
0b535adf 677 struct ahash_instance *inst;
46309d89 678 struct shash_alg *salg;
b8a28251 679 struct crypto_alg *alg;
466a7b9e
SM
680 u32 type = 0;
681 u32 mask = 0;
46309d89 682 int err;
b8a28251 683
466a7b9e
SM
684 cryptd_check_internal(tb, &type, &mask);
685
686 salg = shash_attr_alg(tb[1], type, mask);
46309d89 687 if (IS_ERR(salg))
9cd899a3 688 return PTR_ERR(salg);
b8a28251 689
46309d89 690 alg = &salg->base;
0b535adf
HX
691 inst = cryptd_alloc_instance(alg, ahash_instance_headroom(),
692 sizeof(*ctx));
05ed8758 693 err = PTR_ERR(inst);
b8a28251
LH
694 if (IS_ERR(inst))
695 goto out_put_alg;
696
0b535adf 697 ctx = ahash_instance_ctx(inst);
46309d89
HX
698 ctx->queue = queue;
699
0b535adf
HX
700 err = crypto_init_shash_spawn(&ctx->spawn, salg,
701 ahash_crypto_instance(inst));
46309d89
HX
702 if (err)
703 goto out_free_inst;
704
a208fa8f
EB
705 inst->alg.halg.base.cra_flags = CRYPTO_ALG_ASYNC |
706 (alg->cra_flags & (CRYPTO_ALG_INTERNAL |
707 CRYPTO_ALG_OPTIONAL_KEY));
b8a28251 708
0b535adf 709 inst->alg.halg.digestsize = salg->digestsize;
1a078340 710 inst->alg.halg.statesize = salg->statesize;
0b535adf 711 inst->alg.halg.base.cra_ctxsize = sizeof(struct cryptd_hash_ctx);
b8a28251 712
0b535adf
HX
713 inst->alg.halg.base.cra_init = cryptd_hash_init_tfm;
714 inst->alg.halg.base.cra_exit = cryptd_hash_exit_tfm;
b8a28251 715
0b535adf
HX
716 inst->alg.init = cryptd_hash_init_enqueue;
717 inst->alg.update = cryptd_hash_update_enqueue;
718 inst->alg.final = cryptd_hash_final_enqueue;
6fba00d1
HX
719 inst->alg.finup = cryptd_hash_finup_enqueue;
720 inst->alg.export = cryptd_hash_export;
721 inst->alg.import = cryptd_hash_import;
841a3ff3
EB
722 if (crypto_shash_alg_has_setkey(salg))
723 inst->alg.setkey = cryptd_hash_setkey;
0b535adf 724 inst->alg.digest = cryptd_hash_digest_enqueue;
b8a28251 725
0b535adf 726 err = ahash_register_instance(tmpl, inst);
9cd899a3
HX
727 if (err) {
728 crypto_drop_shash(&ctx->spawn);
729out_free_inst:
730 kfree(inst);
731 }
732
b8a28251
LH
733out_put_alg:
734 crypto_mod_put(alg);
9cd899a3 735 return err;
b8a28251
LH
736}
737
92b9876b
HX
738static int cryptd_aead_setkey(struct crypto_aead *parent,
739 const u8 *key, unsigned int keylen)
740{
741 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
742 struct crypto_aead *child = ctx->child;
743
744 return crypto_aead_setkey(child, key, keylen);
745}
746
747static int cryptd_aead_setauthsize(struct crypto_aead *parent,
748 unsigned int authsize)
749{
750 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
751 struct crypto_aead *child = ctx->child;
752
753 return crypto_aead_setauthsize(child, authsize);
754}
755
298c926c
AH
756static void cryptd_aead_crypt(struct aead_request *req,
757 struct crypto_aead *child,
758 int err,
759 int (*crypt)(struct aead_request *req))
760{
761 struct cryptd_aead_request_ctx *rctx;
81760ea6 762 struct cryptd_aead_ctx *ctx;
ec9f2006 763 crypto_completion_t compl;
81760ea6
HX
764 struct crypto_aead *tfm;
765 int refcnt;
ec9f2006 766
298c926c 767 rctx = aead_request_ctx(req);
ec9f2006 768 compl = rctx->complete;
298c926c 769
31bd44e7
HX
770 tfm = crypto_aead_reqtfm(req);
771
298c926c
AH
772 if (unlikely(err == -EINPROGRESS))
773 goto out;
774 aead_request_set_tfm(req, child);
775 err = crypt( req );
81760ea6 776
298c926c 777out:
81760ea6
HX
778 ctx = crypto_aead_ctx(tfm);
779 refcnt = atomic_read(&ctx->refcnt);
780
298c926c 781 local_bh_disable();
ec9f2006 782 compl(&req->base, err);
298c926c 783 local_bh_enable();
81760ea6
HX
784
785 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
786 crypto_free_aead(tfm);
298c926c
AH
787}
788
789static void cryptd_aead_encrypt(struct crypto_async_request *areq, int err)
790{
791 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
792 struct crypto_aead *child = ctx->child;
793 struct aead_request *req;
794
795 req = container_of(areq, struct aead_request, base);
ba3749a7 796 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->encrypt);
298c926c
AH
797}
798
799static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
800{
801 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
802 struct crypto_aead *child = ctx->child;
803 struct aead_request *req;
804
805 req = container_of(areq, struct aead_request, base);
ba3749a7 806 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->decrypt);
298c926c
AH
807}
808
809static int cryptd_aead_enqueue(struct aead_request *req,
3e3dc25f 810 crypto_completion_t compl)
298c926c
AH
811{
812 struct cryptd_aead_request_ctx *rctx = aead_request_ctx(req);
813 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
814 struct cryptd_queue *queue = cryptd_get_queue(crypto_aead_tfm(tfm));
815
816 rctx->complete = req->base.complete;
3e3dc25f 817 req->base.complete = compl;
298c926c
AH
818 return cryptd_enqueue_request(queue, &req->base);
819}
820
821static int cryptd_aead_encrypt_enqueue(struct aead_request *req)
822{
823 return cryptd_aead_enqueue(req, cryptd_aead_encrypt );
824}
825
826static int cryptd_aead_decrypt_enqueue(struct aead_request *req)
827{
828 return cryptd_aead_enqueue(req, cryptd_aead_decrypt );
829}
830
f614e546 831static int cryptd_aead_init_tfm(struct crypto_aead *tfm)
298c926c 832{
f614e546
HX
833 struct aead_instance *inst = aead_alg_instance(tfm);
834 struct aead_instance_ctx *ictx = aead_instance_ctx(inst);
298c926c 835 struct crypto_aead_spawn *spawn = &ictx->aead_spawn;
f614e546 836 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
298c926c
AH
837 struct crypto_aead *cipher;
838
839 cipher = crypto_spawn_aead(spawn);
840 if (IS_ERR(cipher))
841 return PTR_ERR(cipher);
842
298c926c 843 ctx->child = cipher;
ec9f2006
HX
844 crypto_aead_set_reqsize(
845 tfm, max((unsigned)sizeof(struct cryptd_aead_request_ctx),
846 crypto_aead_reqsize(cipher)));
298c926c
AH
847 return 0;
848}
849
f614e546 850static void cryptd_aead_exit_tfm(struct crypto_aead *tfm)
298c926c 851{
f614e546 852 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
298c926c
AH
853 crypto_free_aead(ctx->child);
854}
855
856static int cryptd_create_aead(struct crypto_template *tmpl,
857 struct rtattr **tb,
858 struct cryptd_queue *queue)
859{
860 struct aead_instance_ctx *ctx;
f614e546
HX
861 struct aead_instance *inst;
862 struct aead_alg *alg;
9b8c456e
HX
863 const char *name;
864 u32 type = 0;
ec9f2006 865 u32 mask = CRYPTO_ALG_ASYNC;
298c926c
AH
866 int err;
867
466a7b9e
SM
868 cryptd_check_internal(tb, &type, &mask);
869
9b8c456e
HX
870 name = crypto_attr_alg_name(tb[1]);
871 if (IS_ERR(name))
872 return PTR_ERR(name);
298c926c 873
9b8c456e
HX
874 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
875 if (!inst)
876 return -ENOMEM;
298c926c 877
f614e546 878 ctx = aead_instance_ctx(inst);
298c926c
AH
879 ctx->queue = queue;
880
f614e546 881 crypto_set_aead_spawn(&ctx->aead_spawn, aead_crypto_instance(inst));
9b8c456e 882 err = crypto_grab_aead(&ctx->aead_spawn, name, type, mask);
298c926c
AH
883 if (err)
884 goto out_free_inst;
885
f614e546
HX
886 alg = crypto_spawn_aead_alg(&ctx->aead_spawn);
887 err = cryptd_init_instance(aead_crypto_instance(inst), &alg->base);
9b8c456e
HX
888 if (err)
889 goto out_drop_aead;
890
f614e546 891 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
5e4b8c1f 892 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
f614e546 893 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_aead_ctx);
298c926c 894
f614e546
HX
895 inst->alg.ivsize = crypto_aead_alg_ivsize(alg);
896 inst->alg.maxauthsize = crypto_aead_alg_maxauthsize(alg);
897
898 inst->alg.init = cryptd_aead_init_tfm;
899 inst->alg.exit = cryptd_aead_exit_tfm;
900 inst->alg.setkey = cryptd_aead_setkey;
901 inst->alg.setauthsize = cryptd_aead_setauthsize;
902 inst->alg.encrypt = cryptd_aead_encrypt_enqueue;
903 inst->alg.decrypt = cryptd_aead_decrypt_enqueue;
904
905 err = aead_register_instance(tmpl, inst);
298c926c 906 if (err) {
9b8c456e
HX
907out_drop_aead:
908 crypto_drop_aead(&ctx->aead_spawn);
298c926c
AH
909out_free_inst:
910 kfree(inst);
911 }
298c926c
AH
912 return err;
913}
914
254eff77 915static struct cryptd_queue queue;
124b53d0 916
9cd899a3 917static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb)
124b53d0
HX
918{
919 struct crypto_attr_type *algt;
920
921 algt = crypto_get_attr_type(tb);
922 if (IS_ERR(algt))
9cd899a3 923 return PTR_ERR(algt);
124b53d0
HX
924
925 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) {
926 case CRYPTO_ALG_TYPE_BLKCIPHER:
4e0958d1 927 return cryptd_create_skcipher(tmpl, tb, &queue);
b8a28251 928 case CRYPTO_ALG_TYPE_DIGEST:
9cd899a3 929 return cryptd_create_hash(tmpl, tb, &queue);
298c926c
AH
930 case CRYPTO_ALG_TYPE_AEAD:
931 return cryptd_create_aead(tmpl, tb, &queue);
124b53d0
HX
932 }
933
9cd899a3 934 return -EINVAL;
124b53d0
HX
935}
936
937static void cryptd_free(struct crypto_instance *inst)
938{
939 struct cryptd_instance_ctx *ctx = crypto_instance_ctx(inst);
0b535adf 940 struct hashd_instance_ctx *hctx = crypto_instance_ctx(inst);
298c926c 941 struct aead_instance_ctx *aead_ctx = crypto_instance_ctx(inst);
0b535adf
HX
942
943 switch (inst->alg.cra_flags & CRYPTO_ALG_TYPE_MASK) {
944 case CRYPTO_ALG_TYPE_AHASH:
945 crypto_drop_shash(&hctx->spawn);
946 kfree(ahash_instance(inst));
947 return;
298c926c 948 case CRYPTO_ALG_TYPE_AEAD:
f614e546
HX
949 crypto_drop_aead(&aead_ctx->aead_spawn);
950 kfree(aead_instance(inst));
298c926c
AH
951 return;
952 default:
953 crypto_drop_spawn(&ctx->spawn);
954 kfree(inst);
0b535adf 955 }
124b53d0
HX
956}
957
958static struct crypto_template cryptd_tmpl = {
959 .name = "cryptd",
9cd899a3 960 .create = cryptd_create,
124b53d0
HX
961 .free = cryptd_free,
962 .module = THIS_MODULE,
963};
964
4e0958d1
HX
965struct cryptd_skcipher *cryptd_alloc_skcipher(const char *alg_name,
966 u32 type, u32 mask)
967{
968 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
969 struct cryptd_skcipher_ctx *ctx;
970 struct crypto_skcipher *tfm;
971
972 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
973 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
974 return ERR_PTR(-EINVAL);
975
976 tfm = crypto_alloc_skcipher(cryptd_alg_name, type, mask);
977 if (IS_ERR(tfm))
978 return ERR_CAST(tfm);
979
980 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
981 crypto_free_skcipher(tfm);
982 return ERR_PTR(-EINVAL);
983 }
984
985 ctx = crypto_skcipher_ctx(tfm);
986 atomic_set(&ctx->refcnt, 1);
987
988 return container_of(tfm, struct cryptd_skcipher, base);
989}
990EXPORT_SYMBOL_GPL(cryptd_alloc_skcipher);
991
992struct crypto_skcipher *cryptd_skcipher_child(struct cryptd_skcipher *tfm)
993{
994 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
995
36b3875a 996 return &ctx->child->base;
4e0958d1
HX
997}
998EXPORT_SYMBOL_GPL(cryptd_skcipher_child);
999
1000bool cryptd_skcipher_queued(struct cryptd_skcipher *tfm)
1001{
1002 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1003
1004 return atomic_read(&ctx->refcnt) - 1;
1005}
1006EXPORT_SYMBOL_GPL(cryptd_skcipher_queued);
1007
1008void cryptd_free_skcipher(struct cryptd_skcipher *tfm)
1009{
1010 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1011
1012 if (atomic_dec_and_test(&ctx->refcnt))
1013 crypto_free_skcipher(&tfm->base);
1014}
1015EXPORT_SYMBOL_GPL(cryptd_free_skcipher);
1016
ace13663
HY
1017struct cryptd_ahash *cryptd_alloc_ahash(const char *alg_name,
1018 u32 type, u32 mask)
1019{
1020 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
81760ea6 1021 struct cryptd_hash_ctx *ctx;
ace13663
HY
1022 struct crypto_ahash *tfm;
1023
1024 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1025 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1026 return ERR_PTR(-EINVAL);
1027 tfm = crypto_alloc_ahash(cryptd_alg_name, type, mask);
1028 if (IS_ERR(tfm))
1029 return ERR_CAST(tfm);
1030 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1031 crypto_free_ahash(tfm);
1032 return ERR_PTR(-EINVAL);
1033 }
1034
81760ea6
HX
1035 ctx = crypto_ahash_ctx(tfm);
1036 atomic_set(&ctx->refcnt, 1);
1037
ace13663
HY
1038 return __cryptd_ahash_cast(tfm);
1039}
1040EXPORT_SYMBOL_GPL(cryptd_alloc_ahash);
1041
1042struct crypto_shash *cryptd_ahash_child(struct cryptd_ahash *tfm)
1043{
1044 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1045
1046 return ctx->child;
1047}
1048EXPORT_SYMBOL_GPL(cryptd_ahash_child);
1049
0e1227d3
HY
1050struct shash_desc *cryptd_shash_desc(struct ahash_request *req)
1051{
1052 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
1053 return &rctx->desc;
1054}
1055EXPORT_SYMBOL_GPL(cryptd_shash_desc);
1056
81760ea6
HX
1057bool cryptd_ahash_queued(struct cryptd_ahash *tfm)
1058{
1059 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1060
1061 return atomic_read(&ctx->refcnt) - 1;
1062}
1063EXPORT_SYMBOL_GPL(cryptd_ahash_queued);
1064
ace13663
HY
1065void cryptd_free_ahash(struct cryptd_ahash *tfm)
1066{
81760ea6
HX
1067 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1068
1069 if (atomic_dec_and_test(&ctx->refcnt))
1070 crypto_free_ahash(&tfm->base);
ace13663
HY
1071}
1072EXPORT_SYMBOL_GPL(cryptd_free_ahash);
1073
298c926c
AH
1074struct cryptd_aead *cryptd_alloc_aead(const char *alg_name,
1075 u32 type, u32 mask)
1076{
1077 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
81760ea6 1078 struct cryptd_aead_ctx *ctx;
298c926c
AH
1079 struct crypto_aead *tfm;
1080
1081 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1082 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1083 return ERR_PTR(-EINVAL);
1084 tfm = crypto_alloc_aead(cryptd_alg_name, type, mask);
1085 if (IS_ERR(tfm))
1086 return ERR_CAST(tfm);
1087 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1088 crypto_free_aead(tfm);
1089 return ERR_PTR(-EINVAL);
1090 }
81760ea6
HX
1091
1092 ctx = crypto_aead_ctx(tfm);
1093 atomic_set(&ctx->refcnt, 1);
1094
298c926c
AH
1095 return __cryptd_aead_cast(tfm);
1096}
1097EXPORT_SYMBOL_GPL(cryptd_alloc_aead);
1098
1099struct crypto_aead *cryptd_aead_child(struct cryptd_aead *tfm)
1100{
1101 struct cryptd_aead_ctx *ctx;
1102 ctx = crypto_aead_ctx(&tfm->base);
1103 return ctx->child;
1104}
1105EXPORT_SYMBOL_GPL(cryptd_aead_child);
1106
81760ea6
HX
1107bool cryptd_aead_queued(struct cryptd_aead *tfm)
1108{
1109 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1110
1111 return atomic_read(&ctx->refcnt) - 1;
1112}
1113EXPORT_SYMBOL_GPL(cryptd_aead_queued);
1114
298c926c
AH
1115void cryptd_free_aead(struct cryptd_aead *tfm)
1116{
81760ea6
HX
1117 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1118
1119 if (atomic_dec_and_test(&ctx->refcnt))
1120 crypto_free_aead(&tfm->base);
298c926c
AH
1121}
1122EXPORT_SYMBOL_GPL(cryptd_free_aead);
1123
124b53d0
HX
1124static int __init cryptd_init(void)
1125{
1126 int err;
1127
3e56e168
EB
1128 cryptd_wq = alloc_workqueue("cryptd", WQ_MEM_RECLAIM | WQ_CPU_INTENSIVE,
1129 1);
1130 if (!cryptd_wq)
1131 return -ENOMEM;
1132
c3a53605 1133 err = cryptd_init_queue(&queue, cryptd_max_cpu_qlen);
124b53d0 1134 if (err)
3e56e168 1135 goto err_destroy_wq;
124b53d0
HX
1136
1137 err = crypto_register_template(&cryptd_tmpl);
1138 if (err)
3e56e168 1139 goto err_fini_queue;
124b53d0 1140
3e56e168
EB
1141 return 0;
1142
1143err_fini_queue:
1144 cryptd_fini_queue(&queue);
1145err_destroy_wq:
1146 destroy_workqueue(cryptd_wq);
124b53d0
HX
1147 return err;
1148}
1149
1150static void __exit cryptd_exit(void)
1151{
3e56e168 1152 destroy_workqueue(cryptd_wq);
254eff77 1153 cryptd_fini_queue(&queue);
124b53d0
HX
1154 crypto_unregister_template(&cryptd_tmpl);
1155}
1156
b2bac6ac 1157subsys_initcall(cryptd_init);
124b53d0
HX
1158module_exit(cryptd_exit);
1159
1160MODULE_LICENSE("GPL");
1161MODULE_DESCRIPTION("Software async crypto daemon");
4943ba16 1162MODULE_ALIAS_CRYPTO("cryptd");