Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
Herbert Xu | 5cb1454 | 2005-11-05 16:58:14 +1100 | [diff] [blame] | 6 | * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no> |
John Anthony Kazos Jr | 18735dd | 2007-10-19 23:07:36 +0200 | [diff] [blame] | 9 | * and Nettle, by Niels Möller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Xu | 6521f30 | 2006-08-06 20:28:44 +1000 | [diff] [blame] | 20 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/list.h> |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 24 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/string.h> |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 26 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Algorithm masks and types. |
| 30 | */ |
Herbert Xu | 2825982 | 2006-08-06 21:23:26 +1000 | [diff] [blame] | 31 | #define CRYPTO_ALG_TYPE_MASK 0x0000000f |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define CRYPTO_ALG_TYPE_CIPHER 0x00000001 |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 33 | #define CRYPTO_ALG_TYPE_COMPRESS 0x00000002 |
| 34 | #define CRYPTO_ALG_TYPE_AEAD 0x00000003 |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 35 | #define CRYPTO_ALG_TYPE_BLKCIPHER 0x00000004 |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 36 | #define CRYPTO_ALG_TYPE_ABLKCIPHER 0x00000005 |
Herbert Xu | 61da88e | 2007-12-17 21:51:27 +0800 | [diff] [blame] | 37 | #define CRYPTO_ALG_TYPE_GIVCIPHER 0x00000006 |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 38 | #define CRYPTO_ALG_TYPE_DIGEST 0x00000008 |
| 39 | #define CRYPTO_ALG_TYPE_HASH 0x00000009 |
| 40 | #define CRYPTO_ALG_TYPE_AHASH 0x0000000a |
Herbert Xu | 3b2f6df | 2008-08-31 18:52:18 +1000 | [diff] [blame^] | 41 | #define CRYPTO_ALG_TYPE_SHASH 0x0000000b |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 42 | #define CRYPTO_ALG_TYPE_RNG 0x0000000c |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 43 | |
| 44 | #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 45 | #define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000c |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 46 | #define CRYPTO_ALG_TYPE_BLKCIPHER_MASK 0x0000000c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Herbert Xu | 2825982 | 2006-08-06 21:23:26 +1000 | [diff] [blame] | 48 | #define CRYPTO_ALG_LARVAL 0x00000010 |
Herbert Xu | 6bfd480 | 2006-09-21 11:39:29 +1000 | [diff] [blame] | 49 | #define CRYPTO_ALG_DEAD 0x00000020 |
| 50 | #define CRYPTO_ALG_DYING 0x00000040 |
Herbert Xu | f3f632d | 2006-08-06 23:12:59 +1000 | [diff] [blame] | 51 | #define CRYPTO_ALG_ASYNC 0x00000080 |
Herbert Xu | 2825982 | 2006-08-06 21:23:26 +1000 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* |
Herbert Xu | 6010439 | 2006-08-26 18:34:10 +1000 | [diff] [blame] | 54 | * Set this bit if and only if the algorithm requires another algorithm of |
| 55 | * the same type to handle corner cases. |
| 56 | */ |
| 57 | #define CRYPTO_ALG_NEED_FALLBACK 0x00000100 |
| 58 | |
| 59 | /* |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 60 | * This bit is set for symmetric key ciphers that have already been wrapped |
| 61 | * with a generic IV generator to prevent them from being wrapped again. |
| 62 | */ |
| 63 | #define CRYPTO_ALG_GENIV 0x00000200 |
| 64 | |
| 65 | /* |
Herbert Xu | 73d3864 | 2008-08-03 21:15:23 +0800 | [diff] [blame] | 66 | * Set if the algorithm has passed automated run-time testing. Note that |
| 67 | * if there is no run-time testing for a given algorithm it is considered |
| 68 | * to have passed. |
| 69 | */ |
| 70 | |
| 71 | #define CRYPTO_ALG_TESTED 0x00000400 |
| 72 | |
| 73 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * Transform masks and values (for crt_flags). |
| 75 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #define CRYPTO_TFM_REQ_MASK 0x000fff00 |
| 77 | #define CRYPTO_TFM_RES_MASK 0xfff00000 |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100 |
Herbert Xu | 64baf3c | 2005-09-01 17:43:05 -0700 | [diff] [blame] | 80 | #define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200 |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 81 | #define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #define CRYPTO_TFM_RES_WEAK_KEY 0x00100000 |
| 83 | #define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000 |
| 84 | #define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000 |
| 85 | #define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000 |
| 86 | #define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000 |
| 87 | |
| 88 | /* |
| 89 | * Miscellaneous stuff. |
| 90 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #define CRYPTO_MAX_ALG_NAME 64 |
| 92 | |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 93 | /* |
| 94 | * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual |
| 95 | * declaration) is used to ensure that the crypto_tfm context structure is |
| 96 | * aligned correctly for the given architecture so that there are no alignment |
| 97 | * faults for C data types. In particular, this is required on platforms such |
| 98 | * as arm where pointers are 32-bit aligned but there are data types such as |
| 99 | * u64 which require 64-bit alignment. |
| 100 | */ |
| 101 | #if defined(ARCH_KMALLOC_MINALIGN) |
| 102 | #define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN |
| 103 | #elif defined(ARCH_SLAB_MINALIGN) |
| 104 | #define CRYPTO_MINALIGN ARCH_SLAB_MINALIGN |
Herbert Xu | 6eb7228 | 2008-01-08 17:16:44 +1100 | [diff] [blame] | 105 | #else |
| 106 | #define CRYPTO_MINALIGN __alignof__(unsigned long long) |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 107 | #endif |
| 108 | |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 109 | #define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN))) |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | struct scatterlist; |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 112 | struct crypto_ablkcipher; |
| 113 | struct crypto_async_request; |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 114 | struct crypto_aead; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 115 | struct crypto_blkcipher; |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 116 | struct crypto_hash; |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 117 | struct crypto_ahash; |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 118 | struct crypto_rng; |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 119 | struct crypto_tfm; |
Herbert Xu | e853c3c | 2006-08-22 00:06:54 +1000 | [diff] [blame] | 120 | struct crypto_type; |
Herbert Xu | 743edf5 | 2007-12-10 16:18:01 +0800 | [diff] [blame] | 121 | struct aead_givcrypt_request; |
Herbert Xu | 61da88e | 2007-12-17 21:51:27 +0800 | [diff] [blame] | 122 | struct skcipher_givcrypt_request; |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 123 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 124 | typedef void (*crypto_completion_t)(struct crypto_async_request *req, int err); |
| 125 | |
| 126 | struct crypto_async_request { |
| 127 | struct list_head list; |
| 128 | crypto_completion_t complete; |
| 129 | void *data; |
| 130 | struct crypto_tfm *tfm; |
| 131 | |
| 132 | u32 flags; |
| 133 | }; |
| 134 | |
| 135 | struct ablkcipher_request { |
| 136 | struct crypto_async_request base; |
| 137 | |
| 138 | unsigned int nbytes; |
| 139 | |
| 140 | void *info; |
| 141 | |
| 142 | struct scatterlist *src; |
| 143 | struct scatterlist *dst; |
| 144 | |
| 145 | void *__ctx[] CRYPTO_MINALIGN_ATTR; |
| 146 | }; |
| 147 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 148 | struct ahash_request { |
| 149 | struct crypto_async_request base; |
| 150 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 151 | unsigned int nbytes; |
| 152 | struct scatterlist *src; |
| 153 | u8 *result; |
| 154 | |
| 155 | void *__ctx[] CRYPTO_MINALIGN_ATTR; |
| 156 | }; |
| 157 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 158 | /** |
| 159 | * struct aead_request - AEAD request |
| 160 | * @base: Common attributes for async crypto requests |
| 161 | * @assoclen: Length in bytes of associated data for authentication |
| 162 | * @cryptlen: Length of data to be encrypted or decrypted |
| 163 | * @iv: Initialisation vector |
| 164 | * @assoc: Associated data |
| 165 | * @src: Source data |
| 166 | * @dst: Destination data |
| 167 | * @__ctx: Start of private context data |
| 168 | */ |
| 169 | struct aead_request { |
| 170 | struct crypto_async_request base; |
| 171 | |
| 172 | unsigned int assoclen; |
| 173 | unsigned int cryptlen; |
| 174 | |
| 175 | u8 *iv; |
| 176 | |
| 177 | struct scatterlist *assoc; |
| 178 | struct scatterlist *src; |
| 179 | struct scatterlist *dst; |
| 180 | |
| 181 | void *__ctx[] CRYPTO_MINALIGN_ATTR; |
| 182 | }; |
| 183 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 184 | struct blkcipher_desc { |
| 185 | struct crypto_blkcipher *tfm; |
| 186 | void *info; |
| 187 | u32 flags; |
| 188 | }; |
| 189 | |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 190 | struct cipher_desc { |
| 191 | struct crypto_tfm *tfm; |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 192 | void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 193 | unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst, |
| 194 | const u8 *src, unsigned int nbytes); |
| 195 | void *info; |
| 196 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 198 | struct hash_desc { |
| 199 | struct crypto_hash *tfm; |
| 200 | u32 flags; |
| 201 | }; |
| 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | /* |
| 204 | * Algorithms: modular crypto algorithm implementations, managed |
| 205 | * via crypto_register_alg() and crypto_unregister_alg(). |
| 206 | */ |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 207 | struct ablkcipher_alg { |
| 208 | int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key, |
| 209 | unsigned int keylen); |
| 210 | int (*encrypt)(struct ablkcipher_request *req); |
| 211 | int (*decrypt)(struct ablkcipher_request *req); |
Herbert Xu | 61da88e | 2007-12-17 21:51:27 +0800 | [diff] [blame] | 212 | int (*givencrypt)(struct skcipher_givcrypt_request *req); |
| 213 | int (*givdecrypt)(struct skcipher_givcrypt_request *req); |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 214 | |
Herbert Xu | 23508e1 | 2007-11-27 21:33:24 +0800 | [diff] [blame] | 215 | const char *geniv; |
| 216 | |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 217 | unsigned int min_keysize; |
| 218 | unsigned int max_keysize; |
| 219 | unsigned int ivsize; |
| 220 | }; |
| 221 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 222 | struct ahash_alg { |
| 223 | int (*init)(struct ahash_request *req); |
| 224 | int (*update)(struct ahash_request *req); |
| 225 | int (*final)(struct ahash_request *req); |
| 226 | int (*digest)(struct ahash_request *req); |
| 227 | int (*setkey)(struct crypto_ahash *tfm, const u8 *key, |
| 228 | unsigned int keylen); |
| 229 | |
| 230 | unsigned int digestsize; |
| 231 | }; |
| 232 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 233 | struct aead_alg { |
| 234 | int (*setkey)(struct crypto_aead *tfm, const u8 *key, |
| 235 | unsigned int keylen); |
Herbert Xu | 7ba683a | 2007-12-02 18:49:21 +1100 | [diff] [blame] | 236 | int (*setauthsize)(struct crypto_aead *tfm, unsigned int authsize); |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 237 | int (*encrypt)(struct aead_request *req); |
| 238 | int (*decrypt)(struct aead_request *req); |
Herbert Xu | 743edf5 | 2007-12-10 16:18:01 +0800 | [diff] [blame] | 239 | int (*givencrypt)(struct aead_givcrypt_request *req); |
| 240 | int (*givdecrypt)(struct aead_givcrypt_request *req); |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 241 | |
Herbert Xu | 5b6d2d7 | 2007-12-12 19:23:36 +0800 | [diff] [blame] | 242 | const char *geniv; |
| 243 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 244 | unsigned int ivsize; |
Herbert Xu | 7ba683a | 2007-12-02 18:49:21 +1100 | [diff] [blame] | 245 | unsigned int maxauthsize; |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 246 | }; |
| 247 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 248 | struct blkcipher_alg { |
| 249 | int (*setkey)(struct crypto_tfm *tfm, const u8 *key, |
| 250 | unsigned int keylen); |
| 251 | int (*encrypt)(struct blkcipher_desc *desc, |
| 252 | struct scatterlist *dst, struct scatterlist *src, |
| 253 | unsigned int nbytes); |
| 254 | int (*decrypt)(struct blkcipher_desc *desc, |
| 255 | struct scatterlist *dst, struct scatterlist *src, |
| 256 | unsigned int nbytes); |
| 257 | |
Herbert Xu | 23508e1 | 2007-11-27 21:33:24 +0800 | [diff] [blame] | 258 | const char *geniv; |
| 259 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 260 | unsigned int min_keysize; |
| 261 | unsigned int max_keysize; |
| 262 | unsigned int ivsize; |
| 263 | }; |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | struct cipher_alg { |
| 266 | unsigned int cia_min_keysize; |
| 267 | unsigned int cia_max_keysize; |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 268 | int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 269 | unsigned int keylen); |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 270 | void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); |
| 271 | void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | }; |
| 273 | |
| 274 | struct digest_alg { |
| 275 | unsigned int dia_digestsize; |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 276 | void (*dia_init)(struct crypto_tfm *tfm); |
| 277 | void (*dia_update)(struct crypto_tfm *tfm, const u8 *data, |
| 278 | unsigned int len); |
| 279 | void (*dia_final)(struct crypto_tfm *tfm, u8 *out); |
| 280 | int (*dia_setkey)(struct crypto_tfm *tfm, const u8 *key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 281 | unsigned int keylen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | }; |
| 283 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 284 | struct hash_alg { |
| 285 | int (*init)(struct hash_desc *desc); |
| 286 | int (*update)(struct hash_desc *desc, struct scatterlist *sg, |
| 287 | unsigned int nbytes); |
| 288 | int (*final)(struct hash_desc *desc, u8 *out); |
| 289 | int (*digest)(struct hash_desc *desc, struct scatterlist *sg, |
| 290 | unsigned int nbytes, u8 *out); |
| 291 | int (*setkey)(struct crypto_hash *tfm, const u8 *key, |
| 292 | unsigned int keylen); |
| 293 | |
| 294 | unsigned int digestsize; |
| 295 | }; |
| 296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | struct compress_alg { |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 298 | int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src, |
| 299 | unsigned int slen, u8 *dst, unsigned int *dlen); |
| 300 | int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src, |
| 301 | unsigned int slen, u8 *dst, unsigned int *dlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | }; |
| 303 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 304 | struct rng_alg { |
| 305 | int (*rng_make_random)(struct crypto_rng *tfm, u8 *rdata, |
| 306 | unsigned int dlen); |
| 307 | int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen); |
| 308 | |
| 309 | unsigned int seedsize; |
| 310 | }; |
| 311 | |
| 312 | |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 313 | #define cra_ablkcipher cra_u.ablkcipher |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 314 | #define cra_aead cra_u.aead |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 315 | #define cra_blkcipher cra_u.blkcipher |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | #define cra_cipher cra_u.cipher |
| 317 | #define cra_digest cra_u.digest |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 318 | #define cra_hash cra_u.hash |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 319 | #define cra_ahash cra_u.ahash |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | #define cra_compress cra_u.compress |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 321 | #define cra_rng cra_u.rng |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | struct crypto_alg { |
| 324 | struct list_head cra_list; |
Herbert Xu | 6bfd480 | 2006-09-21 11:39:29 +1000 | [diff] [blame] | 325 | struct list_head cra_users; |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | u32 cra_flags; |
| 328 | unsigned int cra_blocksize; |
| 329 | unsigned int cra_ctxsize; |
Herbert Xu | 9547737 | 2005-07-06 13:52:09 -0700 | [diff] [blame] | 330 | unsigned int cra_alignmask; |
Herbert Xu | 5cb1454 | 2005-11-05 16:58:14 +1100 | [diff] [blame] | 331 | |
| 332 | int cra_priority; |
Herbert Xu | 6521f30 | 2006-08-06 20:28:44 +1000 | [diff] [blame] | 333 | atomic_t cra_refcnt; |
Herbert Xu | 5cb1454 | 2005-11-05 16:58:14 +1100 | [diff] [blame] | 334 | |
Herbert Xu | d913ea0 | 2006-05-21 08:45:26 +1000 | [diff] [blame] | 335 | char cra_name[CRYPTO_MAX_ALG_NAME]; |
| 336 | char cra_driver_name[CRYPTO_MAX_ALG_NAME]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Herbert Xu | e853c3c | 2006-08-22 00:06:54 +1000 | [diff] [blame] | 338 | const struct crypto_type *cra_type; |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | union { |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 341 | struct ablkcipher_alg ablkcipher; |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 342 | struct aead_alg aead; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 343 | struct blkcipher_alg blkcipher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | struct cipher_alg cipher; |
| 345 | struct digest_alg digest; |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 346 | struct hash_alg hash; |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 347 | struct ahash_alg ahash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | struct compress_alg compress; |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 349 | struct rng_alg rng; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } cra_u; |
Herbert Xu | c7fc059 | 2006-05-24 13:02:26 +1000 | [diff] [blame] | 351 | |
| 352 | int (*cra_init)(struct crypto_tfm *tfm); |
| 353 | void (*cra_exit)(struct crypto_tfm *tfm); |
Herbert Xu | 6521f30 | 2006-08-06 20:28:44 +1000 | [diff] [blame] | 354 | void (*cra_destroy)(struct crypto_alg *alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | struct module *cra_module; |
| 357 | }; |
| 358 | |
| 359 | /* |
| 360 | * Algorithm registration interface. |
| 361 | */ |
| 362 | int crypto_register_alg(struct crypto_alg *alg); |
| 363 | int crypto_unregister_alg(struct crypto_alg *alg); |
| 364 | |
| 365 | /* |
| 366 | * Algorithm query interface. |
| 367 | */ |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 368 | int crypto_has_alg(const char *name, u32 type, u32 mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
| 370 | /* |
| 371 | * Transforms: user-instantiated objects which encapsulate algorithms |
Herbert Xu | 6d7d684 | 2006-07-30 11:53:01 +1000 | [diff] [blame] | 372 | * and core processing logic. Managed via crypto_alloc_*() and |
| 373 | * crypto_free_*(), as well as the various helpers below. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 376 | struct ablkcipher_tfm { |
| 377 | int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key, |
| 378 | unsigned int keylen); |
| 379 | int (*encrypt)(struct ablkcipher_request *req); |
| 380 | int (*decrypt)(struct ablkcipher_request *req); |
Herbert Xu | 61da88e | 2007-12-17 21:51:27 +0800 | [diff] [blame] | 381 | int (*givencrypt)(struct skcipher_givcrypt_request *req); |
| 382 | int (*givdecrypt)(struct skcipher_givcrypt_request *req); |
| 383 | |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 384 | struct crypto_ablkcipher *base; |
| 385 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 386 | unsigned int ivsize; |
| 387 | unsigned int reqsize; |
| 388 | }; |
| 389 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 390 | struct aead_tfm { |
| 391 | int (*setkey)(struct crypto_aead *tfm, const u8 *key, |
| 392 | unsigned int keylen); |
| 393 | int (*encrypt)(struct aead_request *req); |
| 394 | int (*decrypt)(struct aead_request *req); |
Herbert Xu | 743edf5 | 2007-12-10 16:18:01 +0800 | [diff] [blame] | 395 | int (*givencrypt)(struct aead_givcrypt_request *req); |
| 396 | int (*givdecrypt)(struct aead_givcrypt_request *req); |
Herbert Xu | 5b6d2d7 | 2007-12-12 19:23:36 +0800 | [diff] [blame] | 397 | |
| 398 | struct crypto_aead *base; |
| 399 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 400 | unsigned int ivsize; |
| 401 | unsigned int authsize; |
| 402 | unsigned int reqsize; |
| 403 | }; |
| 404 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 405 | struct blkcipher_tfm { |
| 406 | void *iv; |
| 407 | int (*setkey)(struct crypto_tfm *tfm, const u8 *key, |
| 408 | unsigned int keylen); |
| 409 | int (*encrypt)(struct blkcipher_desc *desc, struct scatterlist *dst, |
| 410 | struct scatterlist *src, unsigned int nbytes); |
| 411 | int (*decrypt)(struct blkcipher_desc *desc, struct scatterlist *dst, |
| 412 | struct scatterlist *src, unsigned int nbytes); |
| 413 | }; |
| 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | struct cipher_tfm { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | int (*cit_setkey)(struct crypto_tfm *tfm, |
| 417 | const u8 *key, unsigned int keylen); |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 418 | void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); |
| 419 | void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | }; |
| 421 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 422 | struct hash_tfm { |
| 423 | int (*init)(struct hash_desc *desc); |
| 424 | int (*update)(struct hash_desc *desc, |
| 425 | struct scatterlist *sg, unsigned int nsg); |
| 426 | int (*final)(struct hash_desc *desc, u8 *out); |
| 427 | int (*digest)(struct hash_desc *desc, struct scatterlist *sg, |
| 428 | unsigned int nsg, u8 *out); |
| 429 | int (*setkey)(struct crypto_hash *tfm, const u8 *key, |
| 430 | unsigned int keylen); |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 431 | unsigned int digestsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | }; |
| 433 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 434 | struct ahash_tfm { |
| 435 | int (*init)(struct ahash_request *req); |
| 436 | int (*update)(struct ahash_request *req); |
| 437 | int (*final)(struct ahash_request *req); |
| 438 | int (*digest)(struct ahash_request *req); |
| 439 | int (*setkey)(struct crypto_ahash *tfm, const u8 *key, |
| 440 | unsigned int keylen); |
| 441 | |
| 442 | unsigned int digestsize; |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 443 | unsigned int reqsize; |
| 444 | }; |
| 445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | struct compress_tfm { |
| 447 | int (*cot_compress)(struct crypto_tfm *tfm, |
| 448 | const u8 *src, unsigned int slen, |
| 449 | u8 *dst, unsigned int *dlen); |
| 450 | int (*cot_decompress)(struct crypto_tfm *tfm, |
| 451 | const u8 *src, unsigned int slen, |
| 452 | u8 *dst, unsigned int *dlen); |
| 453 | }; |
| 454 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 455 | struct rng_tfm { |
| 456 | int (*rng_gen_random)(struct crypto_rng *tfm, u8 *rdata, |
| 457 | unsigned int dlen); |
| 458 | int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen); |
| 459 | }; |
| 460 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 461 | #define crt_ablkcipher crt_u.ablkcipher |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 462 | #define crt_aead crt_u.aead |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 463 | #define crt_blkcipher crt_u.blkcipher |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | #define crt_cipher crt_u.cipher |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 465 | #define crt_hash crt_u.hash |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 466 | #define crt_ahash crt_u.ahash |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | #define crt_compress crt_u.compress |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 468 | #define crt_rng crt_u.rng |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
| 470 | struct crypto_tfm { |
| 471 | |
| 472 | u32 crt_flags; |
| 473 | |
| 474 | union { |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 475 | struct ablkcipher_tfm ablkcipher; |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 476 | struct aead_tfm aead; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 477 | struct blkcipher_tfm blkcipher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | struct cipher_tfm cipher; |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 479 | struct hash_tfm hash; |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 480 | struct ahash_tfm ahash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | struct compress_tfm compress; |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 482 | struct rng_tfm rng; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } crt_u; |
Herbert Xu | 4a77948 | 2008-09-13 18:19:03 -0700 | [diff] [blame] | 484 | |
| 485 | void (*exit)(struct crypto_tfm *tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | struct crypto_alg *__crt_alg; |
Herbert Xu | f10b789 | 2006-01-25 22:34:01 +1100 | [diff] [blame] | 488 | |
Herbert Xu | 7991110 | 2006-08-21 21:03:52 +1000 | [diff] [blame] | 489 | void *__crt_ctx[] CRYPTO_MINALIGN_ATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | }; |
| 491 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 492 | struct crypto_ablkcipher { |
| 493 | struct crypto_tfm base; |
| 494 | }; |
| 495 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 496 | struct crypto_aead { |
| 497 | struct crypto_tfm base; |
| 498 | }; |
| 499 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 500 | struct crypto_blkcipher { |
| 501 | struct crypto_tfm base; |
| 502 | }; |
| 503 | |
Herbert Xu | 78a1fe4 | 2006-12-24 10:02:00 +1100 | [diff] [blame] | 504 | struct crypto_cipher { |
| 505 | struct crypto_tfm base; |
| 506 | }; |
| 507 | |
| 508 | struct crypto_comp { |
| 509 | struct crypto_tfm base; |
| 510 | }; |
| 511 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 512 | struct crypto_hash { |
| 513 | struct crypto_tfm base; |
| 514 | }; |
| 515 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 516 | struct crypto_rng { |
| 517 | struct crypto_tfm base; |
| 518 | }; |
| 519 | |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 520 | enum { |
| 521 | CRYPTOA_UNSPEC, |
| 522 | CRYPTOA_ALG, |
Herbert Xu | ebc610e | 2007-01-01 18:37:02 +1100 | [diff] [blame] | 523 | CRYPTOA_TYPE, |
Herbert Xu | 39e1ee01 | 2007-08-29 19:27:26 +0800 | [diff] [blame] | 524 | CRYPTOA_U32, |
Herbert Xu | ebc610e | 2007-01-01 18:37:02 +1100 | [diff] [blame] | 525 | __CRYPTOA_MAX, |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 526 | }; |
| 527 | |
Herbert Xu | ebc610e | 2007-01-01 18:37:02 +1100 | [diff] [blame] | 528 | #define CRYPTOA_MAX (__CRYPTOA_MAX - 1) |
| 529 | |
Herbert Xu | 39e1ee01 | 2007-08-29 19:27:26 +0800 | [diff] [blame] | 530 | /* Maximum number of (rtattr) parameters for each template. */ |
| 531 | #define CRYPTO_MAX_ATTRS 32 |
| 532 | |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 533 | struct crypto_attr_alg { |
| 534 | char name[CRYPTO_MAX_ALG_NAME]; |
| 535 | }; |
| 536 | |
Herbert Xu | ebc610e | 2007-01-01 18:37:02 +1100 | [diff] [blame] | 537 | struct crypto_attr_type { |
| 538 | u32 type; |
| 539 | u32 mask; |
| 540 | }; |
| 541 | |
Herbert Xu | 39e1ee01 | 2007-08-29 19:27:26 +0800 | [diff] [blame] | 542 | struct crypto_attr_u32 { |
| 543 | u32 num; |
| 544 | }; |
| 545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | /* |
| 547 | * Transform user interface. |
| 548 | */ |
| 549 | |
Herbert Xu | 7b0bac6 | 2008-09-21 06:52:53 +0900 | [diff] [blame] | 550 | struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, |
| 551 | const struct crypto_type *frontend, |
| 552 | u32 type, u32 mask); |
Herbert Xu | 6d7d684 | 2006-07-30 11:53:01 +1000 | [diff] [blame] | 553 | struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | void crypto_free_tfm(struct crypto_tfm *tfm); |
| 555 | |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 556 | int alg_test(const char *driver, const char *alg, u32 type, u32 mask); |
| 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /* |
| 559 | * Transform helpers which query the underlying algorithm. |
| 560 | */ |
| 561 | static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm) |
| 562 | { |
| 563 | return tfm->__crt_alg->cra_name; |
| 564 | } |
| 565 | |
Michal Ludvig | b14cdd6 | 2006-07-09 09:02:24 +1000 | [diff] [blame] | 566 | static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm) |
| 567 | { |
| 568 | return tfm->__crt_alg->cra_driver_name; |
| 569 | } |
| 570 | |
| 571 | static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm) |
| 572 | { |
| 573 | return tfm->__crt_alg->cra_priority; |
| 574 | } |
| 575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm) |
| 577 | { |
| 578 | return module_name(tfm->__crt_alg->cra_module); |
| 579 | } |
| 580 | |
| 581 | static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm) |
| 582 | { |
| 583 | return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK; |
| 584 | } |
| 585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm) |
| 587 | { |
| 588 | return tfm->__crt_alg->cra_blocksize; |
| 589 | } |
| 590 | |
Herbert Xu | fbdae9f | 2005-07-06 13:53:29 -0700 | [diff] [blame] | 591 | static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm) |
| 592 | { |
| 593 | return tfm->__crt_alg->cra_alignmask; |
| 594 | } |
| 595 | |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 596 | static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm) |
| 597 | { |
| 598 | return tfm->crt_flags; |
| 599 | } |
| 600 | |
| 601 | static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags) |
| 602 | { |
| 603 | tfm->crt_flags |= flags; |
| 604 | } |
| 605 | |
| 606 | static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags) |
| 607 | { |
| 608 | tfm->crt_flags &= ~flags; |
| 609 | } |
| 610 | |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 611 | static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm) |
| 612 | { |
Herbert Xu | f10b789 | 2006-01-25 22:34:01 +1100 | [diff] [blame] | 613 | return tfm->__crt_ctx; |
| 614 | } |
| 615 | |
| 616 | static inline unsigned int crypto_tfm_ctx_alignment(void) |
| 617 | { |
| 618 | struct crypto_tfm *tfm; |
| 619 | return __alignof__(tfm->__crt_ctx); |
Herbert Xu | 4072518 | 2005-07-06 13:51:52 -0700 | [diff] [blame] | 620 | } |
| 621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | /* |
| 623 | * API wrappers. |
| 624 | */ |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 625 | static inline struct crypto_ablkcipher *__crypto_ablkcipher_cast( |
| 626 | struct crypto_tfm *tfm) |
| 627 | { |
| 628 | return (struct crypto_ablkcipher *)tfm; |
| 629 | } |
| 630 | |
Herbert Xu | 378f4f5 | 2007-12-17 20:07:31 +0800 | [diff] [blame] | 631 | static inline u32 crypto_skcipher_type(u32 type) |
| 632 | { |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 633 | type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV); |
Herbert Xu | 378f4f5 | 2007-12-17 20:07:31 +0800 | [diff] [blame] | 634 | type |= CRYPTO_ALG_TYPE_BLKCIPHER; |
| 635 | return type; |
| 636 | } |
| 637 | |
| 638 | static inline u32 crypto_skcipher_mask(u32 mask) |
| 639 | { |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 640 | mask &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV); |
Herbert Xu | 378f4f5 | 2007-12-17 20:07:31 +0800 | [diff] [blame] | 641 | mask |= CRYPTO_ALG_TYPE_BLKCIPHER_MASK; |
| 642 | return mask; |
| 643 | } |
| 644 | |
Herbert Xu | b9c55aa | 2007-12-04 12:46:48 +1100 | [diff] [blame] | 645 | struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name, |
| 646 | u32 type, u32 mask); |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 647 | |
| 648 | static inline struct crypto_tfm *crypto_ablkcipher_tfm( |
| 649 | struct crypto_ablkcipher *tfm) |
| 650 | { |
| 651 | return &tfm->base; |
| 652 | } |
| 653 | |
| 654 | static inline void crypto_free_ablkcipher(struct crypto_ablkcipher *tfm) |
| 655 | { |
| 656 | crypto_free_tfm(crypto_ablkcipher_tfm(tfm)); |
| 657 | } |
| 658 | |
| 659 | static inline int crypto_has_ablkcipher(const char *alg_name, u32 type, |
| 660 | u32 mask) |
| 661 | { |
Herbert Xu | 378f4f5 | 2007-12-17 20:07:31 +0800 | [diff] [blame] | 662 | return crypto_has_alg(alg_name, crypto_skcipher_type(type), |
| 663 | crypto_skcipher_mask(mask)); |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | static inline struct ablkcipher_tfm *crypto_ablkcipher_crt( |
| 667 | struct crypto_ablkcipher *tfm) |
| 668 | { |
| 669 | return &crypto_ablkcipher_tfm(tfm)->crt_ablkcipher; |
| 670 | } |
| 671 | |
| 672 | static inline unsigned int crypto_ablkcipher_ivsize( |
| 673 | struct crypto_ablkcipher *tfm) |
| 674 | { |
| 675 | return crypto_ablkcipher_crt(tfm)->ivsize; |
| 676 | } |
| 677 | |
| 678 | static inline unsigned int crypto_ablkcipher_blocksize( |
| 679 | struct crypto_ablkcipher *tfm) |
| 680 | { |
| 681 | return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm)); |
| 682 | } |
| 683 | |
| 684 | static inline unsigned int crypto_ablkcipher_alignmask( |
| 685 | struct crypto_ablkcipher *tfm) |
| 686 | { |
| 687 | return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm)); |
| 688 | } |
| 689 | |
| 690 | static inline u32 crypto_ablkcipher_get_flags(struct crypto_ablkcipher *tfm) |
| 691 | { |
| 692 | return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm)); |
| 693 | } |
| 694 | |
| 695 | static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher *tfm, |
| 696 | u32 flags) |
| 697 | { |
| 698 | crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm), flags); |
| 699 | } |
| 700 | |
| 701 | static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher *tfm, |
| 702 | u32 flags) |
| 703 | { |
| 704 | crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm), flags); |
| 705 | } |
| 706 | |
| 707 | static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm, |
| 708 | const u8 *key, unsigned int keylen) |
| 709 | { |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 710 | struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm); |
| 711 | |
| 712 | return crt->setkey(crt->base, key, keylen); |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | static inline struct crypto_ablkcipher *crypto_ablkcipher_reqtfm( |
| 716 | struct ablkcipher_request *req) |
| 717 | { |
| 718 | return __crypto_ablkcipher_cast(req->base.tfm); |
| 719 | } |
| 720 | |
| 721 | static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request *req) |
| 722 | { |
| 723 | struct ablkcipher_tfm *crt = |
| 724 | crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req)); |
| 725 | return crt->encrypt(req); |
| 726 | } |
| 727 | |
| 728 | static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req) |
| 729 | { |
| 730 | struct ablkcipher_tfm *crt = |
| 731 | crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req)); |
| 732 | return crt->decrypt(req); |
| 733 | } |
| 734 | |
Herbert Xu | b16c3a2 | 2007-08-29 19:02:04 +0800 | [diff] [blame] | 735 | static inline unsigned int crypto_ablkcipher_reqsize( |
| 736 | struct crypto_ablkcipher *tfm) |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 737 | { |
| 738 | return crypto_ablkcipher_crt(tfm)->reqsize; |
| 739 | } |
| 740 | |
Herbert Xu | e196d62 | 2007-04-14 16:09:14 +1000 | [diff] [blame] | 741 | static inline void ablkcipher_request_set_tfm( |
| 742 | struct ablkcipher_request *req, struct crypto_ablkcipher *tfm) |
| 743 | { |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 744 | req->base.tfm = crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm)->base); |
Herbert Xu | e196d62 | 2007-04-14 16:09:14 +1000 | [diff] [blame] | 745 | } |
| 746 | |
Herbert Xu | b5b7f08 | 2007-04-16 20:48:54 +1000 | [diff] [blame] | 747 | static inline struct ablkcipher_request *ablkcipher_request_cast( |
| 748 | struct crypto_async_request *req) |
| 749 | { |
| 750 | return container_of(req, struct ablkcipher_request, base); |
| 751 | } |
| 752 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 753 | static inline struct ablkcipher_request *ablkcipher_request_alloc( |
| 754 | struct crypto_ablkcipher *tfm, gfp_t gfp) |
| 755 | { |
| 756 | struct ablkcipher_request *req; |
| 757 | |
| 758 | req = kmalloc(sizeof(struct ablkcipher_request) + |
| 759 | crypto_ablkcipher_reqsize(tfm), gfp); |
| 760 | |
| 761 | if (likely(req)) |
Herbert Xu | e196d62 | 2007-04-14 16:09:14 +1000 | [diff] [blame] | 762 | ablkcipher_request_set_tfm(req, tfm); |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 763 | |
| 764 | return req; |
| 765 | } |
| 766 | |
| 767 | static inline void ablkcipher_request_free(struct ablkcipher_request *req) |
| 768 | { |
| 769 | kfree(req); |
| 770 | } |
| 771 | |
| 772 | static inline void ablkcipher_request_set_callback( |
| 773 | struct ablkcipher_request *req, |
| 774 | u32 flags, crypto_completion_t complete, void *data) |
| 775 | { |
| 776 | req->base.complete = complete; |
| 777 | req->base.data = data; |
| 778 | req->base.flags = flags; |
| 779 | } |
| 780 | |
| 781 | static inline void ablkcipher_request_set_crypt( |
| 782 | struct ablkcipher_request *req, |
| 783 | struct scatterlist *src, struct scatterlist *dst, |
| 784 | unsigned int nbytes, void *iv) |
| 785 | { |
| 786 | req->src = src; |
| 787 | req->dst = dst; |
| 788 | req->nbytes = nbytes; |
| 789 | req->info = iv; |
| 790 | } |
| 791 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 792 | static inline struct crypto_aead *__crypto_aead_cast(struct crypto_tfm *tfm) |
| 793 | { |
| 794 | return (struct crypto_aead *)tfm; |
| 795 | } |
| 796 | |
Herbert Xu | d29ce98 | 2007-12-12 19:24:27 +0800 | [diff] [blame] | 797 | struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask); |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 798 | |
| 799 | static inline struct crypto_tfm *crypto_aead_tfm(struct crypto_aead *tfm) |
| 800 | { |
| 801 | return &tfm->base; |
| 802 | } |
| 803 | |
| 804 | static inline void crypto_free_aead(struct crypto_aead *tfm) |
| 805 | { |
| 806 | crypto_free_tfm(crypto_aead_tfm(tfm)); |
| 807 | } |
| 808 | |
| 809 | static inline struct aead_tfm *crypto_aead_crt(struct crypto_aead *tfm) |
| 810 | { |
| 811 | return &crypto_aead_tfm(tfm)->crt_aead; |
| 812 | } |
| 813 | |
| 814 | static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm) |
| 815 | { |
| 816 | return crypto_aead_crt(tfm)->ivsize; |
| 817 | } |
| 818 | |
| 819 | static inline unsigned int crypto_aead_authsize(struct crypto_aead *tfm) |
| 820 | { |
| 821 | return crypto_aead_crt(tfm)->authsize; |
| 822 | } |
| 823 | |
| 824 | static inline unsigned int crypto_aead_blocksize(struct crypto_aead *tfm) |
| 825 | { |
| 826 | return crypto_tfm_alg_blocksize(crypto_aead_tfm(tfm)); |
| 827 | } |
| 828 | |
| 829 | static inline unsigned int crypto_aead_alignmask(struct crypto_aead *tfm) |
| 830 | { |
| 831 | return crypto_tfm_alg_alignmask(crypto_aead_tfm(tfm)); |
| 832 | } |
| 833 | |
| 834 | static inline u32 crypto_aead_get_flags(struct crypto_aead *tfm) |
| 835 | { |
| 836 | return crypto_tfm_get_flags(crypto_aead_tfm(tfm)); |
| 837 | } |
| 838 | |
| 839 | static inline void crypto_aead_set_flags(struct crypto_aead *tfm, u32 flags) |
| 840 | { |
| 841 | crypto_tfm_set_flags(crypto_aead_tfm(tfm), flags); |
| 842 | } |
| 843 | |
| 844 | static inline void crypto_aead_clear_flags(struct crypto_aead *tfm, u32 flags) |
| 845 | { |
| 846 | crypto_tfm_clear_flags(crypto_aead_tfm(tfm), flags); |
| 847 | } |
| 848 | |
| 849 | static inline int crypto_aead_setkey(struct crypto_aead *tfm, const u8 *key, |
| 850 | unsigned int keylen) |
| 851 | { |
Herbert Xu | 5b6d2d7 | 2007-12-12 19:23:36 +0800 | [diff] [blame] | 852 | struct aead_tfm *crt = crypto_aead_crt(tfm); |
| 853 | |
| 854 | return crt->setkey(crt->base, key, keylen); |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 855 | } |
| 856 | |
Herbert Xu | 7ba683a | 2007-12-02 18:49:21 +1100 | [diff] [blame] | 857 | int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize); |
| 858 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 859 | static inline struct crypto_aead *crypto_aead_reqtfm(struct aead_request *req) |
| 860 | { |
| 861 | return __crypto_aead_cast(req->base.tfm); |
| 862 | } |
| 863 | |
| 864 | static inline int crypto_aead_encrypt(struct aead_request *req) |
| 865 | { |
| 866 | return crypto_aead_crt(crypto_aead_reqtfm(req))->encrypt(req); |
| 867 | } |
| 868 | |
| 869 | static inline int crypto_aead_decrypt(struct aead_request *req) |
| 870 | { |
| 871 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); |
| 872 | } |
| 873 | |
Herbert Xu | b16c3a2 | 2007-08-29 19:02:04 +0800 | [diff] [blame] | 874 | static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 875 | { |
| 876 | return crypto_aead_crt(tfm)->reqsize; |
| 877 | } |
| 878 | |
| 879 | static inline void aead_request_set_tfm(struct aead_request *req, |
| 880 | struct crypto_aead *tfm) |
| 881 | { |
Herbert Xu | 5b6d2d7 | 2007-12-12 19:23:36 +0800 | [diff] [blame] | 882 | req->base.tfm = crypto_aead_tfm(crypto_aead_crt(tfm)->base); |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, |
| 886 | gfp_t gfp) |
| 887 | { |
| 888 | struct aead_request *req; |
| 889 | |
| 890 | req = kmalloc(sizeof(*req) + crypto_aead_reqsize(tfm), gfp); |
| 891 | |
| 892 | if (likely(req)) |
| 893 | aead_request_set_tfm(req, tfm); |
| 894 | |
| 895 | return req; |
| 896 | } |
| 897 | |
| 898 | static inline void aead_request_free(struct aead_request *req) |
| 899 | { |
| 900 | kfree(req); |
| 901 | } |
| 902 | |
| 903 | static inline void aead_request_set_callback(struct aead_request *req, |
| 904 | u32 flags, |
| 905 | crypto_completion_t complete, |
| 906 | void *data) |
| 907 | { |
| 908 | req->base.complete = complete; |
| 909 | req->base.data = data; |
| 910 | req->base.flags = flags; |
| 911 | } |
| 912 | |
| 913 | static inline void aead_request_set_crypt(struct aead_request *req, |
| 914 | struct scatterlist *src, |
| 915 | struct scatterlist *dst, |
| 916 | unsigned int cryptlen, u8 *iv) |
| 917 | { |
| 918 | req->src = src; |
| 919 | req->dst = dst; |
| 920 | req->cryptlen = cryptlen; |
| 921 | req->iv = iv; |
| 922 | } |
| 923 | |
| 924 | static inline void aead_request_set_assoc(struct aead_request *req, |
| 925 | struct scatterlist *assoc, |
| 926 | unsigned int assoclen) |
| 927 | { |
| 928 | req->assoc = assoc; |
| 929 | req->assoclen = assoclen; |
| 930 | } |
| 931 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 932 | static inline struct crypto_blkcipher *__crypto_blkcipher_cast( |
| 933 | struct crypto_tfm *tfm) |
| 934 | { |
| 935 | return (struct crypto_blkcipher *)tfm; |
| 936 | } |
| 937 | |
| 938 | static inline struct crypto_blkcipher *crypto_blkcipher_cast( |
| 939 | struct crypto_tfm *tfm) |
| 940 | { |
| 941 | BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_BLKCIPHER); |
| 942 | return __crypto_blkcipher_cast(tfm); |
| 943 | } |
| 944 | |
| 945 | static inline struct crypto_blkcipher *crypto_alloc_blkcipher( |
| 946 | const char *alg_name, u32 type, u32 mask) |
| 947 | { |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 948 | type &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 949 | type |= CRYPTO_ALG_TYPE_BLKCIPHER; |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 950 | mask |= CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 951 | |
| 952 | return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask)); |
| 953 | } |
| 954 | |
| 955 | static inline struct crypto_tfm *crypto_blkcipher_tfm( |
| 956 | struct crypto_blkcipher *tfm) |
| 957 | { |
| 958 | return &tfm->base; |
| 959 | } |
| 960 | |
| 961 | static inline void crypto_free_blkcipher(struct crypto_blkcipher *tfm) |
| 962 | { |
| 963 | crypto_free_tfm(crypto_blkcipher_tfm(tfm)); |
| 964 | } |
| 965 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 966 | static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask) |
| 967 | { |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 968 | type &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 969 | type |= CRYPTO_ALG_TYPE_BLKCIPHER; |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 970 | mask |= CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 971 | |
| 972 | return crypto_has_alg(alg_name, type, mask); |
| 973 | } |
| 974 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 975 | static inline const char *crypto_blkcipher_name(struct crypto_blkcipher *tfm) |
| 976 | { |
| 977 | return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm)); |
| 978 | } |
| 979 | |
| 980 | static inline struct blkcipher_tfm *crypto_blkcipher_crt( |
| 981 | struct crypto_blkcipher *tfm) |
| 982 | { |
| 983 | return &crypto_blkcipher_tfm(tfm)->crt_blkcipher; |
| 984 | } |
| 985 | |
| 986 | static inline struct blkcipher_alg *crypto_blkcipher_alg( |
| 987 | struct crypto_blkcipher *tfm) |
| 988 | { |
| 989 | return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher; |
| 990 | } |
| 991 | |
| 992 | static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher *tfm) |
| 993 | { |
| 994 | return crypto_blkcipher_alg(tfm)->ivsize; |
| 995 | } |
| 996 | |
| 997 | static inline unsigned int crypto_blkcipher_blocksize( |
| 998 | struct crypto_blkcipher *tfm) |
| 999 | { |
| 1000 | return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm)); |
| 1001 | } |
| 1002 | |
| 1003 | static inline unsigned int crypto_blkcipher_alignmask( |
| 1004 | struct crypto_blkcipher *tfm) |
| 1005 | { |
| 1006 | return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm)); |
| 1007 | } |
| 1008 | |
| 1009 | static inline u32 crypto_blkcipher_get_flags(struct crypto_blkcipher *tfm) |
| 1010 | { |
| 1011 | return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm)); |
| 1012 | } |
| 1013 | |
| 1014 | static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher *tfm, |
| 1015 | u32 flags) |
| 1016 | { |
| 1017 | crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm), flags); |
| 1018 | } |
| 1019 | |
| 1020 | static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher *tfm, |
| 1021 | u32 flags) |
| 1022 | { |
| 1023 | crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm), flags); |
| 1024 | } |
| 1025 | |
| 1026 | static inline int crypto_blkcipher_setkey(struct crypto_blkcipher *tfm, |
| 1027 | const u8 *key, unsigned int keylen) |
| 1028 | { |
| 1029 | return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm), |
| 1030 | key, keylen); |
| 1031 | } |
| 1032 | |
| 1033 | static inline int crypto_blkcipher_encrypt(struct blkcipher_desc *desc, |
| 1034 | struct scatterlist *dst, |
| 1035 | struct scatterlist *src, |
| 1036 | unsigned int nbytes) |
| 1037 | { |
| 1038 | desc->info = crypto_blkcipher_crt(desc->tfm)->iv; |
| 1039 | return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); |
| 1040 | } |
| 1041 | |
| 1042 | static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc *desc, |
| 1043 | struct scatterlist *dst, |
| 1044 | struct scatterlist *src, |
| 1045 | unsigned int nbytes) |
| 1046 | { |
| 1047 | return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); |
| 1048 | } |
| 1049 | |
| 1050 | static inline int crypto_blkcipher_decrypt(struct blkcipher_desc *desc, |
| 1051 | struct scatterlist *dst, |
| 1052 | struct scatterlist *src, |
| 1053 | unsigned int nbytes) |
| 1054 | { |
| 1055 | desc->info = crypto_blkcipher_crt(desc->tfm)->iv; |
| 1056 | return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); |
| 1057 | } |
| 1058 | |
| 1059 | static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc *desc, |
| 1060 | struct scatterlist *dst, |
| 1061 | struct scatterlist *src, |
| 1062 | unsigned int nbytes) |
| 1063 | { |
| 1064 | return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); |
| 1065 | } |
| 1066 | |
| 1067 | static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher *tfm, |
| 1068 | const u8 *src, unsigned int len) |
| 1069 | { |
| 1070 | memcpy(crypto_blkcipher_crt(tfm)->iv, src, len); |
| 1071 | } |
| 1072 | |
| 1073 | static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher *tfm, |
| 1074 | u8 *dst, unsigned int len) |
| 1075 | { |
| 1076 | memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len); |
| 1077 | } |
| 1078 | |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 1079 | static inline struct crypto_cipher *__crypto_cipher_cast(struct crypto_tfm *tfm) |
| 1080 | { |
| 1081 | return (struct crypto_cipher *)tfm; |
| 1082 | } |
| 1083 | |
| 1084 | static inline struct crypto_cipher *crypto_cipher_cast(struct crypto_tfm *tfm) |
| 1085 | { |
| 1086 | BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER); |
| 1087 | return __crypto_cipher_cast(tfm); |
| 1088 | } |
| 1089 | |
| 1090 | static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name, |
| 1091 | u32 type, u32 mask) |
| 1092 | { |
| 1093 | type &= ~CRYPTO_ALG_TYPE_MASK; |
| 1094 | type |= CRYPTO_ALG_TYPE_CIPHER; |
| 1095 | mask |= CRYPTO_ALG_TYPE_MASK; |
| 1096 | |
| 1097 | return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); |
| 1098 | } |
| 1099 | |
| 1100 | static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm) |
| 1101 | { |
Herbert Xu | 78a1fe4 | 2006-12-24 10:02:00 +1100 | [diff] [blame] | 1102 | return &tfm->base; |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | static inline void crypto_free_cipher(struct crypto_cipher *tfm) |
| 1106 | { |
| 1107 | crypto_free_tfm(crypto_cipher_tfm(tfm)); |
| 1108 | } |
| 1109 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1110 | static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) |
| 1111 | { |
| 1112 | type &= ~CRYPTO_ALG_TYPE_MASK; |
| 1113 | type |= CRYPTO_ALG_TYPE_CIPHER; |
| 1114 | mask |= CRYPTO_ALG_TYPE_MASK; |
| 1115 | |
| 1116 | return crypto_has_alg(alg_name, type, mask); |
| 1117 | } |
| 1118 | |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 1119 | static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm) |
| 1120 | { |
| 1121 | return &crypto_cipher_tfm(tfm)->crt_cipher; |
| 1122 | } |
| 1123 | |
| 1124 | static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher *tfm) |
| 1125 | { |
| 1126 | return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm)); |
| 1127 | } |
| 1128 | |
| 1129 | static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher *tfm) |
| 1130 | { |
| 1131 | return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm)); |
| 1132 | } |
| 1133 | |
| 1134 | static inline u32 crypto_cipher_get_flags(struct crypto_cipher *tfm) |
| 1135 | { |
| 1136 | return crypto_tfm_get_flags(crypto_cipher_tfm(tfm)); |
| 1137 | } |
| 1138 | |
| 1139 | static inline void crypto_cipher_set_flags(struct crypto_cipher *tfm, |
| 1140 | u32 flags) |
| 1141 | { |
| 1142 | crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags); |
| 1143 | } |
| 1144 | |
| 1145 | static inline void crypto_cipher_clear_flags(struct crypto_cipher *tfm, |
| 1146 | u32 flags) |
| 1147 | { |
| 1148 | crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags); |
| 1149 | } |
| 1150 | |
Herbert Xu | 7226bc87 | 2006-08-21 21:40:49 +1000 | [diff] [blame] | 1151 | static inline int crypto_cipher_setkey(struct crypto_cipher *tfm, |
| 1152 | const u8 *key, unsigned int keylen) |
| 1153 | { |
| 1154 | return crypto_cipher_crt(tfm)->cit_setkey(crypto_cipher_tfm(tfm), |
| 1155 | key, keylen); |
| 1156 | } |
| 1157 | |
Herbert Xu | f28776a | 2006-08-13 20:58:18 +1000 | [diff] [blame] | 1158 | static inline void crypto_cipher_encrypt_one(struct crypto_cipher *tfm, |
| 1159 | u8 *dst, const u8 *src) |
| 1160 | { |
| 1161 | crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm), |
| 1162 | dst, src); |
| 1163 | } |
| 1164 | |
| 1165 | static inline void crypto_cipher_decrypt_one(struct crypto_cipher *tfm, |
| 1166 | u8 *dst, const u8 *src) |
| 1167 | { |
| 1168 | crypto_cipher_crt(tfm)->cit_decrypt_one(crypto_cipher_tfm(tfm), |
| 1169 | dst, src); |
| 1170 | } |
| 1171 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1172 | static inline struct crypto_hash *__crypto_hash_cast(struct crypto_tfm *tfm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | { |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1174 | return (struct crypto_hash *)tfm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1177 | static inline struct crypto_hash *crypto_hash_cast(struct crypto_tfm *tfm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1179 | BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_HASH) & |
| 1180 | CRYPTO_ALG_TYPE_HASH_MASK); |
| 1181 | return __crypto_hash_cast(tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | } |
| 1183 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1184 | static inline struct crypto_hash *crypto_alloc_hash(const char *alg_name, |
| 1185 | u32 type, u32 mask) |
| 1186 | { |
| 1187 | type &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | 551a09a | 2007-12-01 21:47:07 +1100 | [diff] [blame] | 1188 | mask &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1189 | type |= CRYPTO_ALG_TYPE_HASH; |
| 1190 | mask |= CRYPTO_ALG_TYPE_HASH_MASK; |
| 1191 | |
| 1192 | return __crypto_hash_cast(crypto_alloc_base(alg_name, type, mask)); |
| 1193 | } |
| 1194 | |
| 1195 | static inline struct crypto_tfm *crypto_hash_tfm(struct crypto_hash *tfm) |
| 1196 | { |
| 1197 | return &tfm->base; |
| 1198 | } |
| 1199 | |
| 1200 | static inline void crypto_free_hash(struct crypto_hash *tfm) |
| 1201 | { |
| 1202 | crypto_free_tfm(crypto_hash_tfm(tfm)); |
| 1203 | } |
| 1204 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1205 | static inline int crypto_has_hash(const char *alg_name, u32 type, u32 mask) |
| 1206 | { |
| 1207 | type &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | 551a09a | 2007-12-01 21:47:07 +1100 | [diff] [blame] | 1208 | mask &= ~CRYPTO_ALG_TYPE_MASK; |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1209 | type |= CRYPTO_ALG_TYPE_HASH; |
| 1210 | mask |= CRYPTO_ALG_TYPE_HASH_MASK; |
| 1211 | |
| 1212 | return crypto_has_alg(alg_name, type, mask); |
| 1213 | } |
| 1214 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1215 | static inline struct hash_tfm *crypto_hash_crt(struct crypto_hash *tfm) |
| 1216 | { |
| 1217 | return &crypto_hash_tfm(tfm)->crt_hash; |
| 1218 | } |
| 1219 | |
| 1220 | static inline unsigned int crypto_hash_blocksize(struct crypto_hash *tfm) |
| 1221 | { |
| 1222 | return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm)); |
| 1223 | } |
| 1224 | |
| 1225 | static inline unsigned int crypto_hash_alignmask(struct crypto_hash *tfm) |
| 1226 | { |
| 1227 | return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm)); |
| 1228 | } |
| 1229 | |
| 1230 | static inline unsigned int crypto_hash_digestsize(struct crypto_hash *tfm) |
| 1231 | { |
| 1232 | return crypto_hash_crt(tfm)->digestsize; |
| 1233 | } |
| 1234 | |
| 1235 | static inline u32 crypto_hash_get_flags(struct crypto_hash *tfm) |
| 1236 | { |
| 1237 | return crypto_tfm_get_flags(crypto_hash_tfm(tfm)); |
| 1238 | } |
| 1239 | |
| 1240 | static inline void crypto_hash_set_flags(struct crypto_hash *tfm, u32 flags) |
| 1241 | { |
| 1242 | crypto_tfm_set_flags(crypto_hash_tfm(tfm), flags); |
| 1243 | } |
| 1244 | |
| 1245 | static inline void crypto_hash_clear_flags(struct crypto_hash *tfm, u32 flags) |
| 1246 | { |
| 1247 | crypto_tfm_clear_flags(crypto_hash_tfm(tfm), flags); |
| 1248 | } |
| 1249 | |
| 1250 | static inline int crypto_hash_init(struct hash_desc *desc) |
| 1251 | { |
| 1252 | return crypto_hash_crt(desc->tfm)->init(desc); |
| 1253 | } |
| 1254 | |
| 1255 | static inline int crypto_hash_update(struct hash_desc *desc, |
| 1256 | struct scatterlist *sg, |
| 1257 | unsigned int nbytes) |
| 1258 | { |
| 1259 | return crypto_hash_crt(desc->tfm)->update(desc, sg, nbytes); |
| 1260 | } |
| 1261 | |
| 1262 | static inline int crypto_hash_final(struct hash_desc *desc, u8 *out) |
| 1263 | { |
| 1264 | return crypto_hash_crt(desc->tfm)->final(desc, out); |
| 1265 | } |
| 1266 | |
| 1267 | static inline int crypto_hash_digest(struct hash_desc *desc, |
| 1268 | struct scatterlist *sg, |
| 1269 | unsigned int nbytes, u8 *out) |
| 1270 | { |
| 1271 | return crypto_hash_crt(desc->tfm)->digest(desc, sg, nbytes, out); |
| 1272 | } |
| 1273 | |
| 1274 | static inline int crypto_hash_setkey(struct crypto_hash *hash, |
| 1275 | const u8 *key, unsigned int keylen) |
| 1276 | { |
| 1277 | return crypto_hash_crt(hash)->setkey(hash, key, keylen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1280 | static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm) |
| 1281 | { |
| 1282 | return (struct crypto_comp *)tfm; |
| 1283 | } |
| 1284 | |
| 1285 | static inline struct crypto_comp *crypto_comp_cast(struct crypto_tfm *tfm) |
| 1286 | { |
| 1287 | BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_COMPRESS) & |
| 1288 | CRYPTO_ALG_TYPE_MASK); |
| 1289 | return __crypto_comp_cast(tfm); |
| 1290 | } |
| 1291 | |
| 1292 | static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name, |
| 1293 | u32 type, u32 mask) |
| 1294 | { |
| 1295 | type &= ~CRYPTO_ALG_TYPE_MASK; |
| 1296 | type |= CRYPTO_ALG_TYPE_COMPRESS; |
| 1297 | mask |= CRYPTO_ALG_TYPE_MASK; |
| 1298 | |
| 1299 | return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask)); |
| 1300 | } |
| 1301 | |
| 1302 | static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm) |
| 1303 | { |
Herbert Xu | 78a1fe4 | 2006-12-24 10:02:00 +1100 | [diff] [blame] | 1304 | return &tfm->base; |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | static inline void crypto_free_comp(struct crypto_comp *tfm) |
| 1308 | { |
| 1309 | crypto_free_tfm(crypto_comp_tfm(tfm)); |
| 1310 | } |
| 1311 | |
| 1312 | static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask) |
| 1313 | { |
| 1314 | type &= ~CRYPTO_ALG_TYPE_MASK; |
| 1315 | type |= CRYPTO_ALG_TYPE_COMPRESS; |
| 1316 | mask |= CRYPTO_ALG_TYPE_MASK; |
| 1317 | |
| 1318 | return crypto_has_alg(alg_name, type, mask); |
| 1319 | } |
| 1320 | |
Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 1321 | static inline const char *crypto_comp_name(struct crypto_comp *tfm) |
| 1322 | { |
| 1323 | return crypto_tfm_alg_name(crypto_comp_tfm(tfm)); |
| 1324 | } |
| 1325 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1326 | static inline struct compress_tfm *crypto_comp_crt(struct crypto_comp *tfm) |
| 1327 | { |
| 1328 | return &crypto_comp_tfm(tfm)->crt_compress; |
| 1329 | } |
| 1330 | |
| 1331 | static inline int crypto_comp_compress(struct crypto_comp *tfm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | const u8 *src, unsigned int slen, |
| 1333 | u8 *dst, unsigned int *dlen) |
| 1334 | { |
Herbert Xu | 78a1fe4 | 2006-12-24 10:02:00 +1100 | [diff] [blame] | 1335 | return crypto_comp_crt(tfm)->cot_compress(crypto_comp_tfm(tfm), |
| 1336 | src, slen, dst, dlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
Herbert Xu | fce32d7 | 2006-08-26 17:35:45 +1000 | [diff] [blame] | 1339 | static inline int crypto_comp_decompress(struct crypto_comp *tfm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | const u8 *src, unsigned int slen, |
| 1341 | u8 *dst, unsigned int *dlen) |
| 1342 | { |
Herbert Xu | 78a1fe4 | 2006-12-24 10:02:00 +1100 | [diff] [blame] | 1343 | return crypto_comp_crt(tfm)->cot_decompress(crypto_comp_tfm(tfm), |
| 1344 | src, slen, dst, dlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | #endif /* _LINUX_CRYPTO_H */ |
| 1348 | |