2 * Create default crypto algorithm instances.
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
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)
13 #include <linux/crypto.h>
14 #include <linux/ctype.h>
15 #include <linux/err.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/notifier.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
22 #include <linux/workqueue.h>
26 struct cryptomgr_param {
27 struct work_struct work;
31 struct crypto_attr_alg data;
37 char name[CRYPTO_MAX_ALG_NAME];
40 char template[CRYPTO_MAX_ALG_NAME];
43 static void cryptomgr_probe(struct work_struct *work)
45 struct cryptomgr_param *param =
46 container_of(work, struct cryptomgr_param, work);
47 struct crypto_template *tmpl;
48 struct crypto_instance *inst;
51 tmpl = crypto_lookup_template(param->template);
56 inst = tmpl->alloc(¶m->alg, sizeof(param->alg));
59 else if ((err = crypto_register_instance(tmpl, inst)))
61 } while (err == -EAGAIN && !signal_pending(current));
63 crypto_tmpl_put(tmpl);
73 crypto_larval_error(param->larval.name, param->larval.type,
78 static int cryptomgr_schedule_probe(struct crypto_larval *larval)
80 struct cryptomgr_param *param;
81 const char *name = larval->alg.cra_name;
85 param = kmalloc(sizeof(*param), GFP_KERNEL);
89 for (p = name; isalnum(*p) || *p == '-' || *p == '_'; p++)
93 if (!len || *p != '(')
96 memcpy(param->template, name, len);
97 param->template[len] = 0;
100 for (p = name; isalnum(*p) || *p == '-' || *p == '_'; p++)
104 if (!len || *p != ')' || p[1])
107 param->alg.attr.rta_len = sizeof(param->alg);
108 param->alg.attr.rta_type = CRYPTOA_ALG;
109 memcpy(param->alg.data.name, name, len);
110 param->alg.data.name[len] = 0;
112 memcpy(param->larval.name, larval->alg.cra_name, CRYPTO_MAX_ALG_NAME);
113 param->larval.type = larval->alg.cra_flags;
114 param->larval.mask = larval->mask;
116 INIT_WORK(¶m->work, cryptomgr_probe);
117 schedule_work(¶m->work);
127 static int cryptomgr_notify(struct notifier_block *this, unsigned long msg,
131 case CRYPTO_MSG_ALG_REQUEST:
132 return cryptomgr_schedule_probe(data);
138 static struct notifier_block cryptomgr_notifier = {
139 .notifier_call = cryptomgr_notify,
142 static int __init cryptomgr_init(void)
144 return crypto_register_notifier(&cryptomgr_notifier);
147 static void __exit cryptomgr_exit(void)
149 int err = crypto_unregister_notifier(&cryptomgr_notifier);
153 module_init(cryptomgr_init);
154 module_exit(cryptomgr_exit);
156 MODULE_LICENSE("GPL");
157 MODULE_DESCRIPTION("Crypto Algorithm Manager");