blob: 9d253e1016b1d1d02457312328329ba03b33f07d [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
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
13#include <crypto/internal/aead.h>
14#include <linux/completion.h>
15#include <linux/ctype.h>
16#include <linux/err.h>
17#include <linux/init.h>
18#include <linux/kthread.h>
19#include <linux/module.h>
20#include <linux/notifier.h>
21#include <linux/rtnetlink.h>
22#include <linux/sched/signal.h>
23#include <linux/slab.h>
24#include <linux/string.h>
25
26#include "internal.h"
27
28struct cryptomgr_param {
29 struct rtattr *tb[CRYPTO_MAX_ATTRS + 2];
30
31 struct {
32 struct rtattr attr;
33 struct crypto_attr_type data;
34 } type;
35
36 union {
37 struct rtattr attr;
38 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];
47
48 char template[CRYPTO_MAX_ALG_NAME];
49
50 struct crypto_larval *larval;
51
52 u32 otype;
53 u32 omask;
54};
55
56struct crypto_test_param {
57 char driver[CRYPTO_MAX_ALG_NAME];
58 char alg[CRYPTO_MAX_ALG_NAME];
59 u32 type;
60};
61
62static int cryptomgr_probe(void *data)
63{
64 struct cryptomgr_param *param = data;
65 struct crypto_template *tmpl;
66 struct crypto_instance *inst;
67 int err;
68
69 tmpl = crypto_lookup_template(param->template);
70 if (!tmpl)
71 goto out;
72
73 do {
74 if (tmpl->create) {
75 err = tmpl->create(tmpl, param->tb);
76 continue;
77 }
78
79 inst = tmpl->alloc(param->tb);
80 if (IS_ERR(inst))
81 err = PTR_ERR(inst);
82 else if ((err = crypto_register_instance(tmpl, inst)))
83 tmpl->free(inst);
84 } while (err == -EAGAIN && !signal_pending(current));
85
86 crypto_tmpl_put(tmpl);
87
88out:
89 complete_all(&param->larval->completion);
90 crypto_alg_put(&param->larval->alg);
91 kfree(param);
92 module_put_and_exit(0);
93}
94
95static int cryptomgr_schedule_probe(struct crypto_larval *larval)
96{
97 struct task_struct *thread;
98 struct cryptomgr_param *param;
99 const char *name = larval->alg.cra_name;
100 const char *p;
101 unsigned int len;
102 int i;
103
104 if (!try_module_get(THIS_MODULE))
105 goto err;
106
107 param = kzalloc(sizeof(*param), GFP_KERNEL);
108 if (!param)
109 goto err_put_module;
110
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);
119
120 i = 0;
121 for (;;) {
122 int notnum = 0;
123
124 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;
143 p++;
144 }
145
146 len = p - name;
147 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
166 if (i >= CRYPTO_MAX_ATTRS)
167 goto err_free_param;
168
169 if (*p == ')')
170 break;
171
172 if (*p != ',')
173 goto err_free_param;
174 }
175
176 if (!i)
177 goto err_free_param;
178
179 param->tb[i + 1] = NULL;
180
181 param->type.attr.rta_len = sizeof(param->type);
182 param->type.attr.rta_type = CRYPTOA_TYPE;
183 param->type.data.type = larval->alg.cra_flags & ~CRYPTO_ALG_TESTED;
184 param->type.data.mask = larval->mask & ~CRYPTO_ALG_TESTED;
185 param->tb[0] = &param->type.attr;
186
187 param->otype = larval->alg.cra_flags;
188 param->omask = larval->mask;
189
190 crypto_alg_get(&larval->alg);
191 param->larval = larval;
192
193 thread = kthread_run(cryptomgr_probe, param, "cryptomgr_probe");
194 if (IS_ERR(thread))
195 goto err_put_larval;
196
197 return NOTIFY_STOP;
198
199err_put_larval:
200 crypto_alg_put(&larval->alg);
201err_free_param:
202 kfree(param);
203err_put_module:
204 module_put(THIS_MODULE);
205err:
206 return NOTIFY_OK;
207}
208
209static int cryptomgr_test(void *data)
210{
211 struct crypto_test_param *param = data;
212 u32 type = param->type;
213 int err = 0;
214
215#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
216 goto skiptest;
217#endif
218
219 if (type & CRYPTO_ALG_TESTED)
220 goto skiptest;
221
222 err = alg_test(param->driver, param->alg, type, CRYPTO_ALG_TESTED);
223
224skiptest:
225 crypto_alg_tested(param->driver, err);
226
227 kfree(param);
228 module_put_and_exit(0);
229}
230
231static int cryptomgr_schedule_test(struct crypto_alg *alg)
232{
233 struct task_struct *thread;
234 struct crypto_test_param *param;
235 u32 type;
236
237 if (!try_module_get(THIS_MODULE))
238 goto err;
239
240 param = kzalloc(sizeof(*param), GFP_KERNEL);
241 if (!param)
242 goto err_put_module;
243
244 memcpy(param->driver, alg->cra_driver_name, sizeof(param->driver));
245 memcpy(param->alg, alg->cra_name, sizeof(param->alg));
246 type = alg->cra_flags;
247
248 /* Do not test internal algorithms. */
249 if (type & CRYPTO_ALG_INTERNAL)
250 type |= CRYPTO_ALG_TESTED;
251
252 param->type = type;
253
254 thread = kthread_run(cryptomgr_test, param, "cryptomgr_test");
255 if (IS_ERR(thread))
256 goto err_free_param;
257
258 return NOTIFY_STOP;
259
260err_free_param:
261 kfree(param);
262err_put_module:
263 module_put(THIS_MODULE);
264err:
265 return NOTIFY_OK;
266}
267
268static int cryptomgr_notify(struct notifier_block *this, unsigned long msg,
269 void *data)
270{
271 switch (msg) {
272 case CRYPTO_MSG_ALG_REQUEST:
273 return cryptomgr_schedule_probe(data);
274 case CRYPTO_MSG_ALG_REGISTER:
275 return cryptomgr_schedule_test(data);
276 }
277
278 return NOTIFY_DONE;
279}
280
281static struct notifier_block cryptomgr_notifier = {
282 .notifier_call = cryptomgr_notify,
283};
284
285static int __init cryptomgr_init(void)
286{
287 return crypto_register_notifier(&cryptomgr_notifier);
288}
289
290static void __exit cryptomgr_exit(void)
291{
292 int err = crypto_unregister_notifier(&cryptomgr_notifier);
293 BUG_ON(err);
294}
295
296subsys_initcall(cryptomgr_init);
297module_exit(cryptomgr_exit);
298
299MODULE_LICENSE("GPL");
300MODULE_DESCRIPTION("Crypto Algorithm Manager");