blob: d4d05313280c5643a4c0b05e2f388d901bb581f1 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/list.h>
Herbert Xu79911102006-08-21 21:03:52 +100024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/string.h>
Herbert Xu79911102006-08-21 21:03:52 +100026#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * Algorithm masks and types.
30 */
Herbert Xu28259822006-08-06 21:23:26 +100031#define CRYPTO_ALG_TYPE_MASK 0x0000000f
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define CRYPTO_ALG_TYPE_CIPHER 0x00000001
33#define CRYPTO_ALG_TYPE_DIGEST 0x00000002
Herbert Xu055bcee2006-08-19 22:24:23 +100034#define CRYPTO_ALG_TYPE_HASH 0x00000003
35#define CRYPTO_ALG_TYPE_BLKCIPHER 0x00000004
36#define CRYPTO_ALG_TYPE_COMPRESS 0x00000005
37
38#define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Herbert Xu28259822006-08-06 21:23:26 +100040#define CRYPTO_ALG_LARVAL 0x00000010
Herbert Xu6bfd4802006-09-21 11:39:29 +100041#define CRYPTO_ALG_DEAD 0x00000020
42#define CRYPTO_ALG_DYING 0x00000040
Herbert Xuf3f632d2006-08-06 23:12:59 +100043#define CRYPTO_ALG_ASYNC 0x00000080
Herbert Xu28259822006-08-06 21:23:26 +100044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
Herbert Xu60104392006-08-26 18:34:10 +100046 * Set this bit if and only if the algorithm requires another algorithm of
47 * the same type to handle corner cases.
48 */
49#define CRYPTO_ALG_NEED_FALLBACK 0x00000100
50
51/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Transform masks and values (for crt_flags).
53 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define CRYPTO_TFM_REQ_MASK 0x000fff00
55#define CRYPTO_TFM_RES_MASK 0xfff00000
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
Herbert Xu64baf3c2005-09-01 17:43:05 -070058#define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
Herbert Xu32e39832007-03-24 14:35:34 +110059#define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
61#define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
62#define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
63#define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
64#define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
65
66/*
67 * Miscellaneous stuff.
68 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define CRYPTO_MAX_ALG_NAME 64
70
Herbert Xu79911102006-08-21 21:03:52 +100071/*
72 * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual
73 * declaration) is used to ensure that the crypto_tfm context structure is
74 * aligned correctly for the given architecture so that there are no alignment
75 * faults for C data types. In particular, this is required on platforms such
76 * as arm where pointers are 32-bit aligned but there are data types such as
77 * u64 which require 64-bit alignment.
78 */
79#if defined(ARCH_KMALLOC_MINALIGN)
80#define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
81#elif defined(ARCH_SLAB_MINALIGN)
82#define CRYPTO_MINALIGN ARCH_SLAB_MINALIGN
83#endif
84
85#ifdef CRYPTO_MINALIGN
86#define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
87#else
88#define CRYPTO_MINALIGN_ATTR
89#endif
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091struct scatterlist;
Herbert Xu32e39832007-03-24 14:35:34 +110092struct crypto_ablkcipher;
93struct crypto_async_request;
Herbert Xu5cde0af2006-08-22 00:07:53 +100094struct crypto_blkcipher;
Herbert Xu055bcee2006-08-19 22:24:23 +100095struct crypto_hash;
Herbert Xu40725182005-07-06 13:51:52 -070096struct crypto_tfm;
Herbert Xue853c3c2006-08-22 00:06:54 +100097struct crypto_type;
Herbert Xu40725182005-07-06 13:51:52 -070098
Herbert Xu32e39832007-03-24 14:35:34 +110099typedef void (*crypto_completion_t)(struct crypto_async_request *req, int err);
100
101struct crypto_async_request {
102 struct list_head list;
103 crypto_completion_t complete;
104 void *data;
105 struct crypto_tfm *tfm;
106
107 u32 flags;
108};
109
110struct ablkcipher_request {
111 struct crypto_async_request base;
112
113 unsigned int nbytes;
114
115 void *info;
116
117 struct scatterlist *src;
118 struct scatterlist *dst;
119
120 void *__ctx[] CRYPTO_MINALIGN_ATTR;
121};
122
Herbert Xu5cde0af2006-08-22 00:07:53 +1000123struct blkcipher_desc {
124 struct crypto_blkcipher *tfm;
125 void *info;
126 u32 flags;
127};
128
Herbert Xu40725182005-07-06 13:51:52 -0700129struct cipher_desc {
130 struct crypto_tfm *tfm;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000131 void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Herbert Xu40725182005-07-06 13:51:52 -0700132 unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
133 const u8 *src, unsigned int nbytes);
134 void *info;
135};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Herbert Xu055bcee2006-08-19 22:24:23 +1000137struct hash_desc {
138 struct crypto_hash *tfm;
139 u32 flags;
140};
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Algorithms: modular crypto algorithm implementations, managed
144 * via crypto_register_alg() and crypto_unregister_alg().
145 */
Herbert Xu5cde0af2006-08-22 00:07:53 +1000146struct blkcipher_alg {
147 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
148 unsigned int keylen);
149 int (*encrypt)(struct blkcipher_desc *desc,
150 struct scatterlist *dst, struct scatterlist *src,
151 unsigned int nbytes);
152 int (*decrypt)(struct blkcipher_desc *desc,
153 struct scatterlist *dst, struct scatterlist *src,
154 unsigned int nbytes);
155
156 unsigned int min_keysize;
157 unsigned int max_keysize;
158 unsigned int ivsize;
159};
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161struct cipher_alg {
162 unsigned int cia_min_keysize;
163 unsigned int cia_max_keysize;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000164 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000165 unsigned int keylen);
Herbert Xu6c2bb982006-05-16 22:09:29 +1000166 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
167 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
170struct digest_alg {
171 unsigned int dia_digestsize;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000172 void (*dia_init)(struct crypto_tfm *tfm);
173 void (*dia_update)(struct crypto_tfm *tfm, const u8 *data,
174 unsigned int len);
175 void (*dia_final)(struct crypto_tfm *tfm, u8 *out);
176 int (*dia_setkey)(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000177 unsigned int keylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Herbert Xu055bcee2006-08-19 22:24:23 +1000180struct hash_alg {
181 int (*init)(struct hash_desc *desc);
182 int (*update)(struct hash_desc *desc, struct scatterlist *sg,
183 unsigned int nbytes);
184 int (*final)(struct hash_desc *desc, u8 *out);
185 int (*digest)(struct hash_desc *desc, struct scatterlist *sg,
186 unsigned int nbytes, u8 *out);
187 int (*setkey)(struct crypto_hash *tfm, const u8 *key,
188 unsigned int keylen);
189
190 unsigned int digestsize;
191};
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193struct compress_alg {
Herbert Xu6c2bb982006-05-16 22:09:29 +1000194 int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
195 unsigned int slen, u8 *dst, unsigned int *dlen);
196 int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
197 unsigned int slen, u8 *dst, unsigned int *dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
Herbert Xu5cde0af2006-08-22 00:07:53 +1000200#define cra_blkcipher cra_u.blkcipher
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define cra_cipher cra_u.cipher
202#define cra_digest cra_u.digest
Herbert Xu055bcee2006-08-19 22:24:23 +1000203#define cra_hash cra_u.hash
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define cra_compress cra_u.compress
205
206struct crypto_alg {
207 struct list_head cra_list;
Herbert Xu6bfd4802006-09-21 11:39:29 +1000208 struct list_head cra_users;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 u32 cra_flags;
211 unsigned int cra_blocksize;
212 unsigned int cra_ctxsize;
Herbert Xu95477372005-07-06 13:52:09 -0700213 unsigned int cra_alignmask;
Herbert Xu5cb14542005-11-05 16:58:14 +1100214
215 int cra_priority;
Herbert Xu6521f302006-08-06 20:28:44 +1000216 atomic_t cra_refcnt;
Herbert Xu5cb14542005-11-05 16:58:14 +1100217
Herbert Xud913ea02006-05-21 08:45:26 +1000218 char cra_name[CRYPTO_MAX_ALG_NAME];
219 char cra_driver_name[CRYPTO_MAX_ALG_NAME];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Herbert Xue853c3c2006-08-22 00:06:54 +1000221 const struct crypto_type *cra_type;
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 union {
Herbert Xu5cde0af2006-08-22 00:07:53 +1000224 struct blkcipher_alg blkcipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct cipher_alg cipher;
226 struct digest_alg digest;
Herbert Xu055bcee2006-08-19 22:24:23 +1000227 struct hash_alg hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct compress_alg compress;
229 } cra_u;
Herbert Xuc7fc0592006-05-24 13:02:26 +1000230
231 int (*cra_init)(struct crypto_tfm *tfm);
232 void (*cra_exit)(struct crypto_tfm *tfm);
Herbert Xu6521f302006-08-06 20:28:44 +1000233 void (*cra_destroy)(struct crypto_alg *alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 struct module *cra_module;
236};
237
238/*
239 * Algorithm registration interface.
240 */
241int crypto_register_alg(struct crypto_alg *alg);
242int crypto_unregister_alg(struct crypto_alg *alg);
243
244/*
245 * Algorithm query interface.
246 */
247#ifdef CONFIG_CRYPTO
Herbert Xufce32d72006-08-26 17:35:45 +1000248int crypto_has_alg(const char *name, u32 type, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#else
Herbert Xufce32d72006-08-26 17:35:45 +1000250static inline int crypto_has_alg(const char *name, u32 type, u32 mask)
251{
252 return 0;
253}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#endif
255
256/*
257 * Transforms: user-instantiated objects which encapsulate algorithms
Herbert Xu6d7d6842006-07-30 11:53:01 +1000258 * and core processing logic. Managed via crypto_alloc_*() and
259 * crypto_free_*(), as well as the various helpers below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Herbert Xu32e39832007-03-24 14:35:34 +1100262struct ablkcipher_tfm {
263 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
264 unsigned int keylen);
265 int (*encrypt)(struct ablkcipher_request *req);
266 int (*decrypt)(struct ablkcipher_request *req);
267 unsigned int ivsize;
268 unsigned int reqsize;
269};
270
Herbert Xu5cde0af2006-08-22 00:07:53 +1000271struct blkcipher_tfm {
272 void *iv;
273 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
274 unsigned int keylen);
275 int (*encrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
276 struct scatterlist *src, unsigned int nbytes);
277 int (*decrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
278 struct scatterlist *src, unsigned int nbytes);
279};
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281struct cipher_tfm {
282 void *cit_iv;
283 unsigned int cit_ivsize;
284 u32 cit_mode;
285 int (*cit_setkey)(struct crypto_tfm *tfm,
286 const u8 *key, unsigned int keylen);
287 int (*cit_encrypt)(struct crypto_tfm *tfm,
288 struct scatterlist *dst,
289 struct scatterlist *src,
290 unsigned int nbytes);
291 int (*cit_encrypt_iv)(struct crypto_tfm *tfm,
292 struct scatterlist *dst,
293 struct scatterlist *src,
294 unsigned int nbytes, u8 *iv);
295 int (*cit_decrypt)(struct crypto_tfm *tfm,
296 struct scatterlist *dst,
297 struct scatterlist *src,
298 unsigned int nbytes);
299 int (*cit_decrypt_iv)(struct crypto_tfm *tfm,
300 struct scatterlist *dst,
301 struct scatterlist *src,
302 unsigned int nbytes, u8 *iv);
303 void (*cit_xor_block)(u8 *dst, const u8 *src);
Herbert Xuf28776a2006-08-13 20:58:18 +1000304 void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
305 void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
Herbert Xu055bcee2006-08-19 22:24:23 +1000308struct hash_tfm {
309 int (*init)(struct hash_desc *desc);
310 int (*update)(struct hash_desc *desc,
311 struct scatterlist *sg, unsigned int nsg);
312 int (*final)(struct hash_desc *desc, u8 *out);
313 int (*digest)(struct hash_desc *desc, struct scatterlist *sg,
314 unsigned int nsg, u8 *out);
315 int (*setkey)(struct crypto_hash *tfm, const u8 *key,
316 unsigned int keylen);
Herbert Xu055bcee2006-08-19 22:24:23 +1000317 unsigned int digestsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
320struct compress_tfm {
321 int (*cot_compress)(struct crypto_tfm *tfm,
322 const u8 *src, unsigned int slen,
323 u8 *dst, unsigned int *dlen);
324 int (*cot_decompress)(struct crypto_tfm *tfm,
325 const u8 *src, unsigned int slen,
326 u8 *dst, unsigned int *dlen);
327};
328
Herbert Xu32e39832007-03-24 14:35:34 +1100329#define crt_ablkcipher crt_u.ablkcipher
Herbert Xu5cde0af2006-08-22 00:07:53 +1000330#define crt_blkcipher crt_u.blkcipher
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#define crt_cipher crt_u.cipher
Herbert Xu055bcee2006-08-19 22:24:23 +1000332#define crt_hash crt_u.hash
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#define crt_compress crt_u.compress
334
335struct crypto_tfm {
336
337 u32 crt_flags;
338
339 union {
Herbert Xu32e39832007-03-24 14:35:34 +1100340 struct ablkcipher_tfm ablkcipher;
Herbert Xu5cde0af2006-08-22 00:07:53 +1000341 struct blkcipher_tfm blkcipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct cipher_tfm cipher;
Herbert Xu055bcee2006-08-19 22:24:23 +1000343 struct hash_tfm hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct compress_tfm compress;
345 } crt_u;
346
347 struct crypto_alg *__crt_alg;
Herbert Xuf10b7892006-01-25 22:34:01 +1100348
Herbert Xu79911102006-08-21 21:03:52 +1000349 void *__crt_ctx[] CRYPTO_MINALIGN_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350};
351
Herbert Xu32e39832007-03-24 14:35:34 +1100352struct crypto_ablkcipher {
353 struct crypto_tfm base;
354};
355
Herbert Xu5cde0af2006-08-22 00:07:53 +1000356struct crypto_blkcipher {
357 struct crypto_tfm base;
358};
359
Herbert Xu78a1fe42006-12-24 10:02:00 +1100360struct crypto_cipher {
361 struct crypto_tfm base;
362};
363
364struct crypto_comp {
365 struct crypto_tfm base;
366};
367
Herbert Xu055bcee2006-08-19 22:24:23 +1000368struct crypto_hash {
369 struct crypto_tfm base;
370};
371
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000372enum {
373 CRYPTOA_UNSPEC,
374 CRYPTOA_ALG,
375};
376
377struct crypto_attr_alg {
378 char name[CRYPTO_MAX_ALG_NAME];
379};
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
382 * Transform user interface.
383 */
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, u32 tfm_flags);
Herbert Xu6d7d6842006-07-30 11:53:01 +1000386struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387void crypto_free_tfm(struct crypto_tfm *tfm);
388
389/*
390 * Transform helpers which query the underlying algorithm.
391 */
392static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
393{
394 return tfm->__crt_alg->cra_name;
395}
396
Michal Ludvigb14cdd62006-07-09 09:02:24 +1000397static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm)
398{
399 return tfm->__crt_alg->cra_driver_name;
400}
401
402static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm)
403{
404 return tfm->__crt_alg->cra_priority;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm)
408{
409 return module_name(tfm->__crt_alg->cra_module);
410}
411
412static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
413{
414 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
418{
419 return tfm->__crt_alg->cra_blocksize;
420}
421
Herbert Xufbdae9f2005-07-06 13:53:29 -0700422static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
423{
424 return tfm->__crt_alg->cra_alignmask;
425}
426
Herbert Xuf28776a2006-08-13 20:58:18 +1000427static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm)
428{
429 return tfm->crt_flags;
430}
431
432static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags)
433{
434 tfm->crt_flags |= flags;
435}
436
437static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags)
438{
439 tfm->crt_flags &= ~flags;
440}
441
Herbert Xu40725182005-07-06 13:51:52 -0700442static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
443{
Herbert Xuf10b7892006-01-25 22:34:01 +1100444 return tfm->__crt_ctx;
445}
446
447static inline unsigned int crypto_tfm_ctx_alignment(void)
448{
449 struct crypto_tfm *tfm;
450 return __alignof__(tfm->__crt_ctx);
Herbert Xu40725182005-07-06 13:51:52 -0700451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * API wrappers.
455 */
Herbert Xu32e39832007-03-24 14:35:34 +1100456static inline struct crypto_ablkcipher *__crypto_ablkcipher_cast(
457 struct crypto_tfm *tfm)
458{
459 return (struct crypto_ablkcipher *)tfm;
460}
461
462static inline struct crypto_ablkcipher *crypto_alloc_ablkcipher(
463 const char *alg_name, u32 type, u32 mask)
464{
465 type &= ~CRYPTO_ALG_TYPE_MASK;
466 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
467 mask |= CRYPTO_ALG_TYPE_MASK;
468
469 return __crypto_ablkcipher_cast(
470 crypto_alloc_base(alg_name, type, mask));
471}
472
473static inline struct crypto_tfm *crypto_ablkcipher_tfm(
474 struct crypto_ablkcipher *tfm)
475{
476 return &tfm->base;
477}
478
479static inline void crypto_free_ablkcipher(struct crypto_ablkcipher *tfm)
480{
481 crypto_free_tfm(crypto_ablkcipher_tfm(tfm));
482}
483
484static inline int crypto_has_ablkcipher(const char *alg_name, u32 type,
485 u32 mask)
486{
487 type &= ~CRYPTO_ALG_TYPE_MASK;
488 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
489 mask |= CRYPTO_ALG_TYPE_MASK;
490
491 return crypto_has_alg(alg_name, type, mask);
492}
493
494static inline struct ablkcipher_tfm *crypto_ablkcipher_crt(
495 struct crypto_ablkcipher *tfm)
496{
497 return &crypto_ablkcipher_tfm(tfm)->crt_ablkcipher;
498}
499
500static inline unsigned int crypto_ablkcipher_ivsize(
501 struct crypto_ablkcipher *tfm)
502{
503 return crypto_ablkcipher_crt(tfm)->ivsize;
504}
505
506static inline unsigned int crypto_ablkcipher_blocksize(
507 struct crypto_ablkcipher *tfm)
508{
509 return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm));
510}
511
512static inline unsigned int crypto_ablkcipher_alignmask(
513 struct crypto_ablkcipher *tfm)
514{
515 return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm));
516}
517
518static inline u32 crypto_ablkcipher_get_flags(struct crypto_ablkcipher *tfm)
519{
520 return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm));
521}
522
523static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher *tfm,
524 u32 flags)
525{
526 crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm), flags);
527}
528
529static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher *tfm,
530 u32 flags)
531{
532 crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm), flags);
533}
534
535static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm,
536 const u8 *key, unsigned int keylen)
537{
538 return crypto_ablkcipher_crt(tfm)->setkey(tfm, key, keylen);
539}
540
541static inline struct crypto_ablkcipher *crypto_ablkcipher_reqtfm(
542 struct ablkcipher_request *req)
543{
544 return __crypto_ablkcipher_cast(req->base.tfm);
545}
546
547static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request *req)
548{
549 struct ablkcipher_tfm *crt =
550 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
551 return crt->encrypt(req);
552}
553
554static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req)
555{
556 struct ablkcipher_tfm *crt =
557 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
558 return crt->decrypt(req);
559}
560
561static inline int crypto_ablkcipher_reqsize(struct crypto_ablkcipher *tfm)
562{
563 return crypto_ablkcipher_crt(tfm)->reqsize;
564}
565
566static inline struct ablkcipher_request *ablkcipher_request_alloc(
567 struct crypto_ablkcipher *tfm, gfp_t gfp)
568{
569 struct ablkcipher_request *req;
570
571 req = kmalloc(sizeof(struct ablkcipher_request) +
572 crypto_ablkcipher_reqsize(tfm), gfp);
573
574 if (likely(req))
575 req->base.tfm = crypto_ablkcipher_tfm(tfm);
576
577 return req;
578}
579
580static inline void ablkcipher_request_free(struct ablkcipher_request *req)
581{
582 kfree(req);
583}
584
585static inline void ablkcipher_request_set_callback(
586 struct ablkcipher_request *req,
587 u32 flags, crypto_completion_t complete, void *data)
588{
589 req->base.complete = complete;
590 req->base.data = data;
591 req->base.flags = flags;
592}
593
594static inline void ablkcipher_request_set_crypt(
595 struct ablkcipher_request *req,
596 struct scatterlist *src, struct scatterlist *dst,
597 unsigned int nbytes, void *iv)
598{
599 req->src = src;
600 req->dst = dst;
601 req->nbytes = nbytes;
602 req->info = iv;
603}
604
Herbert Xu5cde0af2006-08-22 00:07:53 +1000605static inline struct crypto_blkcipher *__crypto_blkcipher_cast(
606 struct crypto_tfm *tfm)
607{
608 return (struct crypto_blkcipher *)tfm;
609}
610
611static inline struct crypto_blkcipher *crypto_blkcipher_cast(
612 struct crypto_tfm *tfm)
613{
614 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_BLKCIPHER);
615 return __crypto_blkcipher_cast(tfm);
616}
617
618static inline struct crypto_blkcipher *crypto_alloc_blkcipher(
619 const char *alg_name, u32 type, u32 mask)
620{
Herbert Xu32e39832007-03-24 14:35:34 +1100621 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
Herbert Xu5cde0af2006-08-22 00:07:53 +1000622 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
Herbert Xu32e39832007-03-24 14:35:34 +1100623 mask |= CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC;
Herbert Xu5cde0af2006-08-22 00:07:53 +1000624
625 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask));
626}
627
628static inline struct crypto_tfm *crypto_blkcipher_tfm(
629 struct crypto_blkcipher *tfm)
630{
631 return &tfm->base;
632}
633
634static inline void crypto_free_blkcipher(struct crypto_blkcipher *tfm)
635{
636 crypto_free_tfm(crypto_blkcipher_tfm(tfm));
637}
638
Herbert Xufce32d72006-08-26 17:35:45 +1000639static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask)
640{
Herbert Xu32e39832007-03-24 14:35:34 +1100641 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
Herbert Xufce32d72006-08-26 17:35:45 +1000642 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
Herbert Xu32e39832007-03-24 14:35:34 +1100643 mask |= CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC;
Herbert Xufce32d72006-08-26 17:35:45 +1000644
645 return crypto_has_alg(alg_name, type, mask);
646}
647
Herbert Xu5cde0af2006-08-22 00:07:53 +1000648static inline const char *crypto_blkcipher_name(struct crypto_blkcipher *tfm)
649{
650 return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm));
651}
652
653static inline struct blkcipher_tfm *crypto_blkcipher_crt(
654 struct crypto_blkcipher *tfm)
655{
656 return &crypto_blkcipher_tfm(tfm)->crt_blkcipher;
657}
658
659static inline struct blkcipher_alg *crypto_blkcipher_alg(
660 struct crypto_blkcipher *tfm)
661{
662 return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher;
663}
664
665static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher *tfm)
666{
667 return crypto_blkcipher_alg(tfm)->ivsize;
668}
669
670static inline unsigned int crypto_blkcipher_blocksize(
671 struct crypto_blkcipher *tfm)
672{
673 return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm));
674}
675
676static inline unsigned int crypto_blkcipher_alignmask(
677 struct crypto_blkcipher *tfm)
678{
679 return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm));
680}
681
682static inline u32 crypto_blkcipher_get_flags(struct crypto_blkcipher *tfm)
683{
684 return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm));
685}
686
687static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher *tfm,
688 u32 flags)
689{
690 crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm), flags);
691}
692
693static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher *tfm,
694 u32 flags)
695{
696 crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm), flags);
697}
698
699static inline int crypto_blkcipher_setkey(struct crypto_blkcipher *tfm,
700 const u8 *key, unsigned int keylen)
701{
702 return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm),
703 key, keylen);
704}
705
706static inline int crypto_blkcipher_encrypt(struct blkcipher_desc *desc,
707 struct scatterlist *dst,
708 struct scatterlist *src,
709 unsigned int nbytes)
710{
711 desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
712 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
713}
714
715static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc *desc,
716 struct scatterlist *dst,
717 struct scatterlist *src,
718 unsigned int nbytes)
719{
720 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
721}
722
723static inline int crypto_blkcipher_decrypt(struct blkcipher_desc *desc,
724 struct scatterlist *dst,
725 struct scatterlist *src,
726 unsigned int nbytes)
727{
728 desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
729 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
730}
731
732static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc *desc,
733 struct scatterlist *dst,
734 struct scatterlist *src,
735 unsigned int nbytes)
736{
737 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
738}
739
740static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher *tfm,
741 const u8 *src, unsigned int len)
742{
743 memcpy(crypto_blkcipher_crt(tfm)->iv, src, len);
744}
745
746static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher *tfm,
747 u8 *dst, unsigned int len)
748{
749 memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len);
750}
751
Herbert Xuf28776a2006-08-13 20:58:18 +1000752static inline struct crypto_cipher *__crypto_cipher_cast(struct crypto_tfm *tfm)
753{
754 return (struct crypto_cipher *)tfm;
755}
756
757static inline struct crypto_cipher *crypto_cipher_cast(struct crypto_tfm *tfm)
758{
759 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
760 return __crypto_cipher_cast(tfm);
761}
762
763static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name,
764 u32 type, u32 mask)
765{
766 type &= ~CRYPTO_ALG_TYPE_MASK;
767 type |= CRYPTO_ALG_TYPE_CIPHER;
768 mask |= CRYPTO_ALG_TYPE_MASK;
769
770 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask));
771}
772
773static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm)
774{
Herbert Xu78a1fe42006-12-24 10:02:00 +1100775 return &tfm->base;
Herbert Xuf28776a2006-08-13 20:58:18 +1000776}
777
778static inline void crypto_free_cipher(struct crypto_cipher *tfm)
779{
780 crypto_free_tfm(crypto_cipher_tfm(tfm));
781}
782
Herbert Xufce32d72006-08-26 17:35:45 +1000783static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask)
784{
785 type &= ~CRYPTO_ALG_TYPE_MASK;
786 type |= CRYPTO_ALG_TYPE_CIPHER;
787 mask |= CRYPTO_ALG_TYPE_MASK;
788
789 return crypto_has_alg(alg_name, type, mask);
790}
791
Herbert Xuf28776a2006-08-13 20:58:18 +1000792static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm)
793{
794 return &crypto_cipher_tfm(tfm)->crt_cipher;
795}
796
797static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher *tfm)
798{
799 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm));
800}
801
802static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher *tfm)
803{
804 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm));
805}
806
807static inline u32 crypto_cipher_get_flags(struct crypto_cipher *tfm)
808{
809 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm));
810}
811
812static inline void crypto_cipher_set_flags(struct crypto_cipher *tfm,
813 u32 flags)
814{
815 crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags);
816}
817
818static inline void crypto_cipher_clear_flags(struct crypto_cipher *tfm,
819 u32 flags)
820{
821 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags);
822}
823
Herbert Xu7226bc82006-08-21 21:40:49 +1000824static inline int crypto_cipher_setkey(struct crypto_cipher *tfm,
825 const u8 *key, unsigned int keylen)
826{
827 return crypto_cipher_crt(tfm)->cit_setkey(crypto_cipher_tfm(tfm),
828 key, keylen);
829}
830
Herbert Xuf28776a2006-08-13 20:58:18 +1000831static inline void crypto_cipher_encrypt_one(struct crypto_cipher *tfm,
832 u8 *dst, const u8 *src)
833{
834 crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm),
835 dst, src);
836}
837
838static inline void crypto_cipher_decrypt_one(struct crypto_cipher *tfm,
839 u8 *dst, const u8 *src)
840{
841 crypto_cipher_crt(tfm)->cit_decrypt_one(crypto_cipher_tfm(tfm),
842 dst, src);
843}
844
Herbert Xu055bcee2006-08-19 22:24:23 +1000845static inline struct crypto_hash *__crypto_hash_cast(struct crypto_tfm *tfm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Herbert Xu055bcee2006-08-19 22:24:23 +1000847 return (struct crypto_hash *)tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Herbert Xu055bcee2006-08-19 22:24:23 +1000850static inline struct crypto_hash *crypto_hash_cast(struct crypto_tfm *tfm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Herbert Xu055bcee2006-08-19 22:24:23 +1000852 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_HASH) &
853 CRYPTO_ALG_TYPE_HASH_MASK);
854 return __crypto_hash_cast(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Herbert Xu055bcee2006-08-19 22:24:23 +1000857static inline struct crypto_hash *crypto_alloc_hash(const char *alg_name,
858 u32 type, u32 mask)
859{
860 type &= ~CRYPTO_ALG_TYPE_MASK;
861 type |= CRYPTO_ALG_TYPE_HASH;
862 mask |= CRYPTO_ALG_TYPE_HASH_MASK;
863
864 return __crypto_hash_cast(crypto_alloc_base(alg_name, type, mask));
865}
866
867static inline struct crypto_tfm *crypto_hash_tfm(struct crypto_hash *tfm)
868{
869 return &tfm->base;
870}
871
872static inline void crypto_free_hash(struct crypto_hash *tfm)
873{
874 crypto_free_tfm(crypto_hash_tfm(tfm));
875}
876
Herbert Xufce32d72006-08-26 17:35:45 +1000877static inline int crypto_has_hash(const char *alg_name, u32 type, u32 mask)
878{
879 type &= ~CRYPTO_ALG_TYPE_MASK;
880 type |= CRYPTO_ALG_TYPE_HASH;
881 mask |= CRYPTO_ALG_TYPE_HASH_MASK;
882
883 return crypto_has_alg(alg_name, type, mask);
884}
885
Herbert Xu055bcee2006-08-19 22:24:23 +1000886static inline struct hash_tfm *crypto_hash_crt(struct crypto_hash *tfm)
887{
888 return &crypto_hash_tfm(tfm)->crt_hash;
889}
890
891static inline unsigned int crypto_hash_blocksize(struct crypto_hash *tfm)
892{
893 return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm));
894}
895
896static inline unsigned int crypto_hash_alignmask(struct crypto_hash *tfm)
897{
898 return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm));
899}
900
901static inline unsigned int crypto_hash_digestsize(struct crypto_hash *tfm)
902{
903 return crypto_hash_crt(tfm)->digestsize;
904}
905
906static inline u32 crypto_hash_get_flags(struct crypto_hash *tfm)
907{
908 return crypto_tfm_get_flags(crypto_hash_tfm(tfm));
909}
910
911static inline void crypto_hash_set_flags(struct crypto_hash *tfm, u32 flags)
912{
913 crypto_tfm_set_flags(crypto_hash_tfm(tfm), flags);
914}
915
916static inline void crypto_hash_clear_flags(struct crypto_hash *tfm, u32 flags)
917{
918 crypto_tfm_clear_flags(crypto_hash_tfm(tfm), flags);
919}
920
921static inline int crypto_hash_init(struct hash_desc *desc)
922{
923 return crypto_hash_crt(desc->tfm)->init(desc);
924}
925
926static inline int crypto_hash_update(struct hash_desc *desc,
927 struct scatterlist *sg,
928 unsigned int nbytes)
929{
930 return crypto_hash_crt(desc->tfm)->update(desc, sg, nbytes);
931}
932
933static inline int crypto_hash_final(struct hash_desc *desc, u8 *out)
934{
935 return crypto_hash_crt(desc->tfm)->final(desc, out);
936}
937
938static inline int crypto_hash_digest(struct hash_desc *desc,
939 struct scatterlist *sg,
940 unsigned int nbytes, u8 *out)
941{
942 return crypto_hash_crt(desc->tfm)->digest(desc, sg, nbytes, out);
943}
944
945static inline int crypto_hash_setkey(struct crypto_hash *hash,
946 const u8 *key, unsigned int keylen)
947{
948 return crypto_hash_crt(hash)->setkey(hash, key, keylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Herbert Xufce32d72006-08-26 17:35:45 +1000951static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm)
952{
953 return (struct crypto_comp *)tfm;
954}
955
956static inline struct crypto_comp *crypto_comp_cast(struct crypto_tfm *tfm)
957{
958 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_COMPRESS) &
959 CRYPTO_ALG_TYPE_MASK);
960 return __crypto_comp_cast(tfm);
961}
962
963static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name,
964 u32 type, u32 mask)
965{
966 type &= ~CRYPTO_ALG_TYPE_MASK;
967 type |= CRYPTO_ALG_TYPE_COMPRESS;
968 mask |= CRYPTO_ALG_TYPE_MASK;
969
970 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask));
971}
972
973static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm)
974{
Herbert Xu78a1fe42006-12-24 10:02:00 +1100975 return &tfm->base;
Herbert Xufce32d72006-08-26 17:35:45 +1000976}
977
978static inline void crypto_free_comp(struct crypto_comp *tfm)
979{
980 crypto_free_tfm(crypto_comp_tfm(tfm));
981}
982
983static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask)
984{
985 type &= ~CRYPTO_ALG_TYPE_MASK;
986 type |= CRYPTO_ALG_TYPE_COMPRESS;
987 mask |= CRYPTO_ALG_TYPE_MASK;
988
989 return crypto_has_alg(alg_name, type, mask);
990}
991
Herbert Xue4d5b792006-08-26 18:12:40 +1000992static inline const char *crypto_comp_name(struct crypto_comp *tfm)
993{
994 return crypto_tfm_alg_name(crypto_comp_tfm(tfm));
995}
996
Herbert Xufce32d72006-08-26 17:35:45 +1000997static inline struct compress_tfm *crypto_comp_crt(struct crypto_comp *tfm)
998{
999 return &crypto_comp_tfm(tfm)->crt_compress;
1000}
1001
1002static inline int crypto_comp_compress(struct crypto_comp *tfm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 const u8 *src, unsigned int slen,
1004 u8 *dst, unsigned int *dlen)
1005{
Herbert Xu78a1fe42006-12-24 10:02:00 +11001006 return crypto_comp_crt(tfm)->cot_compress(crypto_comp_tfm(tfm),
1007 src, slen, dst, dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Herbert Xufce32d72006-08-26 17:35:45 +10001010static inline int crypto_comp_decompress(struct crypto_comp *tfm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 const u8 *src, unsigned int slen,
1012 u8 *dst, unsigned int *dlen)
1013{
Herbert Xu78a1fe42006-12-24 10:02:00 +11001014 return crypto_comp_crt(tfm)->cot_decompress(crypto_comp_tfm(tfm),
1015 src, slen, dst, dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018#endif /* _LINUX_CRYPTO_H */
1019