2 * Scatterlist Cryptographic API.
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
7 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
8 * and Nettle, by Niels Möller.
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)
17 #include <linux/compiler.h>
18 #include <linux/init.h>
19 #include <linux/crypto.h>
20 #include <linux/errno.h>
21 #include <linux/kmod.h>
22 #include <linux/rwsem.h>
23 #include <linux/slab.h>
26 LIST_HEAD(crypto_alg_list);
27 DECLARE_RWSEM(crypto_alg_sem);
29 static inline int crypto_alg_get(struct crypto_alg *alg)
31 return try_module_get(alg->cra_module);
34 static inline void crypto_alg_put(struct crypto_alg *alg)
36 module_put(alg->cra_module);
39 static struct crypto_alg *crypto_alg_lookup(const char *name)
41 struct crypto_alg *q, *alg = NULL;
46 down_read(&crypto_alg_sem);
48 list_for_each_entry(q, &crypto_alg_list, cra_list) {
49 if (!(strcmp(q->cra_name, name))) {
50 if (crypto_alg_get(q))
56 up_read(&crypto_alg_sem);
60 /* A far more intelligent version of this is planned. For now, just
61 * try an exact match on the name of the algorithm. */
62 static inline struct crypto_alg *crypto_alg_mod_lookup(const char *name)
64 return try_then_request_module(crypto_alg_lookup(name), name);
67 static int crypto_init_flags(struct crypto_tfm *tfm, u32 flags)
69 tfm->crt_flags = flags & CRYPTO_TFM_REQ_MASK;
70 flags &= ~CRYPTO_TFM_REQ_MASK;
72 switch (crypto_tfm_alg_type(tfm)) {
73 case CRYPTO_ALG_TYPE_CIPHER:
74 return crypto_init_cipher_flags(tfm, flags);
76 case CRYPTO_ALG_TYPE_DIGEST:
77 return crypto_init_digest_flags(tfm, flags);
79 case CRYPTO_ALG_TYPE_COMPRESS:
80 return crypto_init_compress_flags(tfm, flags);
90 static int crypto_init_ops(struct crypto_tfm *tfm)
92 switch (crypto_tfm_alg_type(tfm)) {
93 case CRYPTO_ALG_TYPE_CIPHER:
94 return crypto_init_cipher_ops(tfm);
96 case CRYPTO_ALG_TYPE_DIGEST:
97 return crypto_init_digest_ops(tfm);
99 case CRYPTO_ALG_TYPE_COMPRESS:
100 return crypto_init_compress_ops(tfm);
110 static void crypto_exit_ops(struct crypto_tfm *tfm)
112 switch (crypto_tfm_alg_type(tfm)) {
113 case CRYPTO_ALG_TYPE_CIPHER:
114 crypto_exit_cipher_ops(tfm);
117 case CRYPTO_ALG_TYPE_DIGEST:
118 crypto_exit_digest_ops(tfm);
121 case CRYPTO_ALG_TYPE_COMPRESS:
122 crypto_exit_compress_ops(tfm);
131 static unsigned int crypto_ctxsize(struct crypto_alg *alg, int flags)
135 switch (alg->cra_flags & CRYPTO_ALG_TYPE_MASK) {
139 case CRYPTO_ALG_TYPE_CIPHER:
140 len = crypto_cipher_ctxsize(alg, flags);
143 case CRYPTO_ALG_TYPE_DIGEST:
144 len = crypto_digest_ctxsize(alg, flags);
147 case CRYPTO_ALG_TYPE_COMPRESS:
148 len = crypto_compress_ctxsize(alg, flags);
152 return len + alg->cra_alignmask;
155 struct crypto_tfm *crypto_alloc_tfm(const char *name, u32 flags)
157 struct crypto_tfm *tfm = NULL;
158 struct crypto_alg *alg;
159 unsigned int tfm_size;
161 alg = crypto_alg_mod_lookup(name);
165 tfm_size = sizeof(*tfm) + crypto_ctxsize(alg, flags);
166 tfm = kmalloc(tfm_size, GFP_KERNEL);
170 memset(tfm, 0, tfm_size);
172 tfm->__crt_alg = alg;
174 if (crypto_init_flags(tfm, flags))
177 if (crypto_init_ops(tfm)) {
178 crypto_exit_ops(tfm);
193 void crypto_free_tfm(struct crypto_tfm *tfm)
195 struct crypto_alg *alg;
201 alg = tfm->__crt_alg;
202 size = sizeof(*tfm) + alg->cra_ctxsize;
204 crypto_exit_ops(tfm);
206 memset(tfm, 0, size);
210 int crypto_register_alg(struct crypto_alg *alg)
213 struct crypto_alg *q;
215 if (alg->cra_alignmask & (alg->cra_alignmask + 1))
218 if (alg->cra_alignmask > PAGE_SIZE)
221 down_write(&crypto_alg_sem);
223 list_for_each_entry(q, &crypto_alg_list, cra_list) {
224 if (!(strcmp(q->cra_name, alg->cra_name))) {
230 list_add_tail(&alg->cra_list, &crypto_alg_list);
232 up_write(&crypto_alg_sem);
236 int crypto_unregister_alg(struct crypto_alg *alg)
239 struct crypto_alg *q;
241 BUG_ON(!alg->cra_module);
243 down_write(&crypto_alg_sem);
244 list_for_each_entry(q, &crypto_alg_list, cra_list) {
246 list_del(&alg->cra_list);
252 up_write(&crypto_alg_sem);
256 int crypto_alg_available(const char *name, u32 flags)
259 struct crypto_alg *alg = crypto_alg_mod_lookup(name);
269 static int __init init_crypto(void)
271 printk(KERN_INFO "Initializing Cryptographic API\n");
276 __initcall(init_crypto);
278 EXPORT_SYMBOL_GPL(crypto_register_alg);
279 EXPORT_SYMBOL_GPL(crypto_unregister_alg);
280 EXPORT_SYMBOL_GPL(crypto_alloc_tfm);
281 EXPORT_SYMBOL_GPL(crypto_free_tfm);
282 EXPORT_SYMBOL_GPL(crypto_alg_available);