algboss.c 5.9 KB
Newer Older
H
Herbert Xu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Create default crypto algorithm instances.
 *
 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */

#include <linux/crypto.h>
#include <linux/ctype.h>
#include <linux/err.h>
#include <linux/init.h>
17
#include <linux/kthread.h>
H
Herbert Xu 已提交
18 19 20
#include <linux/module.h>
#include <linux/notifier.h>
#include <linux/rtnetlink.h>
H
Herbert Xu 已提交
21
#include <linux/sched.h>
H
Herbert Xu 已提交
22 23 24 25 26
#include <linux/string.h>

#include "internal.h"

struct cryptomgr_param {
27
	struct rtattr *tb[CRYPTO_MAX_ATTRS + 2];
28 29 30 31 32 33

	struct {
		struct rtattr attr;
		struct crypto_attr_type data;
	} type;

34
	union {
H
Herbert Xu 已提交
35
		struct rtattr attr;
36 37 38 39 40 41 42 43 44 45 46
		struct {
			struct rtattr attr;
			struct crypto_attr_alg data;
		} alg;
		struct {
			struct rtattr attr;
			struct crypto_attr_u32 data;
		} nu32;
	} attrs[CRYPTO_MAX_ATTRS];

	char larval[CRYPTO_MAX_ALG_NAME];
H
Herbert Xu 已提交
47
	char template[CRYPTO_MAX_ALG_NAME];
48 49 50 51 52 53 54 55 56

	u32 otype;
	u32 omask;
};

struct crypto_test_param {
	char driver[CRYPTO_MAX_ALG_NAME];
	char alg[CRYPTO_MAX_ALG_NAME];
	u32 type;
H
Herbert Xu 已提交
57 58
};

59
static int cryptomgr_probe(void *data)
H
Herbert Xu 已提交
60
{
61
	struct cryptomgr_param *param = data;
H
Herbert Xu 已提交
62 63
	struct crypto_template *tmpl;
	struct crypto_instance *inst;
H
Herbert Xu 已提交
64
	int err;
H
Herbert Xu 已提交
65 66 67 68 69

	tmpl = crypto_lookup_template(param->template);
	if (!tmpl)
		goto err;

H
Herbert Xu 已提交
70
	do {
71
		inst = tmpl->alloc(param->tb);
H
Herbert Xu 已提交
72 73 74 75 76
		if (IS_ERR(inst))
			err = PTR_ERR(inst);
		else if ((err = crypto_register_instance(tmpl, inst)))
			tmpl->free(inst);
	} while (err == -EAGAIN && !signal_pending(current));
H
Herbert Xu 已提交
77 78 79

	crypto_tmpl_put(tmpl);

H
Herbert Xu 已提交
80 81 82
	if (err)
		goto err;

H
Herbert Xu 已提交
83 84
out:
	kfree(param);
85
	module_put_and_exit(0);
H
Herbert Xu 已提交
86 87

err:
88
	crypto_larval_error(param->larval, param->otype, param->omask);
H
Herbert Xu 已提交
89 90 91 92 93
	goto out;
}

