algapi.c 5.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Cryptographic API for algorithms (i.e., low-level API).
 *
 * 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/errno.h>
#include <linux/init.h>
#include <linux/kernel.h>
16
#include <linux/list.h>
17 18 19 20 21
#include <linux/module.h>
#include <linux/string.h>

#include "internal.h"

22 23
static LIST_HEAD(crypto_template_list);

24
void crypto_larval_error(const char *name, u32 type, u32 mask)
25 26 27 28
{
	struct crypto_alg *alg;

	down_read(&crypto_alg_sem);
29
	alg = __crypto_alg_lookup(name, type, mask);
30 31 32 33 34 35 36 37 38 39 40 41
	up_read(&crypto_alg_sem);

	if (alg) {
		if (crypto_is_larval(alg)) {
			struct crypto_larval *larval = (void *)alg;
			complete(&larval->completion);
		}
		crypto_mod_put(alg);
	}
}
EXPORT_SYMBOL_GPL(crypto_larval_error);

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
static inline int crypto_set_driver_name(struct crypto_alg *alg)
{
	static const char suffix[] = "-generic";
	char *driver_name = alg->cra_driver_name;
	int len;

	if (*driver_name)
		return 0;

	len = strlcpy(driver_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
	if (len + sizeof(suffix) > CRYPTO_MAX_ALG_NAME)
		return -ENAMETOOLONG;

	memcpy(driver_name + len, suffix, sizeof(suffix));
	return 0;
}

59
static int crypto_check_alg(struct crypto_alg *alg)
60 61 62 63 64 65 66 67 68 69 70 71 72
{
	if (alg->cra_alignmask & (alg->cra_alignmask + 1))
		return -EINVAL;

	if (alg->cra_alignmask & alg->cra_blocksize)
		return -EINVAL;

	if (alg->cra_blocksize > PAGE_SIZE / 8)
		return -EINVAL;

	if (alg->cra_priority < 0)
		return -EINVAL;

73 74 75 76 77 78 79 80
	return crypto_set_driver_name(alg);
}

static int __crypto_register_alg(struct crypto_alg *alg)
{
	struct crypto_alg *q;
	int ret = -EEXIST;

81
	atomic_set(&alg->cra_refcnt, 1);
82
	list_for_each_entry(q, &crypto_alg_list, cra_list) {
83
		if (q == alg)
84
			goto out;
85 86 87 88 89
		if (crypto_is_larval(q) &&
		    (!strcmp(alg->cra_name, q->cra_name) ||
		     !strcmp(alg->cra_driver_name, q->cra_name))) {
			struct crypto_larval *larval = (void *)q;

90 91
			if ((q->cra_flags ^ alg->cra_flags) & larval->mask)
				continue;
92 93 94 95 96
			if (!crypto_mod_get(alg))
				continue;
			larval->adult = alg;
			complete(&larval->completion);
		}
97 98 99
	}
	
	list_add(&alg->cra_list, &crypto_alg_list);
100 101

	crypto_notify(CRYPTO_MSG_ALG_REGISTER, alg);
102
	ret = 0;
103

104 105 106
out:	
	return ret;
}
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

int crypto_register_alg(struct crypto_alg *alg)
{
	int err;

	err = crypto_check_alg(alg);
	if (err)
		return err;

	down_write(&crypto_alg_sem);
	err = __crypto_register_alg(alg);
	up_write(&crypto_alg_sem);

	return err;
}
122 123 124 125 126 127 128
EXPORT_SYMBOL_GPL(crypto_register_alg);

int crypto_unregister_alg(struct crypto_alg *alg)
{
	int ret = -ENOENT;
	
	down_write(&crypto_alg_sem);
129 130 131
	if (likely(!list_empty(&alg->cra_list))) {
		list_del_init(&alg->cra_list);
		ret = 0;
132
	}
133
	crypto_notify(CRYPTO_MSG_ALG_UNREGISTER, alg);
134 135 136 137 138 139 140 141 142 143 144 145 146
	up_write(&crypto_alg_sem);

	if (ret)
		return ret;

	BUG_ON(atomic_read(&alg->cra_refcnt) != 1);
	if (alg->cra_destroy)
		alg->cra_destroy(alg);

	return 0;
}
EXPORT_SYMBOL_GPL(crypto_unregister_alg);

147 148 149 150 151 152 153 154 155 156 157 158 159
int crypto_register_template(struct crypto_template *tmpl)
{
	struct crypto_template *q;
	int err = -EEXIST;

	down_write(&crypto_alg_sem);

	list_for_each_entry(q, &crypto_template_list, list) {
		if (q == tmpl)
			goto out;
	}

	list_add(&tmpl->list, &crypto_template_list);
160
	crypto_notify(CRYPTO_MSG_TMPL_REGISTER, tmpl);
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	err = 0;
out:
	up_write(&crypto_alg_sem);
	return err;
}
EXPORT_SYMBOL_GPL(crypto_register_template);

void crypto_unregister_template(struct crypto_template *tmpl)
{
	struct crypto_instance *inst;
	struct hlist_node *p, *n;
	struct hlist_head *list;

	down_write(&crypto_alg_sem);

	BUG_ON(list_empty(&tmpl->list));
	list_del_init(&tmpl->list);

	list = &tmpl->instances;
	hlist_for_each_entry(inst, p, list, list) {
		BUG_ON(list_empty(&inst->alg.cra_list));
		list_del_init(&inst->alg.cra_list);
183
		crypto_notify(CRYPTO_MSG_ALG_UNREGISTER, &inst->alg);
184 185
	}

186 187
	crypto_notify(CRYPTO_MSG_TMPL_UNREGISTER, tmpl);

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 213 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 239 240 241 242 243 244 245 246 247 248 249 250 251 252
	up_write(&crypto_alg_sem);

	hlist_for_each_entry_safe(inst, p, n, list, list) {
		BUG_ON(atomic_read(&inst->alg.cra_refcnt) != 1);
		tmpl->free(inst);
	}
}
EXPORT_SYMBOL_GPL(crypto_unregister_template);

static struct crypto_template *__crypto_lookup_template(const char *name)
{
	struct crypto_template *q, *tmpl = NULL;

	down_read(&crypto_alg_sem);
	list_for_each_entry(q, &crypto_template_list, list) {
		if (strcmp(q->name, name))
			continue;
		if (unlikely(!crypto_tmpl_get(q)))
			continue;

		tmpl = q;
		break;
	}
	up_read(&crypto_alg_sem);

	return tmpl;
}

struct crypto_template *crypto_lookup_template(const char *name)
{
	return try_then_request_module(__crypto_lookup_template(name), name);
}
EXPORT_SYMBOL_GPL(crypto_lookup_template);

int crypto_register_instance(struct crypto_template *tmpl,
			     struct crypto_instance *inst)
{
	int err = -EINVAL;

	if (inst->alg.cra_destroy)
		goto err;

	err = crypto_check_alg(&inst->alg);
	if (err)
		goto err;

	inst->alg.cra_module = tmpl->module;

	down_write(&crypto_alg_sem);

	err = __crypto_register_alg(&inst->alg);
	if (err)
		goto unlock;

	hlist_add_head(&inst->list, &tmpl->instances);
	inst->tmpl = tmpl;

unlock:
	up_write(&crypto_alg_sem);

err:
	return err;
}
EXPORT_SYMBOL_GPL(crypto_register_instance);

253 254 255 256 257 258 259 260 261 262 263 264
int crypto_register_notifier(struct notifier_block *nb)
{
	return blocking_notifier_chain_register(&crypto_chain, nb);
}
EXPORT_SYMBOL_GPL(crypto_register_notifier);

int crypto_unregister_notifier(struct notifier_block *nb)
{
	return blocking_notifier_chain_unregister(&crypto_chain, nb);
}
EXPORT_SYMBOL_GPL(crypto_unregister_notifier);

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
static int __init crypto_algapi_init(void)
{
	crypto_init_proc();
	return 0;
}

static void __exit crypto_algapi_exit(void)
{
	crypto_exit_proc();
}

module_init(crypto_algapi_init);
module_exit(crypto_algapi_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Cryptographic algorithms API");