blob: 3e3e95aff133d9803dc03dad98db0edbda2b7257 [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)
Herbert Xu5cb14542005-11-05 16:58:14 +11006 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
9 * and Nettle, by Niels Möller.
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 */
17#ifndef _LINUX_CRYPTO_H
18#define _LINUX_CRYPTO_H
19
Herbert Xu6521f302006-08-06 20:28:44 +100020#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/list.h>
Herbert Xu79911102006-08-21 21:03:52 +100025#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/string.h>
Herbert Xu79911102006-08-21 21:03:52 +100027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * Algorithm masks and types.
31 */
Herbert Xu28259822006-08-06 21:23:26 +100032#define CRYPTO_ALG_TYPE_MASK 0x0000000f
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define CRYPTO_ALG_TYPE_CIPHER 0x00000001
34#define CRYPTO_ALG_TYPE_DIGEST 0x00000002
35#define CRYPTO_ALG_TYPE_COMPRESS 0x00000004
36
Herbert Xu28259822006-08-06 21:23:26 +100037#define CRYPTO_ALG_LARVAL 0x00000010
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Transform masks and values (for crt_flags).
41 */
42#define CRYPTO_TFM_MODE_MASK 0x000000ff
43#define CRYPTO_TFM_REQ_MASK 0x000fff00
44#define CRYPTO_TFM_RES_MASK 0xfff00000
45
46#define CRYPTO_TFM_MODE_ECB 0x00000001
47#define CRYPTO_TFM_MODE_CBC 0x00000002
48#define CRYPTO_TFM_MODE_CFB 0x00000004
49#define CRYPTO_TFM_MODE_CTR 0x00000008
50
51#define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
Herbert Xu64baf3c2005-09-01 17:43:05 -070052#define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
54#define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
55#define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
56#define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
57#define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
58
59/*
60 * Miscellaneous stuff.
61 */
62#define CRYPTO_UNSPEC 0
63#define CRYPTO_MAX_ALG_NAME 64
64
65#define CRYPTO_DIR_ENCRYPT 1
66#define CRYPTO_DIR_DECRYPT 0
67
Herbert Xu79911102006-08-21 21:03:52 +100068/*
69 * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual
70 * declaration) is used to ensure that the crypto_tfm context structure is
71 * aligned correctly for the given architecture so that there are no alignment
72 * faults for C data types. In particular, this is required on platforms such
73 * as arm where pointers are 32-bit aligned but there are data types such as
74 * u64 which require 64-bit alignment.
75 */
76#if defined(ARCH_KMALLOC_MINALIGN)
77#define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
78#elif defined(ARCH_SLAB_MINALIGN)
79#define CRYPTO_MINALIGN ARCH_SLAB_MINALIGN
80#endif
81
82#ifdef CRYPTO_MINALIGN
83#define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
84#else
85#define CRYPTO_MINALIGN_ATTR
86#endif
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct scatterlist;
Herbert Xu40725182005-07-06 13:51:52 -070089struct crypto_tfm;
90
91struct cipher_desc {
92 struct crypto_tfm *tfm;
Herbert Xu6c2bb982006-05-16 22:09:29 +100093 void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Herbert Xu40725182005-07-06 13:51:52 -070094 unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
95 const u8 *src, unsigned int nbytes);
96 void *info;
97};
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Algorithms: modular crypto algorithm implementations, managed
101 * via crypto_register_alg() and crypto_unregister_alg().
102 */
103struct cipher_alg {
104 unsigned int cia_min_keysize;
105 unsigned int cia_max_keysize;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000106 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unsigned int keylen, u32 *flags);
Herbert Xu6c2bb982006-05-16 22:09:29 +1000108 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
109 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Herbert Xu40725182005-07-06 13:51:52 -0700110
111 unsigned int (*cia_encrypt_ecb)(const struct cipher_desc *desc,
112 u8 *dst, const u8 *src,
113 unsigned int nbytes);
114 unsigned int (*cia_decrypt_ecb)(const struct cipher_desc *desc,
115 u8 *dst, const u8 *src,
116 unsigned int nbytes);
117 unsigned int (*cia_encrypt_cbc)(const struct cipher_desc *desc,
118 u8 *dst, const u8 *src,
119 unsigned int nbytes);
120 unsigned int (*cia_decrypt_cbc)(const struct cipher_desc *desc,
121 u8 *dst, const u8 *src,
122 unsigned int nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
125struct digest_alg {
126 unsigned int dia_digestsize;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000127 void (*dia_init)(struct crypto_tfm *tfm);
128 void (*dia_update)(struct crypto_tfm *tfm, const u8 *data,
129 unsigned int len);
130 void (*dia_final)(struct crypto_tfm *tfm, u8 *out);
131 int (*dia_setkey)(struct crypto_tfm *tfm, const u8 *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 unsigned int keylen, u32 *flags);
133};
134
135struct compress_alg {
Herbert Xu6c2bb982006-05-16 22:09:29 +1000136 int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
137 unsigned int slen, u8 *dst, unsigned int *dlen);
138 int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
139 unsigned int slen, u8 *dst, unsigned int *dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142#define cra_cipher cra_u.cipher
143#define cra_digest cra_u.digest
144#define cra_compress cra_u.compress
145
146struct crypto_alg {
147 struct list_head cra_list;
148 u32 cra_flags;
149 unsigned int cra_blocksize;
150 unsigned int cra_ctxsize;
Herbert Xu95477372005-07-06 13:52:09 -0700151 unsigned int cra_alignmask;
Herbert Xu5cb14542005-11-05 16:58:14 +1100152
153 int cra_priority;
Herbert Xu6521f302006-08-06 20:28:44 +1000154 atomic_t cra_refcnt;
Herbert Xu5cb14542005-11-05 16:58:14 +1100155
Herbert Xud913ea02006-05-21 08:45:26 +1000156 char cra_name[CRYPTO_MAX_ALG_NAME];
157 char cra_driver_name[CRYPTO_MAX_ALG_NAME];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 union {
160 struct cipher_alg cipher;
161 struct digest_alg digest;
162 struct compress_alg compress;
163 } cra_u;
Herbert Xuc7fc0592006-05-24 13:02:26 +1000164
165 int (*cra_init)(struct crypto_tfm *tfm);
166 void (*cra_exit)(struct crypto_tfm *tfm);
Herbert Xu6521f302006-08-06 20:28:44 +1000167 void (*cra_destroy)(struct crypto_alg *alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 struct module *cra_module;
170};
171
172/*
173 * Algorithm registration interface.
174 */
175int crypto_register_alg(struct crypto_alg *alg);
176int crypto_unregister_alg(struct crypto_alg *alg);
177
178/*
179 * Algorithm query interface.
180 */
181#ifdef CONFIG_CRYPTO
182int crypto_alg_available(const char *name, u32 flags);
183#else
184static inline int crypto_alg_available(const char *name, u32 flags)
185{
186 return 0;
187}
188#endif
189
190/*
191 * Transforms: user-instantiated objects which encapsulate algorithms
192 * and core processing logic. Managed via crypto_alloc_tfm() and
193 * crypto_free_tfm(), as well as the various helpers below.
194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196struct cipher_tfm {
197 void *cit_iv;
198 unsigned int cit_ivsize;
199 u32 cit_mode;
200 int (*cit_setkey)(struct crypto_tfm *tfm,
201 const u8 *key, unsigned int keylen);
202 int (*cit_encrypt)(struct crypto_tfm *tfm,
203 struct scatterlist *dst,
204 struct scatterlist *src,
205 unsigned int nbytes);
206 int (*cit_encrypt_iv)(struct crypto_tfm *tfm,
207 struct scatterlist *dst,
208 struct scatterlist *src,
209 unsigned int nbytes, u8 *iv);
210 int (*cit_decrypt)(struct crypto_tfm *tfm,
211 struct scatterlist *dst,
212 struct scatterlist *src,
213 unsigned int nbytes);
214 int (*cit_decrypt_iv)(struct crypto_tfm *tfm,
215 struct scatterlist *dst,
216 struct scatterlist *src,
217 unsigned int nbytes, u8 *iv);
218 void (*cit_xor_block)(u8 *dst, const u8 *src);
219};
220
221struct digest_tfm {
222 void (*dit_init)(struct crypto_tfm *tfm);
223 void (*dit_update)(struct crypto_tfm *tfm,
224 struct scatterlist *sg, unsigned int nsg);
225 void (*dit_final)(struct crypto_tfm *tfm, u8 *out);
226 void (*dit_digest)(struct crypto_tfm *tfm, struct scatterlist *sg,
227 unsigned int nsg, u8 *out);
228 int (*dit_setkey)(struct crypto_tfm *tfm,
229 const u8 *key, unsigned int keylen);
230#ifdef CONFIG_CRYPTO_HMAC
231 void *dit_hmac_block;
232#endif
233};
234
235struct compress_tfm {
236 int (*cot_compress)(struct crypto_tfm *tfm,
237 const u8 *src, unsigned int slen,
238 u8 *dst, unsigned int *dlen);
239 int (*cot_decompress)(struct crypto_tfm *tfm,
240 const u8 *src, unsigned int slen,
241 u8 *dst, unsigned int *dlen);
242};
243
244#define crt_cipher crt_u.cipher
245#define crt_digest crt_u.digest
246#define crt_compress crt_u.compress
247
248struct crypto_tfm {
249
250 u32 crt_flags;
251
252 union {
253 struct cipher_tfm cipher;
254 struct digest_tfm digest;
255 struct compress_tfm compress;
256 } crt_u;
257
258 struct crypto_alg *__crt_alg;
Herbert Xuf10b7892006-01-25 22:34:01 +1100259
Herbert Xu79911102006-08-21 21:03:52 +1000260 void *__crt_ctx[] CRYPTO_MINALIGN_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
263/*
264 * Transform user interface.
265 */
266
267/*
268 * crypto_alloc_tfm() will first attempt to locate an already loaded algorithm.
269 * If that fails and the kernel supports dynamically loadable modules, it
270 * will then attempt to load a module of the same name or alias. A refcount
271 * is grabbed on the algorithm which is then associated with the new transform.
272 *
273 * crypto_free_tfm() frees up the transform and any associated resources,
274 * then drops the refcount on the associated algorithm.
275 */
276struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, u32 tfm_flags);
277void crypto_free_tfm(struct crypto_tfm *tfm);
278
279/*
280 * Transform helpers which query the underlying algorithm.
281 */
282static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
283{
284 return tfm->__crt_alg->cra_name;
285}
286
287static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm)
288{
289 return module_name(tfm->__crt_alg->cra_module);
290}
291
292static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
293{
294 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
295}
296
297static inline unsigned int crypto_tfm_alg_min_keysize(struct crypto_tfm *tfm)
298{
299 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
300 return tfm->__crt_alg->cra_cipher.cia_min_keysize;
301}
302
303static inline unsigned int crypto_tfm_alg_max_keysize(struct crypto_tfm *tfm)
304{
305 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
306 return tfm->__crt_alg->cra_cipher.cia_max_keysize;
307}
308
309static inline unsigned int crypto_tfm_alg_ivsize(struct crypto_tfm *tfm)
310{
311 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
312 return tfm->crt_cipher.cit_ivsize;
313}
314
315static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
316{
317 return tfm->__crt_alg->cra_blocksize;
318}
319
320static inline unsigned int crypto_tfm_alg_digestsize(struct crypto_tfm *tfm)
321{
322 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
323 return tfm->__crt_alg->cra_digest.dia_digestsize;
324}
325
Herbert Xufbdae9f2005-07-06 13:53:29 -0700326static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
327{
328 return tfm->__crt_alg->cra_alignmask;
329}
330
Herbert Xu40725182005-07-06 13:51:52 -0700331static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
332{
Herbert Xuf10b7892006-01-25 22:34:01 +1100333 return tfm->__crt_ctx;
334}
335
336static inline unsigned int crypto_tfm_ctx_alignment(void)
337{
338 struct crypto_tfm *tfm;
339 return __alignof__(tfm->__crt_ctx);
Herbert Xu40725182005-07-06 13:51:52 -0700340}
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
343 * API wrappers.
344 */
345static inline void crypto_digest_init(struct crypto_tfm *tfm)
346{
347 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
348 tfm->crt_digest.dit_init(tfm);
349}
350
351static inline void crypto_digest_update(struct crypto_tfm *tfm,
352 struct scatterlist *sg,
353 unsigned int nsg)
354{
355 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
356 tfm->crt_digest.dit_update(tfm, sg, nsg);
357}
358
359static inline void crypto_digest_final(struct crypto_tfm *tfm, u8 *out)
360{
361 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
362 tfm->crt_digest.dit_final(tfm, out);
363}
364
365static inline void crypto_digest_digest(struct crypto_tfm *tfm,
366 struct scatterlist *sg,
367 unsigned int nsg, u8 *out)
368{
369 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
370 tfm->crt_digest.dit_digest(tfm, sg, nsg, out);
371}
372
373static inline int crypto_digest_setkey(struct crypto_tfm *tfm,
374 const u8 *key, unsigned int keylen)
375{
376 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_DIGEST);
377 if (tfm->crt_digest.dit_setkey == NULL)
378 return -ENOSYS;
379 return tfm->crt_digest.dit_setkey(tfm, key, keylen);
380}
381
382static inline int crypto_cipher_setkey(struct crypto_tfm *tfm,
383 const u8 *key, unsigned int keylen)
384{
385 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
386 return tfm->crt_cipher.cit_setkey(tfm, key, keylen);
387}
388
389static inline int crypto_cipher_encrypt(struct crypto_tfm *tfm,
390 struct scatterlist *dst,
391 struct scatterlist *src,
392 unsigned int nbytes)
393{
394 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
395 return tfm->crt_cipher.cit_encrypt(tfm, dst, src, nbytes);
396}
397
398static inline int crypto_cipher_encrypt_iv(struct crypto_tfm *tfm,
399 struct scatterlist *dst,
400 struct scatterlist *src,
401 unsigned int nbytes, u8 *iv)
402{
403 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
404 BUG_ON(tfm->crt_cipher.cit_mode == CRYPTO_TFM_MODE_ECB);
405 return tfm->crt_cipher.cit_encrypt_iv(tfm, dst, src, nbytes, iv);
406}
407
408static inline int crypto_cipher_decrypt(struct crypto_tfm *tfm,
409 struct scatterlist *dst,
410 struct scatterlist *src,
411 unsigned int nbytes)
412{
413 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
414 return tfm->crt_cipher.cit_decrypt(tfm, dst, src, nbytes);
415}
416
417static inline int crypto_cipher_decrypt_iv(struct crypto_tfm *tfm,
418 struct scatterlist *dst,
419 struct scatterlist *src,
420 unsigned int nbytes, u8 *iv)
421{
422 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
423 BUG_ON(tfm->crt_cipher.cit_mode == CRYPTO_TFM_MODE_ECB);
424 return tfm->crt_cipher.cit_decrypt_iv(tfm, dst, src, nbytes, iv);
425}
426
427static inline void crypto_cipher_set_iv(struct crypto_tfm *tfm,
428 const u8 *src, unsigned int len)
429{
430 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
431 memcpy(tfm->crt_cipher.cit_iv, src, len);
432}
433
434static inline void crypto_cipher_get_iv(struct crypto_tfm *tfm,
435 u8 *dst, unsigned int len)
436{
437 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
438 memcpy(dst, tfm->crt_cipher.cit_iv, len);
439}
440
441static inline int crypto_comp_compress(struct crypto_tfm *tfm,
442 const u8 *src, unsigned int slen,
443 u8 *dst, unsigned int *dlen)
444{
445 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_COMPRESS);
446 return tfm->crt_compress.cot_compress(tfm, src, slen, dst, dlen);
447}
448
449static inline int crypto_comp_decompress(struct crypto_tfm *tfm,
450 const u8 *src, unsigned int slen,
451 u8 *dst, unsigned int *dlen)
452{
453 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_COMPRESS);
454 return tfm->crt_compress.cot_decompress(tfm, src, slen, dst, dlen);
455}
456
457/*
458 * HMAC support.
459 */
460#ifdef CONFIG_CRYPTO_HMAC
461void crypto_hmac_init(struct crypto_tfm *tfm, u8 *key, unsigned int *keylen);
462void crypto_hmac_update(struct crypto_tfm *tfm,
463 struct scatterlist *sg, unsigned int nsg);
464void crypto_hmac_final(struct crypto_tfm *tfm, u8 *key,
465 unsigned int *keylen, u8 *out);
466void crypto_hmac(struct crypto_tfm *tfm, u8 *key, unsigned int *keylen,
467 struct scatterlist *sg, unsigned int nsg, u8 *out);
468#endif /* CONFIG_CRYPTO_HMAC */
469
470#endif /* _LINUX_CRYPTO_H */
471