[PATCH] schedule_timeout_[un]interruptible() speedup
[linux-2.6/btrfs-unstable.git] / include / linux / crypto.h
blob3c89df6e7768451acf625236790753f2ab7f5139
1 /*
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.
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.
16 #ifndef _LINUX_CRYPTO_H
17 #define _LINUX_CRYPTO_H
19 #include <linux/config.h>
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/types.h>
23 #include <linux/list.h>
24 #include <linux/string.h>
25 #include <asm/page.h>
28 * Algorithm masks and types.
30 #define CRYPTO_ALG_TYPE_MASK 0x000000ff
31 #define CRYPTO_ALG_TYPE_CIPHER 0x00000001
32 #define CRYPTO_ALG_TYPE_DIGEST 0x00000002
33 #define CRYPTO_ALG_TYPE_COMPRESS 0x00000004
36 * Transform masks and values (for crt_flags).
38 #define CRYPTO_TFM_MODE_MASK 0x000000ff
39 #define CRYPTO_TFM_REQ_MASK 0x000fff00
40 #define CRYPTO_TFM_RES_MASK 0xfff00000
42 #define CRYPTO_TFM_MODE_ECB 0x00000001
43 #define CRYPTO_TFM_MODE_CBC 0x00000002
44 #define CRYPTO_TFM_MODE_CFB 0x00000004
45 #define CRYPTO_TFM_MODE_CTR 0x00000008
47 #define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
48 #define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
49 #define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
50 #define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
51 #define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
52 #define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
53 #define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
56 * Miscellaneous stuff.
58 #define CRYPTO_UNSPEC 0
59 #define CRYPTO_MAX_ALG_NAME 64
61 #define CRYPTO_DIR_ENCRYPT 1
62 #define CRYPTO_DIR_DECRYPT 0
64 struct scatterlist;
65 struct crypto_tfm;
67 struct cipher_desc {
68 struct crypto_tfm *tfm;
69 void (*crfn)(void *ctx, u8 *dst, const u8 *src);
70 unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
71 const u8 *src, unsigned int nbytes);
72 void *info;
76 * Algorithms: modular crypto algorithm implementations, managed
77 * via crypto_register_alg() and crypto_unregister_alg().
79 struct cipher_alg {
80 unsigned int cia_min_keysize;
81 unsigned int cia_max_keysize;
82 int (*cia_setkey)(void *ctx, const u8 *key,
83 unsigned int keylen, u32 *flags);
84 void (*cia_encrypt)(void *ctx, u8 *dst, const u8 *src);
85 void (*cia_decrypt)(void *ctx, u8 *dst, const u8 *src);
87 unsigned int (*cia_encrypt_ecb)(const struct cipher_desc *desc,
88 u8 *dst, const u8 *src,
89 unsigned int nbytes);
90 unsigned int (*cia_decrypt_ecb)(const struct cipher_desc *desc,
91 u8 *dst, const u8 *src,
92 unsigned int nbytes);
93 unsigned int (*cia_encrypt_cbc)(const struct cipher_desc *desc,
94 u8 *dst, const u8 *src,
95 unsigned int nbytes);
96 unsigned int (*cia_decrypt_cbc)(const struct cipher_desc *desc,
97 u8 *dst, const u8 *src,
98 unsigned int nbytes);
101 struct digest_alg {
102 unsigned int dia_digestsize;
103 void (*dia_init)(void *ctx);
104 void (*dia_update)(void *ctx, const u8 *data, unsigned int len);
105 void (*dia_final)(void *ctx, u8 *out);
106 int (*dia_setkey)(void *ctx, const u8 *key,
107 unsigned int keylen, u32 *flags);
110 struct compress_alg {
111 int (*coa_init)(void *ctx);
112 void (*coa_exit)(void *ctx);
113 int (*coa_compress)(void *ctx, const u8 *src, unsigned int slen,
114 u8 *dst, unsigned int *dlen);
115 int (*coa_decompress)(void *ctx, const u8 *src, unsigned int slen,
116 u8 *dst, unsigned int *dlen);
119 #define cra_cipher cra_u.cipher
120 #define cra_digest cra_u.digest
121 #define cra_compress cra_u.compress
123 struct crypto_alg {
124 struct list_head cra_list;
125 u32 cra_flags;
126 unsigned int cra_blocksize;
127 unsigned int cra_ctxsize;
128 unsigned int cra_alignmask;
129 const char cra_name[CRYPTO_MAX_ALG_NAME];
131 union {
132 struct cipher_alg cipher;
133 struct digest_alg digest;
134 struct compress_alg compress;
135 } cra_u;
137 struct module *cra_module;
141 * Algorithm registration interface.
143 int crypto_register_alg(struct crypto_alg *alg);
144 int crypto_unregister_alg(struct crypto_alg *alg);
147 * Algorithm query interface.
149 #ifdef CONFIG_CRYPTO
150 int crypto_alg_available(const char *name, u32 flags);
151 #else
152 static inline int crypto_alg_available(const char *name, u32 flags)
154 return 0;
156 #endif
159 * Transforms: user-instantiated objects which encapsulate algorithms
160 * and core processing logic. Managed via crypto_alloc_tfm() and
161 * crypto_free_tfm(), as well as the various helpers below.
164 struct cipher_tfm {
165 void *cit_iv;
166 unsigned int cit_ivsize;
167 u32 cit_mode;
168 int (*cit_setkey)(struct crypto_tfm *tfm,
169 const u8 *key, unsigned int keylen);
170 int (*cit_encrypt)(struct crypto_tfm *tfm,
171 struct scatterlist *dst,
172 struct scatterlist *src,
173 unsigned int nbytes);
174 int (*cit_encrypt_iv)(struct crypto_tfm *tfm,
175 struct scatterlist *dst,
176 struct scatterlist *src,
177 unsigned int nbytes, u8 *iv);
178 int (*cit_decrypt)(struct crypto_tfm *tfm,
179 struct scatterlist *dst,
180 struct scatterlist *src,
181 unsigned int nbytes);
182 int (*cit_decrypt_iv)(struct crypto_tfm *tfm,
183 struct scatterlist *dst,
184 struct scatterlist *src,
185 unsigned int nbytes, u8 *iv);
186 void (*cit_xor_block)(u8 *dst, const u8 *src);
189 struct digest_tfm {
190 void (*dit_init)(struct crypto_tfm *tfm);
191 void (*dit_update)(struct crypto_tfm *tfm,
192 struct scatterlist *sg, unsigned int nsg);
193 void (*dit_final)(struct crypto_tfm *tfm, u8 *out);
194 void (*dit_digest)(struct crypto_tfm *tfm, struct scatterlist *sg,
195 unsigned int nsg, u8 *out);
196 int (*dit_setkey)(struct crypto_tfm *tfm,
197 const u8 *key, unsigned int keylen);
198 #ifdef CONFIG_CRYPTO_HMAC
199 void *dit_hmac_block;
200 #endif
203 struct compress_tfm {
204 int (*cot_compress)(struct crypto_tfm *tfm,
205 const u8 *src, unsigned int slen,
206 u8 *dst, unsigned int *dlen);
207 int (*cot_decompress)(struct crypto_tfm *tfm,
208 const u8 *src, unsigned int slen,
209 u8 *dst, unsigned int *dlen);
212 #define crt_cipher crt_u.cipher
213 #define crt_digest crt_u.digest
214 #define crt_compress crt_u.compress
216 struct crypto_tfm {
218 u32 crt_flags;
220 union {
221 struct cipher_tfm cipher;
222 struct digest_tfm digest;
223 struct compress_tfm compress;
224 } crt_u;
226 struct crypto_alg *__crt_alg;
230 * Transform user interface.
234 * crypto_alloc_tfm() will first attempt to locate an already loaded algorithm.
235 * If that fails and the kernel supports dynamically loadable modules, it
236 * will then attempt to load a module of the same name or alias. A refcount
237 * is grabbed on the algorithm which is then associated with the new transform.
239 * crypto_free_tfm() frees up the transform and any associated resources,
240 * then drops the refcount on the associated algorithm.
242 struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, u32 tfm_flags);
243 void crypto_free_tfm(struct crypto_tfm *tfm);
246 * Transform helpers which query the underlying algorithm.
248 static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
250 return tfm->__crt_alg->cra_name;
253 static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm)
255 return module_name(tfm->__crt_alg->cra_module);
258 static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
260 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
263 static inline unsigned int crypto_tfm_alg_min_keysize(struct crypto_tfm *tfm)
265 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
266 return tfm->__crt_alg->cra_cipher.cia_min_keysize;
269 static inline unsigned int crypto_tfm_alg_max_keysize(struct crypto_tfm *tfm)
271 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
272 return tfm->__crt_alg->cra_cipher.cia_max_keysize;
275 static inline unsigned int crypto_tfm_alg_ivsize(struct crypto_tfm *tfm)
277 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
278 return tfm->crt_cipher.cit_ivsize;
281 static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
283 return tfm->__crt_alg->cra_blocksize;
286 static inline unsigned int crypto_tfm_alg_digestsize(struct crypto_tfm *tfm)
288 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
289 return tfm->__crt_alg->cra_digest.dia_digestsize;
292 static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
294 return tfm->__crt_alg->cra_alignmask;
297 static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
299 return (void *)&tfm[1];
303 * API wrappers.
305 static inline void crypto_digest_init(struct crypto_tfm *tfm)
307 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
308 tfm->crt_digest.dit_init(tfm);
311 static inline void crypto_digest_update(struct crypto_tfm *tfm,
312 struct scatterlist *sg,
313 unsigned int nsg)
315 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
316 tfm->crt_digest.dit_update(tfm, sg, nsg);
319 static inline void crypto_digest_final(struct crypto_tfm *tfm, u8 *out)
321 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
322 tfm->crt_digest.dit_final(tfm, out);
325 static inline void crypto_digest_digest(struct crypto_tfm *tfm,
326 struct scatterlist *sg,
327 unsigned int nsg, u8 *out)
329 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
330 tfm->crt_digest.dit_digest(tfm, sg, nsg, out);
333 static inline int crypto_digest_setkey(struct crypto_tfm *tfm,
334 const u8 *key, unsigned int keylen)
336 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
337 if (tfm->crt_digest.dit_setkey == NULL)
338 return -ENOSYS;
339 return tfm->crt_digest.dit_setkey(tfm, key, keylen);
342 static inline int crypto_cipher_setkey(struct crypto_tfm *tfm,
343 const u8 *key, unsigned int keylen)
345 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
346 return tfm->crt_cipher.cit_setkey(tfm, key, keylen);
349 static inline int crypto_cipher_encrypt(struct crypto_tfm *tfm,
350 struct scatterlist *dst,
351 struct scatterlist *src,
352 unsigned int nbytes)
354 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
355 return tfm->crt_cipher.cit_encrypt(tfm, dst, src, nbytes);
358 static inline int crypto_cipher_encrypt_iv(struct crypto_tfm *tfm,
359 struct scatterlist *dst,
360 struct scatterlist *src,
361 unsigned int nbytes, u8 *iv)
363 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
364 BUG_ON(tfm->crt_cipher.cit_mode == CRYPTO_TFM_MODE_ECB);
365 return tfm->crt_cipher.cit_encrypt_iv(tfm, dst, src, nbytes, iv);
368 static inline int crypto_cipher_decrypt(struct crypto_tfm *tfm,
369 struct scatterlist *dst,
370 struct scatterlist *src,
371 unsigned int nbytes)
373 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
374 return tfm->crt_cipher.cit_decrypt(tfm, dst, src, nbytes);
377 static inline int crypto_cipher_decrypt_iv(struct crypto_tfm *tfm,
378 struct scatterlist *dst,
379 struct scatterlist *src,
380 unsigned int nbytes, u8 *iv)
382 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
383 BUG_ON(tfm->crt_cipher.cit_mode == CRYPTO_TFM_MODE_ECB);
384 return tfm->crt_cipher.cit_decrypt_iv(tfm, dst, src, nbytes, iv);
387 static inline void crypto_cipher_set_iv(struct crypto_tfm *tfm,
388 const u8 *src, unsigned int len)
390 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
391 memcpy(tfm->crt_cipher.cit_iv, src, len);
394 static inline void crypto_cipher_get_iv(struct crypto_tfm *tfm,
395 u8 *dst, unsigned int len)
397 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
398 memcpy(dst, tfm->crt_cipher.cit_iv, len);
401 static inline int crypto_comp_compress(struct crypto_tfm *tfm,
402 const u8 *src, unsigned int slen,
403 u8 *dst, unsigned int *dlen)
405 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_COMPRESS);
406 return tfm->crt_compress.cot_compress(tfm, src, slen, dst, dlen);
409 static inline int crypto_comp_decompress(struct crypto_tfm *tfm,
410 const u8 *src, unsigned int slen,
411 u8 *dst, unsigned int *dlen)
413 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_COMPRESS);
414 return tfm->crt_compress.cot_decompress(tfm, src, slen, dst, dlen);
418 * HMAC support.
420 #ifdef CONFIG_CRYPTO_HMAC
421 void crypto_hmac_init(struct crypto_tfm *tfm, u8 *key, unsigned int *keylen);
422 void crypto_hmac_update(struct crypto_tfm *tfm,
423 struct scatterlist *sg, unsigned int nsg);
424 void crypto_hmac_final(struct crypto_tfm *tfm, u8 *key,
425 unsigned int *keylen, u8 *out);
426 void crypto_hmac(struct crypto_tfm *tfm, u8 *key, unsigned int *keylen,
427 struct scatterlist *sg, unsigned int nsg, u8 *out);
428 #endif /* CONFIG_CRYPTO_HMAC */
430 #endif /* _LINUX_CRYPTO_H */