[CRYPTO] Make crypto_alg_lookup static
[pandora-kernel.git] / crypto / api.c
1 /*
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>
19 #include <linux/kmod.h>
20 #include <linux/rwsem.h>
21 #include <linux/slab.h>
22 #include "internal.h"
23
24 LIST_HEAD(crypto_alg_list);
25 DECLARE_RWSEM(crypto_alg_sem);
26
27 static inline int crypto_alg_get(struct crypto_alg *alg)
28 {
29         return try_module_get(alg->cra_module);
30 }
31
32 static inline void crypto_alg_put(struct crypto_alg *alg)
33 {
34         module_put(alg->cra_module);
35 }
36
37 static struct crypto_alg *crypto_alg_lookup(const char *name)
38 {
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
58 /* A far more intelligent version of this is planned.  For now, just
59  * try an exact match on the name of the algorithm. */
60 static 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
65 static 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
87 static 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
107 static 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
128 struct 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
155 out_free_tfm:
156         kfree(tfm);
157         tfm = NULL;
158 out_put:
159         crypto_alg_put(alg);
160 out:
161         return tfm;
162 }
163
164 void 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
175 int crypto_register_alg(struct crypto_alg *alg)
176 {
177         int ret = 0;
178         struct crypto_alg *q;
179
180         if (alg->cra_alignmask & (alg->cra_alignmask + 1))
181                 return -EINVAL;
182
183         if (alg->cra_alignmask > PAGE_SIZE)
184                 return -EINVAL;
185         
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);
196 out:    
197         up_write(&crypto_alg_sem);
198         return ret;
199 }
200
201 int 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         }
216 out:    
217         up_write(&crypto_alg_sem);
218         return ret;
219 }
220
221 int 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
234 static 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
243 EXPORT_SYMBOL_GPL(crypto_register_alg);
244 EXPORT_SYMBOL_GPL(crypto_unregister_alg);
245 EXPORT_SYMBOL_GPL(crypto_alloc_tfm);
246 EXPORT_SYMBOL_GPL(crypto_free_tfm);
247 EXPORT_SYMBOL_GPL(crypto_alg_available);