blob: da5e0d74bb2f4df648203bbaa0293d2a32859945 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Scatterlist Cryptographic API.
4 *
5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
Herbert Xu5cb1454b2005-11-05 16:58:14 +11007 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
John Anthony Kazos Jr18735dd2007-10-19 23:07:36 +020010 * and Nettle, by Niels Möller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12#ifndef _LINUX_CRYPTO_H
13#define _LINUX_CRYPTO_H
14
Arun Sharma600634972011-07-26 16:09:06 -070015#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/list.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050018#include <linux/bug.h>
Herbert Xud037cb4a2020-06-18 17:00:22 +100019#include <linux/refcount.h>
Herbert Xu79911102006-08-21 21:03:52 +100020#include <linux/slab.h>
Gilad Ben-Yossefada69a12017-10-18 08:00:38 +010021#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/*
Kees Cook5d26a102014-11-20 17:05:53 -080024 * Autoloaded crypto modules should only use a prefixed name to avoid allowing
25 * arbitrary modules to be loaded. Loading from userspace may still need the
26 * unprefixed names, so retains those aliases as well.
27 * This uses __MODULE_INFO directly instead of MODULE_ALIAS because pre-4.3
28 * gcc (e.g. avr32 toolchain) uses __LINE__ for uniqueness, and this macro
29 * expands twice on the same line. Instead, use a separate base name for the
30 * alias.
31 */
32#define MODULE_ALIAS_CRYPTO(name) \
33 __MODULE_INFO(alias, alias_userspace, name); \
34 __MODULE_INFO(alias, alias_crypto, "crypto-" name)
35
36/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Algorithm masks and types.
38 */
Herbert Xu28259822006-08-06 21:23:26 +100039#define CRYPTO_ALG_TYPE_MASK 0x0000000f
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define CRYPTO_ALG_TYPE_CIPHER 0x00000001
Loc Ho004a4032008-05-14 20:41:47 +080041#define CRYPTO_ALG_TYPE_COMPRESS 0x00000002
42#define CRYPTO_ALG_TYPE_AEAD 0x00000003
Herbert Xu4e6c3df2016-07-12 13:17:31 +080043#define CRYPTO_ALG_TYPE_SKCIPHER 0x00000005
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +010044#define CRYPTO_ALG_TYPE_KPP 0x00000008
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +010045#define CRYPTO_ALG_TYPE_ACOMPRESS 0x0000000a
Giovanni Cabiddu1ab53a72016-10-21 13:19:48 +010046#define CRYPTO_ALG_TYPE_SCOMPRESS 0x0000000b
Neil Horman17f0f4a2008-08-14 22:15:52 +100047#define CRYPTO_ALG_TYPE_RNG 0x0000000c
Tadeusz Struk3c339ab2015-06-16 10:30:55 -070048#define CRYPTO_ALG_TYPE_AKCIPHER 0x0000000d
Giovanni Cabiddu63044c42016-06-02 13:28:55 +010049#define CRYPTO_ALG_TYPE_HASH 0x0000000e
50#define CRYPTO_ALG_TYPE_SHASH 0x0000000e
51#define CRYPTO_ALG_TYPE_AHASH 0x0000000f
Herbert Xu055bcee2006-08-19 22:24:23 +100052
53#define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
Giovanni Cabiddu63044c42016-06-02 13:28:55 +010054#define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000e
Giovanni Cabiddu1ab53a72016-10-21 13:19:48 +010055#define CRYPTO_ALG_TYPE_ACOMPRESS_MASK 0x0000000e
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Herbert Xu28259822006-08-06 21:23:26 +100057#define CRYPTO_ALG_LARVAL 0x00000010
Herbert Xu6bfd4802006-09-21 11:39:29 +100058#define CRYPTO_ALG_DEAD 0x00000020
59#define CRYPTO_ALG_DYING 0x00000040
Herbert Xuf3f632d2006-08-06 23:12:59 +100060#define CRYPTO_ALG_ASYNC 0x00000080
Herbert Xu28259822006-08-06 21:23:26 +100061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
Eric Biggers2eb27c12020-07-09 23:20:39 -070063 * Set if the algorithm (or an algorithm which it uses) requires another
64 * algorithm of the same type to handle corner cases.
Herbert Xu60104392006-08-26 18:34:10 +100065 */
66#define CRYPTO_ALG_NEED_FALLBACK 0x00000100
67
68/*
Herbert Xu73d38642008-08-03 21:15:23 +080069 * Set if the algorithm has passed automated run-time testing. Note that
70 * if there is no run-time testing for a given algorithm it is considered
71 * to have passed.
72 */
73
74#define CRYPTO_ALG_TESTED 0x00000400
75
76/*
Baruch Siach864e0982016-11-30 15:16:08 +020077 * Set if the algorithm is an instance that is built from templates.
Steffen Klassert64a947b2011-09-27 07:21:26 +020078 */
79#define CRYPTO_ALG_INSTANCE 0x00000800
80
Nikos Mavrogiannopoulosd912bb72011-11-01 13:39:56 +010081/* Set this bit if the algorithm provided is hardware accelerated but
82 * not available to userspace via instruction set or so.
83 */
84#define CRYPTO_ALG_KERN_DRIVER_ONLY 0x00001000
85
Steffen Klassert64a947b2011-09-27 07:21:26 +020086/*
Stephan Mueller06ca7f62015-03-30 21:55:52 +020087 * Mark a cipher as a service implementation only usable by another
88 * cipher and never by a normal user of the kernel crypto API
89 */
90#define CRYPTO_ALG_INTERNAL 0x00002000
91
92/*
Eric Biggersa208fa82018-01-03 11:16:26 -080093 * Set if the algorithm has a ->setkey() method but can be used without
94 * calling it first, i.e. there is a default key.
95 */
96#define CRYPTO_ALG_OPTIONAL_KEY 0x00004000
97
98/*
Matthew Garrette2861fa2018-06-08 14:57:42 -070099 * Don't trigger module loading
100 */
101#define CRYPTO_NOLOAD 0x00008000
102
103/*
Eric Biggersfbb6cda2020-07-09 23:20:40 -0700104 * The algorithm may allocate memory during request processing, i.e. during
105 * encryption, decryption, or hashing. Users can request an algorithm with this
106 * flag unset if they can't handle memory allocation failures.
107 *
108 * This flag is currently only implemented for algorithms of type "skcipher",
109 * "aead", "ahash", "shash", and "cipher". Algorithms of other types might not
110 * have this flag set even if they allocate memory.
111 *
112 * In some edge cases, algorithms can allocate memory regardless of this flag.
113 * To avoid these cases, users must obey the following usage constraints:
114 * skcipher:
115 * - The IV buffer and all scatterlist elements must be aligned to the
116 * algorithm's alignmask.
117 * - If the data were to be divided into chunks of size
118 * crypto_skcipher_walksize() (with any remainder going at the end), no
119 * chunk can cross a page boundary or a scatterlist element boundary.
120 * aead:
121 * - The IV buffer and all scatterlist elements must be aligned to the
122 * algorithm's alignmask.
123 * - The first scatterlist element must contain all the associated data,
124 * and its pages must be !PageHighMem.
125 * - If the plaintext/ciphertext were to be divided into chunks of size
126 * crypto_aead_walksize() (with the remainder going at the end), no chunk
127 * can cross a page boundary or a scatterlist element boundary.
128 * ahash:
129 * - The result buffer must be aligned to the algorithm's alignmask.
130 * - crypto_ahash_finup() must not be used unless the algorithm implements
131 * ->finup() natively.
132 */
133#define CRYPTO_ALG_ALLOCATES_MEMORY 0x00010000
134
135/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * Transform masks and values (for crt_flags).
137 */
Eric Biggers9fa68f62018-01-03 11:16:27 -0800138#define CRYPTO_TFM_NEED_KEY 0x00000001
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define CRYPTO_TFM_REQ_MASK 0x000fff00
Eric Biggers231baec2019-01-18 22:48:00 -0800141#define CRYPTO_TFM_REQ_FORBID_WEAK_KEYS 0x00000100
Herbert Xu64baf3c2005-09-01 17:43:05 -0700142#define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
Herbert Xu32e3983f2007-03-24 14:35:34 +1100143#define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*
146 * Miscellaneous stuff.
147 */
Herbert Xuf437a3f2017-04-06 16:16:11 +0800148#define CRYPTO_MAX_ALG_NAME 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Herbert Xu79911102006-08-21 21:03:52 +1000150/*
151 * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual
152 * declaration) is used to ensure that the crypto_tfm context structure is
153 * aligned correctly for the given architecture so that there are no alignment
Ard Biesheuvel85433302021-01-13 10:11:35 +0100154 * faults for C data types. On architectures that support non-cache coherent
155 * DMA, such as ARM or arm64, it also takes into account the minimal alignment
156 * that is required to ensure that the context struct member does not share any
157 * cachelines with the rest of the struct. This is needed to ensure that cache
158 * maintenance for non-coherent DMA (cache invalidation in particular) does not
159 * affect data that may be accessed by the CPU concurrently.
Herbert Xu79911102006-08-21 21:03:52 +1000160 */
Herbert Xu79911102006-08-21 21:03:52 +1000161#define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
Herbert Xu79911102006-08-21 21:03:52 +1000162
Herbert Xu79911102006-08-21 21:03:52 +1000163#define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
Herbert Xu79911102006-08-21 21:03:52 +1000164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165struct scatterlist;
Herbert Xu32e3983f2007-03-24 14:35:34 +1100166struct crypto_async_request;
Herbert Xu40725182005-07-06 13:51:52 -0700167struct crypto_tfm;
Herbert Xue853c3c2006-08-22 00:06:54 +1000168struct crypto_type;
Herbert Xu40725182005-07-06 13:51:52 -0700169
Herbert Xu32e3983f2007-03-24 14:35:34 +1100170typedef void (*crypto_completion_t)(struct crypto_async_request *req, int err);
171
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100172/**
173 * DOC: Block Cipher Context Data Structures
174 *
175 * These data structures define the operating context for each block cipher
176 * type.
177 */
178
Herbert Xu32e3983f2007-03-24 14:35:34 +1100179struct crypto_async_request {
180 struct list_head list;
181 crypto_completion_t complete;
182 void *data;
183 struct crypto_tfm *tfm;
184
185 u32 flags;
186};
187
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100188/**
189 * DOC: Block Cipher Algorithm Definitions
190 *
191 * These data structures define modular crypto algorithm implementations,
192 * managed via crypto_register_alg() and crypto_unregister_alg().
193 */
194
195/**
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100196 * struct cipher_alg - single-block symmetric ciphers definition
197 * @cia_min_keysize: Minimum key size supported by the transformation. This is
198 * the smallest key length supported by this transformation
199 * algorithm. This must be set to one of the pre-defined
200 * values as this is not hardware specific. Possible values
201 * for this field can be found via git grep "_MIN_KEY_SIZE"
202 * include/crypto/
203 * @cia_max_keysize: Maximum key size supported by the transformation. This is
204 * the largest key length supported by this transformation
205 * algorithm. This must be set to one of the pre-defined values
206 * as this is not hardware specific. Possible values for this
207 * field can be found via git grep "_MAX_KEY_SIZE"
208 * include/crypto/
209 * @cia_setkey: Set key for the transformation. This function is used to either
210 * program a supplied key into the hardware or store the key in the
211 * transformation context for programming it later. Note that this
212 * function does modify the transformation context. This function
213 * can be called multiple times during the existence of the
214 * transformation object, so one must make sure the key is properly
215 * reprogrammed into the hardware. This function is also
216 * responsible for checking the key length for validity.
217 * @cia_encrypt: Encrypt a single block. This function is used to encrypt a
218 * single block of data, which must be @cra_blocksize big. This
219 * always operates on a full @cra_blocksize and it is not possible
220 * to encrypt a block of smaller size. The supplied buffers must
221 * therefore also be at least of @cra_blocksize size. Both the
222 * input and output buffers are always aligned to @cra_alignmask.
223 * In case either of the input or output buffer supplied by user
224 * of the crypto API is not aligned to @cra_alignmask, the crypto
225 * API will re-align the buffers. The re-alignment means that a
226 * new buffer will be allocated, the data will be copied into the
227 * new buffer, then the processing will happen on the new buffer,
228 * then the data will be copied back into the original buffer and
229 * finally the new buffer will be freed. In case a software
230 * fallback was put in place in the @cra_init call, this function
231 * might need to use the fallback if the algorithm doesn't support
232 * all of the key sizes. In case the key was stored in
233 * transformation context, the key might need to be re-programmed
234 * into the hardware in this function. This function shall not
235 * modify the transformation context, as this function may be
236 * called in parallel with the same transformation object.
237 * @cia_decrypt: Decrypt a single block. This is a reverse counterpart to
238 * @cia_encrypt, and the conditions are exactly the same.
239 *
240 * All fields are mandatory and must be filled.
241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242struct cipher_alg {
243 unsigned int cia_min_keysize;
244 unsigned int cia_max_keysize;
Herbert Xu6c2bb982006-05-16 22:09:29 +1000245 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000246 unsigned int keylen);
Herbert Xu6c2bb982006-05-16 22:09:29 +1000247 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
248 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
Hook, Gary5a353162019-06-25 23:43:43 +0000251/**
252 * struct compress_alg - compression/decompression algorithm
253 * @coa_compress: Compress a buffer of specified length, storing the resulting
254 * data in the specified buffer. Return the length of the
255 * compressed data in dlen.
256 * @coa_decompress: Decompress the source buffer, storing the uncompressed
257 * data in the specified buffer. The length of the data is
258 * returned in dlen.
259 *
260 * All fields are mandatory.
261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262struct compress_alg {
Herbert Xu6c2bb982006-05-16 22:09:29 +1000263 int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
264 unsigned int slen, u8 *dst, unsigned int *dlen);
265 int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
266 unsigned int slen, u8 *dst, unsigned int *dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
Corentin Labbe17c18f92018-11-29 14:42:24 +0000269#ifdef CONFIG_CRYPTO_STATS
270/*
271 * struct crypto_istat_aead - statistics for AEAD algorithm
272 * @encrypt_cnt: number of encrypt requests
273 * @encrypt_tlen: total data size handled by encrypt requests
274 * @decrypt_cnt: number of decrypt requests
275 * @decrypt_tlen: total data size handled by decrypt requests
Corentin Labbe44f13132018-11-29 14:42:25 +0000276 * @err_cnt: number of error for AEAD requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000277 */
278struct crypto_istat_aead {
279 atomic64_t encrypt_cnt;
280 atomic64_t encrypt_tlen;
281 atomic64_t decrypt_cnt;
282 atomic64_t decrypt_tlen;
Corentin Labbe44f13132018-11-29 14:42:25 +0000283 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000284};
285
286/*
287 * struct crypto_istat_akcipher - statistics for akcipher algorithm
288 * @encrypt_cnt: number of encrypt requests
289 * @encrypt_tlen: total data size handled by encrypt requests
290 * @decrypt_cnt: number of decrypt requests
291 * @decrypt_tlen: total data size handled by decrypt requests
292 * @verify_cnt: number of verify operation
293 * @sign_cnt: number of sign requests
Corentin Labbe44f13132018-11-29 14:42:25 +0000294 * @err_cnt: number of error for akcipher requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000295 */
296struct crypto_istat_akcipher {
297 atomic64_t encrypt_cnt;
298 atomic64_t encrypt_tlen;
299 atomic64_t decrypt_cnt;
300 atomic64_t decrypt_tlen;
301 atomic64_t verify_cnt;
302 atomic64_t sign_cnt;
Corentin Labbe44f13132018-11-29 14:42:25 +0000303 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000304};
305
306/*
307 * struct crypto_istat_cipher - statistics for cipher algorithm
308 * @encrypt_cnt: number of encrypt requests
309 * @encrypt_tlen: total data size handled by encrypt requests
310 * @decrypt_cnt: number of decrypt requests
311 * @decrypt_tlen: total data size handled by decrypt requests
Corentin Labbe44f13132018-11-29 14:42:25 +0000312 * @err_cnt: number of error for cipher requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000313 */
314struct crypto_istat_cipher {
315 atomic64_t encrypt_cnt;
316 atomic64_t encrypt_tlen;
317 atomic64_t decrypt_cnt;
318 atomic64_t decrypt_tlen;
Corentin Labbe44f13132018-11-29 14:42:25 +0000319 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000320};
321
322/*
323 * struct crypto_istat_compress - statistics for compress algorithm
324 * @compress_cnt: number of compress requests
325 * @compress_tlen: total data size handled by compress requests
326 * @decompress_cnt: number of decompress requests
327 * @decompress_tlen: total data size handled by decompress requests
Corentin Labbe44f13132018-11-29 14:42:25 +0000328 * @err_cnt: number of error for compress requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000329 */
330struct crypto_istat_compress {
331 atomic64_t compress_cnt;
332 atomic64_t compress_tlen;
333 atomic64_t decompress_cnt;
334 atomic64_t decompress_tlen;
Corentin Labbe44f13132018-11-29 14:42:25 +0000335 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000336};
337
338/*
339 * struct crypto_istat_hash - statistics for has algorithm
340 * @hash_cnt: number of hash requests
341 * @hash_tlen: total data size hashed
Corentin Labbe44f13132018-11-29 14:42:25 +0000342 * @err_cnt: number of error for hash requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000343 */
344struct crypto_istat_hash {
345 atomic64_t hash_cnt;
346 atomic64_t hash_tlen;
Corentin Labbe44f13132018-11-29 14:42:25 +0000347 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000348};
349
350/*
351 * struct crypto_istat_kpp - statistics for KPP algorithm
352 * @setsecret_cnt: number of setsecrey operation
353 * @generate_public_key_cnt: number of generate_public_key operation
354 * @compute_shared_secret_cnt: number of compute_shared_secret operation
Corentin Labbe44f13132018-11-29 14:42:25 +0000355 * @err_cnt: number of error for KPP requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000356 */
357struct crypto_istat_kpp {
358 atomic64_t setsecret_cnt;
359 atomic64_t generate_public_key_cnt;
360 atomic64_t compute_shared_secret_cnt;
Corentin Labbe44f13132018-11-29 14:42:25 +0000361 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000362};
363
364/*
365 * struct crypto_istat_rng: statistics for RNG algorithm
366 * @generate_cnt: number of RNG generate requests
367 * @generate_tlen: total data size of generated data by the RNG
368 * @seed_cnt: number of times the RNG was seeded
Corentin Labbe44f13132018-11-29 14:42:25 +0000369 * @err_cnt: number of error for RNG requests
Corentin Labbe17c18f92018-11-29 14:42:24 +0000370 */
371struct crypto_istat_rng {
372 atomic64_t generate_cnt;
373 atomic64_t generate_tlen;
374 atomic64_t seed_cnt;
Corentin Labbe44f13132018-11-29 14:42:25 +0000375 atomic64_t err_cnt;
Corentin Labbe17c18f92018-11-29 14:42:24 +0000376};
377#endif /* CONFIG_CRYPTO_STATS */
Neil Horman17f0f4a2008-08-14 22:15:52 +1000378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#define cra_cipher cra_u.cipher
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#define cra_compress cra_u.compress
381
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100382/**
383 * struct crypto_alg - definition of a cryptograpic cipher algorithm
384 * @cra_flags: Flags describing this transformation. See include/linux/crypto.h
385 * CRYPTO_ALG_* flags for the flags which go in here. Those are
386 * used for fine-tuning the description of the transformation
387 * algorithm.
388 * @cra_blocksize: Minimum block size of this transformation. The size in bytes
389 * of the smallest possible unit which can be transformed with
390 * this algorithm. The users must respect this value.
391 * In case of HASH transformation, it is possible for a smaller
392 * block than @cra_blocksize to be passed to the crypto API for
393 * transformation, in case of any other transformation type, an
394 * error will be returned upon any attempt to transform smaller
395 * than @cra_blocksize chunks.
396 * @cra_ctxsize: Size of the operational context of the transformation. This
397 * value informs the kernel crypto API about the memory size
398 * needed to be allocated for the transformation context.
399 * @cra_alignmask: Alignment mask for the input and output data buffer. The data
400 * buffer containing the input data for the algorithm must be
401 * aligned to this alignment mask. The data buffer for the
402 * output data must be aligned to this alignment mask. Note that
403 * the Crypto API will do the re-alignment in software, but
404 * only under special conditions and there is a performance hit.
405 * The re-alignment happens at these occasions for different
406 * @cra_u types: cipher -- For both input data and output data
407 * buffer; ahash -- For output hash destination buf; shash --
408 * For output hash destination buf.
409 * This is needed on hardware which is flawed by design and
410 * cannot pick data from arbitrary addresses.
411 * @cra_priority: Priority of this transformation implementation. In case
412 * multiple transformations with same @cra_name are available to
413 * the Crypto API, the kernel will use the one with highest
414 * @cra_priority.
415 * @cra_name: Generic name (usable by multiple implementations) of the
416 * transformation algorithm. This is the name of the transformation
417 * itself. This field is used by the kernel when looking up the
418 * providers of particular transformation.
419 * @cra_driver_name: Unique name of the transformation provider. This is the
420 * name of the provider of the transformation. This can be any
421 * arbitrary value, but in the usual case, this contains the
422 * name of the chip or provider and the name of the
423 * transformation algorithm.
424 * @cra_type: Type of the cryptographic transformation. This is a pointer to
425 * struct crypto_type, which implements callbacks common for all
Eric Biggersc65058b2019-10-25 12:41:12 -0700426 * transformation types. There are multiple options, such as
427 * &crypto_skcipher_type, &crypto_ahash_type, &crypto_rng_type.
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100428 * This field might be empty. In that case, there are no common
429 * callbacks. This is the case for: cipher, compress, shash.
430 * @cra_u: Callbacks implementing the transformation. This is a union of
431 * multiple structures. Depending on the type of transformation selected
432 * by @cra_type and @cra_flags above, the associated structure must be
433 * filled with callbacks. This field might be empty. This is the case
434 * for ahash, shash.
435 * @cra_init: Initialize the cryptographic transformation object. This function
436 * is used to initialize the cryptographic transformation object.
437 * This function is called only once at the instantiation time, right
438 * after the transformation context was allocated. In case the
439 * cryptographic hardware has some special requirements which need to
440 * be handled by software, this function shall check for the precise
441 * requirement of the transformation and put any software fallbacks
442 * in place.
443 * @cra_exit: Deinitialize the cryptographic transformation object. This is a
444 * counterpart to @cra_init, used to remove various changes set in
445 * @cra_init.
Gary R Hook0063ec42018-03-14 17:15:52 -0500446 * @cra_u.cipher: Union member which contains a single-block symmetric cipher
447 * definition. See @struct @cipher_alg.
448 * @cra_u.compress: Union member which contains a (de)compression algorithm.
449 * See @struct @compress_alg.
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100450 * @cra_module: Owner of this transformation implementation. Set to THIS_MODULE
451 * @cra_list: internally used
452 * @cra_users: internally used
453 * @cra_refcnt: internally used
454 * @cra_destroy: internally used
455 *
Corentin Labbe17c18f92018-11-29 14:42:24 +0000456 * @stats: union of all possible crypto_istat_xxx structures
Corentin Labbebfad6cb2018-12-13 08:36:38 +0000457 * @stats.aead: statistics for AEAD algorithm
458 * @stats.akcipher: statistics for akcipher algorithm
459 * @stats.cipher: statistics for cipher algorithm
460 * @stats.compress: statistics for compress algorithm
461 * @stats.hash: statistics for hash algorithm
462 * @stats.rng: statistics for rng algorithm
463 * @stats.kpp: statistics for KPP algorithm
Corentin Labbecac58182018-09-19 10:10:54 +0000464 *
Stephan Mueller0d7f4882014-11-12 05:27:49 +0100465 * The struct crypto_alg describes a generic Crypto API algorithm and is common
466 * for all of the transformations. Any variable not documented here shall not
467 * be used by a cipher implementation as it is internal to the Crypto API.
468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469struct crypto_alg {
470 struct list_head cra_list;
Herbert Xu6bfd4802006-09-21 11:39:29 +1000471 struct list_head cra_users;
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 u32 cra_flags;
474 unsigned int cra_blocksize;
475 unsigned int cra_ctxsize;
Herbert Xu95477372005-07-06 13:52:09 -0700476 unsigned int cra_alignmask;
Herbert Xu5cb1454b2005-11-05 16:58:14 +1100477
478 int cra_priority;
Eric Biggersce8614a2017-12-29 10:00:46 -0600479 refcount_t cra_refcnt;
Herbert Xu5cb1454b2005-11-05 16:58:14 +1100480
Herbert Xud913ea02006-05-21 08:45:26 +1000481 char cra_name[CRYPTO_MAX_ALG_NAME];
482 char cra_driver_name[CRYPTO_MAX_ALG_NAME];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Herbert Xue853c3c2006-08-22 00:06:54 +1000484 const struct crypto_type *cra_type;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 union {
487 struct cipher_alg cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct compress_alg compress;
489 } cra_u;
Herbert Xuc7fc0592006-05-24 13:02:26 +1000490
491 int (*cra_init)(struct crypto_tfm *tfm);
492 void (*cra_exit)(struct crypto_tfm *tfm);
Herbert Xu6521f302006-08-06 20:28:44 +1000493 void (*cra_destroy)(struct crypto_alg *alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 struct module *cra_module;
Corentin Labbecac58182018-09-19 10:10:54 +0000496
Corentin Labbe2ced2602018-11-29 14:42:16 +0000497#ifdef CONFIG_CRYPTO_STATS
Corentin Labbecac58182018-09-19 10:10:54 +0000498 union {
Corentin Labbe17c18f92018-11-29 14:42:24 +0000499 struct crypto_istat_aead aead;
500 struct crypto_istat_akcipher akcipher;
501 struct crypto_istat_cipher cipher;
502 struct crypto_istat_compress compress;
503 struct crypto_istat_hash hash;
504 struct crypto_istat_rng rng;
505 struct crypto_istat_kpp kpp;
506 } stats;
Corentin Labbe2ced2602018-11-29 14:42:16 +0000507#endif /* CONFIG_CRYPTO_STATS */
Corentin Labbecac58182018-09-19 10:10:54 +0000508
Herbert Xuedf18b92015-06-18 14:00:48 +0800509} CRYPTO_MINALIGN_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Corentin Labbef7d76e02018-11-29 14:42:21 +0000511#ifdef CONFIG_CRYPTO_STATS
Corentin Labbe1f6669b2018-11-29 14:42:26 +0000512void crypto_stats_init(struct crypto_alg *alg);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000513void crypto_stats_get(struct crypto_alg *alg);
Corentin Labbef7d76e02018-11-29 14:42:21 +0000514void crypto_stats_aead_encrypt(unsigned int cryptlen, struct crypto_alg *alg, int ret);
515void crypto_stats_aead_decrypt(unsigned int cryptlen, struct crypto_alg *alg, int ret);
516void crypto_stats_ahash_update(unsigned int nbytes, int ret, struct crypto_alg *alg);
517void crypto_stats_ahash_final(unsigned int nbytes, int ret, struct crypto_alg *alg);
518void crypto_stats_akcipher_encrypt(unsigned int src_len, int ret, struct crypto_alg *alg);
519void crypto_stats_akcipher_decrypt(unsigned int src_len, int ret, struct crypto_alg *alg);
520void crypto_stats_akcipher_sign(int ret, struct crypto_alg *alg);
521void crypto_stats_akcipher_verify(int ret, struct crypto_alg *alg);
522void crypto_stats_compress(unsigned int slen, int ret, struct crypto_alg *alg);
523void crypto_stats_decompress(unsigned int slen, int ret, struct crypto_alg *alg);
524void crypto_stats_kpp_set_secret(struct crypto_alg *alg, int ret);
525void crypto_stats_kpp_generate_public_key(struct crypto_alg *alg, int ret);
526void crypto_stats_kpp_compute_shared_secret(struct crypto_alg *alg, int ret);
527void crypto_stats_rng_seed(struct crypto_alg *alg, int ret);
528void crypto_stats_rng_generate(struct crypto_alg *alg, unsigned int dlen, int ret);
529void crypto_stats_skcipher_encrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg);
530void crypto_stats_skcipher_decrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg);
531#else
Corentin Labbe1f6669b2018-11-29 14:42:26 +0000532static inline void crypto_stats_init(struct crypto_alg *alg)
533{}
Corentin Labbef7d76e02018-11-29 14:42:21 +0000534static inline void crypto_stats_get(struct crypto_alg *alg)
535{}
Corentin Labbef7d76e02018-11-29 14:42:21 +0000536static inline void crypto_stats_aead_encrypt(unsigned int cryptlen, struct crypto_alg *alg, int ret)
537{}
538static inline void crypto_stats_aead_decrypt(unsigned int cryptlen, struct crypto_alg *alg, int ret)
539{}
540static inline void crypto_stats_ahash_update(unsigned int nbytes, int ret, struct crypto_alg *alg)
541{}
542static inline void crypto_stats_ahash_final(unsigned int nbytes, int ret, struct crypto_alg *alg)
543{}
544static inline void crypto_stats_akcipher_encrypt(unsigned int src_len, int ret, struct crypto_alg *alg)
545{}
546static inline void crypto_stats_akcipher_decrypt(unsigned int src_len, int ret, struct crypto_alg *alg)
547{}
548static inline void crypto_stats_akcipher_sign(int ret, struct crypto_alg *alg)
549{}
550static inline void crypto_stats_akcipher_verify(int ret, struct crypto_alg *alg)
551{}
552static inline void crypto_stats_compress(unsigned int slen, int ret, struct crypto_alg *alg)
553{}
554static inline void crypto_stats_decompress(unsigned int slen, int ret, struct crypto_alg *alg)
555{}
556static inline void crypto_stats_kpp_set_secret(struct crypto_alg *alg, int ret)
557{}
558static inline void crypto_stats_kpp_generate_public_key(struct crypto_alg *alg, int ret)
559{}
560static inline void crypto_stats_kpp_compute_shared_secret(struct crypto_alg *alg, int ret)
561{}
562static inline void crypto_stats_rng_seed(struct crypto_alg *alg, int ret)
563{}
564static inline void crypto_stats_rng_generate(struct crypto_alg *alg, unsigned int dlen, int ret)
565{}
566static inline void crypto_stats_skcipher_encrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg)
567{}
568static inline void crypto_stats_skcipher_decrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg)
569{}
570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
Gilad Ben-Yossefada69a12017-10-18 08:00:38 +0100572 * A helper struct for waiting for completion of async crypto ops
573 */
574struct crypto_wait {
575 struct completion completion;
576 int err;
577};
578
579/*
580 * Macro for declaring a crypto op async wait object on stack
581 */
582#define DECLARE_CRYPTO_WAIT(_wait) \
583 struct crypto_wait _wait = { \
584 COMPLETION_INITIALIZER_ONSTACK((_wait).completion), 0 }
585
586/*
587 * Async ops completion helper functioons
588 */
589void crypto_req_done(struct crypto_async_request *req, int err);
590
591static inline int crypto_wait_req(int err, struct crypto_wait *wait)
592{
593 switch (err) {
594 case -EINPROGRESS:
595 case -EBUSY:
596 wait_for_completion(&wait->completion);
597 reinit_completion(&wait->completion);
598 err = wait->err;
599 break;
Chen Zhouc7829372019-12-16 18:58:48 +0800600 }
Gilad Ben-Yossefada69a12017-10-18 08:00:38 +0100601
602 return err;
603}
604
605static inline void crypto_init_wait(struct crypto_wait *wait)
606{
607 init_completion(&wait->completion);
608}
609
610/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * Algorithm registration interface.
612 */
613int crypto_register_alg(struct crypto_alg *alg);
Eric Biggersc6d633a2019-12-15 15:51:19 -0800614void crypto_unregister_alg(struct crypto_alg *alg);
Mark Brown4b004342012-01-17 23:34:26 +0000615int crypto_register_algs(struct crypto_alg *algs, int count);
Eric Biggersc6d633a2019-12-15 15:51:19 -0800616void crypto_unregister_algs(struct crypto_alg *algs, int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618/*
619 * Algorithm query interface.
620 */
Herbert Xufce32d72006-08-26 17:35:45 +1000621int crypto_has_alg(const char *name, u32 type, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623/*
624 * Transforms: user-instantiated objects which encapsulate algorithms
Herbert Xu6d7d6842006-07-30 11:53:01 +1000625 * and core processing logic. Managed via crypto_alloc_*() and
626 * crypto_free_*(), as well as the various helpers below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629struct crypto_tfm {
630
631 u32 crt_flags;
Barry Song7bc13b52020-07-05 21:18:58 +1200632
633 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Herbert Xu4a779482008-09-13 18:19:03 -0700635 void (*exit)(struct crypto_tfm *tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 struct crypto_alg *__crt_alg;
Herbert Xuf10b7892006-01-25 22:34:01 +1100638
Herbert Xu79911102006-08-21 21:03:52 +1000639 void *__crt_ctx[] CRYPTO_MINALIGN_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640};
641
Herbert Xu78a1fe42006-12-24 10:02:00 +1100642struct crypto_comp {
643 struct crypto_tfm base;
644};
645
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000646enum {
647 CRYPTOA_UNSPEC,
648 CRYPTOA_ALG,
Herbert Xuebc610e2007-01-01 18:37:02 +1100649 CRYPTOA_TYPE,
Herbert Xu39e1ee012007-08-29 19:27:26 +0800650 CRYPTOA_U32,
Herbert Xuebc610e2007-01-01 18:37:02 +1100651 __CRYPTOA_MAX,
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000652};
653
Herbert Xuebc610e2007-01-01 18:37:02 +1100654#define CRYPTOA_MAX (__CRYPTOA_MAX - 1)
655
Herbert Xu39e1ee012007-08-29 19:27:26 +0800656/* Maximum number of (rtattr) parameters for each template. */
657#define CRYPTO_MAX_ATTRS 32
658
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000659struct crypto_attr_alg {
660 char name[CRYPTO_MAX_ALG_NAME];
661};
662
Herbert Xuebc610e2007-01-01 18:37:02 +1100663struct crypto_attr_type {
664 u32 type;
665 u32 mask;
666};
667
Herbert Xu39e1ee012007-08-29 19:27:26 +0800668struct crypto_attr_u32 {
669 u32 num;
670};
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*
673 * Transform user interface.
674 */
675
Herbert Xu6d7d6842006-07-30 11:53:01 +1000676struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
Herbert Xu7b2cd922009-02-05 16:48:24 +1100677void crypto_destroy_tfm(void *mem, struct crypto_tfm *tfm);
678
679static inline void crypto_free_tfm(struct crypto_tfm *tfm)
680{
681 return crypto_destroy_tfm(tfm, tfm);
682}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Herbert Xuda7f0332008-07-31 17:08:25 +0800684int alg_test(const char *driver, const char *alg, u32 type, u32 mask);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/*
687 * Transform helpers which query the underlying algorithm.
688 */
689static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
690{
691 return tfm->__crt_alg->cra_name;
692}
693
Michal Ludvigb14cdd62006-07-09 09:02:24 +1000694static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm)
695{
696 return tfm->__crt_alg->cra_driver_name;
697}
698
699static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm)
700{
701 return tfm->__crt_alg->cra_priority;
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
705{
706 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
710{
711 return tfm->__crt_alg->cra_blocksize;
712}
713
Herbert Xufbdae9f2005-07-06 13:53:29 -0700714static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
715{
716 return tfm->__crt_alg->cra_alignmask;
717}
718
Herbert Xuf28776a2006-08-13 20:58:18 +1000719static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm)
720{
721 return tfm->crt_flags;
722}
723
724static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags)
725{
726 tfm->crt_flags |= flags;
727}
728
729static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags)
730{
731 tfm->crt_flags &= ~flags;
732}
733
Herbert Xu40725182005-07-06 13:51:52 -0700734static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
735{
Herbert Xuf10b7892006-01-25 22:34:01 +1100736 return tfm->__crt_ctx;
737}
738
739static inline unsigned int crypto_tfm_ctx_alignment(void)
740{
741 struct crypto_tfm *tfm;
742 return __alignof__(tfm->__crt_ctx);
Herbert Xu40725182005-07-06 13:51:52 -0700743}
744
Herbert Xufce32d72006-08-26 17:35:45 +1000745static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm)
746{
747 return (struct crypto_comp *)tfm;
748}
749
Herbert Xufce32d72006-08-26 17:35:45 +1000750static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name,
751 u32 type, u32 mask)
752{
753 type &= ~CRYPTO_ALG_TYPE_MASK;
754 type |= CRYPTO_ALG_TYPE_COMPRESS;
755 mask |= CRYPTO_ALG_TYPE_MASK;
756
757 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask));
758}
759
760static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm)
761{
Herbert Xu78a1fe42006-12-24 10:02:00 +1100762 return &tfm->base;
Herbert Xufce32d72006-08-26 17:35:45 +1000763}
764
765static inline void crypto_free_comp(struct crypto_comp *tfm)
766{
767 crypto_free_tfm(crypto_comp_tfm(tfm));
768}
769
770static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask)
771{
772 type &= ~CRYPTO_ALG_TYPE_MASK;
773 type |= CRYPTO_ALG_TYPE_COMPRESS;
774 mask |= CRYPTO_ALG_TYPE_MASK;
775
776 return crypto_has_alg(alg_name, type, mask);
777}
778
Herbert Xue4d5b792006-08-26 18:12:40 +1000779static inline const char *crypto_comp_name(struct crypto_comp *tfm)
780{
781 return crypto_tfm_alg_name(crypto_comp_tfm(tfm));
782}
783
Eric Biggersc441a902019-12-02 13:42:29 -0800784int crypto_comp_compress(struct crypto_comp *tfm,
785 const u8 *src, unsigned int slen,
786 u8 *dst, unsigned int *dlen);
Herbert Xufce32d72006-08-26 17:35:45 +1000787
Eric Biggersc441a902019-12-02 13:42:29 -0800788int crypto_comp_decompress(struct crypto_comp *tfm,
789 const u8 *src, unsigned int slen,
790 u8 *dst, unsigned int *dlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#endif /* _LINUX_CRYPTO_H */
793