diff options
-rw-r--r-- | crypto/algapi.c | 156 | ||||
-rw-r--r-- | crypto/internal.h | 17 | ||||
-rw-r--r-- | include/crypto/algapi.h | 31 |
3 files changed, 182 insertions, 22 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index a65c6ccfbe17..232b37d81613 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c | |||
@@ -13,11 +13,14 @@ | |||
13 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/list.h> | ||
16 | #include <linux/module.h> | 17 | #include <linux/module.h> |
17 | #include <linux/string.h> | 18 | #include <linux/string.h> |
18 | 19 | ||
19 | #include "internal.h" | 20 | #include "internal.h" |
20 | 21 | ||
22 | static LIST_HEAD(crypto_template_list); | ||
23 | |||
21 | static inline int crypto_set_driver_name(struct crypto_alg *alg) | 24 | static inline int crypto_set_driver_name(struct crypto_alg *alg) |
22 | { | 25 | { |
23 | static const char suffix[] = "-generic"; | 26 | static const char suffix[] = "-generic"; |
@@ -35,11 +38,8 @@ static inline int crypto_set_driver_name(struct crypto_alg *alg) | |||
35 | return 0; | 38 | return 0; |
36 | } | 39 | } |
37 | 40 | ||
38 | int crypto_register_alg(struct crypto_alg *alg) | 41 | static int crypto_check_alg(struct crypto_alg *alg) |
39 | { | 42 | { |
40 | int ret; | ||
41 | struct crypto_alg *q; | ||
42 | |||
43 | if (alg->cra_alignmask & (alg->cra_alignmask + 1)) | 43 | if (alg->cra_alignmask & (alg->cra_alignmask + 1)) |
44 | return -EINVAL; | 44 | return -EINVAL; |
45 | 45 | ||
@@ -51,42 +51,52 @@ int crypto_register_alg(struct crypto_alg *alg) | |||
51 | 51 | ||
52 | if (alg->cra_priority < 0) | 52 | if (alg->cra_priority < 0) |
53 | return -EINVAL; | 53 | return -EINVAL; |
54 | |||
55 | ret = crypto_set_driver_name(alg); | ||
56 | if (unlikely(ret)) | ||
57 | return ret; | ||
58 | 54 | ||
59 | down_write(&crypto_alg_sem); | 55 | return crypto_set_driver_name(alg); |
60 | 56 | } | |
57 | |||
58 | static int __crypto_register_alg(struct crypto_alg *alg) | ||
59 | { | ||
60 | struct crypto_alg *q; | ||
61 | int ret = -EEXIST; | ||
62 | |||
61 | list_for_each_entry(q, &crypto_alg_list, cra_list) { | 63 | list_for_each_entry(q, &crypto_alg_list, cra_list) { |
62 | if (q == alg) { | 64 | if (q == alg) |
63 | ret = -EEXIST; | ||
64 | goto out; | 65 | goto out; |
65 | } | ||
66 | } | 66 | } |
67 | 67 | ||
68 | list_add(&alg->cra_list, &crypto_alg_list); | 68 | list_add(&alg->cra_list, &crypto_alg_list); |
69 | atomic_set(&alg->cra_refcnt, 1); | 69 | atomic_set(&alg->cra_refcnt, 1); |
70 | ret = 0; | ||
70 | out: | 71 | out: |
71 | up_write(&crypto_alg_sem); | ||
72 | return ret; | 72 | return ret; |
73 | } | 73 | } |
74 | |||
75 | int crypto_register_alg(struct crypto_alg *alg) | ||
76 | { | ||
77 | int err; | ||
78 | |||
79 | err = crypto_check_alg(alg); | ||
80 | if (err) | ||
81 | return err; | ||
82 | |||
83 | down_write(&crypto_alg_sem); | ||
84 | err = __crypto_register_alg(alg); | ||
85 | up_write(&crypto_alg_sem); | ||
86 | |||
87 | return err; | ||
88 | } | ||
74 | EXPORT_SYMBOL_GPL(crypto_register_alg); | 89 | EXPORT_SYMBOL_GPL(crypto_register_alg); |
75 | 90 | ||
76 | int crypto_unregister_alg(struct crypto_alg *alg) | 91 | int crypto_unregister_alg(struct crypto_alg *alg) |
77 | { | 92 | { |
78 | int ret = -ENOENT; | 93 | int ret = -ENOENT; |
79 | struct crypto_alg *q; | ||
80 | 94 | ||
81 | down_write(&crypto_alg_sem); | 95 | down_write(&crypto_alg_sem); |
82 | list_for_each_entry(q, &crypto_alg_list, cra_list) { | 96 | if (likely(!list_empty(&alg->cra_list))) { |
83 | if (alg == q) { | 97 | list_del_init(&alg->cra_list); |
84 | list_del(&alg->cra_list); | 98 | ret = 0; |
85 | ret = 0; | ||
86 | goto out; | ||
87 | } | ||
88 | } | 99 | } |
89 | out: | ||
90 | up_write(&crypto_alg_sem); | 100 | up_write(&crypto_alg_sem); |
91 | 101 | ||
92 | if (ret) | 102 | if (ret) |
@@ -100,6 +110,108 @@ out: | |||
100 | } | 110 | } |
101 | EXPORT_SYMBOL_GPL(crypto_unregister_alg); | 111 | EXPORT_SYMBOL_GPL(crypto_unregister_alg); |
102 | 112 | ||
113 | int crypto_register_template(struct crypto_template *tmpl) | ||
114 | { | ||
115 | struct crypto_template *q; | ||
116 | int err = -EEXIST; | ||
117 | |||
118 | down_write(&crypto_alg_sem); | ||
119 | |||
120 | list_for_each_entry(q, &crypto_template_list, list) { | ||
121 | if (q == tmpl) | ||
122 | goto out; | ||
123 | } | ||
124 | |||
125 | list_add(&tmpl->list, &crypto_template_list); | ||
126 | err = 0; | ||
127 | out: | ||
128 | up_write(&crypto_alg_sem); | ||
129 | return err; | ||
130 | } | ||
131 | EXPORT_SYMBOL_GPL(crypto_register_template); | ||
132 | |||
133 | void crypto_unregister_template(struct crypto_template *tmpl) | ||
134 | { | ||
135 | struct crypto_instance *inst; | ||
136 | struct hlist_node *p, *n; | ||
137 | struct hlist_head *list; | ||
138 | |||
139 | down_write(&crypto_alg_sem); | ||
140 | |||
141 | BUG_ON(list_empty(&tmpl->list)); | ||
142 | list_del_init(&tmpl->list); | ||
143 | |||
144 | list = &tmpl->instances; | ||
145 | hlist_for_each_entry(inst, p, list, list) { | ||
146 | BUG_ON(list_empty(&inst->alg.cra_list)); | ||
147 | list_del_init(&inst->alg.cra_list); | ||
148 | } | ||
149 | |||
150 | up_write(&crypto_alg_sem); | ||
151 | |||
152 | hlist_for_each_entry_safe(inst, p, n, list, list) { | ||
153 | BUG_ON(atomic_read(&inst->alg.cra_refcnt) != 1); | ||
154 | tmpl->free(inst); | ||
155 | } | ||
156 | } | ||
157 | EXPORT_SYMBOL_GPL(crypto_unregister_template); | ||
158 | |||
159 | static struct crypto_template *__crypto_lookup_template(const char *name) | ||
160 | { | ||
161 | struct crypto_template *q, *tmpl = NULL; | ||
162 | |||
163 | down_read(&crypto_alg_sem); | ||
164 | list_for_each_entry(q, &crypto_template_list, list) { | ||
165 | if (strcmp(q->name, name)) | ||
166 | continue; | ||
167 | if (unlikely(!crypto_tmpl_get(q))) | ||
168 | continue; | ||
169 | |||
170 | tmpl = q; | ||
171 | break; | ||
172 | } | ||
173 | up_read(&crypto_alg_sem); | ||
174 | |||
175 | return tmpl; | ||
176 | } | ||
177 | |||
178 | struct crypto_template *crypto_lookup_template(const char *name) | ||
179 | { | ||
180 | return try_then_request_module(__crypto_lookup_template(name), name); | ||
181 | } | ||
182 | EXPORT_SYMBOL_GPL(crypto_lookup_template); | ||
183 | |||
184 | int crypto_register_instance(struct crypto_template *tmpl, | ||
185 | struct crypto_instance *inst) | ||
186 | { | ||
187 | int err = -EINVAL; | ||
188 | |||
189 | if (inst->alg.cra_destroy) | ||
190 | goto err; | ||
191 | |||
192 | err = crypto_check_alg(&inst->alg); | ||
193 | if (err) | ||
194 | goto err; | ||
195 | |||
196 | inst->alg.cra_module = tmpl->module; | ||
197 | |||
198 | down_write(&crypto_alg_sem); | ||
199 | |||
200 | err = __crypto_register_alg(&inst->alg); | ||
201 | if (err) | ||
202 | goto unlock; | ||
203 | |||
204 | hlist_add_head(&inst->list, &tmpl->instances); | ||
205 | inst->tmpl = tmpl; | ||
206 | |||
207 | unlock: | ||
208 | up_write(&crypto_alg_sem); | ||
209 | |||
210 | err: | ||
211 | return err; | ||
212 | } | ||
213 | EXPORT_SYMBOL_GPL(crypto_register_instance); | ||
214 | |||
103 | static int __init crypto_algapi_init(void) | 215 | static int __init crypto_algapi_init(void) |
104 | { | 216 | { |
105 | crypto_init_proc(); | 217 | crypto_init_proc(); |
diff --git a/crypto/internal.h b/crypto/internal.h index 26f47d331551..c3ab4a950f30 100644 --- a/crypto/internal.h +++ b/crypto/internal.h | |||
@@ -19,11 +19,15 @@ | |||
19 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/list.h> | 21 | #include <linux/list.h> |
22 | #include <linux/module.h> | ||
22 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
23 | #include <linux/rwsem.h> | 24 | #include <linux/rwsem.h> |
24 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
25 | #include <asm/kmap_types.h> | 26 | #include <asm/kmap_types.h> |
26 | 27 | ||
28 | struct crypto_instance; | ||
29 | struct crypto_template; | ||
30 | |||
27 | extern struct list_head crypto_alg_list; | 31 | extern struct list_head crypto_alg_list; |
28 | extern struct rw_semaphore crypto_alg_sem; | 32 | extern struct rw_semaphore crypto_alg_sem; |
29 | 33 | ||
@@ -112,5 +116,18 @@ void crypto_exit_digest_ops(struct crypto_tfm *tfm); | |||
112 | void crypto_exit_cipher_ops(struct crypto_tfm *tfm); | 116 | void crypto_exit_cipher_ops(struct crypto_tfm *tfm); |
113 | void crypto_exit_compress_ops(struct crypto_tfm *tfm); | 117 | void crypto_exit_compress_ops(struct crypto_tfm *tfm); |
114 | 118 | ||
119 | int crypto_register_instance(struct crypto_template *tmpl, | ||
120 | struct crypto_instance *inst); | ||
121 | |||
122 | static inline int crypto_tmpl_get(struct crypto_template *tmpl) | ||
123 | { | ||
124 | return try_module_get(tmpl->module); | ||
125 | } | ||
126 | |||
127 | static inline void crypto_tmpl_put(struct crypto_template *tmpl) | ||
128 | { | ||
129 | module_put(tmpl->module); | ||
130 | } | ||
131 | |||
115 | #endif /* _CRYPTO_INTERNAL_H */ | 132 | #endif /* _CRYPTO_INTERNAL_H */ |
116 | 133 | ||
diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h index ed68d494b364..ffec530d52fb 100644 --- a/include/crypto/algapi.h +++ b/include/crypto/algapi.h | |||
@@ -14,5 +14,36 @@ | |||
14 | 14 | ||
15 | #include <linux/crypto.h> | 15 | #include <linux/crypto.h> |
16 | 16 | ||
17 | struct module; | ||
18 | |||
19 | struct crypto_instance { | ||
20 | struct crypto_alg alg; | ||
21 | |||
22 | struct crypto_template *tmpl; | ||
23 | struct hlist_node list; | ||
24 | |||
25 | void *__ctx[] CRYPTO_MINALIGN_ATTR; | ||
26 | }; | ||
27 | |||
28 | struct crypto_template { | ||
29 | struct list_head list; | ||
30 | struct hlist_head instances; | ||
31 | struct module *module; | ||
32 | |||
33 | struct crypto_instance *(*alloc)(void *param, unsigned int len); | ||
34 | void (*free)(struct crypto_instance *inst); | ||
35 | |||
36 | char name[CRYPTO_MAX_ALG_NAME]; | ||
37 | }; | ||
38 | |||
39 | int crypto_register_template(struct crypto_template *tmpl); | ||
40 | void crypto_unregister_template(struct crypto_template *tmpl); | ||
41 | struct crypto_template *crypto_lookup_template(const char *name); | ||
42 | |||
43 | static inline void *crypto_instance_ctx(struct crypto_instance *inst) | ||
44 | { | ||
45 | return inst->__ctx; | ||
46 | } | ||
47 | |||
17 | #endif /* _CRYPTO_ALGAPI_H */ | 48 | #endif /* _CRYPTO_ALGAPI_H */ |
18 | 49 | ||