blob: bd43cf5be14ced190c188f04e68bf73908c46ca7 [file] [log] [blame]
Herbert Xu124b53d2007-04-16 20:49:20 +10001/*
2 * Software async crypto daemon.
3 *
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
5 *
Adrian Hoban298c9262010-09-20 16:05:12 +08006 * 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 *
Herbert Xu124b53d2007-04-16 20:49:20 +100013 * 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
Herbert Xu18e33e62008-07-10 16:01:22 +080020#include <crypto/internal/hash.h>
Adrian Hoban298c9262010-09-20 16:05:12 +080021#include <crypto/internal/aead.h>
Herbert Xu4e0958d2016-11-22 20:08:23 +080022#include <crypto/internal/skcipher.h>
Huang Ying1cac2cb2009-01-18 16:19:46 +110023#include <crypto/cryptd.h>
Huang Ying254eff72009-02-19 14:42:19 +080024#include <crypto/crypto_wq.h>
Herbert Xu81760ea2016-06-21 16:55:13 +080025#include <linux/atomic.h>
Herbert Xu124b53d2007-04-16 20:49:20 +100026#include <linux/err.h>
27#include <linux/init.h>
28#include <linux/kernel.h>
Herbert Xu124b53d2007-04-16 20:49:20 +100029#include <linux/list.h>
30#include <linux/module.h>
Herbert Xu124b53d2007-04-16 20:49:20 +100031#include <linux/scatterlist.h>
32#include <linux/sched.h>
33#include <linux/slab.h>
Herbert Xu124b53d2007-04-16 20:49:20 +100034
Herbert Xu81760ea2016-06-21 16:55:13 +080035#define CRYPTD_MAX_CPU_QLEN 1000
Herbert Xu124b53d2007-04-16 20:49:20 +100036
Huang Ying254eff72009-02-19 14:42:19 +080037struct cryptd_cpu_queue {
Herbert Xu124b53d2007-04-16 20:49:20 +100038 struct crypto_queue queue;
Huang Ying254eff72009-02-19 14:42:19 +080039 struct work_struct work;
40};
41
42struct cryptd_queue {
Tejun Heoa29d8b82010-02-02 14:39:15 +090043 struct cryptd_cpu_queue __percpu *cpu_queue;
Herbert Xu124b53d2007-04-16 20:49:20 +100044};
45
46struct cryptd_instance_ctx {
47 struct crypto_spawn spawn;
Huang Ying254eff72009-02-19 14:42:19 +080048 struct cryptd_queue *queue;
Herbert Xu124b53d2007-04-16 20:49:20 +100049};
50
Herbert Xu4e0958d2016-11-22 20:08:23 +080051struct skcipherd_instance_ctx {
52 struct crypto_skcipher_spawn spawn;
53 struct cryptd_queue *queue;
54};
55
Herbert Xu46309d82009-07-12 21:38:59 +080056struct hashd_instance_ctx {
57 struct crypto_shash_spawn spawn;
58 struct cryptd_queue *queue;
59};
60
Adrian Hoban298c9262010-09-20 16:05:12 +080061struct aead_instance_ctx {
62 struct crypto_aead_spawn aead_spawn;
63 struct cryptd_queue *queue;
64};
65
Herbert Xu124b53d2007-04-16 20:49:20 +100066struct cryptd_blkcipher_ctx {
Herbert Xu81760ea2016-06-21 16:55:13 +080067 atomic_t refcnt;
Herbert Xu124b53d2007-04-16 20:49:20 +100068 struct crypto_blkcipher *child;
69};
70
71struct cryptd_blkcipher_request_ctx {
72 crypto_completion_t complete;
73};
74
Herbert Xu4e0958d2016-11-22 20:08:23 +080075struct cryptd_skcipher_ctx {
76 atomic_t refcnt;
77 struct crypto_skcipher *child;
78};
79
80struct cryptd_skcipher_request_ctx {
81 crypto_completion_t complete;
82};
83
Loc Hob8a28252008-05-14 21:23:00 +080084struct cryptd_hash_ctx {
Herbert Xu81760ea2016-06-21 16:55:13 +080085 atomic_t refcnt;
Herbert Xu46309d82009-07-12 21:38:59 +080086 struct crypto_shash *child;
Loc Hob8a28252008-05-14 21:23:00 +080087};
88
89struct cryptd_hash_request_ctx {
90 crypto_completion_t complete;
Herbert Xu46309d82009-07-12 21:38:59 +080091 struct shash_desc desc;
Loc Hob8a28252008-05-14 21:23:00 +080092};
Herbert Xu124b53d2007-04-16 20:49:20 +100093
Adrian Hoban298c9262010-09-20 16:05:12 +080094struct cryptd_aead_ctx {
Herbert Xu81760ea2016-06-21 16:55:13 +080095 atomic_t refcnt;
Adrian Hoban298c9262010-09-20 16:05:12 +080096 struct crypto_aead *child;
97};
98
99struct cryptd_aead_request_ctx {
100 crypto_completion_t complete;
101};
102
Huang Ying254eff72009-02-19 14:42:19 +0800103static void cryptd_queue_worker(struct work_struct *work);
104
105static int cryptd_init_queue(struct cryptd_queue *queue,
106 unsigned int max_cpu_qlen)
107{
108 int cpu;
109 struct cryptd_cpu_queue *cpu_queue;
110
111 queue->cpu_queue = alloc_percpu(struct cryptd_cpu_queue);
112 if (!queue->cpu_queue)
113 return -ENOMEM;
114 for_each_possible_cpu(cpu) {
115 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
116 crypto_init_queue(&cpu_queue->queue, max_cpu_qlen);
117 INIT_WORK(&cpu_queue->work, cryptd_queue_worker);
118 }
119 return 0;
120}
121
122static void cryptd_fini_queue(struct cryptd_queue *queue)
123{
124 int cpu;
125 struct cryptd_cpu_queue *cpu_queue;
126
127 for_each_possible_cpu(cpu) {
128 cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
129 BUG_ON(cpu_queue->queue.qlen);
130 }
131 free_percpu(queue->cpu_queue);
132}
133
134static int cryptd_enqueue_request(struct cryptd_queue *queue,
135 struct crypto_async_request *request)
136{
137 int cpu, err;
138 struct cryptd_cpu_queue *cpu_queue;
Herbert Xu81760ea2016-06-21 16:55:13 +0800139 atomic_t *refcnt;
Huang Ying254eff72009-02-19 14:42:19 +0800140
141 cpu = get_cpu();
Christoph Lameter0b44f482009-10-03 19:48:23 +0900142 cpu_queue = this_cpu_ptr(queue->cpu_queue);
Huang Ying254eff72009-02-19 14:42:19 +0800143 err = crypto_enqueue_request(&cpu_queue->queue, request);
Herbert Xu81760ea2016-06-21 16:55:13 +0800144
145 refcnt = crypto_tfm_ctx(request->tfm);
Herbert Xu81760ea2016-06-21 16:55:13 +0800146
Gilad Ben-Yossef6b80ea32017-10-18 08:00:33 +0100147 if (err == -ENOSPC)
Herbert Xu81760ea2016-06-21 16:55:13 +0800148 goto out_put_cpu;
149
Huang Ying254eff72009-02-19 14:42:19 +0800150 queue_work_on(cpu, kcrypto_wq, &cpu_queue->work);
Herbert Xu81760ea2016-06-21 16:55:13 +0800151
152 if (!atomic_read(refcnt))
153 goto out_put_cpu;
154
Herbert Xu81760ea2016-06-21 16:55:13 +0800155 atomic_inc(refcnt);
156
157out_put_cpu:
Huang Ying254eff72009-02-19 14:42:19 +0800158 put_cpu();
159
160 return err;
161}
162
163/* Called in workqueue context, do one real cryption work (via
164 * req->complete) and reschedule itself if there are more work to
165 * do. */
166static void cryptd_queue_worker(struct work_struct *work)
167{
168 struct cryptd_cpu_queue *cpu_queue;
169 struct crypto_async_request *req, *backlog;
170
171 cpu_queue = container_of(work, struct cryptd_cpu_queue, work);
Jussi Kivilinna9efade12012-10-21 20:42:28 +0300172 /*
173 * Only handle one request at a time to avoid hogging crypto workqueue.
174 * preempt_disable/enable is used to prevent being preempted by
175 * cryptd_enqueue_request(). local_bh_disable/enable is used to prevent
176 * cryptd_enqueue_request() being accessed from software interrupts.
177 */
178 local_bh_disable();
Huang Ying254eff72009-02-19 14:42:19 +0800179 preempt_disable();
180 backlog = crypto_get_backlog(&cpu_queue->queue);
181 req = crypto_dequeue_request(&cpu_queue->queue);
182 preempt_enable();
Jussi Kivilinna9efade12012-10-21 20:42:28 +0300183 local_bh_enable();
Huang Ying254eff72009-02-19 14:42:19 +0800184
185 if (!req)
186 return;
187
188 if (backlog)
189 backlog->complete(backlog, -EINPROGRESS);
190 req->complete(req, 0);
191
192 if (cpu_queue->queue.qlen)
193 queue_work(kcrypto_wq, &cpu_queue->work);
194}
195
196static inline struct cryptd_queue *cryptd_get_queue(struct crypto_tfm *tfm)
Herbert Xu124b53d2007-04-16 20:49:20 +1000197{
198 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
199 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
Huang Ying254eff72009-02-19 14:42:19 +0800200 return ictx->queue;
Herbert Xu124b53d2007-04-16 20:49:20 +1000201}
202
Stephan Mueller466a7b92015-03-30 21:57:06 +0200203static inline void cryptd_check_internal(struct rtattr **tb, u32 *type,
204 u32 *mask)
205{
206 struct crypto_attr_type *algt;
207
208 algt = crypto_get_attr_type(tb);
209 if (IS_ERR(algt))
210 return;
Herbert Xuf6da3202015-07-09 07:17:19 +0800211
Herbert Xu5e4b8c12015-08-13 17:29:06 +0800212 *type |= algt->type & CRYPTO_ALG_INTERNAL;
213 *mask |= algt->mask & CRYPTO_ALG_INTERNAL;
Stephan Mueller466a7b92015-03-30 21:57:06 +0200214}
215
Herbert Xu124b53d2007-04-16 20:49:20 +1000216static int cryptd_blkcipher_setkey(struct crypto_ablkcipher *parent,
217 const u8 *key, unsigned int keylen)
218{
219 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(parent);
220 struct crypto_blkcipher *child = ctx->child;
221 int err;
222
223 crypto_blkcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
224 crypto_blkcipher_set_flags(child, crypto_ablkcipher_get_flags(parent) &
225 CRYPTO_TFM_REQ_MASK);
226 err = crypto_blkcipher_setkey(child, key, keylen);
227 crypto_ablkcipher_set_flags(parent, crypto_blkcipher_get_flags(child) &
228 CRYPTO_TFM_RES_MASK);
229 return err;
230}
231
232static void cryptd_blkcipher_crypt(struct ablkcipher_request *req,
233 struct crypto_blkcipher *child,
234 int err,
235 int (*crypt)(struct blkcipher_desc *desc,
236 struct scatterlist *dst,
237 struct scatterlist *src,
238 unsigned int len))
239{
240 struct cryptd_blkcipher_request_ctx *rctx;
Herbert Xu81760ea2016-06-21 16:55:13 +0800241 struct cryptd_blkcipher_ctx *ctx;
242 struct crypto_ablkcipher *tfm;
Herbert Xu124b53d2007-04-16 20:49:20 +1000243 struct blkcipher_desc desc;
Herbert Xu81760ea2016-06-21 16:55:13 +0800244 int refcnt;
Herbert Xu124b53d2007-04-16 20:49:20 +1000245
246 rctx = ablkcipher_request_ctx(req);
247
Herbert Xu93aa7f82008-05-07 21:10:13 +0800248 if (unlikely(err == -EINPROGRESS))
249 goto out;
Herbert Xu124b53d2007-04-16 20:49:20 +1000250
251 desc.tfm = child;
252 desc.info = req->info;
253 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
254
255 err = crypt(&desc, req->dst, req->src, req->nbytes);
256
257 req->base.complete = rctx->complete;
258
Herbert Xu93aa7f82008-05-07 21:10:13 +0800259out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800260 tfm = crypto_ablkcipher_reqtfm(req);
261 ctx = crypto_ablkcipher_ctx(tfm);
262 refcnt = atomic_read(&ctx->refcnt);
263
Herbert Xu124b53d2007-04-16 20:49:20 +1000264 local_bh_disable();
Herbert Xu93aa7f82008-05-07 21:10:13 +0800265 rctx->complete(&req->base, err);
Herbert Xu124b53d2007-04-16 20:49:20 +1000266 local_bh_enable();
Herbert Xu81760ea2016-06-21 16:55:13 +0800267
268 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
269 crypto_free_ablkcipher(tfm);
Herbert Xu124b53d2007-04-16 20:49:20 +1000270}
271
272static void cryptd_blkcipher_encrypt(struct crypto_async_request *req, int err)
273{
274 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
275 struct crypto_blkcipher *child = ctx->child;
276
277 cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
278 crypto_blkcipher_crt(child)->encrypt);
279}
280
281static void cryptd_blkcipher_decrypt(struct crypto_async_request *req, int err)
282{
283 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
284 struct crypto_blkcipher *child = ctx->child;
285
286 cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
287 crypto_blkcipher_crt(child)->decrypt);
288}
289
290static int cryptd_blkcipher_enqueue(struct ablkcipher_request *req,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700291 crypto_completion_t compl)
Herbert Xu124b53d2007-04-16 20:49:20 +1000292{
293 struct cryptd_blkcipher_request_ctx *rctx = ablkcipher_request_ctx(req);
294 struct crypto_ablkcipher *tfm = crypto_ablkcipher_reqtfm(req);
Huang Ying254eff72009-02-19 14:42:19 +0800295 struct cryptd_queue *queue;
Herbert Xu124b53d2007-04-16 20:49:20 +1000296
Huang Ying254eff72009-02-19 14:42:19 +0800297 queue = cryptd_get_queue(crypto_ablkcipher_tfm(tfm));
Herbert Xu124b53d2007-04-16 20:49:20 +1000298 rctx->complete = req->base.complete;
Mark Rustad3e3dc252014-07-25 02:53:38 -0700299 req->base.complete = compl;
Herbert Xu124b53d2007-04-16 20:49:20 +1000300
Huang Ying254eff72009-02-19 14:42:19 +0800301 return cryptd_enqueue_request(queue, &req->base);
Herbert Xu124b53d2007-04-16 20:49:20 +1000302}
303
304static int cryptd_blkcipher_encrypt_enqueue(struct ablkcipher_request *req)
305{
306 return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_encrypt);
307}
308
309static int cryptd_blkcipher_decrypt_enqueue(struct ablkcipher_request *req)
310{
311 return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_decrypt);
312}
313
314static int cryptd_blkcipher_init_tfm(struct crypto_tfm *tfm)
315{
316 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
317 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
318 struct crypto_spawn *spawn = &ictx->spawn;
319 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
320 struct crypto_blkcipher *cipher;
321
322 cipher = crypto_spawn_blkcipher(spawn);
323 if (IS_ERR(cipher))
324 return PTR_ERR(cipher);
325
326 ctx->child = cipher;
327 tfm->crt_ablkcipher.reqsize =
328 sizeof(struct cryptd_blkcipher_request_ctx);
329 return 0;
330}
331
332static void cryptd_blkcipher_exit_tfm(struct crypto_tfm *tfm)
333{
334 struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
Herbert Xu124b53d2007-04-16 20:49:20 +1000335
336 crypto_free_blkcipher(ctx->child);
337}
338
Herbert Xu9b8c4562015-05-21 15:10:57 +0800339static int cryptd_init_instance(struct crypto_instance *inst,
340 struct crypto_alg *alg)
341{
342 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
343 "cryptd(%s)",
344 alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
345 return -ENAMETOOLONG;
346
347 memcpy(inst->alg.cra_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
348
349 inst->alg.cra_priority = alg->cra_priority + 50;
350 inst->alg.cra_blocksize = alg->cra_blocksize;
351 inst->alg.cra_alignmask = alg->cra_alignmask;
352
353 return 0;
354}
355
Herbert Xu0b535ad2009-07-14 19:11:32 +0800356static void *cryptd_alloc_instance(struct crypto_alg *alg, unsigned int head,
357 unsigned int tail)
Herbert Xu124b53d2007-04-16 20:49:20 +1000358{
Herbert Xu0b535ad2009-07-14 19:11:32 +0800359 char *p;
Herbert Xu124b53d2007-04-16 20:49:20 +1000360 struct crypto_instance *inst;
Herbert Xu124b53d2007-04-16 20:49:20 +1000361 int err;
362
Herbert Xu0b535ad2009-07-14 19:11:32 +0800363 p = kzalloc(head + sizeof(*inst) + tail, GFP_KERNEL);
364 if (!p)
365 return ERR_PTR(-ENOMEM);
366
367 inst = (void *)(p + head);
Herbert Xu124b53d2007-04-16 20:49:20 +1000368
Herbert Xu9b8c4562015-05-21 15:10:57 +0800369 err = cryptd_init_instance(inst, alg);
370 if (err)
Herbert Xu124b53d2007-04-16 20:49:20 +1000371 goto out_free_inst;
372
Herbert Xu124b53d2007-04-16 20:49:20 +1000373out:
Herbert Xu0b535ad2009-07-14 19:11:32 +0800374 return p;
Herbert Xu124b53d2007-04-16 20:49:20 +1000375
376out_free_inst:
Herbert Xu0b535ad2009-07-14 19:11:32 +0800377 kfree(p);
378 p = ERR_PTR(err);
Herbert Xu124b53d2007-04-16 20:49:20 +1000379 goto out;
380}
381
Herbert Xu9cd899a2009-07-14 18:45:45 +0800382static int cryptd_create_blkcipher(struct crypto_template *tmpl,
383 struct rtattr **tb,
384 struct cryptd_queue *queue)
Herbert Xu124b53d2007-04-16 20:49:20 +1000385{
Herbert Xu46309d82009-07-12 21:38:59 +0800386 struct cryptd_instance_ctx *ctx;
Herbert Xu124b53d2007-04-16 20:49:20 +1000387 struct crypto_instance *inst;
388 struct crypto_alg *alg;
Stephan Mueller466a7b92015-03-30 21:57:06 +0200389 u32 type = CRYPTO_ALG_TYPE_BLKCIPHER;
390 u32 mask = CRYPTO_ALG_TYPE_MASK;
Herbert Xu46309d82009-07-12 21:38:59 +0800391 int err;
Herbert Xu124b53d2007-04-16 20:49:20 +1000392
Stephan Mueller466a7b92015-03-30 21:57:06 +0200393 cryptd_check_internal(tb, &type, &mask);
394
395 alg = crypto_get_attr_alg(tb, type, mask);
Herbert Xu124b53d2007-04-16 20:49:20 +1000396 if (IS_ERR(alg))
Herbert Xu9cd899a2009-07-14 18:45:45 +0800397 return PTR_ERR(alg);
Herbert Xu124b53d2007-04-16 20:49:20 +1000398
Herbert Xu0b535ad2009-07-14 19:11:32 +0800399 inst = cryptd_alloc_instance(alg, 0, sizeof(*ctx));
Steffen Klassert05ed8752009-07-15 16:51:04 +0800400 err = PTR_ERR(inst);
Herbert Xu124b53d2007-04-16 20:49:20 +1000401 if (IS_ERR(inst))
402 goto out_put_alg;
403
Herbert Xu46309d82009-07-12 21:38:59 +0800404 ctx = crypto_instance_ctx(inst);
405 ctx->queue = queue;
406
407 err = crypto_init_spawn(&ctx->spawn, alg, inst,
408 CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
409 if (err)
410 goto out_free_inst;
411
Stephan Mueller466a7b92015-03-30 21:57:06 +0200412 type = CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC;
413 if (alg->cra_flags & CRYPTO_ALG_INTERNAL)
414 type |= CRYPTO_ALG_INTERNAL;
415 inst->alg.cra_flags = type;
Herbert Xu124b53d2007-04-16 20:49:20 +1000416 inst->alg.cra_type = &crypto_ablkcipher_type;
417
418 inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize;
419 inst->alg.cra_ablkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
420 inst->alg.cra_ablkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
421
Herbert Xu927eead2007-11-27 21:15:31 +0800422 inst->alg.cra_ablkcipher.geniv = alg->cra_blkcipher.geniv;
423
Herbert Xu124b53d2007-04-16 20:49:20 +1000424 inst->alg.cra_ctxsize = sizeof(struct cryptd_blkcipher_ctx);
425
426 inst->alg.cra_init = cryptd_blkcipher_init_tfm;
427 inst->alg.cra_exit = cryptd_blkcipher_exit_tfm;
428
429 inst->alg.cra_ablkcipher.setkey = cryptd_blkcipher_setkey;
430 inst->alg.cra_ablkcipher.encrypt = cryptd_blkcipher_encrypt_enqueue;
431 inst->alg.cra_ablkcipher.decrypt = cryptd_blkcipher_decrypt_enqueue;
432
Herbert Xu9cd899a2009-07-14 18:45:45 +0800433 err = crypto_register_instance(tmpl, inst);
434 if (err) {
435 crypto_drop_spawn(&ctx->spawn);
436out_free_inst:
437 kfree(inst);
438 }
439
Herbert Xu124b53d2007-04-16 20:49:20 +1000440out_put_alg:
441 crypto_mod_put(alg);
Herbert Xu9cd899a2009-07-14 18:45:45 +0800442 return err;
Herbert Xu124b53d2007-04-16 20:49:20 +1000443}
444
Herbert Xu4e0958d2016-11-22 20:08:23 +0800445static int cryptd_skcipher_setkey(struct crypto_skcipher *parent,
446 const u8 *key, unsigned int keylen)
447{
448 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(parent);
449 struct crypto_skcipher *child = ctx->child;
450 int err;
451
452 crypto_skcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
453 crypto_skcipher_set_flags(child, crypto_skcipher_get_flags(parent) &
454 CRYPTO_TFM_REQ_MASK);
455 err = crypto_skcipher_setkey(child, key, keylen);
456 crypto_skcipher_set_flags(parent, crypto_skcipher_get_flags(child) &
457 CRYPTO_TFM_RES_MASK);
458 return err;
459}
460
461static void cryptd_skcipher_complete(struct skcipher_request *req, int err)
462{
463 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
464 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
465 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
466 int refcnt = atomic_read(&ctx->refcnt);
467
468 local_bh_disable();
469 rctx->complete(&req->base, err);
470 local_bh_enable();
471
472 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
473 crypto_free_skcipher(tfm);
474}
475
476static void cryptd_skcipher_encrypt(struct crypto_async_request *base,
477 int err)
478{
479 struct skcipher_request *req = skcipher_request_cast(base);
480 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
481 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
482 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
483 struct crypto_skcipher *child = ctx->child;
484 SKCIPHER_REQUEST_ON_STACK(subreq, child);
485
486 if (unlikely(err == -EINPROGRESS))
487 goto out;
488
489 skcipher_request_set_tfm(subreq, child);
490 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
491 NULL, NULL);
492 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
493 req->iv);
494
495 err = crypto_skcipher_encrypt(subreq);
496 skcipher_request_zero(subreq);
497
498 req->base.complete = rctx->complete;
499
500out:
501 cryptd_skcipher_complete(req, err);
502}
503
504static void cryptd_skcipher_decrypt(struct crypto_async_request *base,
505 int err)
506{
507 struct skcipher_request *req = skcipher_request_cast(base);
508 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
509 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
510 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
511 struct crypto_skcipher *child = ctx->child;
512 SKCIPHER_REQUEST_ON_STACK(subreq, child);
513
514 if (unlikely(err == -EINPROGRESS))
515 goto out;
516
517 skcipher_request_set_tfm(subreq, child);
518 skcipher_request_set_callback(subreq, CRYPTO_TFM_REQ_MAY_SLEEP,
519 NULL, NULL);
520 skcipher_request_set_crypt(subreq, req->src, req->dst, req->cryptlen,
521 req->iv);
522
523 err = crypto_skcipher_decrypt(subreq);
524 skcipher_request_zero(subreq);
525
526 req->base.complete = rctx->complete;
527
528out:
529 cryptd_skcipher_complete(req, err);
530}
531
532static int cryptd_skcipher_enqueue(struct skcipher_request *req,
533 crypto_completion_t compl)
534{
535 struct cryptd_skcipher_request_ctx *rctx = skcipher_request_ctx(req);
536 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
537 struct cryptd_queue *queue;
538
539 queue = cryptd_get_queue(crypto_skcipher_tfm(tfm));
540 rctx->complete = req->base.complete;
541 req->base.complete = compl;
542
543 return cryptd_enqueue_request(queue, &req->base);
544}
545
546static int cryptd_skcipher_encrypt_enqueue(struct skcipher_request *req)
547{
548 return cryptd_skcipher_enqueue(req, cryptd_skcipher_encrypt);
549}
550
551static int cryptd_skcipher_decrypt_enqueue(struct skcipher_request *req)
552{
553 return cryptd_skcipher_enqueue(req, cryptd_skcipher_decrypt);
554}
555
556static int cryptd_skcipher_init_tfm(struct crypto_skcipher *tfm)
557{
558 struct skcipher_instance *inst = skcipher_alg_instance(tfm);
559 struct skcipherd_instance_ctx *ictx = skcipher_instance_ctx(inst);
560 struct crypto_skcipher_spawn *spawn = &ictx->spawn;
561 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
562 struct crypto_skcipher *cipher;
563
564 cipher = crypto_spawn_skcipher(spawn);
565 if (IS_ERR(cipher))
566 return PTR_ERR(cipher);
567
568 ctx->child = cipher;
569 crypto_skcipher_set_reqsize(
570 tfm, sizeof(struct cryptd_skcipher_request_ctx));
571 return 0;
572}
573
574static void cryptd_skcipher_exit_tfm(struct crypto_skcipher *tfm)
575{
576 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
577
578 crypto_free_skcipher(ctx->child);
579}
580
581static void cryptd_skcipher_free(struct skcipher_instance *inst)
582{
583 struct skcipherd_instance_ctx *ctx = skcipher_instance_ctx(inst);
584
585 crypto_drop_skcipher(&ctx->spawn);
586}
587
588static int cryptd_create_skcipher(struct crypto_template *tmpl,
589 struct rtattr **tb,
590 struct cryptd_queue *queue)
591{
592 struct skcipherd_instance_ctx *ctx;
593 struct skcipher_instance *inst;
594 struct skcipher_alg *alg;
595 const char *name;
596 u32 type;
597 u32 mask;
598 int err;
599
600 type = 0;
601 mask = CRYPTO_ALG_ASYNC;
602
603 cryptd_check_internal(tb, &type, &mask);
604
605 name = crypto_attr_alg_name(tb[1]);
606 if (IS_ERR(name))
607 return PTR_ERR(name);
608
609 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
610 if (!inst)
611 return -ENOMEM;
612
613 ctx = skcipher_instance_ctx(inst);
614 ctx->queue = queue;
615
616 crypto_set_skcipher_spawn(&ctx->spawn, skcipher_crypto_instance(inst));
617 err = crypto_grab_skcipher(&ctx->spawn, name, type, mask);
618 if (err)
619 goto out_free_inst;
620
621 alg = crypto_spawn_skcipher_alg(&ctx->spawn);
622 err = cryptd_init_instance(skcipher_crypto_instance(inst), &alg->base);
623 if (err)
624 goto out_drop_skcipher;
625
626 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
627 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
628
629 inst->alg.ivsize = crypto_skcipher_alg_ivsize(alg);
630 inst->alg.chunksize = crypto_skcipher_alg_chunksize(alg);
631 inst->alg.min_keysize = crypto_skcipher_alg_min_keysize(alg);
632 inst->alg.max_keysize = crypto_skcipher_alg_max_keysize(alg);
633
634 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_skcipher_ctx);
635
636 inst->alg.init = cryptd_skcipher_init_tfm;
637 inst->alg.exit = cryptd_skcipher_exit_tfm;
638
639 inst->alg.setkey = cryptd_skcipher_setkey;
640 inst->alg.encrypt = cryptd_skcipher_encrypt_enqueue;
641 inst->alg.decrypt = cryptd_skcipher_decrypt_enqueue;
642
643 inst->free = cryptd_skcipher_free;
644
645 err = skcipher_register_instance(tmpl, inst);
646 if (err) {
647out_drop_skcipher:
648 crypto_drop_skcipher(&ctx->spawn);
649out_free_inst:
650 kfree(inst);
651 }
652 return err;
653}
654
Loc Hob8a28252008-05-14 21:23:00 +0800655static int cryptd_hash_init_tfm(struct crypto_tfm *tfm)
656{
657 struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
Herbert Xu46309d82009-07-12 21:38:59 +0800658 struct hashd_instance_ctx *ictx = crypto_instance_ctx(inst);
659 struct crypto_shash_spawn *spawn = &ictx->spawn;
Loc Hob8a28252008-05-14 21:23:00 +0800660 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
Herbert Xu46309d82009-07-12 21:38:59 +0800661 struct crypto_shash *hash;
Loc Hob8a28252008-05-14 21:23:00 +0800662
Herbert Xu46309d82009-07-12 21:38:59 +0800663 hash = crypto_spawn_shash(spawn);
664 if (IS_ERR(hash))
665 return PTR_ERR(hash);
Loc Hob8a28252008-05-14 21:23:00 +0800666
Herbert Xu46309d82009-07-12 21:38:59 +0800667 ctx->child = hash;
Herbert Xu0d6669e2009-07-12 23:06:33 +0800668 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
669 sizeof(struct cryptd_hash_request_ctx) +
670 crypto_shash_descsize(hash));
Loc Hob8a28252008-05-14 21:23:00 +0800671 return 0;
672}
673
674static void cryptd_hash_exit_tfm(struct crypto_tfm *tfm)
675{
676 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(tfm);
Loc Hob8a28252008-05-14 21:23:00 +0800677
Herbert Xu46309d82009-07-12 21:38:59 +0800678 crypto_free_shash(ctx->child);
Loc Hob8a28252008-05-14 21:23:00 +0800679}
680
681static int cryptd_hash_setkey(struct crypto_ahash *parent,
682 const u8 *key, unsigned int keylen)
683{
684 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(parent);
Herbert Xu46309d82009-07-12 21:38:59 +0800685 struct crypto_shash *child = ctx->child;
Loc Hob8a28252008-05-14 21:23:00 +0800686 int err;
687
Herbert Xu46309d82009-07-12 21:38:59 +0800688 crypto_shash_clear_flags(child, CRYPTO_TFM_REQ_MASK);
689 crypto_shash_set_flags(child, crypto_ahash_get_flags(parent) &
690 CRYPTO_TFM_REQ_MASK);
691 err = crypto_shash_setkey(child, key, keylen);
692 crypto_ahash_set_flags(parent, crypto_shash_get_flags(child) &
693 CRYPTO_TFM_RES_MASK);
Loc Hob8a28252008-05-14 21:23:00 +0800694 return err;
695}
696
697static int cryptd_hash_enqueue(struct ahash_request *req,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700698 crypto_completion_t compl)
Loc Hob8a28252008-05-14 21:23:00 +0800699{
700 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
701 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
Huang Ying254eff72009-02-19 14:42:19 +0800702 struct cryptd_queue *queue =
703 cryptd_get_queue(crypto_ahash_tfm(tfm));
Loc Hob8a28252008-05-14 21:23:00 +0800704
705 rctx->complete = req->base.complete;
Mark Rustad3e3dc252014-07-25 02:53:38 -0700706 req->base.complete = compl;
Loc Hob8a28252008-05-14 21:23:00 +0800707
Huang Ying254eff72009-02-19 14:42:19 +0800708 return cryptd_enqueue_request(queue, &req->base);
Loc Hob8a28252008-05-14 21:23:00 +0800709}
710
Herbert Xu81760ea2016-06-21 16:55:13 +0800711static void cryptd_hash_complete(struct ahash_request *req, int err)
712{
713 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
714 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
715 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
716 int refcnt = atomic_read(&ctx->refcnt);
717
718 local_bh_disable();
719 rctx->complete(&req->base, err);
720 local_bh_enable();
721
722 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
723 crypto_free_ahash(tfm);
724}
725
Loc Hob8a28252008-05-14 21:23:00 +0800726static void cryptd_hash_init(struct crypto_async_request *req_async, int err)
727{
Herbert Xu46309d82009-07-12 21:38:59 +0800728 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
729 struct crypto_shash *child = ctx->child;
730 struct ahash_request *req = ahash_request_cast(req_async);
731 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
732 struct shash_desc *desc = &rctx->desc;
Loc Hob8a28252008-05-14 21:23:00 +0800733
734 if (unlikely(err == -EINPROGRESS))
735 goto out;
736
Herbert Xu46309d82009-07-12 21:38:59 +0800737 desc->tfm = child;
738 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Loc Hob8a28252008-05-14 21:23:00 +0800739
Herbert Xu46309d82009-07-12 21:38:59 +0800740 err = crypto_shash_init(desc);
Loc Hob8a28252008-05-14 21:23:00 +0800741
742 req->base.complete = rctx->complete;
743
744out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800745 cryptd_hash_complete(req, err);
Loc Hob8a28252008-05-14 21:23:00 +0800746}
747
748static int cryptd_hash_init_enqueue(struct ahash_request *req)
749{
750 return cryptd_hash_enqueue(req, cryptd_hash_init);
751}
752
753static void cryptd_hash_update(struct crypto_async_request *req_async, int err)
754{
Herbert Xu46309d82009-07-12 21:38:59 +0800755 struct ahash_request *req = ahash_request_cast(req_async);
Loc Hob8a28252008-05-14 21:23:00 +0800756 struct cryptd_hash_request_ctx *rctx;
Loc Hob8a28252008-05-14 21:23:00 +0800757
758 rctx = ahash_request_ctx(req);
759
760 if (unlikely(err == -EINPROGRESS))
761 goto out;
762
Herbert Xu46309d82009-07-12 21:38:59 +0800763 err = shash_ahash_update(req, &rctx->desc);
Loc Hob8a28252008-05-14 21:23:00 +0800764
765 req->base.complete = rctx->complete;
766
767out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800768 cryptd_hash_complete(req, err);
Loc Hob8a28252008-05-14 21:23:00 +0800769}
770
771static int cryptd_hash_update_enqueue(struct ahash_request *req)
772{
773 return cryptd_hash_enqueue(req, cryptd_hash_update);
774}
775
776static void cryptd_hash_final(struct crypto_async_request *req_async, int err)
777{
Herbert Xu46309d82009-07-12 21:38:59 +0800778 struct ahash_request *req = ahash_request_cast(req_async);
779 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
Loc Hob8a28252008-05-14 21:23:00 +0800780
781 if (unlikely(err == -EINPROGRESS))
782 goto out;
783
Herbert Xu46309d82009-07-12 21:38:59 +0800784 err = crypto_shash_final(&rctx->desc, req->result);
Loc Hob8a28252008-05-14 21:23:00 +0800785
786 req->base.complete = rctx->complete;
787
788out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800789 cryptd_hash_complete(req, err);
Loc Hob8a28252008-05-14 21:23:00 +0800790}
791
792static int cryptd_hash_final_enqueue(struct ahash_request *req)
793{
794 return cryptd_hash_enqueue(req, cryptd_hash_final);
795}
796
Herbert Xu6fba00d2009-07-22 11:10:22 +0800797static void cryptd_hash_finup(struct crypto_async_request *req_async, int err)
798{
799 struct ahash_request *req = ahash_request_cast(req_async);
800 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
801
802 if (unlikely(err == -EINPROGRESS))
803 goto out;
804
805 err = shash_ahash_finup(req, &rctx->desc);
806
807 req->base.complete = rctx->complete;
808
809out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800810 cryptd_hash_complete(req, err);
Herbert Xu6fba00d2009-07-22 11:10:22 +0800811}
812
813static int cryptd_hash_finup_enqueue(struct ahash_request *req)
814{
815 return cryptd_hash_enqueue(req, cryptd_hash_finup);
816}
817
Loc Hob8a28252008-05-14 21:23:00 +0800818static void cryptd_hash_digest(struct crypto_async_request *req_async, int err)
819{
Herbert Xu46309d82009-07-12 21:38:59 +0800820 struct cryptd_hash_ctx *ctx = crypto_tfm_ctx(req_async->tfm);
821 struct crypto_shash *child = ctx->child;
822 struct ahash_request *req = ahash_request_cast(req_async);
823 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
824 struct shash_desc *desc = &rctx->desc;
Loc Hob8a28252008-05-14 21:23:00 +0800825
826 if (unlikely(err == -EINPROGRESS))
827 goto out;
828
Herbert Xu46309d82009-07-12 21:38:59 +0800829 desc->tfm = child;
830 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Loc Hob8a28252008-05-14 21:23:00 +0800831
Herbert Xu46309d82009-07-12 21:38:59 +0800832 err = shash_ahash_digest(req, desc);
Loc Hob8a28252008-05-14 21:23:00 +0800833
834 req->base.complete = rctx->complete;
835
836out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800837 cryptd_hash_complete(req, err);
Loc Hob8a28252008-05-14 21:23:00 +0800838}
839
840static int cryptd_hash_digest_enqueue(struct ahash_request *req)
841{
842 return cryptd_hash_enqueue(req, cryptd_hash_digest);
843}
844
Herbert Xu6fba00d2009-07-22 11:10:22 +0800845static int cryptd_hash_export(struct ahash_request *req, void *out)
846{
847 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
848
849 return crypto_shash_export(&rctx->desc, out);
850}
851
852static int cryptd_hash_import(struct ahash_request *req, const void *in)
853{
Ard Biesheuvel0bd22232016-09-01 14:25:43 +0100854 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
855 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(tfm);
856 struct shash_desc *desc = cryptd_shash_desc(req);
Herbert Xu6fba00d2009-07-22 11:10:22 +0800857
Ard Biesheuvel0bd22232016-09-01 14:25:43 +0100858 desc->tfm = ctx->child;
859 desc->flags = req->base.flags;
860
861 return crypto_shash_import(desc, in);
Herbert Xu6fba00d2009-07-22 11:10:22 +0800862}
863
Herbert Xu9cd899a2009-07-14 18:45:45 +0800864static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb,
865 struct cryptd_queue *queue)
Loc Hob8a28252008-05-14 21:23:00 +0800866{
Herbert Xu46309d82009-07-12 21:38:59 +0800867 struct hashd_instance_ctx *ctx;
Herbert Xu0b535ad2009-07-14 19:11:32 +0800868 struct ahash_instance *inst;
Herbert Xu46309d82009-07-12 21:38:59 +0800869 struct shash_alg *salg;
Loc Hob8a28252008-05-14 21:23:00 +0800870 struct crypto_alg *alg;
Stephan Mueller466a7b92015-03-30 21:57:06 +0200871 u32 type = 0;
872 u32 mask = 0;
Herbert Xu46309d82009-07-12 21:38:59 +0800873 int err;
Loc Hob8a28252008-05-14 21:23:00 +0800874
Stephan Mueller466a7b92015-03-30 21:57:06 +0200875 cryptd_check_internal(tb, &type, &mask);
876
877 salg = shash_attr_alg(tb[1], type, mask);
Herbert Xu46309d82009-07-12 21:38:59 +0800878 if (IS_ERR(salg))
Herbert Xu9cd899a2009-07-14 18:45:45 +0800879 return PTR_ERR(salg);
Loc Hob8a28252008-05-14 21:23:00 +0800880
Herbert Xu46309d82009-07-12 21:38:59 +0800881 alg = &salg->base;
Herbert Xu0b535ad2009-07-14 19:11:32 +0800882 inst = cryptd_alloc_instance(alg, ahash_instance_headroom(),
883 sizeof(*ctx));
Steffen Klassert05ed8752009-07-15 16:51:04 +0800884 err = PTR_ERR(inst);
Loc Hob8a28252008-05-14 21:23:00 +0800885 if (IS_ERR(inst))
886 goto out_put_alg;
887
Herbert Xu0b535ad2009-07-14 19:11:32 +0800888 ctx = ahash_instance_ctx(inst);
Herbert Xu46309d82009-07-12 21:38:59 +0800889 ctx->queue = queue;
890
Herbert Xu0b535ad2009-07-14 19:11:32 +0800891 err = crypto_init_shash_spawn(&ctx->spawn, salg,
892 ahash_crypto_instance(inst));
Herbert Xu46309d82009-07-12 21:38:59 +0800893 if (err)
894 goto out_free_inst;
895
Stephan Mueller466a7b92015-03-30 21:57:06 +0200896 type = CRYPTO_ALG_ASYNC;
897 if (alg->cra_flags & CRYPTO_ALG_INTERNAL)
898 type |= CRYPTO_ALG_INTERNAL;
899 inst->alg.halg.base.cra_flags = type;
Loc Hob8a28252008-05-14 21:23:00 +0800900
Herbert Xu0b535ad2009-07-14 19:11:32 +0800901 inst->alg.halg.digestsize = salg->digestsize;
Wang, Rui Y1a078342015-11-29 22:45:34 +0800902 inst->alg.halg.statesize = salg->statesize;
Herbert Xu0b535ad2009-07-14 19:11:32 +0800903 inst->alg.halg.base.cra_ctxsize = sizeof(struct cryptd_hash_ctx);
Loc Hob8a28252008-05-14 21:23:00 +0800904
Herbert Xu0b535ad2009-07-14 19:11:32 +0800905 inst->alg.halg.base.cra_init = cryptd_hash_init_tfm;
906 inst->alg.halg.base.cra_exit = cryptd_hash_exit_tfm;
Loc Hob8a28252008-05-14 21:23:00 +0800907
Herbert Xu0b535ad2009-07-14 19:11:32 +0800908 inst->alg.init = cryptd_hash_init_enqueue;
909 inst->alg.update = cryptd_hash_update_enqueue;
910 inst->alg.final = cryptd_hash_final_enqueue;
Herbert Xu6fba00d2009-07-22 11:10:22 +0800911 inst->alg.finup = cryptd_hash_finup_enqueue;
912 inst->alg.export = cryptd_hash_export;
913 inst->alg.import = cryptd_hash_import;
Herbert Xu0b535ad2009-07-14 19:11:32 +0800914 inst->alg.setkey = cryptd_hash_setkey;
915 inst->alg.digest = cryptd_hash_digest_enqueue;
Loc Hob8a28252008-05-14 21:23:00 +0800916
Herbert Xu0b535ad2009-07-14 19:11:32 +0800917 err = ahash_register_instance(tmpl, inst);
Herbert Xu9cd899a2009-07-14 18:45:45 +0800918 if (err) {
919 crypto_drop_shash(&ctx->spawn);
920out_free_inst:
921 kfree(inst);
922 }
923
Loc Hob8a28252008-05-14 21:23:00 +0800924out_put_alg:
925 crypto_mod_put(alg);
Herbert Xu9cd899a2009-07-14 18:45:45 +0800926 return err;
Loc Hob8a28252008-05-14 21:23:00 +0800927}
928
Herbert Xu92b98762015-05-28 22:08:01 +0800929static int cryptd_aead_setkey(struct crypto_aead *parent,
930 const u8 *key, unsigned int keylen)
931{
932 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
933 struct crypto_aead *child = ctx->child;
934
935 return crypto_aead_setkey(child, key, keylen);
936}
937
938static int cryptd_aead_setauthsize(struct crypto_aead *parent,
939 unsigned int authsize)
940{
941 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(parent);
942 struct crypto_aead *child = ctx->child;
943
944 return crypto_aead_setauthsize(child, authsize);
945}
946
Adrian Hoban298c9262010-09-20 16:05:12 +0800947static void cryptd_aead_crypt(struct aead_request *req,
948 struct crypto_aead *child,
949 int err,
950 int (*crypt)(struct aead_request *req))
951{
952 struct cryptd_aead_request_ctx *rctx;
Herbert Xu81760ea2016-06-21 16:55:13 +0800953 struct cryptd_aead_ctx *ctx;
Herbert Xuec9f2002015-07-06 19:11:03 +0800954 crypto_completion_t compl;
Herbert Xu81760ea2016-06-21 16:55:13 +0800955 struct crypto_aead *tfm;
956 int refcnt;
Herbert Xuec9f2002015-07-06 19:11:03 +0800957
Adrian Hoban298c9262010-09-20 16:05:12 +0800958 rctx = aead_request_ctx(req);
Herbert Xuec9f2002015-07-06 19:11:03 +0800959 compl = rctx->complete;
Adrian Hoban298c9262010-09-20 16:05:12 +0800960
Herbert Xu31bd44e2016-08-25 16:49:51 +0800961 tfm = crypto_aead_reqtfm(req);
962
Adrian Hoban298c9262010-09-20 16:05:12 +0800963 if (unlikely(err == -EINPROGRESS))
964 goto out;
965 aead_request_set_tfm(req, child);
966 err = crypt( req );
Herbert Xu81760ea2016-06-21 16:55:13 +0800967
Adrian Hoban298c9262010-09-20 16:05:12 +0800968out:
Herbert Xu81760ea2016-06-21 16:55:13 +0800969 ctx = crypto_aead_ctx(tfm);
970 refcnt = atomic_read(&ctx->refcnt);
971
Adrian Hoban298c9262010-09-20 16:05:12 +0800972 local_bh_disable();
Herbert Xuec9f2002015-07-06 19:11:03 +0800973 compl(&req->base, err);
Adrian Hoban298c9262010-09-20 16:05:12 +0800974 local_bh_enable();
Herbert Xu81760ea2016-06-21 16:55:13 +0800975
976 if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
977 crypto_free_aead(tfm);
Adrian Hoban298c9262010-09-20 16:05:12 +0800978}
979
980static void cryptd_aead_encrypt(struct crypto_async_request *areq, int err)
981{
982 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
983 struct crypto_aead *child = ctx->child;
984 struct aead_request *req;
985
986 req = container_of(areq, struct aead_request, base);
Herbert Xuba3749a2015-08-13 17:29:02 +0800987 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->encrypt);
Adrian Hoban298c9262010-09-20 16:05:12 +0800988}
989
990static void cryptd_aead_decrypt(struct crypto_async_request *areq, int err)
991{
992 struct cryptd_aead_ctx *ctx = crypto_tfm_ctx(areq->tfm);
993 struct crypto_aead *child = ctx->child;
994 struct aead_request *req;
995
996 req = container_of(areq, struct aead_request, base);
Herbert Xuba3749a2015-08-13 17:29:02 +0800997 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->decrypt);
Adrian Hoban298c9262010-09-20 16:05:12 +0800998}
999
1000static int cryptd_aead_enqueue(struct aead_request *req,
Mark Rustad3e3dc252014-07-25 02:53:38 -07001001 crypto_completion_t compl)
Adrian Hoban298c9262010-09-20 16:05:12 +08001002{
1003 struct cryptd_aead_request_ctx *rctx = aead_request_ctx(req);
1004 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1005 struct cryptd_queue *queue = cryptd_get_queue(crypto_aead_tfm(tfm));
1006
1007 rctx->complete = req->base.complete;
Mark Rustad3e3dc252014-07-25 02:53:38 -07001008 req->base.complete = compl;
Adrian Hoban298c9262010-09-20 16:05:12 +08001009 return cryptd_enqueue_request(queue, &req->base);
1010}
1011
1012static int cryptd_aead_encrypt_enqueue(struct aead_request *req)
1013{
1014 return cryptd_aead_enqueue(req, cryptd_aead_encrypt );
1015}
1016
1017static int cryptd_aead_decrypt_enqueue(struct aead_request *req)
1018{
1019 return cryptd_aead_enqueue(req, cryptd_aead_decrypt );
1020}
1021
Herbert Xuf614e542015-05-28 22:08:04 +08001022static int cryptd_aead_init_tfm(struct crypto_aead *tfm)
Adrian Hoban298c9262010-09-20 16:05:12 +08001023{
Herbert Xuf614e542015-05-28 22:08:04 +08001024 struct aead_instance *inst = aead_alg_instance(tfm);
1025 struct aead_instance_ctx *ictx = aead_instance_ctx(inst);
Adrian Hoban298c9262010-09-20 16:05:12 +08001026 struct crypto_aead_spawn *spawn = &ictx->aead_spawn;
Herbert Xuf614e542015-05-28 22:08:04 +08001027 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
Adrian Hoban298c9262010-09-20 16:05:12 +08001028 struct crypto_aead *cipher;
1029
1030 cipher = crypto_spawn_aead(spawn);
1031 if (IS_ERR(cipher))
1032 return PTR_ERR(cipher);
1033
Adrian Hoban298c9262010-09-20 16:05:12 +08001034 ctx->child = cipher;
Herbert Xuec9f2002015-07-06 19:11:03 +08001035 crypto_aead_set_reqsize(
1036 tfm, max((unsigned)sizeof(struct cryptd_aead_request_ctx),
1037 crypto_aead_reqsize(cipher)));
Adrian Hoban298c9262010-09-20 16:05:12 +08001038 return 0;
1039}
1040
Herbert Xuf614e542015-05-28 22:08:04 +08001041static void cryptd_aead_exit_tfm(struct crypto_aead *tfm)
Adrian Hoban298c9262010-09-20 16:05:12 +08001042{
Herbert Xuf614e542015-05-28 22:08:04 +08001043 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(tfm);
Adrian Hoban298c9262010-09-20 16:05:12 +08001044 crypto_free_aead(ctx->child);
1045}
1046
1047static int cryptd_create_aead(struct crypto_template *tmpl,
1048 struct rtattr **tb,
1049 struct cryptd_queue *queue)
1050{
1051 struct aead_instance_ctx *ctx;
Herbert Xuf614e542015-05-28 22:08:04 +08001052 struct aead_instance *inst;
1053 struct aead_alg *alg;
Herbert Xu9b8c4562015-05-21 15:10:57 +08001054 const char *name;
1055 u32 type = 0;
Herbert Xuec9f2002015-07-06 19:11:03 +08001056 u32 mask = CRYPTO_ALG_ASYNC;
Adrian Hoban298c9262010-09-20 16:05:12 +08001057 int err;
1058
Stephan Mueller466a7b92015-03-30 21:57:06 +02001059 cryptd_check_internal(tb, &type, &mask);
1060
Herbert Xu9b8c4562015-05-21 15:10:57 +08001061 name = crypto_attr_alg_name(tb[1]);
1062 if (IS_ERR(name))
1063 return PTR_ERR(name);
Adrian Hoban298c9262010-09-20 16:05:12 +08001064
Herbert Xu9b8c4562015-05-21 15:10:57 +08001065 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
1066 if (!inst)
1067 return -ENOMEM;
Adrian Hoban298c9262010-09-20 16:05:12 +08001068
Herbert Xuf614e542015-05-28 22:08:04 +08001069 ctx = aead_instance_ctx(inst);
Adrian Hoban298c9262010-09-20 16:05:12 +08001070 ctx->queue = queue;
1071
Herbert Xuf614e542015-05-28 22:08:04 +08001072 crypto_set_aead_spawn(&ctx->aead_spawn, aead_crypto_instance(inst));
Herbert Xu9b8c4562015-05-21 15:10:57 +08001073 err = crypto_grab_aead(&ctx->aead_spawn, name, type, mask);
Adrian Hoban298c9262010-09-20 16:05:12 +08001074 if (err)
1075 goto out_free_inst;
1076
Herbert Xuf614e542015-05-28 22:08:04 +08001077 alg = crypto_spawn_aead_alg(&ctx->aead_spawn);
1078 err = cryptd_init_instance(aead_crypto_instance(inst), &alg->base);
Herbert Xu9b8c4562015-05-21 15:10:57 +08001079 if (err)
1080 goto out_drop_aead;
1081
Herbert Xuf614e542015-05-28 22:08:04 +08001082 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC |
Herbert Xu5e4b8c12015-08-13 17:29:06 +08001083 (alg->base.cra_flags & CRYPTO_ALG_INTERNAL);
Herbert Xuf614e542015-05-28 22:08:04 +08001084 inst->alg.base.cra_ctxsize = sizeof(struct cryptd_aead_ctx);
Adrian Hoban298c9262010-09-20 16:05:12 +08001085
Herbert Xuf614e542015-05-28 22:08:04 +08001086 inst->alg.ivsize = crypto_aead_alg_ivsize(alg);
1087 inst->alg.maxauthsize = crypto_aead_alg_maxauthsize(alg);
1088
1089 inst->alg.init = cryptd_aead_init_tfm;
1090 inst->alg.exit = cryptd_aead_exit_tfm;
1091 inst->alg.setkey = cryptd_aead_setkey;
1092 inst->alg.setauthsize = cryptd_aead_setauthsize;
1093 inst->alg.encrypt = cryptd_aead_encrypt_enqueue;
1094 inst->alg.decrypt = cryptd_aead_decrypt_enqueue;
1095
1096 err = aead_register_instance(tmpl, inst);
Adrian Hoban298c9262010-09-20 16:05:12 +08001097 if (err) {
Herbert Xu9b8c4562015-05-21 15:10:57 +08001098out_drop_aead:
1099 crypto_drop_aead(&ctx->aead_spawn);
Adrian Hoban298c9262010-09-20 16:05:12 +08001100out_free_inst:
1101 kfree(inst);
1102 }
Adrian Hoban298c9262010-09-20 16:05:12 +08001103 return err;
1104}
1105
Huang Ying254eff72009-02-19 14:42:19 +08001106static struct cryptd_queue queue;
Herbert Xu124b53d2007-04-16 20:49:20 +10001107
Herbert Xu9cd899a2009-07-14 18:45:45 +08001108static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb)
Herbert Xu124b53d2007-04-16 20:49:20 +10001109{
1110 struct crypto_attr_type *algt;
1111
1112 algt = crypto_get_attr_type(tb);
1113 if (IS_ERR(algt))
Herbert Xu9cd899a2009-07-14 18:45:45 +08001114 return PTR_ERR(algt);
Herbert Xu124b53d2007-04-16 20:49:20 +10001115
1116 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) {
1117 case CRYPTO_ALG_TYPE_BLKCIPHER:
Herbert Xu4e0958d2016-11-22 20:08:23 +08001118 if ((algt->type & CRYPTO_ALG_TYPE_MASK) ==
1119 CRYPTO_ALG_TYPE_BLKCIPHER)
1120 return cryptd_create_blkcipher(tmpl, tb, &queue);
1121
1122 return cryptd_create_skcipher(tmpl, tb, &queue);
Loc Hob8a28252008-05-14 21:23:00 +08001123 case CRYPTO_ALG_TYPE_DIGEST:
Herbert Xu9cd899a2009-07-14 18:45:45 +08001124 return cryptd_create_hash(tmpl, tb, &queue);
Adrian Hoban298c9262010-09-20 16:05:12 +08001125 case CRYPTO_ALG_TYPE_AEAD:
1126 return cryptd_create_aead(tmpl, tb, &queue);
Herbert Xu124b53d2007-04-16 20:49:20 +10001127 }
1128
Herbert Xu9cd899a2009-07-14 18:45:45 +08001129 return -EINVAL;
Herbert Xu124b53d2007-04-16 20:49:20 +10001130}
1131
1132static void cryptd_free(struct crypto_instance *inst)
1133{
1134 struct cryptd_instance_ctx *ctx = crypto_instance_ctx(inst);
Herbert Xu0b535ad2009-07-14 19:11:32 +08001135 struct hashd_instance_ctx *hctx = crypto_instance_ctx(inst);
Adrian Hoban298c9262010-09-20 16:05:12 +08001136 struct aead_instance_ctx *aead_ctx = crypto_instance_ctx(inst);
Herbert Xu0b535ad2009-07-14 19:11:32 +08001137
1138 switch (inst->alg.cra_flags & CRYPTO_ALG_TYPE_MASK) {
1139 case CRYPTO_ALG_TYPE_AHASH:
1140 crypto_drop_shash(&hctx->spawn);
1141 kfree(ahash_instance(inst));
1142 return;
Adrian Hoban298c9262010-09-20 16:05:12 +08001143 case CRYPTO_ALG_TYPE_AEAD:
Herbert Xuf614e542015-05-28 22:08:04 +08001144 crypto_drop_aead(&aead_ctx->aead_spawn);
1145 kfree(aead_instance(inst));
Adrian Hoban298c9262010-09-20 16:05:12 +08001146 return;
1147 default:
1148 crypto_drop_spawn(&ctx->spawn);
1149 kfree(inst);
Herbert Xu0b535ad2009-07-14 19:11:32 +08001150 }
Herbert Xu124b53d2007-04-16 20:49:20 +10001151}
1152
1153static struct crypto_template cryptd_tmpl = {
1154 .name = "cryptd",
Herbert Xu9cd899a2009-07-14 18:45:45 +08001155 .create = cryptd_create,
Herbert Xu124b53d2007-04-16 20:49:20 +10001156 .free = cryptd_free,
1157 .module = THIS_MODULE,
1158};
1159
Huang Ying1cac2cb2009-01-18 16:19:46 +11001160struct cryptd_ablkcipher *cryptd_alloc_ablkcipher(const char *alg_name,
1161 u32 type, u32 mask)
1162{
1163 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
Herbert Xu81760ea2016-06-21 16:55:13 +08001164 struct cryptd_blkcipher_ctx *ctx;
Huang Ying505fd212009-03-29 15:33:53 +08001165 struct crypto_tfm *tfm;
Huang Ying1cac2cb2009-01-18 16:19:46 +11001166
1167 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1168 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1169 return ERR_PTR(-EINVAL);
Alexander Kuleshovc012a792015-11-25 23:48:28 +06001170 type = crypto_skcipher_type(type);
Huang Ying505fd212009-03-29 15:33:53 +08001171 mask &= ~CRYPTO_ALG_TYPE_MASK;
1172 mask |= (CRYPTO_ALG_GENIV | CRYPTO_ALG_TYPE_BLKCIPHER_MASK);
1173 tfm = crypto_alloc_base(cryptd_alg_name, type, mask);
Huang Ying1cac2cb2009-01-18 16:19:46 +11001174 if (IS_ERR(tfm))
1175 return ERR_CAST(tfm);
Huang Ying505fd212009-03-29 15:33:53 +08001176 if (tfm->__crt_alg->cra_module != THIS_MODULE) {
1177 crypto_free_tfm(tfm);
Huang Ying1cac2cb2009-01-18 16:19:46 +11001178 return ERR_PTR(-EINVAL);
1179 }
1180
Herbert Xu81760ea2016-06-21 16:55:13 +08001181 ctx = crypto_tfm_ctx(tfm);
1182 atomic_set(&ctx->refcnt, 1);
1183
Huang Ying505fd212009-03-29 15:33:53 +08001184 return __cryptd_ablkcipher_cast(__crypto_ablkcipher_cast(tfm));
Huang Ying1cac2cb2009-01-18 16:19:46 +11001185}
1186EXPORT_SYMBOL_GPL(cryptd_alloc_ablkcipher);
1187
1188struct crypto_blkcipher *cryptd_ablkcipher_child(struct cryptd_ablkcipher *tfm)
1189{
1190 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1191 return ctx->child;
1192}
1193EXPORT_SYMBOL_GPL(cryptd_ablkcipher_child);
1194
Herbert Xu81760ea2016-06-21 16:55:13 +08001195bool cryptd_ablkcipher_queued(struct cryptd_ablkcipher *tfm)
1196{
1197 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1198
1199 return atomic_read(&ctx->refcnt) - 1;
1200}
1201EXPORT_SYMBOL_GPL(cryptd_ablkcipher_queued);
1202
Huang Ying1cac2cb2009-01-18 16:19:46 +11001203void cryptd_free_ablkcipher(struct cryptd_ablkcipher *tfm)
1204{
Herbert Xu81760ea2016-06-21 16:55:13 +08001205 struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
1206
1207 if (atomic_dec_and_test(&ctx->refcnt))
1208 crypto_free_ablkcipher(&tfm->base);
Huang Ying1cac2cb2009-01-18 16:19:46 +11001209}
1210EXPORT_SYMBOL_GPL(cryptd_free_ablkcipher);
1211
Herbert Xu4e0958d2016-11-22 20:08:23 +08001212struct cryptd_skcipher *cryptd_alloc_skcipher(const char *alg_name,
1213 u32 type, u32 mask)
1214{
1215 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
1216 struct cryptd_skcipher_ctx *ctx;
1217 struct crypto_skcipher *tfm;
1218
1219 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1220 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1221 return ERR_PTR(-EINVAL);
1222
1223 tfm = crypto_alloc_skcipher(cryptd_alg_name, type, mask);
1224 if (IS_ERR(tfm))
1225 return ERR_CAST(tfm);
1226
1227 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1228 crypto_free_skcipher(tfm);
1229 return ERR_PTR(-EINVAL);
1230 }
1231
1232 ctx = crypto_skcipher_ctx(tfm);
1233 atomic_set(&ctx->refcnt, 1);
1234
1235 return container_of(tfm, struct cryptd_skcipher, base);
1236}
1237EXPORT_SYMBOL_GPL(cryptd_alloc_skcipher);
1238
1239struct crypto_skcipher *cryptd_skcipher_child(struct cryptd_skcipher *tfm)
1240{
1241 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1242
1243 return ctx->child;
1244}
1245EXPORT_SYMBOL_GPL(cryptd_skcipher_child);
1246
1247bool cryptd_skcipher_queued(struct cryptd_skcipher *tfm)
1248{
1249 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1250
1251 return atomic_read(&ctx->refcnt) - 1;
1252}
1253EXPORT_SYMBOL_GPL(cryptd_skcipher_queued);
1254
1255void cryptd_free_skcipher(struct cryptd_skcipher *tfm)
1256{
1257 struct cryptd_skcipher_ctx *ctx = crypto_skcipher_ctx(&tfm->base);
1258
1259 if (atomic_dec_and_test(&ctx->refcnt))
1260 crypto_free_skcipher(&tfm->base);
1261}
1262EXPORT_SYMBOL_GPL(cryptd_free_skcipher);
1263
Huang Yingace13662009-08-06 15:35:20 +10001264struct cryptd_ahash *cryptd_alloc_ahash(const char *alg_name,
1265 u32 type, u32 mask)
1266{
1267 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
Herbert Xu81760ea2016-06-21 16:55:13 +08001268 struct cryptd_hash_ctx *ctx;
Huang Yingace13662009-08-06 15:35:20 +10001269 struct crypto_ahash *tfm;
1270
1271 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1272 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1273 return ERR_PTR(-EINVAL);
1274 tfm = crypto_alloc_ahash(cryptd_alg_name, type, mask);
1275 if (IS_ERR(tfm))
1276 return ERR_CAST(tfm);
1277 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1278 crypto_free_ahash(tfm);
1279 return ERR_PTR(-EINVAL);
1280 }
1281
Herbert Xu81760ea2016-06-21 16:55:13 +08001282 ctx = crypto_ahash_ctx(tfm);
1283 atomic_set(&ctx->refcnt, 1);
1284
Huang Yingace13662009-08-06 15:35:20 +10001285 return __cryptd_ahash_cast(tfm);
1286}
1287EXPORT_SYMBOL_GPL(cryptd_alloc_ahash);
1288
1289struct crypto_shash *cryptd_ahash_child(struct cryptd_ahash *tfm)
1290{
1291 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1292
1293 return ctx->child;
1294}
1295EXPORT_SYMBOL_GPL(cryptd_ahash_child);
1296
Huang Ying0e1227d2009-10-19 11:53:06 +09001297struct shash_desc *cryptd_shash_desc(struct ahash_request *req)
1298{
1299 struct cryptd_hash_request_ctx *rctx = ahash_request_ctx(req);
1300 return &rctx->desc;
1301}
1302EXPORT_SYMBOL_GPL(cryptd_shash_desc);
1303
Herbert Xu81760ea2016-06-21 16:55:13 +08001304bool cryptd_ahash_queued(struct cryptd_ahash *tfm)
1305{
1306 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1307
1308 return atomic_read(&ctx->refcnt) - 1;
1309}
1310EXPORT_SYMBOL_GPL(cryptd_ahash_queued);
1311
Huang Yingace13662009-08-06 15:35:20 +10001312void cryptd_free_ahash(struct cryptd_ahash *tfm)
1313{
Herbert Xu81760ea2016-06-21 16:55:13 +08001314 struct cryptd_hash_ctx *ctx = crypto_ahash_ctx(&tfm->base);
1315
1316 if (atomic_dec_and_test(&ctx->refcnt))
1317 crypto_free_ahash(&tfm->base);
Huang Yingace13662009-08-06 15:35:20 +10001318}
1319EXPORT_SYMBOL_GPL(cryptd_free_ahash);
1320
Adrian Hoban298c9262010-09-20 16:05:12 +08001321struct cryptd_aead *cryptd_alloc_aead(const char *alg_name,
1322 u32 type, u32 mask)
1323{
1324 char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
Herbert Xu81760ea2016-06-21 16:55:13 +08001325 struct cryptd_aead_ctx *ctx;
Adrian Hoban298c9262010-09-20 16:05:12 +08001326 struct crypto_aead *tfm;
1327
1328 if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
1329 "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
1330 return ERR_PTR(-EINVAL);
1331 tfm = crypto_alloc_aead(cryptd_alg_name, type, mask);
1332 if (IS_ERR(tfm))
1333 return ERR_CAST(tfm);
1334 if (tfm->base.__crt_alg->cra_module != THIS_MODULE) {
1335 crypto_free_aead(tfm);
1336 return ERR_PTR(-EINVAL);
1337 }
Herbert Xu81760ea2016-06-21 16:55:13 +08001338
1339 ctx = crypto_aead_ctx(tfm);
1340 atomic_set(&ctx->refcnt, 1);
1341
Adrian Hoban298c9262010-09-20 16:05:12 +08001342 return __cryptd_aead_cast(tfm);
1343}
1344EXPORT_SYMBOL_GPL(cryptd_alloc_aead);
1345
1346struct crypto_aead *cryptd_aead_child(struct cryptd_aead *tfm)
1347{
1348 struct cryptd_aead_ctx *ctx;
1349 ctx = crypto_aead_ctx(&tfm->base);
1350 return ctx->child;
1351}
1352EXPORT_SYMBOL_GPL(cryptd_aead_child);
1353
Herbert Xu81760ea2016-06-21 16:55:13 +08001354bool cryptd_aead_queued(struct cryptd_aead *tfm)
1355{
1356 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1357
1358 return atomic_read(&ctx->refcnt) - 1;
1359}
1360EXPORT_SYMBOL_GPL(cryptd_aead_queued);
1361
Adrian Hoban298c9262010-09-20 16:05:12 +08001362void cryptd_free_aead(struct cryptd_aead *tfm)
1363{
Herbert Xu81760ea2016-06-21 16:55:13 +08001364 struct cryptd_aead_ctx *ctx = crypto_aead_ctx(&tfm->base);
1365
1366 if (atomic_dec_and_test(&ctx->refcnt))
1367 crypto_free_aead(&tfm->base);
Adrian Hoban298c9262010-09-20 16:05:12 +08001368}
1369EXPORT_SYMBOL_GPL(cryptd_free_aead);
1370
Herbert Xu124b53d2007-04-16 20:49:20 +10001371static int __init cryptd_init(void)
1372{
1373 int err;
1374
Huang Ying254eff72009-02-19 14:42:19 +08001375 err = cryptd_init_queue(&queue, CRYPTD_MAX_CPU_QLEN);
Herbert Xu124b53d2007-04-16 20:49:20 +10001376 if (err)
1377 return err;
1378
1379 err = crypto_register_template(&cryptd_tmpl);
1380 if (err)
Huang Ying254eff72009-02-19 14:42:19 +08001381 cryptd_fini_queue(&queue);
Herbert Xu124b53d2007-04-16 20:49:20 +10001382
1383 return err;
1384}
1385
1386static void __exit cryptd_exit(void)
1387{
Huang Ying254eff72009-02-19 14:42:19 +08001388 cryptd_fini_queue(&queue);
Herbert Xu124b53d2007-04-16 20:49:20 +10001389 crypto_unregister_template(&cryptd_tmpl);
1390}
1391
Herbert Xub2bac6a2011-08-19 16:11:23 +08001392subsys_initcall(cryptd_init);
Herbert Xu124b53d2007-04-16 20:49:20 +10001393module_exit(cryptd_exit);
1394
1395MODULE_LICENSE("GPL");
1396MODULE_DESCRIPTION("Software async crypto daemon");
Kees Cook4943ba12014-11-24 16:32:38 -08001397MODULE_ALIAS_CRYPTO("cryptd");