blob: 0b583d24f7fa3765701184fae2f4252636e51eb5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Scatterlist Cryptographic API.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
6 *
7 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
8 * and Nettle, by Niels Möller.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 */
16#include <linux/init.h>
17#include <linux/crypto.h>
18#include <linux/errno.h>
Adrian Bunk176c3652005-07-06 13:53:09 -070019#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/rwsem.h>
21#include <linux/slab.h>
22#include "internal.h"
23
24LIST_HEAD(crypto_alg_list);
25DECLARE_RWSEM(crypto_alg_sem);
26
27static inline int crypto_alg_get(struct crypto_alg *alg)
28{
29 return try_module_get(alg->cra_module);
30}
31
32static inline void crypto_alg_put(struct crypto_alg *alg)
33{
34 module_put(alg->cra_module);
35}
36
Adrian Bunk176c3652005-07-06 13:53:09 -070037static struct crypto_alg *crypto_alg_lookup(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct crypto_alg *q, *alg = NULL;
40
41 if (!name)
42 return NULL;
43
44 down_read(&crypto_alg_sem);
45
46 list_for_each_entry(q, &crypto_alg_list, cra_list) {
47 if (!(strcmp(q->cra_name, name))) {
48 if (crypto_alg_get(q))
49 alg = q;
50 break;
51 }
52 }
53
54 up_read(&crypto_alg_sem);
55 return alg;
56}
57
Adrian Bunk176c3652005-07-06 13:53:09 -070058/* A far more intelligent version of this is planned. For now, just
59 * try an exact match on the name of the algorithm. */
60static inline struct crypto_alg *crypto_alg_mod_lookup(const char *name)
61{
62 return try_then_request_module(crypto_alg_lookup(name), name);
63}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int crypto_init_flags(struct crypto_tfm *tfm, u32 flags)
66{
67 tfm->crt_flags = 0;
68
69 switch (crypto_tfm_alg_type(tfm)) {
70 case CRYPTO_ALG_TYPE_CIPHER:
71 return crypto_init_cipher_flags(tfm, flags);
72
73 case CRYPTO_ALG_TYPE_DIGEST:
74 return crypto_init_digest_flags(tfm, flags);
75
76 case CRYPTO_ALG_TYPE_COMPRESS:
77 return crypto_init_compress_flags(tfm, flags);
78
79 default:
80 break;
81 }
82
83 BUG();
84 return -EINVAL;
85}
86
87static int crypto_init_ops(struct crypto_tfm *tfm)
88{
89 switch (crypto_tfm_alg_type(tfm)) {
90 case CRYPTO_ALG_TYPE_CIPHER:
91 return crypto_init_cipher_ops(tfm);
92
93 case CRYPTO_ALG_TYPE_DIGEST:
94 return crypto_init_digest_ops(tfm);
95
96 case CRYPTO_ALG_TYPE_COMPRESS:
97 return crypto_init_compress_ops(tfm);
98
99 default:
100 break;
101 }
102
103 BUG();
104 return -EINVAL;
105}
106
107static void crypto_exit_ops(struct crypto_tfm *tfm)
108{
109 switch (crypto_tfm_alg_type(tfm)) {
110 case CRYPTO_ALG_TYPE_CIPHER:
111 crypto_exit_cipher_ops(tfm);
112 break;
113
114 case CRYPTO_ALG_TYPE_DIGEST:
115 crypto_exit_digest_ops(tfm);
116 break;
117
118 case CRYPTO_ALG_TYPE_COMPRESS:
119 crypto_exit_compress_ops(tfm);
120 break;
121
122 default:
123 BUG();
124
125 }
126}
127
128struct crypto_tfm *crypto_alloc_tfm(const char *name, u32 flags)
129{
130 struct crypto_tfm *tfm = NULL;
131 struct crypto_alg *alg;
132
133 alg = crypto_alg_mod_lookup(name);
134 if (alg == NULL)
135 goto out;
136
137 tfm = kmalloc(sizeof(*tfm) + alg->cra_ctxsize, GFP_KERNEL);
138 if (tfm == NULL)
139 goto out_put;
140
141 memset(tfm, 0, sizeof(*tfm) + alg->cra_ctxsize);
142
143 tfm->__crt_alg = alg;
144
145 if (crypto_init_flags(tfm, flags))
146 goto out_free_tfm;
147
148 if (crypto_init_ops(tfm)) {
149 crypto_exit_ops(tfm);
150 goto out_free_tfm;
151 }
152
153 goto out;
154
155out_free_tfm:
156 kfree(tfm);
157 tfm = NULL;
158out_put:
159 crypto_alg_put(alg);
160out:
161 return tfm;
162}
163
164void crypto_free_tfm(struct crypto_tfm *tfm)
165{
166 struct crypto_alg *alg = tfm->__crt_alg;
167 int size = sizeof(*tfm) + alg->cra_ctxsize;
168
169 crypto_exit_ops(tfm);
170 crypto_alg_put(alg);
171 memset(tfm, 0, size);
172 kfree(tfm);
173}
174
175int crypto_register_alg(struct crypto_alg *alg)
176{
177 int ret = 0;
178 struct crypto_alg *q;
Herbert Xu95477372005-07-06 13:52:09 -0700179
180 if (alg->cra_alignmask & (alg->cra_alignmask + 1))
181 return -EINVAL;
182
183 if (alg->cra_alignmask > PAGE_SIZE)
184 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 down_write(&crypto_alg_sem);
187
188 list_for_each_entry(q, &crypto_alg_list, cra_list) {
189 if (!(strcmp(q->cra_name, alg->cra_name))) {
190 ret = -EEXIST;
191 goto out;
192 }
193 }
194
195 list_add_tail(&alg->cra_list, &crypto_alg_list);
196out:
197 up_write(&crypto_alg_sem);
198 return ret;
199}
200
201int crypto_unregister_alg(struct crypto_alg *alg)
202{
203 int ret = -ENOENT;
204 struct crypto_alg *q;
205
206 BUG_ON(!alg->cra_module);
207
208 down_write(&crypto_alg_sem);
209 list_for_each_entry(q, &crypto_alg_list, cra_list) {
210 if (alg == q) {
211 list_del(&alg->cra_list);
212 ret = 0;
213 goto out;
214 }
215 }
216out:
217 up_write(&crypto_alg_sem);
218 return ret;
219}
220
221int crypto_alg_available(const char *name, u32 flags)
222{
223 int ret = 0;
224 struct crypto_alg *alg = crypto_alg_mod_lookup(name);
225
226 if (alg) {
227 crypto_alg_put(alg);
228 ret = 1;
229 }
230
231 return ret;
232}
233
234static int __init init_crypto(void)
235{
236 printk(KERN_INFO "Initializing Cryptographic API\n");
237 crypto_init_proc();
238 return 0;
239}
240
241__initcall(init_crypto);
242
243EXPORT_SYMBOL_GPL(crypto_register_alg);
244EXPORT_SYMBOL_GPL(crypto_unregister_alg);
245EXPORT_SYMBOL_GPL(crypto_alloc_tfm);
246EXPORT_SYMBOL_GPL(crypto_free_tfm);
247EXPORT_SYMBOL_GPL(crypto_alg_available);