static int cryptomgr_schedule_probe(struct crypto_larval *larval)
{
94
	struct task_struct *thread;
H
Herbert Xu 已提交
95 96 97 98
	struct cryptomgr_param *param;
	const char *name = larval->alg.cra_name;
	const char *p;
	unsigned int len;
99
	int i;
H
Herbert Xu 已提交
100

101 102 103
	if (!try_module_get(THIS_MODULE))
		goto err;

104
	param = kzalloc(sizeof(*param), GFP_KERNEL);
H
Herbert Xu 已提交
105
	if (!param)
106
		goto err_put_module;
H
Herbert Xu 已提交
107 108 109 110 111 112 113 114 115 116

	for (p = name; isalnum(*p) || *p == '-' || *p == '_'; p++)
		;

	len = p - name;
	if (!len || *p != '(')
		goto err_free_param;

	memcpy(param->template, name, len);

117 118 119
	i = 0;
	for (;;) {
		int notnum = 0;
H
Herbert Xu 已提交
120

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
		name = ++p;
		len = 0;

		for (; isalnum(*p) || *p == '-' || *p == '_'; p++)
			notnum |= !isdigit(*p);

		if (*p == '(') {
			int recursion = 0;

			for (;;) {
				if (!*++p)
					goto err_free_param;
				if (*p == '(')
					recursion++;
				else if (*p == ')' && !recursion--)
					break;
			}

			notnum = 1;
140
			p++;
141
		}
142 143

		len = p - name;
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
		if (!len)
			goto err_free_param;

		if (notnum) {
			param->attrs[i].alg.attr.rta_len =
				sizeof(param->attrs[i].alg);
			param->attrs[i].alg.attr.rta_type = CRYPTOA_ALG;
			memcpy(param->attrs[i].alg.data.name, name, len);
		} else {
			param->attrs[i].nu32.attr.rta_len =
				sizeof(param->attrs[i].nu32);
			param->attrs[i].nu32.attr.rta_type = CRYPTOA_U32;
			param->attrs[i].nu32.data.num =
				simple_strtol(name, NULL, 0);
		}

		param->tb[i + 1] = &param->attrs[i].attr;
		i++;

163
		if (i >= CRYPTO_MAX_ATTRS)
164 165 166 167 168 169 170
			goto err_free_param;

		if (*p == ')')
			break;

		if (*p != ',')
			goto err_free_param;
171 172
	}

173
	if (!i)
H
Herbert Xu 已提交
174 175
		goto err_free_param;

176 177
	param->tb[i + 1] = NULL;

178 179
	param->type.attr.rta_len = sizeof(param->type);
	param->type.attr.rta_type = CRYPTOA_TYPE;
180 181
	param->type.data.type = larval->alg.cra_flags & ~CRYPTO_ALG_TESTED;
	param->type.data.mask = larval->mask & ~CRYPTO_ALG_TESTED;
182
	param->tb[0] = &param->type.attr;
H
Herbert Xu 已提交
183

184 185 186
	param->otype = larval->alg.cra_flags;
	param->omask = larval->mask;

187
	memcpy(param->larval, larval->alg.cra_name, CRYPTO_MAX_ALG_NAME);
H
Herbert Xu 已提交
188

189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	thread = kthread_run(cryptomgr_probe, param, "cryptomgr_probe");
	if (IS_ERR(thread))
		goto err_free_param;

	return NOTIFY_STOP;

err_free_param:
	kfree(param);
err_put_module:
	module_put(THIS_MODULE);
err:
	return NOTIFY_OK;
}

static int cryptomgr_test(void *data)
{
	struct crypto_test_param *param = data;
	u32 type = param->type;
	int err = 0;

	if (!((type ^ CRYPTO_ALG_TYPE_BLKCIPHER) &
	      CRYPTO_ALG_TYPE_BLKCIPHER_MASK) && !(type & CRYPTO_ALG_GENIV))
		goto skiptest;

213
	err = alg_test(param->driver, param->alg, type, CRYPTO_ALG_TESTED);
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

skiptest:
	crypto_alg_tested(param->driver, err);

	kfree(param);
	module_put_and_exit(0);
}

static int cryptomgr_schedule_test(struct crypto_alg *alg)
{
	struct task_struct *thread;
	struct crypto_test_param *param;

	if (!try_module_get(THIS_MODULE))
		goto err;

	param = kzalloc(sizeof(*param), GFP_KERNEL);
	if (!param)
		goto err_put_module;

	memcpy(param->driver, alg->cra_driver_name, sizeof(param->driver));
	memcpy(param->alg, alg->cra_name, sizeof(param->alg));
	param->type = alg->cra_flags;

	thread = kthread_run(cryptomgr_test, param, "cryptomgr_test");
239
	if (IS_ERR(thread))
240
		goto err_free_param;
H
Herbert Xu 已提交
241 242 243 244 245

	return NOTIFY_STOP;

err_free_param:
	kfree(param);
246 247
err_put_module:
	module_put(THIS_MODULE);
H
Herbert Xu 已提交
248 249 250 251 252 253 254 255 256 257
err:
	return NOTIFY_OK;
}

static int cryptomgr_notify(struct notifier_block *this, unsigned long msg,
			    void *data)
{
	switch (msg) {
	case CRYPTO_MSG_ALG_REQUEST:
		return cryptomgr_schedule_probe(data);
258 259
	case CRYPTO_MSG_ALG_REGISTER:
		return cryptomgr_schedule_test(data);
H
Herbert Xu 已提交
260 261 262 263 264 265 266 267 268 269 270
	}

	return NOTIFY_DONE;
}

static struct notifier_block cryptomgr_notifier = {
	.notifier_call = cryptomgr_notify,
};

static int __init cryptomgr_init(void)
{
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	int err;

	err = testmgr_init();
	if (err)
		return err;

	err = crypto_register_notifier(&cryptomgr_notifier);
	if (err)
		goto free_testmgr;

	return 0;

free_testmgr:
	testmgr_exit();
	return err;
H
Herbert Xu 已提交
286 287 288 289 290 291
}

static void __exit cryptomgr_exit(void)
{
	int err = crypto_unregister_notifier(&cryptomgr_notifier);
	BUG_ON(err);
292 293

	testmgr_exit();
H
Herbert Xu 已提交
294 295
}

296
subsys_initcall(cryptomgr_init);
H
Herbert Xu 已提交
297 298 299 300
module_exit(cryptomgr_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Crypto Algorithm Manager");