blob: 7d71a9b10e5fdade6aa6389cc38f84771953ff07 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Scatterlist Cryptographic API.
4 *
5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
Herbert Xu5cb1454b2005-11-05 16:58:14 +11007 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
John Anthony Kazos Jr991d1742007-10-19 23:06:17 +020010 * and Nettle, by Niels Möller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Jesper Juhla61cc442005-07-06 13:54:31 -070012
Herbert Xu6bfd4802006-09-21 11:39:29 +100013#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
Herbert Xu5cb1454b2005-11-05 16:58:14 +110015#include <linux/kernel.h>
Adrian Bunk176c3652005-07-06 13:53:09 -070016#include <linux/kmod.h>
Herbert Xu2b8c19d2006-09-21 11:31:44 +100017#include <linux/module.h>
Herbert Xu28259822006-08-06 21:23:26 +100018#include <linux/param.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010019#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
Herbert Xu5cb1454b2005-11-05 16:58:14 +110021#include <linux/string.h>
Gilad Ben-Yossefada69a12017-10-18 08:00:38 +010022#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "internal.h"
24
25LIST_HEAD(crypto_alg_list);
Herbert Xucce9e062006-08-21 21:08:13 +100026EXPORT_SYMBOL_GPL(crypto_alg_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027DECLARE_RWSEM(crypto_alg_sem);
Herbert Xucce9e062006-08-21 21:08:13 +100028EXPORT_SYMBOL_GPL(crypto_alg_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Herbert Xu28259822006-08-06 21:23:26 +100030BLOCKING_NOTIFIER_HEAD(crypto_chain);
31EXPORT_SYMBOL_GPL(crypto_chain);
32
Herbert Xu77dbd7a2013-09-08 14:33:50 +100033static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg);
34
Herbert Xu28259822006-08-06 21:23:26 +100035struct crypto_alg *crypto_mod_get(struct crypto_alg *alg)
Herbert Xu6521f302006-08-06 20:28:44 +100036{
37 return try_module_get(alg->cra_module) ? crypto_alg_get(alg) : NULL;
38}
Herbert Xu28259822006-08-06 21:23:26 +100039EXPORT_SYMBOL_GPL(crypto_mod_get);
Herbert Xu6521f302006-08-06 20:28:44 +100040
Herbert Xu28259822006-08-06 21:23:26 +100041void crypto_mod_put(struct crypto_alg *alg)
Herbert Xu6521f302006-08-06 20:28:44 +100042{
Herbert Xuda7cd592007-05-19 14:51:00 +100043 struct module *module = alg->cra_module;
44
Herbert Xu6521f302006-08-06 20:28:44 +100045 crypto_alg_put(alg);
Herbert Xuda7cd592007-05-19 14:51:00 +100046 module_put(module);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
Herbert Xu28259822006-08-06 21:23:26 +100048EXPORT_SYMBOL_GPL(crypto_mod_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Herbert Xu73d38642008-08-03 21:15:23 +080050static inline int crypto_is_test_larval(struct crypto_larval *larval)
51{
52 return larval->alg.cra_driver_name[0];
53}
54
Herbert Xuc51b6c82008-08-04 11:44:59 +080055static struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type,
56 u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 struct crypto_alg *q, *alg = NULL;
Herbert Xu28259822006-08-06 21:23:26 +100059 int best = -2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 list_for_each_entry(q, &crypto_alg_list, cra_list) {
Herbert Xu5cb1454b2005-11-05 16:58:14 +110062 int exact, fuzzy;
63
Herbert Xu6bfd4802006-09-21 11:39:29 +100064 if (crypto_is_moribund(q))
65 continue;
66
Herbert Xu492e2b62006-09-21 11:35:17 +100067 if ((q->cra_flags ^ type) & mask)
68 continue;
69
70 if (crypto_is_larval(q) &&
Herbert Xu73d38642008-08-03 21:15:23 +080071 !crypto_is_test_larval((struct crypto_larval *)q) &&
Herbert Xu492e2b62006-09-21 11:35:17 +100072 ((struct crypto_larval *)q)->mask != mask)
73 continue;
74
Herbert Xu5cb1454b2005-11-05 16:58:14 +110075 exact = !strcmp(q->cra_driver_name, name);
76 fuzzy = !strcmp(q->cra_name, name);
77 if (!exact && !(fuzzy && q->cra_priority > best))
78 continue;
79
Herbert Xu72fa4912006-05-28 09:05:24 +100080 if (unlikely(!crypto_mod_get(q)))
Herbert Xu5cb1454b2005-11-05 16:58:14 +110081 continue;
82
83 best = q->cra_priority;
84 if (alg)
Herbert Xu72fa4912006-05-28 09:05:24 +100085 crypto_mod_put(alg);
Herbert Xu5cb1454b2005-11-05 16:58:14 +110086 alg = q;
87
88 if (exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Herbert Xu28259822006-08-06 21:23:26 +100091
92 return alg;
93}
Herbert Xu28259822006-08-06 21:23:26 +100094
95static void crypto_larval_destroy(struct crypto_alg *alg)
96{
97 struct crypto_larval *larval = (void *)alg;
98
99 BUG_ON(!crypto_is_larval(alg));
Herbert Xu2bbb3372019-12-11 10:50:11 +0800100 if (!IS_ERR_OR_NULL(larval->adult))
Herbert Xu28259822006-08-06 21:23:26 +1000101 crypto_mod_put(larval->adult);
102 kfree(larval);
103}
104
Herbert Xu73d38642008-08-03 21:15:23 +0800105struct crypto_larval *crypto_larval_alloc(const char *name, u32 type, u32 mask)
Herbert Xu28259822006-08-06 21:23:26 +1000106{
Herbert Xu28259822006-08-06 21:23:26 +1000107 struct crypto_larval *larval;
108
109 larval = kzalloc(sizeof(*larval), GFP_KERNEL);
110 if (!larval)
Herbert Xu6bfd4802006-09-21 11:39:29 +1000111 return ERR_PTR(-ENOMEM);
Herbert Xu28259822006-08-06 21:23:26 +1000112
Herbert Xu492e2b62006-09-21 11:35:17 +1000113 larval->mask = mask;
114 larval->alg.cra_flags = CRYPTO_ALG_LARVAL | type;
Herbert Xu28259822006-08-06 21:23:26 +1000115 larval->alg.cra_priority = -1;
116 larval->alg.cra_destroy = crypto_larval_destroy;
117
Herbert Xu28259822006-08-06 21:23:26 +1000118 strlcpy(larval->alg.cra_name, name, CRYPTO_MAX_ALG_NAME);
119 init_completion(&larval->completion);
120
Herbert Xu73d38642008-08-03 21:15:23 +0800121 return larval;
122}
123EXPORT_SYMBOL_GPL(crypto_larval_alloc);
124
125static struct crypto_alg *crypto_larval_add(const char *name, u32 type,
126 u32 mask)
127{
128 struct crypto_alg *alg;
129 struct crypto_larval *larval;
130
131 larval = crypto_larval_alloc(name, type, mask);
132 if (IS_ERR(larval))
133 return ERR_CAST(larval);
134
Eric Biggersce8614a2017-12-29 10:00:46 -0600135 refcount_set(&larval->alg.cra_refcnt, 2);
Herbert Xu73d38642008-08-03 21:15:23 +0800136
Herbert Xu28259822006-08-06 21:23:26 +1000137 down_write(&crypto_alg_sem);
Herbert Xu492e2b62006-09-21 11:35:17 +1000138 alg = __crypto_alg_lookup(name, type, mask);
Herbert Xu28259822006-08-06 21:23:26 +1000139 if (!alg) {
140 alg = &larval->alg;
141 list_add(&alg->cra_list, &crypto_alg_list);
142 }
143 up_write(&crypto_alg_sem);
144
Herbert Xu77dbd7a2013-09-08 14:33:50 +1000145 if (alg != &larval->alg) {
Herbert Xu28259822006-08-06 21:23:26 +1000146 kfree(larval);
Herbert Xu77dbd7a2013-09-08 14:33:50 +1000147 if (crypto_is_larval(alg))
148 alg = crypto_larval_wait(alg);
149 }
Herbert Xu28259822006-08-06 21:23:26 +1000150
151 return alg;
152}
153
Herbert Xub9c55aa2007-12-04 12:46:48 +1100154void crypto_larval_kill(struct crypto_alg *alg)
Herbert Xu28259822006-08-06 21:23:26 +1000155{
156 struct crypto_larval *larval = (void *)alg;
157
158 down_write(&crypto_alg_sem);
159 list_del(&alg->cra_list);
160 up_write(&crypto_alg_sem);
Herbert Xufe3c5202007-05-19 17:51:40 +1000161 complete_all(&larval->completion);
Herbert Xu28259822006-08-06 21:23:26 +1000162 crypto_alg_put(alg);
163}
Herbert Xub9c55aa2007-12-04 12:46:48 +1100164EXPORT_SYMBOL_GPL(crypto_larval_kill);
Herbert Xu28259822006-08-06 21:23:26 +1000165
166static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg)
167{
168 struct crypto_larval *larval = (void *)alg;
Herbert Xu73d38642008-08-03 21:15:23 +0800169 long timeout;
Herbert Xu28259822006-08-06 21:23:26 +1000170
Herbert Xu3fc89ad2015-10-19 18:23:57 +0800171 timeout = wait_for_completion_killable_timeout(
Herbert Xu73d38642008-08-03 21:15:23 +0800172 &larval->completion, 60 * HZ);
173
Herbert Xu28259822006-08-06 21:23:26 +1000174 alg = larval->adult;
Herbert Xu73d38642008-08-03 21:15:23 +0800175 if (timeout < 0)
176 alg = ERR_PTR(-EINTR);
177 else if (!timeout)
178 alg = ERR_PTR(-ETIMEDOUT);
179 else if (!alg)
Herbert Xu6bfd4802006-09-21 11:39:29 +1000180 alg = ERR_PTR(-ENOENT);
Herbert Xu2bbb3372019-12-11 10:50:11 +0800181 else if (IS_ERR(alg))
182 ;
Herbert Xu73d38642008-08-03 21:15:23 +0800183 else if (crypto_is_test_larval(larval) &&
184 !(alg->cra_flags & CRYPTO_ALG_TESTED))
185 alg = ERR_PTR(-EAGAIN);
186 else if (!crypto_mod_get(alg))
187 alg = ERR_PTR(-EAGAIN);
Herbert Xu28259822006-08-06 21:23:26 +1000188 crypto_mod_put(&larval->alg);
189
190 return alg;
191}
192
Herbert Xu3ca1e992018-03-20 08:05:39 +0800193static struct crypto_alg *crypto_alg_lookup(const char *name, u32 type,
194 u32 mask)
Herbert Xu28259822006-08-06 21:23:26 +1000195{
196 struct crypto_alg *alg;
Herbert Xueb02c382018-03-20 15:52:45 +0800197 u32 test = 0;
198
199 if (!((type | mask) & CRYPTO_ALG_TESTED))
200 test |= CRYPTO_ALG_TESTED;
Herbert Xu28259822006-08-06 21:23:26 +1000201
Herbert Xu28259822006-08-06 21:23:26 +1000202 down_read(&crypto_alg_sem);
Herbert Xueb02c382018-03-20 15:52:45 +0800203 alg = __crypto_alg_lookup(name, type | test, mask | test);
Eric Biggersb346e492018-04-16 16:59:13 -0700204 if (!alg && test) {
205 alg = __crypto_alg_lookup(name, type, mask);
206 if (alg && !crypto_is_larval(alg)) {
207 /* Test failed */
208 crypto_mod_put(alg);
209 alg = ERR_PTR(-ELIBBAD);
210 }
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 up_read(&crypto_alg_sem);
Herbert Xu28259822006-08-06 21:23:26 +1000213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return alg;
215}
216
Eric Biggerscadc9ab2017-12-07 10:55:59 -0800217static struct crypto_alg *crypto_larval_lookup(const char *name, u32 type,
218 u32 mask)
Adrian Bunk176c3652005-07-06 13:53:09 -0700219{
Herbert Xu28259822006-08-06 21:23:26 +1000220 struct crypto_alg *alg;
Herbert Xu28259822006-08-06 21:23:26 +1000221
Herbert Xu6bfd4802006-09-21 11:39:29 +1000222 if (!name)
223 return ERR_PTR(-ENOENT);
224
Herbert Xu430b4412016-11-22 20:08:21 +0800225 type &= ~(CRYPTO_ALG_LARVAL | CRYPTO_ALG_DEAD);
Herbert Xu6bfd4802006-09-21 11:39:29 +1000226 mask &= ~(CRYPTO_ALG_LARVAL | CRYPTO_ALG_DEAD);
Herbert Xu492e2b62006-09-21 11:35:17 +1000227
Herbert Xua760a662009-02-26 14:06:31 +0800228 alg = crypto_alg_lookup(name, type, mask);
Matthew Garrette2861fa2018-06-08 14:57:42 -0700229 if (!alg && !(mask & CRYPTO_NOLOAD)) {
Kees Cook5d26a102014-11-20 17:05:53 -0800230 request_module("crypto-%s", name);
Herbert Xua760a662009-02-26 14:06:31 +0800231
Herbert Xu37fc3342009-04-21 13:27:16 +0800232 if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask &
Alex Riesenaa07a692009-06-02 14:13:14 +1000233 CRYPTO_ALG_NEED_FALLBACK))
Kees Cook5d26a102014-11-20 17:05:53 -0800234 request_module("crypto-%s-all", name);
Herbert Xua760a662009-02-26 14:06:31 +0800235
236 alg = crypto_alg_lookup(name, type, mask);
237 }
238
Herbert Xueb02c382018-03-20 15:52:45 +0800239 if (!IS_ERR_OR_NULL(alg) && crypto_is_larval(alg))
240 alg = crypto_larval_wait(alg);
241 else if (!alg)
242 alg = crypto_larval_add(name, type, mask);
Herbert Xu28259822006-08-06 21:23:26 +1000243
Herbert Xueb02c382018-03-20 15:52:45 +0800244 return alg;
Herbert Xub9c55aa2007-12-04 12:46:48 +1100245}
Herbert Xub9c55aa2007-12-04 12:46:48 +1100246
Herbert Xu73d38642008-08-03 21:15:23 +0800247int crypto_probing_notify(unsigned long val, void *v)
248{
249 int ok;
250
251 ok = blocking_notifier_call_chain(&crypto_chain, val, v);
252 if (ok == NOTIFY_DONE) {
253 request_module("cryptomgr");
254 ok = blocking_notifier_call_chain(&crypto_chain, val, v);
255 }
256
257 return ok;
258}
259EXPORT_SYMBOL_GPL(crypto_probing_notify);
260
Herbert Xub9c55aa2007-12-04 12:46:48 +1100261struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask)
262{
263 struct crypto_alg *alg;
264 struct crypto_alg *larval;
265 int ok;
266
Stephan Mueller06ca7f62015-03-30 21:55:52 +0200267 /*
268 * If the internal flag is set for a cipher, require a caller to
269 * to invoke the cipher with the internal flag to use that cipher.
270 * Also, if a caller wants to allocate a cipher that may or may
271 * not be an internal cipher, use type | CRYPTO_ALG_INTERNAL and
272 * !(mask & CRYPTO_ALG_INTERNAL).
273 */
274 if (!((type | mask) & CRYPTO_ALG_INTERNAL))
275 mask |= CRYPTO_ALG_INTERNAL;
276
Herbert Xub9c55aa2007-12-04 12:46:48 +1100277 larval = crypto_larval_lookup(name, type, mask);
Herbert Xu6bfd4802006-09-21 11:39:29 +1000278 if (IS_ERR(larval) || !crypto_is_larval(larval))
Herbert Xu28259822006-08-06 21:23:26 +1000279 return larval;
280
Herbert Xu73d38642008-08-03 21:15:23 +0800281 ok = crypto_probing_notify(CRYPTO_MSG_ALG_REQUEST, larval);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000282
283 if (ok == NOTIFY_STOP)
Herbert Xu28259822006-08-06 21:23:26 +1000284 alg = crypto_larval_wait(larval);
285 else {
286 crypto_mod_put(larval);
Herbert Xu6bfd4802006-09-21 11:39:29 +1000287 alg = ERR_PTR(-ENOENT);
Herbert Xu28259822006-08-06 21:23:26 +1000288 }
289 crypto_larval_kill(larval);
290 return alg;
Adrian Bunk176c3652005-07-06 13:53:09 -0700291}
Herbert Xu492e2b62006-09-21 11:35:17 +1000292EXPORT_SYMBOL_GPL(crypto_alg_mod_lookup);
Adrian Bunk176c3652005-07-06 13:53:09 -0700293
Herbert Xu27d2a332007-01-24 20:50:26 +1100294static int crypto_init_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Herbert Xu27d2a332007-01-24 20:50:26 +1100296 const struct crypto_type *type_obj = tfm->__crt_alg->cra_type;
Herbert Xue853c3c2006-08-22 00:06:54 +1000297
Herbert Xu27d2a332007-01-24 20:50:26 +1100298 if (type_obj)
299 return type_obj->init(tfm, type, mask);
Eric Biggerse8cfed52019-12-02 13:42:30 -0800300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303static void crypto_exit_ops(struct crypto_tfm *tfm)
304{
Herbert Xue853c3c2006-08-22 00:06:54 +1000305 const struct crypto_type *type = tfm->__crt_alg->cra_type;
306
Eric Biggers9c8ae172016-10-07 14:13:35 -0700307 if (type && tfm->exit)
308 tfm->exit(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Herbert Xu27d2a332007-01-24 20:50:26 +1100311static unsigned int crypto_ctxsize(struct crypto_alg *alg, u32 type, u32 mask)
Herbert Xufbdae9f2005-07-06 13:53:29 -0700312{
Herbert Xu27d2a332007-01-24 20:50:26 +1100313 const struct crypto_type *type_obj = alg->cra_type;
Herbert Xufbdae9f2005-07-06 13:53:29 -0700314 unsigned int len;
315
Herbert Xue853c3c2006-08-22 00:06:54 +1000316 len = alg->cra_alignmask & ~(crypto_tfm_ctx_alignment() - 1);
Herbert Xu27d2a332007-01-24 20:50:26 +1100317 if (type_obj)
318 return len + type_obj->ctxsize(alg, type, mask);
Herbert Xue853c3c2006-08-22 00:06:54 +1000319
Herbert Xufbdae9f2005-07-06 13:53:29 -0700320 switch (alg->cra_flags & CRYPTO_ALG_TYPE_MASK) {
321 default:
322 BUG();
323
324 case CRYPTO_ALG_TYPE_CIPHER:
Herbert Xuf1ddcaf2007-01-27 10:05:15 +1100325 len += crypto_cipher_ctxsize(alg);
Herbert Xufbdae9f2005-07-06 13:53:29 -0700326 break;
Herbert Xu6941c3a2009-07-12 13:58:04 +0800327
Herbert Xufbdae9f2005-07-06 13:53:29 -0700328 case CRYPTO_ALG_TYPE_COMPRESS:
Herbert Xuf1ddcaf2007-01-27 10:05:15 +1100329 len += crypto_compress_ctxsize(alg);
Herbert Xufbdae9f2005-07-06 13:53:29 -0700330 break;
331 }
332
Herbert Xue853c3c2006-08-22 00:06:54 +1000333 return len;
Herbert Xufbdae9f2005-07-06 13:53:29 -0700334}
335
Herbert Xu73669cc2019-12-07 22:15:15 +0800336static void crypto_shoot_alg(struct crypto_alg *alg)
Herbert Xu6bfd4802006-09-21 11:39:29 +1000337{
338 down_write(&crypto_alg_sem);
339 alg->cra_flags |= CRYPTO_ALG_DYING;
340 up_write(&crypto_alg_sem);
341}
Herbert Xu6bfd4802006-09-21 11:39:29 +1000342
Herbert Xu27d2a332007-01-24 20:50:26 +1100343struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 type,
344 u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct crypto_tfm *tfm = NULL;
Herbert Xufbdae9f2005-07-06 13:53:29 -0700347 unsigned int tfm_size;
Herbert Xu6bfd4802006-09-21 11:39:29 +1000348 int err = -ENOMEM;
Herbert Xufbdae9f2005-07-06 13:53:29 -0700349
Herbert Xu27d2a332007-01-24 20:50:26 +1100350 tfm_size = sizeof(*tfm) + crypto_ctxsize(alg, type, mask);
Eric Sesterhennbbeb563f2006-03-06 21:42:07 +1100351 tfm = kzalloc(tfm_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (tfm == NULL)
Akinobu Mita9765d262006-10-11 22:29:51 +1000353 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 tfm->__crt_alg = alg;
Herbert Xu6bfd4802006-09-21 11:39:29 +1000356
Herbert Xu27d2a332007-01-24 20:50:26 +1100357 err = crypto_init_ops(tfm, type, mask);
Herbert Xu6bfd4802006-09-21 11:39:29 +1000358 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 goto out_free_tfm;
Herbert Xuc7fc0592006-05-24 13:02:26 +1000360
Herbert Xu4a779482008-09-13 18:19:03 -0700361 if (!tfm->exit && alg->cra_init && (err = alg->cra_init(tfm)))
Herbert Xuc7fc0592006-05-24 13:02:26 +1000362 goto cra_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 goto out;
365
Herbert Xuc7fc0592006-05-24 13:02:26 +1000366cra_init_failed:
367 crypto_exit_ops(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368out_free_tfm:
Herbert Xu4a779482008-09-13 18:19:03 -0700369 if (err == -EAGAIN)
370 crypto_shoot_alg(alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 kfree(tfm);
Akinobu Mita9765d262006-10-11 22:29:51 +1000372out_err:
Herbert Xu6bfd4802006-09-21 11:39:29 +1000373 tfm = ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374out:
375 return tfm;
376}
Herbert Xu6bfd4802006-09-21 11:39:29 +1000377EXPORT_SYMBOL_GPL(__crypto_alloc_tfm);
378
Herbert Xu6d7d6842006-07-30 11:53:01 +1000379/*
380 * crypto_alloc_base - Locate algorithm and allocate transform
381 * @alg_name: Name of algorithm
382 * @type: Type of algorithm
383 * @mask: Mask for type comparison
384 *
Herbert Xu7b0bac62008-09-21 06:52:53 +0900385 * This function should not be used by new algorithm types.
Cristian Stoicafd1a1902013-06-28 15:56:20 +0300386 * Please use crypto_alloc_tfm instead.
Herbert Xu7b0bac62008-09-21 06:52:53 +0900387 *
Herbert Xu6d7d6842006-07-30 11:53:01 +1000388 * crypto_alloc_base() will first attempt to locate an already loaded
389 * algorithm. If that fails and the kernel supports dynamically loadable
390 * modules, it will then attempt to load a module of the same name or
391 * alias. If that fails it will send a query to any loaded crypto manager
392 * to construct an algorithm on the fly. A refcount is grabbed on the
393 * algorithm which is then associated with the new transform.
394 *
395 * The returned transform is of a non-determinate type. Most people
396 * should use one of the more specific allocation functions such as
Eric Biggersc65058b2019-10-25 12:41:12 -0700397 * crypto_alloc_skcipher().
Herbert Xu6d7d6842006-07-30 11:53:01 +1000398 *
399 * In case of error the return value is an error pointer.
400 */
401struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask)
402{
403 struct crypto_tfm *tfm;
404 int err;
405
406 for (;;) {
407 struct crypto_alg *alg;
408
409 alg = crypto_alg_mod_lookup(alg_name, type, mask);
Akinobu Mita9765d262006-10-11 22:29:51 +1000410 if (IS_ERR(alg)) {
411 err = PTR_ERR(alg);
Herbert Xu6d7d6842006-07-30 11:53:01 +1000412 goto err;
Akinobu Mita9765d262006-10-11 22:29:51 +1000413 }
Herbert Xu6d7d6842006-07-30 11:53:01 +1000414
Herbert Xu27d2a332007-01-24 20:50:26 +1100415 tfm = __crypto_alloc_tfm(alg, type, mask);
Herbert Xu6d7d6842006-07-30 11:53:01 +1000416 if (!IS_ERR(tfm))
Akinobu Mita9765d262006-10-11 22:29:51 +1000417 return tfm;
Herbert Xu6d7d6842006-07-30 11:53:01 +1000418
419 crypto_mod_put(alg);
420 err = PTR_ERR(tfm);
421
422err:
423 if (err != -EAGAIN)
424 break;
Herbert Xu3fc89ad2015-10-19 18:23:57 +0800425 if (fatal_signal_pending(current)) {
Herbert Xu6d7d6842006-07-30 11:53:01 +1000426 err = -EINTR;
427 break;
428 }
Akinobu Mita9765d262006-10-11 22:29:51 +1000429 }
Herbert Xu6d7d6842006-07-30 11:53:01 +1000430
Akinobu Mita9765d262006-10-11 22:29:51 +1000431 return ERR_PTR(err);
Herbert Xu6d7d6842006-07-30 11:53:01 +1000432}
433EXPORT_SYMBOL_GPL(crypto_alloc_base);
Herbert Xu7b0bac62008-09-21 06:52:53 +0900434
Herbert Xu3f683d62009-02-18 16:56:59 +0800435void *crypto_create_tfm(struct crypto_alg *alg,
436 const struct crypto_type *frontend)
Herbert Xu7b0bac62008-09-21 06:52:53 +0900437{
438 char *mem;
439 struct crypto_tfm *tfm = NULL;
440 unsigned int tfmsize;
441 unsigned int total;
442 int err = -ENOMEM;
443
444 tfmsize = frontend->tfmsize;
Herbert Xu2ca33da2009-07-13 20:46:25 +0800445 total = tfmsize + sizeof(*tfm) + frontend->extsize(alg);
Herbert Xu7b0bac62008-09-21 06:52:53 +0900446
447 mem = kzalloc(total, GFP_KERNEL);
448 if (mem == NULL)
449 goto out_err;
450
451 tfm = (struct crypto_tfm *)(mem + tfmsize);
452 tfm->__crt_alg = alg;
453
Herbert Xu2ca33da2009-07-13 20:46:25 +0800454 err = frontend->init_tfm(tfm);
Herbert Xu7b0bac62008-09-21 06:52:53 +0900455 if (err)
456 goto out_free_tfm;
457
458 if (!tfm->exit && alg->cra_init && (err = alg->cra_init(tfm)))
459 goto cra_init_failed;
460
461 goto out;
462
463cra_init_failed:
464 crypto_exit_ops(tfm);
465out_free_tfm:
466 if (err == -EAGAIN)
467 crypto_shoot_alg(alg);
468 kfree(mem);
469out_err:
Herbert Xu3f683d62009-02-18 16:56:59 +0800470 mem = ERR_PTR(err);
Herbert Xu7b0bac62008-09-21 06:52:53 +0900471out:
Herbert Xu3f683d62009-02-18 16:56:59 +0800472 return mem;
Herbert Xu7b0bac62008-09-21 06:52:53 +0900473}
474EXPORT_SYMBOL_GPL(crypto_create_tfm);
475
Herbert Xud06854f2009-07-08 17:53:16 +0800476struct crypto_alg *crypto_find_alg(const char *alg_name,
477 const struct crypto_type *frontend,
478 u32 type, u32 mask)
479{
Herbert Xud06854f2009-07-08 17:53:16 +0800480 if (frontend) {
481 type &= frontend->maskclear;
482 mask &= frontend->maskclear;
483 type |= frontend->type;
484 mask |= frontend->maskset;
Herbert Xud06854f2009-07-08 17:53:16 +0800485 }
486
Herbert Xu4989d4f2018-03-20 07:41:00 +0800487 return crypto_alg_mod_lookup(alg_name, type, mask);
Herbert Xud06854f2009-07-08 17:53:16 +0800488}
489EXPORT_SYMBOL_GPL(crypto_find_alg);
490
Herbert Xu7b0bac62008-09-21 06:52:53 +0900491/*
492 * crypto_alloc_tfm - Locate algorithm and allocate transform
493 * @alg_name: Name of algorithm
494 * @frontend: Frontend algorithm type
495 * @type: Type of algorithm
496 * @mask: Mask for type comparison
497 *
498 * crypto_alloc_tfm() will first attempt to locate an already loaded
499 * algorithm. If that fails and the kernel supports dynamically loadable
500 * modules, it will then attempt to load a module of the same name or
501 * alias. If that fails it will send a query to any loaded crypto manager
502 * to construct an algorithm on the fly. A refcount is grabbed on the
503 * algorithm which is then associated with the new transform.
504 *
505 * The returned transform is of a non-determinate type. Most people
506 * should use one of the more specific allocation functions such as
Eric Biggers0a940d42019-11-29 10:16:48 -0800507 * crypto_alloc_skcipher().
Herbert Xu7b0bac62008-09-21 06:52:53 +0900508 *
509 * In case of error the return value is an error pointer.
510 */
Herbert Xu3f683d62009-02-18 16:56:59 +0800511void *crypto_alloc_tfm(const char *alg_name,
512 const struct crypto_type *frontend, u32 type, u32 mask)
Herbert Xu7b0bac62008-09-21 06:52:53 +0900513{
Herbert Xu3f683d62009-02-18 16:56:59 +0800514 void *tfm;
Herbert Xu7b0bac62008-09-21 06:52:53 +0900515 int err;
516
Herbert Xu7b0bac62008-09-21 06:52:53 +0900517 for (;;) {
518 struct crypto_alg *alg;
519
Herbert Xud06854f2009-07-08 17:53:16 +0800520 alg = crypto_find_alg(alg_name, frontend, type, mask);
Herbert Xu7b0bac62008-09-21 06:52:53 +0900521 if (IS_ERR(alg)) {
522 err = PTR_ERR(alg);
523 goto err;
524 }
525
526 tfm = crypto_create_tfm(alg, frontend);
527 if (!IS_ERR(tfm))
528 return tfm;
529
530 crypto_mod_put(alg);
531 err = PTR_ERR(tfm);
532
533err:
534 if (err != -EAGAIN)
535 break;
Herbert Xu3fc89ad2015-10-19 18:23:57 +0800536 if (fatal_signal_pending(current)) {
Herbert Xu7b0bac62008-09-21 06:52:53 +0900537 err = -EINTR;
538 break;
539 }
540 }
541
542 return ERR_PTR(err);
543}
544EXPORT_SYMBOL_GPL(crypto_alloc_tfm);
Herbert Xu7b2cd922009-02-05 16:48:24 +1100545
Herbert Xu6d7d6842006-07-30 11:53:01 +1000546/*
Herbert Xu7b2cd922009-02-05 16:48:24 +1100547 * crypto_destroy_tfm - Free crypto transform
548 * @mem: Start of tfm slab
Herbert Xu6d7d6842006-07-30 11:53:01 +1000549 * @tfm: Transform to free
550 *
Herbert Xu7b2cd922009-02-05 16:48:24 +1100551 * This function frees up the transform and any associated resources,
Herbert Xu6d7d6842006-07-30 11:53:01 +1000552 * then drops the refcount on the associated algorithm.
553 */
Herbert Xu7b2cd922009-02-05 16:48:24 +1100554void crypto_destroy_tfm(void *mem, struct crypto_tfm *tfm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Jesper Juhla61cc442005-07-06 13:54:31 -0700556 struct crypto_alg *alg;
Jesper Juhla61cc442005-07-06 13:54:31 -0700557
Herbert Xu7b2cd922009-02-05 16:48:24 +1100558 if (unlikely(!mem))
Jesper Juhla61cc442005-07-06 13:54:31 -0700559 return;
560
561 alg = tfm->__crt_alg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Herbert Xu4a779482008-09-13 18:19:03 -0700563 if (!tfm->exit && alg->cra_exit)
Herbert Xuc7fc0592006-05-24 13:02:26 +1000564 alg->cra_exit(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 crypto_exit_ops(tfm);
Herbert Xu72fa4912006-05-28 09:05:24 +1000566 crypto_mod_put(alg);
Johannes Weiner811d8f02009-03-29 15:20:48 +0800567 kzfree(mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
Herbert Xu7b2cd922009-02-05 16:48:24 +1100569EXPORT_SYMBOL_GPL(crypto_destroy_tfm);
Herbert Xufce32d72006-08-26 17:35:45 +1000570
571int crypto_has_alg(const char *name, u32 type, u32 mask)
572{
573 int ret = 0;
574 struct crypto_alg *alg = crypto_alg_mod_lookup(name, type, mask);
Richard Hartmann3d01a332010-02-16 20:26:46 +0800575
Herbert Xufce32d72006-08-26 17:35:45 +1000576 if (!IS_ERR(alg)) {
577 crypto_mod_put(alg);
578 ret = 1;
579 }
Richard Hartmann3d01a332010-02-16 20:26:46 +0800580
Herbert Xufce32d72006-08-26 17:35:45 +1000581 return ret;
582}
583EXPORT_SYMBOL_GPL(crypto_has_alg);
Sebastian Siewiorc3715cb92008-03-30 16:36:09 +0800584
Gilad Ben-Yossefada69a12017-10-18 08:00:38 +0100585void crypto_req_done(struct crypto_async_request *req, int err)
586{
587 struct crypto_wait *wait = req->data;
588
589 if (err == -EINPROGRESS)
590 return;
591
592 wait->err = err;
593 complete(&wait->completion);
594}
595EXPORT_SYMBOL_GPL(crypto_req_done);
596
Sebastian Siewiorc3715cb92008-03-30 16:36:09 +0800597MODULE_DESCRIPTION("Cryptographic core API");
598MODULE_LICENSE("GPL");
Herbert Xu8ab23d52019-11-08 18:26:30 +0800599MODULE_SOFTDEP("pre: cryptomgr");