blob: f97027e7d996b868b790bc5c04f06c758da75b54 [file] [log] [blame]
Herbert Xu2b8c19d2006-09-21 11:31:44 +10001/*
2 * Create default crypto algorithm instances.
3 *
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 */
12
Herbert Xu6fe4a282009-02-18 21:41:29 +080013#include <crypto/internal/aead.h>
Herbert Xu39871032012-06-22 20:08:29 +080014#include <linux/completion.h>
Herbert Xu2b8c19d2006-09-21 11:31:44 +100015#include <linux/ctype.h>
16#include <linux/err.h>
17#include <linux/init.h>
Herbert Xucf02f5d2007-03-29 17:32:59 +100018#include <linux/kthread.h>
Herbert Xu2b8c19d2006-09-21 11:31:44 +100019#include <linux/module.h>
20#include <linux/notifier.h>
21#include <linux/rtnetlink.h>
Herbert Xu6bfd4802006-09-21 11:39:29 +100022#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Herbert Xu2b8c19d2006-09-21 11:31:44 +100024#include <linux/string.h>
Herbert Xu2b8c19d2006-09-21 11:31:44 +100025
26#include "internal.h"
27
28struct cryptomgr_param {
Herbert Xu39e1ee012007-08-29 19:27:26 +080029 struct rtattr *tb[CRYPTO_MAX_ATTRS + 2];
Herbert Xuebc610e2007-01-01 18:37:02 +110030
31 struct {
32 struct rtattr attr;
33 struct crypto_attr_type data;
34 } type;
35
Herbert Xu39e1ee012007-08-29 19:27:26 +080036 union {
Herbert Xu2b8c19d2006-09-21 11:31:44 +100037 struct rtattr attr;
Herbert Xu39e1ee012007-08-29 19:27:26 +080038 struct {
39 struct rtattr attr;
40 struct crypto_attr_alg data;
41 } alg;
42 struct {
43 struct rtattr attr;
44 struct crypto_attr_u32 data;
45 } nu32;
46 } attrs[CRYPTO_MAX_ATTRS];
Herbert Xu2b8c19d2006-09-21 11:31:44 +100047
Herbert Xu39e1ee012007-08-29 19:27:26 +080048 char larval[CRYPTO_MAX_ALG_NAME];
Herbert Xu2b8c19d2006-09-21 11:31:44 +100049 char template[CRYPTO_MAX_ALG_NAME];
Herbert Xu73d38642008-08-03 21:15:23 +080050
Herbert Xu39871032012-06-22 20:08:29 +080051 struct completion *completion;
52
Herbert Xu73d38642008-08-03 21:15:23 +080053 u32 otype;
54 u32 omask;
55};
56
57struct crypto_test_param {
58 char driver[CRYPTO_MAX_ALG_NAME];
59 char alg[CRYPTO_MAX_ALG_NAME];
60 u32 type;
Herbert Xu2b8c19d2006-09-21 11:31:44 +100061};
62
Herbert Xucf02f5d2007-03-29 17:32:59 +100063static int cryptomgr_probe(void *data)
Herbert Xu2b8c19d2006-09-21 11:31:44 +100064{
Herbert Xucf02f5d2007-03-29 17:32:59 +100065 struct cryptomgr_param *param = data;
Herbert Xu2b8c19d2006-09-21 11:31:44 +100066 struct crypto_template *tmpl;
67 struct crypto_instance *inst;
Herbert Xu6bfd4802006-09-21 11:39:29 +100068 int err;
Herbert Xu2b8c19d2006-09-21 11:31:44 +100069
70 tmpl = crypto_lookup_template(param->template);
71 if (!tmpl)
Herbert Xu39871032012-06-22 20:08:29 +080072 goto out;
Herbert Xu2b8c19d2006-09-21 11:31:44 +100073
Herbert Xu6bfd4802006-09-21 11:39:29 +100074 do {
Herbert Xuf2ac72e2009-07-07 12:30:33 +080075 if (tmpl->create) {
76 err = tmpl->create(tmpl, param->tb);
77 continue;
78 }
79
Herbert Xuebc610e2007-01-01 18:37:02 +110080 inst = tmpl->alloc(param->tb);
Herbert Xu6bfd4802006-09-21 11:39:29 +100081 if (IS_ERR(inst))
82 err = PTR_ERR(inst);
83 else if ((err = crypto_register_instance(tmpl, inst)))
84 tmpl->free(inst);
85 } while (err == -EAGAIN && !signal_pending(current));
Herbert Xu2b8c19d2006-09-21 11:31:44 +100086
87 crypto_tmpl_put(tmpl);
88
89out:
Herbert Xu39871032012-06-22 20:08:29 +080090 complete(param->completion);
Herbert Xu2b8c19d2006-09-21 11:31:44 +100091 kfree(param);
Herbert Xucf02f5d2007-03-29 17:32:59 +100092 module_put_and_exit(0);
Herbert Xu2b8c19d2006-09-21 11:31:44 +100093}
94
95static int cryptomgr_schedule_probe(struct crypto_larval *larval)
96{
Herbert Xu1605b842007-05-09 13:04:39 +100097 struct task_struct *thread;
Herbert Xu2b8c19d2006-09-21 11:31:44 +100098 struct cryptomgr_param *param;
99 const char *name = larval->alg.cra_name;
100 const char *p;
101 unsigned int len;
Herbert Xu39e1ee012007-08-29 19:27:26 +0800102 int i;
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000103
Herbert Xucf02f5d2007-03-29 17:32:59 +1000104 if (!try_module_get(THIS_MODULE))
105 goto err;
106
Herbert Xuebc610e2007-01-01 18:37:02 +1100107 param = kzalloc(sizeof(*param), GFP_KERNEL);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000108 if (!param)
Herbert Xucf02f5d2007-03-29 17:32:59 +1000109 goto err_put_module;
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000110
111 for (p = name; isalnum(*p) || *p == '-' || *p == '_'; p++)
112 ;
113
114 len = p - name;
115 if (!len || *p != '(')
116 goto err_free_param;
117
118 memcpy(param->template, name, len);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000119
Herbert Xu39e1ee012007-08-29 19:27:26 +0800120 i = 0;
121 for (;;) {
122 int notnum = 0;
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000123
Herbert Xu39e1ee012007-08-29 19:27:26 +0800124 name = ++p;
125 len = 0;
126
127 for (; isalnum(*p) || *p == '-' || *p == '_'; p++)
128 notnum |= !isdigit(*p);
129
130 if (*p == '(') {
131 int recursion = 0;
132
133 for (;;) {
134 if (!*++p)
135 goto err_free_param;
136 if (*p == '(')
137 recursion++;
138 else if (*p == ')' && !recursion--)
139 break;
140 }
141
142 notnum = 1;
Herbert Xu720a6502007-09-28 09:06:11 +0800143 p++;
Herbert Xu39e1ee012007-08-29 19:27:26 +0800144 }
Herbert Xucf02f5d2007-03-29 17:32:59 +1000145
146 len = p - name;
Herbert Xu39e1ee012007-08-29 19:27:26 +0800147 if (!len)
148 goto err_free_param;
149
150 if (notnum) {
151 param->attrs[i].alg.attr.rta_len =
152 sizeof(param->attrs[i].alg);
153 param->attrs[i].alg.attr.rta_type = CRYPTOA_ALG;
154 memcpy(param->attrs[i].alg.data.name, name, len);
155 } else {
156 param->attrs[i].nu32.attr.rta_len =
157 sizeof(param->attrs[i].nu32);
158 param->attrs[i].nu32.attr.rta_type = CRYPTOA_U32;
159 param->attrs[i].nu32.data.num =
160 simple_strtol(name, NULL, 0);
161 }
162
163 param->tb[i + 1] = &param->attrs[i].attr;
164 i++;
165
Herbert Xu720a6502007-09-28 09:06:11 +0800166 if (i >= CRYPTO_MAX_ATTRS)
Herbert Xu39e1ee012007-08-29 19:27:26 +0800167 goto err_free_param;
168
169 if (*p == ')')
170 break;
171
172 if (*p != ',')
173 goto err_free_param;
Herbert Xucf02f5d2007-03-29 17:32:59 +1000174 }
175
Herbert Xu39e1ee012007-08-29 19:27:26 +0800176 if (!i)
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000177 goto err_free_param;
178
Herbert Xu39e1ee012007-08-29 19:27:26 +0800179 param->tb[i + 1] = NULL;
180
Herbert Xuebc610e2007-01-01 18:37:02 +1100181 param->type.attr.rta_len = sizeof(param->type);
182 param->type.attr.rta_type = CRYPTOA_TYPE;
Herbert Xu73d38642008-08-03 21:15:23 +0800183 param->type.data.type = larval->alg.cra_flags & ~CRYPTO_ALG_TESTED;
184 param->type.data.mask = larval->mask & ~CRYPTO_ALG_TESTED;
Herbert Xu39e1ee012007-08-29 19:27:26 +0800185 param->tb[0] = &param->type.attr;
Herbert Xuebc610e2007-01-01 18:37:02 +1100186
Herbert Xu73d38642008-08-03 21:15:23 +0800187 param->otype = larval->alg.cra_flags;
188 param->omask = larval->mask;
189
Herbert Xu39e1ee012007-08-29 19:27:26 +0800190 memcpy(param->larval, larval->alg.cra_name, CRYPTO_MAX_ALG_NAME);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000191
Herbert Xu39871032012-06-22 20:08:29 +0800192 param->completion = &larval->completion;
193
Herbert Xu73d38642008-08-03 21:15:23 +0800194 thread = kthread_run(cryptomgr_probe, param, "cryptomgr_probe");
195 if (IS_ERR(thread))
196 goto err_free_param;
197
Herbert Xu39871032012-06-22 20:08:29 +0800198 wait_for_completion_interruptible(&larval->completion);
199
Herbert Xu73d38642008-08-03 21:15:23 +0800200 return NOTIFY_STOP;
201
202err_free_param:
203 kfree(param);
204err_put_module:
205 module_put(THIS_MODULE);
206err:
207 return NOTIFY_OK;
208}
209
210static int cryptomgr_test(void *data)
211{
212 struct crypto_test_param *param = data;
213 u32 type = param->type;
214 int err = 0;
215
Herbert Xu326a6342010-08-06 09:40:28 +0800216#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
217 goto skiptest;
218#endif
219
Herbert Xu6fe4a282009-02-18 21:41:29 +0800220 if (type & CRYPTO_ALG_TESTED)
Herbert Xu73d38642008-08-03 21:15:23 +0800221 goto skiptest;
222
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000223 err = alg_test(param->driver, param->alg, type, CRYPTO_ALG_TESTED);
Herbert Xu73d38642008-08-03 21:15:23 +0800224
225skiptest:
226 crypto_alg_tested(param->driver, err);
227
228 kfree(param);
229 module_put_and_exit(0);
230}
231
232static int cryptomgr_schedule_test(struct crypto_alg *alg)
233{
234 struct task_struct *thread;
235 struct crypto_test_param *param;
Herbert Xu6fe4a282009-02-18 21:41:29 +0800236 u32 type;
Herbert Xu73d38642008-08-03 21:15:23 +0800237
238 if (!try_module_get(THIS_MODULE))
239 goto err;
240
241 param = kzalloc(sizeof(*param), GFP_KERNEL);
242 if (!param)
243 goto err_put_module;
244
245 memcpy(param->driver, alg->cra_driver_name, sizeof(param->driver));
246 memcpy(param->alg, alg->cra_name, sizeof(param->alg));
Herbert Xu6fe4a282009-02-18 21:41:29 +0800247 type = alg->cra_flags;
248
249 /* This piece of crap needs to disappear into per-type test hooks. */
250 if ((!((type ^ CRYPTO_ALG_TYPE_BLKCIPHER) &
251 CRYPTO_ALG_TYPE_BLKCIPHER_MASK) && !(type & CRYPTO_ALG_GENIV) &&
252 ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
253 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
254 alg->cra_ablkcipher.ivsize)) ||
255 (!((type ^ CRYPTO_ALG_TYPE_AEAD) & CRYPTO_ALG_TYPE_MASK) &&
256 alg->cra_type == &crypto_nivaead_type && alg->cra_aead.ivsize))
257 type |= CRYPTO_ALG_TESTED;
258
259 param->type = type;
Herbert Xu73d38642008-08-03 21:15:23 +0800260
261 thread = kthread_run(cryptomgr_test, param, "cryptomgr_test");
Herbert Xu1605b842007-05-09 13:04:39 +1000262 if (IS_ERR(thread))
Herbert Xucf02f5d2007-03-29 17:32:59 +1000263 goto err_free_param;
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000264
265 return NOTIFY_STOP;
266
267err_free_param:
268 kfree(param);
Herbert Xucf02f5d2007-03-29 17:32:59 +1000269err_put_module:
270 module_put(THIS_MODULE);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000271err:
272 return NOTIFY_OK;
273}
274
275static int cryptomgr_notify(struct notifier_block *this, unsigned long msg,
276 void *data)
277{
278 switch (msg) {
279 case CRYPTO_MSG_ALG_REQUEST:
280 return cryptomgr_schedule_probe(data);
Herbert Xu73d38642008-08-03 21:15:23 +0800281 case CRYPTO_MSG_ALG_REGISTER:
282 return cryptomgr_schedule_test(data);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000283 }
284
285 return NOTIFY_DONE;
286}
287
288static struct notifier_block cryptomgr_notifier = {
289 .notifier_call = cryptomgr_notify,
290};
291
292static int __init cryptomgr_init(void)
293{
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800294 return crypto_register_notifier(&cryptomgr_notifier);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000295}
296
297static void __exit cryptomgr_exit(void)
298{
299 int err = crypto_unregister_notifier(&cryptomgr_notifier);
300 BUG_ON(err);
301}
302
Herbert Xuda7f0332008-07-31 17:08:25 +0800303subsys_initcall(cryptomgr_init);
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000304module_exit(cryptomgr_exit);
305
306MODULE_LICENSE("GPL");
307MODULE_DESCRIPTION("Crypto Algorithm Manager");