Blame view

crypto/testmgr.c 139 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
da7f033dd   Herbert Xu   crypto: cryptomgr...
2
3
4
5
6
7
8
  /*
   * Algorithm testing framework and tests.
   *
   * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
   * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
   * Copyright (c) 2007 Nokia Siemens Networks
   * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
3f47a03df   Eric Biggers   crypto: testmgr -...
9
   * Copyright (c) 2019 Google LLC
da7f033dd   Herbert Xu   crypto: cryptomgr...
10
   *
69435b94d   Adrian Hoban   crypto: rfc4106 -...
11
12
13
14
15
16
   * Updated RFC4106 AES-GCM testing.
   *    Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
   *             Adrian Hoban <adrian.hoban@intel.com>
   *             Gabriele Paoloni <gabriele.paoloni@intel.com>
   *             Tadeusz Struk (tadeusz.struk@intel.com)
   *    Copyright (c) 2010, Intel Corporation.
da7f033dd   Herbert Xu   crypto: cryptomgr...
17
   */
1ce331158   Herbert Xu   crypto: testmgr -...
18
  #include <crypto/aead.h>
da7f033dd   Herbert Xu   crypto: cryptomgr...
19
  #include <crypto/hash.h>
12773d932   Herbert Xu   crypto: testmgr -...
20
  #include <crypto/skcipher.h>
da7f033dd   Herbert Xu   crypto: cryptomgr...
21
  #include <linux/err.h>
1c41b8824   Herbert Xu   crypto: testmgr -...
22
  #include <linux/fips.h>
da7f033dd   Herbert Xu   crypto: cryptomgr...
23
  #include <linux/module.h>
3f47a03df   Eric Biggers   crypto: testmgr -...
24
  #include <linux/once.h>
25f9dddb9   Eric Biggers   crypto: testmgr -...
25
  #include <linux/random.h>
da7f033dd   Herbert Xu   crypto: cryptomgr...
26
27
28
  #include <linux/scatterlist.h>
  #include <linux/slab.h>
  #include <linux/string.h>
7647d6ce2   Jarod Wilson   crypto: testmgr -...
29
  #include <crypto/rng.h>
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
30
  #include <crypto/drbg.h>
946cc4637   Tadeusz Struk   crypto: testmgr -...
31
  #include <crypto/akcipher.h>
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
32
  #include <crypto/kpp.h>
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
33
  #include <crypto/acompress.h>
b55e1a395   Eric Biggers   crypto: simd,test...
34
  #include <crypto/internal/simd.h>
da7f033dd   Herbert Xu   crypto: cryptomgr...
35
36
  
  #include "internal.h"
0b767f961   Alexander Shishkin   crypto: testmgr -...
37

9e5c9fe4c   Richard W.M. Jones   crypto: testmgr -...
38
39
40
  static bool notests;
  module_param(notests, bool, 0644);
  MODULE_PARM_DESC(notests, "disable crypto self-tests");
eda69b0c0   Eric Biggers   crypto: testmgr -...
41
42
  static bool panic_on_fail;
  module_param(panic_on_fail, bool, 0444);
5b2706a4d   Eric Biggers   crypto: testmgr -...
43
44
45
46
47
48
49
50
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  static bool noextratests;
  module_param(noextratests, bool, 0644);
  MODULE_PARM_DESC(noextratests, "disable expensive crypto self-tests");
  
  static unsigned int fuzz_iterations = 100;
  module_param(fuzz_iterations, uint, 0644);
  MODULE_PARM_DESC(fuzz_iterations, "number of fuzz test iterations");
b55e1a395   Eric Biggers   crypto: simd,test...
51
52
53
  
  DEFINE_PER_CPU(bool, crypto_simd_disabled_for_test);
  EXPORT_PER_CPU_SYMBOL_GPL(crypto_simd_disabled_for_test);
5b2706a4d   Eric Biggers   crypto: testmgr -...
54
  #endif
326a6346f   Herbert Xu   crypto: testmgr -...
55
  #ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
0b767f961   Alexander Shishkin   crypto: testmgr -...
56
57
58
59
60
61
62
63
  
  /* a perfect nop */
  int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
  {
  	return 0;
  }
  
  #else
da7f033dd   Herbert Xu   crypto: cryptomgr...
64
65
66
67
68
69
70
71
  #include "testmgr.h"
  
  /*
   * Need slab memory for testing (size in number of pages).
   */
  #define XBUFSIZE	8
  
  /*
da7f033dd   Herbert Xu   crypto: cryptomgr...
72
73
74
75
  * Used by test_cipher()
  */
  #define ENCRYPT 1
  #define DECRYPT 0
da7f033dd   Herbert Xu   crypto: cryptomgr...
76
  struct aead_test_suite {
a0d608ee5   Eric Biggers   crypto: testmgr -...
77
78
  	const struct aead_testvec *vecs;
  	unsigned int count;
da7f033dd   Herbert Xu   crypto: cryptomgr...
79
80
81
  };
  
  struct cipher_test_suite {
92a4c9fef   Eric Biggers   crypto: testmgr -...
82
83
  	const struct cipher_testvec *vecs;
  	unsigned int count;
da7f033dd   Herbert Xu   crypto: cryptomgr...
84
85
86
87
  };
  
  struct comp_test_suite {
  	struct {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
88
  		const struct comp_testvec *vecs;
da7f033dd   Herbert Xu   crypto: cryptomgr...
89
90
91
92
93
  		unsigned int count;
  	} comp, decomp;
  };
  
  struct hash_test_suite {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
94
  	const struct hash_testvec *vecs;
da7f033dd   Herbert Xu   crypto: cryptomgr...
95
96
  	unsigned int count;
  };
7647d6ce2   Jarod Wilson   crypto: testmgr -...
97
  struct cprng_test_suite {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
98
  	const struct cprng_testvec *vecs;
7647d6ce2   Jarod Wilson   crypto: testmgr -...
99
100
  	unsigned int count;
  };
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
101
  struct drbg_test_suite {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
102
  	const struct drbg_testvec *vecs;
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
103
104
  	unsigned int count;
  };
a9278aade   Radu Alexe   crypto: add suppo...
105
106
107
108
109
110
  struct tls_test_suite {
  	struct {
  		struct tls_testvec *vecs;
  		unsigned int count;
  	} enc, dec;
  };
946cc4637   Tadeusz Struk   crypto: testmgr -...
111
  struct akcipher_test_suite {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
112
  	const struct akcipher_testvec *vecs;
946cc4637   Tadeusz Struk   crypto: testmgr -...
113
114
  	unsigned int count;
  };
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
115
  struct kpp_test_suite {
b13b1e0c6   Eric Biggers   crypto: testmgr -...
116
  	const struct kpp_testvec *vecs;
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
117
118
  	unsigned int count;
  };
da7f033dd   Herbert Xu   crypto: cryptomgr...
119
120
  struct alg_test_desc {
  	const char *alg;
f2bb770ae   Eric Biggers   crypto: testmgr -...
121
  	const char *generic_driver;
da7f033dd   Herbert Xu   crypto: cryptomgr...
122
123
  	int (*test)(const struct alg_test_desc *desc, const char *driver,
  		    u32 type, u32 mask);
a1915d51e   Jarod Wilson   crypto: testmgr -...
124
  	int fips_allowed;	/* set if alg is allowed in fips mode */
da7f033dd   Herbert Xu   crypto: cryptomgr...
125
126
127
128
129
130
  
  	union {
  		struct aead_test_suite aead;
  		struct cipher_test_suite cipher;
  		struct comp_test_suite comp;
  		struct hash_test_suite hash;
7647d6ce2   Jarod Wilson   crypto: testmgr -...
131
  		struct cprng_test_suite cprng;
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
132
  		struct drbg_test_suite drbg;
a9278aade   Radu Alexe   crypto: add suppo...
133
  		struct tls_test_suite tls;
946cc4637   Tadeusz Struk   crypto: testmgr -...
134
  		struct akcipher_test_suite akcipher;
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
135
  		struct kpp_test_suite kpp;
da7f033dd   Herbert Xu   crypto: cryptomgr...
136
137
  	} suite;
  };
da7f033dd   Herbert Xu   crypto: cryptomgr...
138
139
140
141
142
143
  static void hexdump(unsigned char *buf, unsigned int len)
  {
  	print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
  			16, 1,
  			buf, len, false);
  }
3f47a03df   Eric Biggers   crypto: testmgr -...
144
  static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
f8b0d4d09   Herbert Xu   crypto: testmgr -...
145
146
147
148
  {
  	int i;
  
  	for (i = 0; i < XBUFSIZE; i++) {
3f47a03df   Eric Biggers   crypto: testmgr -...
149
  		buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
f8b0d4d09   Herbert Xu   crypto: testmgr -...
150
151
152
153
154
155
156
157
  		if (!buf[i])
  			goto err_free_buf;
  	}
  
  	return 0;
  
  err_free_buf:
  	while (i-- > 0)
3f47a03df   Eric Biggers   crypto: testmgr -...
158
  		free_pages((unsigned long)buf[i], order);
f8b0d4d09   Herbert Xu   crypto: testmgr -...
159
160
161
  
  	return -ENOMEM;
  }
3f47a03df   Eric Biggers   crypto: testmgr -...
162
163
164
165
166
167
  static int testmgr_alloc_buf(char *buf[XBUFSIZE])
  {
  	return __testmgr_alloc_buf(buf, 0);
  }
  
  static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
f8b0d4d09   Herbert Xu   crypto: testmgr -...
168
169
170
171
  {
  	int i;
  
  	for (i = 0; i < XBUFSIZE; i++)
3f47a03df   Eric Biggers   crypto: testmgr -...
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  		free_pages((unsigned long)buf[i], order);
  }
  
  static void testmgr_free_buf(char *buf[XBUFSIZE])
  {
  	__testmgr_free_buf(buf, 0);
  }
  
  #define TESTMGR_POISON_BYTE	0xfe
  #define TESTMGR_POISON_LEN	16
  
  static inline void testmgr_poison(void *addr, size_t len)
  {
  	memset(addr, TESTMGR_POISON_BYTE, len);
  }
  
  /* Is the memory region still fully poisoned? */
  static inline bool testmgr_is_poison(const void *addr, size_t len)
  {
  	return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
  }
  
  /* flush type for hash algorithms */
  enum flush_type {
  	/* merge with update of previous buffer(s) */
  	FLUSH_TYPE_NONE = 0,
  
  	/* update with previous buffer(s) before doing this one */
  	FLUSH_TYPE_FLUSH,
  
  	/* likewise, but also export and re-import the intermediate state */
  	FLUSH_TYPE_REIMPORT,
  };
  
  /* finalization function for hash algorithms */
  enum finalization_type {
  	FINALIZATION_TYPE_FINAL,	/* use final() */
  	FINALIZATION_TYPE_FINUP,	/* use finup() */
  	FINALIZATION_TYPE_DIGEST,	/* use digest() */
  };
  
  #define TEST_SG_TOTAL	10000
  
  /**
   * struct test_sg_division - description of a scatterlist entry
   *
   * This struct describes one entry of a scatterlist being constructed to check a
   * crypto test vector.
   *
   * @proportion_of_total: length of this chunk relative to the total length,
   *			 given as a proportion out of TEST_SG_TOTAL so that it
   *			 scales to fit any test vector
   * @offset: byte offset into a 2-page buffer at which this chunk will start
   * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
   *				  @offset
   * @flush_type: for hashes, whether an update() should be done now vs.
   *		continuing to accumulate data
6570737c7   Eric Biggers   crypto: testmgr -...
229
   * @nosimd: if doing the pending update(), do it with SIMD disabled?
3f47a03df   Eric Biggers   crypto: testmgr -...
230
231
232
233
234
235
   */
  struct test_sg_division {
  	unsigned int proportion_of_total;
  	unsigned int offset;
  	bool offset_relative_to_alignmask;
  	enum flush_type flush_type;
6570737c7   Eric Biggers   crypto: testmgr -...
236
  	bool nosimd;
3f47a03df   Eric Biggers   crypto: testmgr -...
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  };
  
  /**
   * struct testvec_config - configuration for testing a crypto test vector
   *
   * This struct describes the data layout and other parameters with which each
   * crypto test vector can be tested.
   *
   * @name: name of this config, logged for debugging purposes if a test fails
   * @inplace: operate on the data in-place, if applicable for the algorithm type?
   * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
   * @src_divs: description of how to arrange the source scatterlist
   * @dst_divs: description of how to arrange the dst scatterlist, if applicable
   *	      for the algorithm type.  Defaults to @src_divs if unset.
   * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
   *	       where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
   * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
   *				     the @iv_offset
   * @finalization_type: what finalization function to use for hashes
6570737c7   Eric Biggers   crypto: testmgr -...
256
   * @nosimd: execute with SIMD disabled?  Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
3f47a03df   Eric Biggers   crypto: testmgr -...
257
258
259
260
261
262
263
264
265
266
   */
  struct testvec_config {
  	const char *name;
  	bool inplace;
  	u32 req_flags;
  	struct test_sg_division src_divs[XBUFSIZE];
  	struct test_sg_division dst_divs[XBUFSIZE];
  	unsigned int iv_offset;
  	bool iv_offset_relative_to_alignmask;
  	enum finalization_type finalization_type;
6570737c7   Eric Biggers   crypto: testmgr -...
267
  	bool nosimd;
3f47a03df   Eric Biggers   crypto: testmgr -...
268
269
270
  };
  
  #define TESTVEC_CONFIG_NAMELEN	192
4e7babba3   Eric Biggers   crypto: testmgr -...
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
  /*
   * The following are the lists of testvec_configs to test for each algorithm
   * type when the basic crypto self-tests are enabled, i.e. when
   * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset.  They aim to provide good test
   * coverage, while keeping the test time much shorter than the full fuzz tests
   * so that the basic tests can be enabled in a wider range of circumstances.
   */
  
  /* Configs for skciphers and aeads */
  static const struct testvec_config default_cipher_testvec_configs[] = {
  	{
  		.name = "in-place",
  		.inplace = true,
  		.src_divs = { { .proportion_of_total = 10000 } },
  	}, {
  		.name = "out-of-place",
  		.src_divs = { { .proportion_of_total = 10000 } },
  	}, {
  		.name = "unaligned buffer, offset=1",
  		.src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
  		.iv_offset = 1,
  	}, {
  		.name = "buffer aligned only to alignmask",
  		.src_divs = {
  			{
  				.proportion_of_total = 10000,
  				.offset = 1,
  				.offset_relative_to_alignmask = true,
  			},
  		},
  		.iv_offset = 1,
  		.iv_offset_relative_to_alignmask = true,
  	}, {
  		.name = "two even aligned splits",
  		.src_divs = {
  			{ .proportion_of_total = 5000 },
  			{ .proportion_of_total = 5000 },
  		},
  	}, {
  		.name = "uneven misaligned splits, may sleep",
  		.req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
  		.src_divs = {
  			{ .proportion_of_total = 1900, .offset = 33 },
  			{ .proportion_of_total = 3300, .offset = 7  },
  			{ .proportion_of_total = 4800, .offset = 18 },
  		},
  		.iv_offset = 3,
  	}, {
  		.name = "misaligned splits crossing pages, inplace",
  		.inplace = true,
  		.src_divs = {
  			{
  				.proportion_of_total = 7500,
  				.offset = PAGE_SIZE - 32
  			}, {
  				.proportion_of_total = 2500,
  				.offset = PAGE_SIZE - 7
  			},
  		},
  	}
  };
4cc2dcf95   Eric Biggers   crypto: testmgr -...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
  static const struct testvec_config default_hash_testvec_configs[] = {
  	{
  		.name = "init+update+final aligned buffer",
  		.src_divs = { { .proportion_of_total = 10000 } },
  		.finalization_type = FINALIZATION_TYPE_FINAL,
  	}, {
  		.name = "init+finup aligned buffer",
  		.src_divs = { { .proportion_of_total = 10000 } },
  		.finalization_type = FINALIZATION_TYPE_FINUP,
  	}, {
  		.name = "digest aligned buffer",
  		.src_divs = { { .proportion_of_total = 10000 } },
  		.finalization_type = FINALIZATION_TYPE_DIGEST,
  	}, {
  		.name = "init+update+final misaligned buffer",
  		.src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
  		.finalization_type = FINALIZATION_TYPE_FINAL,
  	}, {
  		.name = "digest buffer aligned only to alignmask",
  		.src_divs = {
  			{
  				.proportion_of_total = 10000,
  				.offset = 1,
  				.offset_relative_to_alignmask = true,
  			},
  		},
  		.finalization_type = FINALIZATION_TYPE_DIGEST,
  	}, {
  		.name = "init+update+update+final two even splits",
  		.src_divs = {
  			{ .proportion_of_total = 5000 },
  			{
  				.proportion_of_total = 5000,
  				.flush_type = FLUSH_TYPE_FLUSH,
  			},
  		},
  		.finalization_type = FINALIZATION_TYPE_FINAL,
  	}, {
  		.name = "digest uneven misaligned splits, may sleep",
  		.req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
  		.src_divs = {
  			{ .proportion_of_total = 1900, .offset = 33 },
  			{ .proportion_of_total = 3300, .offset = 7  },
  			{ .proportion_of_total = 4800, .offset = 18 },
  		},
  		.finalization_type = FINALIZATION_TYPE_DIGEST,
  	}, {
  		.name = "digest misaligned splits crossing pages",
  		.src_divs = {
  			{
  				.proportion_of_total = 7500,
  				.offset = PAGE_SIZE - 32,
  			}, {
  				.proportion_of_total = 2500,
  				.offset = PAGE_SIZE - 7,
  			},
  		},
  		.finalization_type = FINALIZATION_TYPE_DIGEST,
  	}, {
  		.name = "import/export",
  		.src_divs = {
  			{
  				.proportion_of_total = 6500,
  				.flush_type = FLUSH_TYPE_REIMPORT,
  			}, {
  				.proportion_of_total = 3500,
  				.flush_type = FLUSH_TYPE_REIMPORT,
  			},
  		},
  		.finalization_type = FINALIZATION_TYPE_FINAL,
  	}
  };
3f47a03df   Eric Biggers   crypto: testmgr -...
404
405
406
407
408
409
410
411
412
413
414
  static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
  {
  	unsigned int remaining = TEST_SG_TOTAL;
  	unsigned int ndivs = 0;
  
  	do {
  		remaining -= divs[ndivs++].proportion_of_total;
  	} while (remaining);
  
  	return ndivs;
  }
6570737c7   Eric Biggers   crypto: testmgr -...
415
416
  #define SGDIVS_HAVE_FLUSHES	BIT(0)
  #define SGDIVS_HAVE_NOSIMD	BIT(1)
3f47a03df   Eric Biggers   crypto: testmgr -...
417
  static bool valid_sg_divisions(const struct test_sg_division *divs,
6570737c7   Eric Biggers   crypto: testmgr -...
418
  			       unsigned int count, int *flags_ret)
3f47a03df   Eric Biggers   crypto: testmgr -...
419
420
421
422
423
424
425
426
427
428
  {
  	unsigned int total = 0;
  	unsigned int i;
  
  	for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
  		if (divs[i].proportion_of_total <= 0 ||
  		    divs[i].proportion_of_total > TEST_SG_TOTAL - total)
  			return false;
  		total += divs[i].proportion_of_total;
  		if (divs[i].flush_type != FLUSH_TYPE_NONE)
6570737c7   Eric Biggers   crypto: testmgr -...
429
430
431
  			*flags_ret |= SGDIVS_HAVE_FLUSHES;
  		if (divs[i].nosimd)
  			*flags_ret |= SGDIVS_HAVE_NOSIMD;
3f47a03df   Eric Biggers   crypto: testmgr -...
432
433
434
435
436
437
438
439
440
441
442
443
  	}
  	return total == TEST_SG_TOTAL &&
  		memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
  }
  
  /*
   * Check whether the given testvec_config is valid.  This isn't strictly needed
   * since every testvec_config should be valid, but check anyway so that people
   * don't unknowingly add broken configs that don't do what they wanted.
   */
  static bool valid_testvec_config(const struct testvec_config *cfg)
  {
6570737c7   Eric Biggers   crypto: testmgr -...
444
  	int flags = 0;
3f47a03df   Eric Biggers   crypto: testmgr -...
445
446
447
448
449
  
  	if (cfg->name == NULL)
  		return false;
  
  	if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
6570737c7   Eric Biggers   crypto: testmgr -...
450
  				&flags))
3f47a03df   Eric Biggers   crypto: testmgr -...
451
452
453
454
  		return false;
  
  	if (cfg->dst_divs[0].proportion_of_total) {
  		if (!valid_sg_divisions(cfg->dst_divs,
6570737c7   Eric Biggers   crypto: testmgr -...
455
  					ARRAY_SIZE(cfg->dst_divs), &flags))
3f47a03df   Eric Biggers   crypto: testmgr -...
456
457
458
459
460
461
462
463
464
465
466
  			return false;
  	} else {
  		if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
  			return false;
  		/* defaults to dst_divs=src_divs */
  	}
  
  	if (cfg->iv_offset +
  	    (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
  	    MAX_ALGAPI_ALIGNMASK + 1)
  		return false;
6570737c7   Eric Biggers   crypto: testmgr -...
467
468
469
470
471
472
  	if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
  	    cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
  		return false;
  
  	if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
  	    (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
3f47a03df   Eric Biggers   crypto: testmgr -...
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
  		return false;
  
  	return true;
  }
  
  struct test_sglist {
  	char *bufs[XBUFSIZE];
  	struct scatterlist sgl[XBUFSIZE];
  	struct scatterlist sgl_saved[XBUFSIZE];
  	struct scatterlist *sgl_ptr;
  	unsigned int nents;
  };
  
  static int init_test_sglist(struct test_sglist *tsgl)
  {
  	return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
  }
  
  static void destroy_test_sglist(struct test_sglist *tsgl)
  {
  	return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
  }
  
  /**
   * build_test_sglist() - build a scatterlist for a crypto test
   *
   * @tsgl: the scatterlist to build.  @tsgl->bufs[] contains an array of 2-page
   *	  buffers which the scatterlist @tsgl->sgl[] will be made to point into.
   * @divs: the layout specification on which the scatterlist will be based
   * @alignmask: the algorithm's alignmask
   * @total_len: the total length of the scatterlist to build in bytes
   * @data: if non-NULL, the buffers will be filled with this data until it ends.
   *	  Otherwise the buffers will be poisoned.  In both cases, some bytes
   *	  past the end of each buffer will be poisoned to help detect overruns.
   * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
   *	      corresponds will be returned here.  This will match @divs except
   *	      that divisions resolving to a length of 0 are omitted as they are
   *	      not included in the scatterlist.
   *
   * Return: 0 or a -errno value
   */
  static int build_test_sglist(struct test_sglist *tsgl,
  			     const struct test_sg_division *divs,
  			     const unsigned int alignmask,
  			     const unsigned int total_len,
  			     struct iov_iter *data,
  			     const struct test_sg_division *out_divs[XBUFSIZE])
  {
  	struct {
  		const struct test_sg_division *div;
  		size_t length;
  	} partitions[XBUFSIZE];
  	const unsigned int ndivs = count_test_sg_divisions(divs);
  	unsigned int len_remaining = total_len;
  	unsigned int i;
  
  	BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
  	if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
  		return -EINVAL;
  
  	/* Calculate the (div, length) pairs */
  	tsgl->nents = 0;
  	for (i = 0; i < ndivs; i++) {
  		unsigned int len_this_sg =
  			min(len_remaining,
  			    (total_len * divs[i].proportion_of_total +
  			     TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);
  
  		if (len_this_sg != 0) {
  			partitions[tsgl->nents].div = &divs[i];
  			partitions[tsgl->nents].length = len_this_sg;
  			tsgl->nents++;
  			len_remaining -= len_this_sg;
  		}
  	}
  	if (tsgl->nents == 0) {
  		partitions[tsgl->nents].div = &divs[0];
  		partitions[tsgl->nents].length = 0;
  		tsgl->nents++;
  	}
  	partitions[tsgl->nents - 1].length += len_remaining;
  
  	/* Set up the sgl entries and fill the data or poison */
  	sg_init_table(tsgl->sgl, tsgl->nents);
  	for (i = 0; i < tsgl->nents; i++) {
  		unsigned int offset = partitions[i].div->offset;
  		void *addr;
  
  		if (partitions[i].div->offset_relative_to_alignmask)
  			offset += alignmask;
  
  		while (offset + partitions[i].length + TESTMGR_POISON_LEN >
  		       2 * PAGE_SIZE) {
  			if (WARN_ON(offset <= 0))
  				return -EINVAL;
  			offset /= 2;
  		}
  
  		addr = &tsgl->bufs[i][offset];
  		sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);
  
  		if (out_divs)
  			out_divs[i] = partitions[i].div;
  
  		if (data) {
  			size_t copy_len, copied;
  
  			copy_len = min(partitions[i].length, data->count);
  			copied = copy_from_iter(addr, copy_len, data);
  			if (WARN_ON(copied != copy_len))
  				return -EINVAL;
  			testmgr_poison(addr + copy_len, partitions[i].length +
  				       TESTMGR_POISON_LEN - copy_len);
  		} else {
  			testmgr_poison(addr, partitions[i].length +
  				       TESTMGR_POISON_LEN);
  		}
  	}
  
  	sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
  	tsgl->sgl_ptr = tsgl->sgl;
  	memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
  	return 0;
  }
  
  /*
   * Verify that a scatterlist crypto operation produced the correct output.
   *
   * @tsgl: scatterlist containing the actual output
   * @expected_output: buffer containing the expected output
   * @len_to_check: length of @expected_output in bytes
   * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
   * @check_poison: verify that the poison bytes after each chunk are intact?
   *
   * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
   */
  static int verify_correct_output(const struct test_sglist *tsgl,
  				 const char *expected_output,
  				 unsigned int len_to_check,
  				 unsigned int unchecked_prefix_len,
  				 bool check_poison)
  {
  	unsigned int i;
  
  	for (i = 0; i < tsgl->nents; i++) {
  		struct scatterlist *sg = &tsgl->sgl_ptr[i];
  		unsigned int len = sg->length;
  		unsigned int offset = sg->offset;
  		const char *actual_output;
  
  		if (unchecked_prefix_len) {
  			if (unchecked_prefix_len >= len) {
  				unchecked_prefix_len -= len;
  				continue;
  			}
  			offset += unchecked_prefix_len;
  			len -= unchecked_prefix_len;
  			unchecked_prefix_len = 0;
  		}
  		len = min(len, len_to_check);
  		actual_output = page_address(sg_page(sg)) + offset;
  		if (memcmp(expected_output, actual_output, len) != 0)
  			return -EINVAL;
  		if (check_poison &&
  		    !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
  			return -EOVERFLOW;
  		len_to_check -= len;
  		expected_output += len;
  	}
  	if (WARN_ON(len_to_check != 0))
  		return -EINVAL;
  	return 0;
  }
  
  static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
  {
  	unsigned int i;
  
  	for (i = 0; i < tsgl->nents; i++) {
  		if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
  			return true;
  		if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
  			return true;
  		if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
  			return true;
  	}
  	return false;
  }
  
  struct cipher_test_sglists {
  	struct test_sglist src;
  	struct test_sglist dst;
  };
  
  static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
  {
  	struct cipher_test_sglists *tsgls;
  
  	tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
  	if (!tsgls)
  		return NULL;
  
  	if (init_test_sglist(&tsgls->src) != 0)
  		goto fail_kfree;
  	if (init_test_sglist(&tsgls->dst) != 0)
  		goto fail_destroy_src;
  
  	return tsgls;
  
  fail_destroy_src:
  	destroy_test_sglist(&tsgls->src);
  fail_kfree:
  	kfree(tsgls);
  	return NULL;
  }
  
  static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
  {
  	if (tsgls) {
  		destroy_test_sglist(&tsgls->src);
  		destroy_test_sglist(&tsgls->dst);
  		kfree(tsgls);
  	}
  }
  
  /* Build the src and dst scatterlists for an skcipher or AEAD test */
  static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
  				     const struct testvec_config *cfg,
  				     unsigned int alignmask,
  				     unsigned int src_total_len,
  				     unsigned int dst_total_len,
  				     const struct kvec *inputs,
  				     unsigned int nr_inputs)
  {
  	struct iov_iter input;
  	int err;
  
  	iov_iter_kvec(&input, WRITE, inputs, nr_inputs, src_total_len);
  	err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
  				cfg->inplace ?
  					max(dst_total_len, src_total_len) :
  					src_total_len,
  				&input, NULL);
  	if (err)
  		return err;
  
  	if (cfg->inplace) {
  		tsgls->dst.sgl_ptr = tsgls->src.sgl;
  		tsgls->dst.nents = tsgls->src.nents;
  		return 0;
  	}
  	return build_test_sglist(&tsgls->dst,
  				 cfg->dst_divs[0].proportion_of_total ?
  					cfg->dst_divs : cfg->src_divs,
  				 alignmask, dst_total_len, NULL, NULL);
f8b0d4d09   Herbert Xu   crypto: testmgr -...
728
  }
25f9dddb9   Eric Biggers   crypto: testmgr -...
729
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
f2bb770ae   Eric Biggers   crypto: testmgr -...
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
  
  /* Generate a random length in range [0, max_len], but prefer smaller values */
  static unsigned int generate_random_length(unsigned int max_len)
  {
  	unsigned int len = prandom_u32() % (max_len + 1);
  
  	switch (prandom_u32() % 4) {
  	case 0:
  		return len % 64;
  	case 1:
  		return len % 256;
  	case 2:
  		return len % 1024;
  	default:
  		return len;
  	}
  }
  
  /* Sometimes make some random changes to the given data buffer */
  static void mutate_buffer(u8 *buf, size_t count)
  {
  	size_t num_flips;
  	size_t i;
  	size_t pos;
  
  	/* Sometimes flip some bits */
  	if (prandom_u32() % 4 == 0) {
  		num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count * 8);
  		for (i = 0; i < num_flips; i++) {
  			pos = prandom_u32() % (count * 8);
  			buf[pos / 8] ^= 1 << (pos % 8);
  		}
  	}
  
  	/* Sometimes flip some bytes */
  	if (prandom_u32() % 4 == 0) {
  		num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count);
  		for (i = 0; i < num_flips; i++)
  			buf[prandom_u32() % count] ^= 0xff;
  	}
  }
  
  /* Randomly generate 'count' bytes, but sometimes make them "interesting" */
  static void generate_random_bytes(u8 *buf, size_t count)
  {
  	u8 b;
  	u8 increment;
  	size_t i;
  
  	if (count == 0)
  		return;
  
  	switch (prandom_u32() % 8) { /* Choose a generation strategy */
  	case 0:
  	case 1:
  		/* All the same byte, plus optional mutations */
  		switch (prandom_u32() % 4) {
  		case 0:
  			b = 0x00;
  			break;
  		case 1:
  			b = 0xff;
  			break;
  		default:
  			b = (u8)prandom_u32();
  			break;
  		}
  		memset(buf, b, count);
  		mutate_buffer(buf, count);
  		break;
  	case 2:
  		/* Ascending or descending bytes, plus optional mutations */
  		increment = (u8)prandom_u32();
  		b = (u8)prandom_u32();
  		for (i = 0; i < count; i++, b += increment)
  			buf[i] = b;
  		mutate_buffer(buf, count);
  		break;
  	default:
  		/* Fully random bytes */
  		for (i = 0; i < count; i++)
  			buf[i] = (u8)prandom_u32();
  	}
  }
25f9dddb9   Eric Biggers   crypto: testmgr -...
814
815
  static char *generate_random_sgl_divisions(struct test_sg_division *divs,
  					   size_t max_divs, char *p, char *end,
6570737c7   Eric Biggers   crypto: testmgr -...
816
  					   bool gen_flushes, u32 req_flags)
25f9dddb9   Eric Biggers   crypto: testmgr -...
817
818
819
820
821
822
  {
  	struct test_sg_division *div = divs;
  	unsigned int remaining = TEST_SG_TOTAL;
  
  	do {
  		unsigned int this_len;
6570737c7   Eric Biggers   crypto: testmgr -...
823
  		const char *flushtype_str;
25f9dddb9   Eric Biggers   crypto: testmgr -...
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
  
  		if (div == &divs[max_divs - 1] || prandom_u32() % 2 == 0)
  			this_len = remaining;
  		else
  			this_len = 1 + (prandom_u32() % remaining);
  		div->proportion_of_total = this_len;
  
  		if (prandom_u32() % 4 == 0)
  			div->offset = (PAGE_SIZE - 128) + (prandom_u32() % 128);
  		else if (prandom_u32() % 2 == 0)
  			div->offset = prandom_u32() % 32;
  		else
  			div->offset = prandom_u32() % PAGE_SIZE;
  		if (prandom_u32() % 8 == 0)
  			div->offset_relative_to_alignmask = true;
  
  		div->flush_type = FLUSH_TYPE_NONE;
  		if (gen_flushes) {
  			switch (prandom_u32() % 4) {
  			case 0:
  				div->flush_type = FLUSH_TYPE_REIMPORT;
  				break;
  			case 1:
  				div->flush_type = FLUSH_TYPE_FLUSH;
  				break;
  			}
  		}
6570737c7   Eric Biggers   crypto: testmgr -...
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
  		if (div->flush_type != FLUSH_TYPE_NONE &&
  		    !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
  		    prandom_u32() % 2 == 0)
  			div->nosimd = true;
  
  		switch (div->flush_type) {
  		case FLUSH_TYPE_FLUSH:
  			if (div->nosimd)
  				flushtype_str = "<flush,nosimd>";
  			else
  				flushtype_str = "<flush>";
  			break;
  		case FLUSH_TYPE_REIMPORT:
  			if (div->nosimd)
  				flushtype_str = "<reimport,nosimd>";
  			else
  				flushtype_str = "<reimport>";
  			break;
  		default:
  			flushtype_str = "";
  			break;
  		}
25f9dddb9   Eric Biggers   crypto: testmgr -...
873
  		BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
6570737c7   Eric Biggers   crypto: testmgr -...
874
  		p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
25f9dddb9   Eric Biggers   crypto: testmgr -...
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
  			       this_len / 100, this_len % 100,
  			       div->offset_relative_to_alignmask ?
  					"alignmask" : "",
  			       div->offset, this_len == remaining ? "" : ", ");
  		remaining -= this_len;
  		div++;
  	} while (remaining);
  
  	return p;
  }
  
  /* Generate a random testvec_config for fuzz testing */
  static void generate_random_testvec_config(struct testvec_config *cfg,
  					   char *name, size_t max_namelen)
  {
  	char *p = name;
  	char * const end = name + max_namelen;
  
  	memset(cfg, 0, sizeof(*cfg));
  
  	cfg->name = name;
  
  	p += scnprintf(p, end - p, "random:");
  
  	if (prandom_u32() % 2 == 0) {
  		cfg->inplace = true;
  		p += scnprintf(p, end - p, " inplace");
  	}
  
  	if (prandom_u32() % 2 == 0) {
  		cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
  		p += scnprintf(p, end - p, " may_sleep");
  	}
  
  	switch (prandom_u32() % 4) {
  	case 0:
  		cfg->finalization_type = FINALIZATION_TYPE_FINAL;
  		p += scnprintf(p, end - p, " use_final");
  		break;
  	case 1:
  		cfg->finalization_type = FINALIZATION_TYPE_FINUP;
  		p += scnprintf(p, end - p, " use_finup");
  		break;
  	default:
  		cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
  		p += scnprintf(p, end - p, " use_digest");
  		break;
  	}
6570737c7   Eric Biggers   crypto: testmgr -...
923
924
925
926
927
  	if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
  	    prandom_u32() % 2 == 0) {
  		cfg->nosimd = true;
  		p += scnprintf(p, end - p, " nosimd");
  	}
25f9dddb9   Eric Biggers   crypto: testmgr -...
928
929
930
931
  	p += scnprintf(p, end - p, " src_divs=[");
  	p = generate_random_sgl_divisions(cfg->src_divs,
  					  ARRAY_SIZE(cfg->src_divs), p, end,
  					  (cfg->finalization_type !=
6570737c7   Eric Biggers   crypto: testmgr -...
932
933
  					   FINALIZATION_TYPE_DIGEST),
  					  cfg->req_flags);
25f9dddb9   Eric Biggers   crypto: testmgr -...
934
935
936
937
938
939
  	p += scnprintf(p, end - p, "]");
  
  	if (!cfg->inplace && prandom_u32() % 2 == 0) {
  		p += scnprintf(p, end - p, " dst_divs=[");
  		p = generate_random_sgl_divisions(cfg->dst_divs,
  						  ARRAY_SIZE(cfg->dst_divs),
6570737c7   Eric Biggers   crypto: testmgr -...
940
941
  						  p, end, false,
  						  cfg->req_flags);
25f9dddb9   Eric Biggers   crypto: testmgr -...
942
943
944
945
946
947
948
949
950
951
  		p += scnprintf(p, end - p, "]");
  	}
  
  	if (prandom_u32() % 2 == 0) {
  		cfg->iv_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
  		p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
  	}
  
  	WARN_ON_ONCE(!valid_testvec_config(cfg));
  }
b55e1a395   Eric Biggers   crypto: simd,test...
952
953
954
955
956
957
958
959
960
961
962
963
  
  static void crypto_disable_simd_for_test(void)
  {
  	preempt_disable();
  	__this_cpu_write(crypto_simd_disabled_for_test, true);
  }
  
  static void crypto_reenable_simd_for_test(void)
  {
  	__this_cpu_write(crypto_simd_disabled_for_test, false);
  	preempt_enable();
  }
f2bb770ae   Eric Biggers   crypto: testmgr -...
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
  
  /*
   * Given an algorithm name, build the name of the generic implementation of that
   * algorithm, assuming the usual naming convention.  Specifically, this appends
   * "-generic" to every part of the name that is not a template name.  Examples:
   *
   *	aes => aes-generic
   *	cbc(aes) => cbc(aes-generic)
   *	cts(cbc(aes)) => cts(cbc(aes-generic))
   *	rfc7539(chacha20,poly1305) => rfc7539(chacha20-generic,poly1305-generic)
   *
   * Return: 0 on success, or -ENAMETOOLONG if the generic name would be too long
   */
  static int build_generic_driver_name(const char *algname,
  				     char driver_name[CRYPTO_MAX_ALG_NAME])
  {
  	const char *in = algname;
  	char *out = driver_name;
  	size_t len = strlen(algname);
  
  	if (len >= CRYPTO_MAX_ALG_NAME)
  		goto too_long;
  	do {
  		const char *in_saved = in;
  
  		while (*in && *in != '(' && *in != ')' && *in != ',')
  			*out++ = *in++;
  		if (*in != '(' && in > in_saved) {
  			len += 8;
  			if (len >= CRYPTO_MAX_ALG_NAME)
  				goto too_long;
  			memcpy(out, "-generic", 8);
  			out += 8;
  		}
  	} while ((*out++ = *in++) != '\0');
  	return 0;
  
  too_long:
  	pr_err("alg: generic driver name for \"%s\" would be too long
  ",
  	       algname);
  	return -ENAMETOOLONG;
  }
b55e1a395   Eric Biggers   crypto: simd,test...
1007
1008
1009
1010
1011
1012
1013
1014
1015
  #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
  static void crypto_disable_simd_for_test(void)
  {
  }
  
  static void crypto_reenable_simd_for_test(void)
  {
  }
  #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
25f9dddb9   Eric Biggers   crypto: testmgr -...
1016

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
  static int build_hash_sglist(struct test_sglist *tsgl,
  			     const struct hash_testvec *vec,
  			     const struct testvec_config *cfg,
  			     unsigned int alignmask,
  			     const struct test_sg_division *divs[XBUFSIZE])
  {
  	struct kvec kv;
  	struct iov_iter input;
  
  	kv.iov_base = (void *)vec->plaintext;
  	kv.iov_len = vec->psize;
  	iov_iter_kvec(&input, WRITE, &kv, 1, vec->psize);
  	return build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
  				 &input, divs);
  }
  
  static int check_hash_result(const char *type,
  			     const u8 *result, unsigned int digestsize,
  			     const struct hash_testvec *vec,
  			     const char *vec_name,
  			     const char *driver,
  			     const struct testvec_config *cfg)
  {
  	if (memcmp(result, vec->digest, digestsize) != 0) {
  		pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"
  ",
  		       type, driver, vec_name, cfg->name);
  		return -EINVAL;
  	}
  	if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
  		pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"
  ",
  		       type, driver, vec_name, cfg->name);
  		return -EOVERFLOW;
  	}
  	return 0;
  }
  
  static inline int check_shash_op(const char *op, int err,
  				 const char *driver, const char *vec_name,
  				 const struct testvec_config *cfg)
  {
  	if (err)
  		pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, err, vec_name, cfg->name);
  	return err;
  }
  
  static inline const void *sg_data(struct scatterlist *sg)
  {
  	return page_address(sg_page(sg)) + sg->offset;
  }
  
  /* Test one hash test vector in one configuration, using the shash API */
  static int test_shash_vec_cfg(const char *driver,
  			      const struct hash_testvec *vec,
  			      const char *vec_name,
  			      const struct testvec_config *cfg,
  			      struct shash_desc *desc,
  			      struct test_sglist *tsgl,
  			      u8 *hashstate)
  {
  	struct crypto_shash *tfm = desc->tfm;
  	const unsigned int alignmask = crypto_shash_alignmask(tfm);
  	const unsigned int digestsize = crypto_shash_digestsize(tfm);
  	const unsigned int statesize = crypto_shash_statesize(tfm);
  	const struct test_sg_division *divs[XBUFSIZE];
  	unsigned int i;
  	u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
  	int err;
  
  	/* Set the key, if specified */
  	if (vec->ksize) {
  		err = crypto_shash_setkey(tfm, vec->key, vec->ksize);
  		if (err) {
  			if (err == vec->setkey_error)
  				return 0;
  			pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x
  ",
  			       driver, vec_name, vec->setkey_error, err,
  			       crypto_shash_get_flags(tfm));
  			return err;
  		}
  		if (vec->setkey_error) {
  			pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d
  ",
  			       driver, vec_name, vec->setkey_error);
  			return -EINVAL;
  		}
  	}
  
  	/* Build the scatterlist for the source data */
  	err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
  	if (err) {
  		pr_err("alg: shash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"
  ",
  		       driver, vec_name, cfg->name);
  		return err;
  	}
  
  	/* Do the actual hashing */
  
  	testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
  	testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
  
  	if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
  	    vec->digest_error) {
  		/* Just using digest() */
  		if (tsgl->nents != 1)
  			return 0;
  		if (cfg->nosimd)
  			crypto_disable_simd_for_test();
  		err = crypto_shash_digest(desc, sg_data(&tsgl->sgl[0]),
  					  tsgl->sgl[0].length, result);
  		if (cfg->nosimd)
  			crypto_reenable_simd_for_test();
  		if (err) {
  			if (err == vec->digest_error)
  				return 0;
  			pr_err("alg: shash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"
  ",
  			       driver, vec_name, vec->digest_error, err,
  			       cfg->name);
  			return err;
  		}
  		if (vec->digest_error) {
  			pr_err("alg: shash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"
  ",
  			       driver, vec_name, vec->digest_error, cfg->name);
  			return -EINVAL;
  		}
  		goto result_ready;
  	}
  
  	/* Using init(), zero or more update(), then final() or finup() */
  
  	if (cfg->nosimd)
  		crypto_disable_simd_for_test();
  	err = crypto_shash_init(desc);
  	if (cfg->nosimd)
  		crypto_reenable_simd_for_test();
  	err = check_shash_op("init", err, driver, vec_name, cfg);
  	if (err)
  		return err;
  
  	for (i = 0; i < tsgl->nents; i++) {
  		if (i + 1 == tsgl->nents &&
  		    cfg->finalization_type == FINALIZATION_TYPE_FINUP) {
  			if (divs[i]->nosimd)
  				crypto_disable_simd_for_test();
  			err = crypto_shash_finup(desc, sg_data(&tsgl->sgl[i]),
  						 tsgl->sgl[i].length, result);
  			if (divs[i]->nosimd)
  				crypto_reenable_simd_for_test();
  			err = check_shash_op("finup", err, driver, vec_name,
  					     cfg);
  			if (err)
  				return err;
  			goto result_ready;
  		}
  		if (divs[i]->nosimd)
  			crypto_disable_simd_for_test();
  		err = crypto_shash_update(desc, sg_data(&tsgl->sgl[i]),
  					  tsgl->sgl[i].length);
  		if (divs[i]->nosimd)
  			crypto_reenable_simd_for_test();
  		err = check_shash_op("update", err, driver, vec_name, cfg);
  		if (err)
  			return err;
  		if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
  			/* Test ->export() and ->import() */
  			testmgr_poison(hashstate + statesize,
  				       TESTMGR_POISON_LEN);
  			err = crypto_shash_export(desc, hashstate);
  			err = check_shash_op("export", err, driver, vec_name,
  					     cfg);
  			if (err)
  				return err;
  			if (!testmgr_is_poison(hashstate + statesize,
  					       TESTMGR_POISON_LEN)) {
  				pr_err("alg: shash: %s export() overran state buffer on test vector %s, cfg=\"%s\"
  ",
  				       driver, vec_name, cfg->name);
  				return -EOVERFLOW;
  			}
  			testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
  			err = crypto_shash_import(desc, hashstate);
  			err = check_shash_op("import", err, driver, vec_name,
  					     cfg);
  			if (err)
  				return err;
  		}
  	}
  
  	if (cfg->nosimd)
  		crypto_disable_simd_for_test();
  	err = crypto_shash_final(desc, result);
  	if (cfg->nosimd)
  		crypto_reenable_simd_for_test();
  	err = check_shash_op("final", err, driver, vec_name, cfg);
  	if (err)
  		return err;
  result_ready:
  	return check_hash_result("shash", result, digestsize, vec, vec_name,
  				 driver, cfg);
  }
6570737c7   Eric Biggers   crypto: testmgr -...
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
  static int do_ahash_op(int (*op)(struct ahash_request *req),
  		       struct ahash_request *req,
  		       struct crypto_wait *wait, bool nosimd)
  {
  	int err;
  
  	if (nosimd)
  		crypto_disable_simd_for_test();
  
  	err = op(req);
  
  	if (nosimd)
  		crypto_reenable_simd_for_test();
  
  	return crypto_wait_req(err, wait);
  }
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1240
1241
1242
1243
  static int check_nonfinal_ahash_op(const char *op, int err,
  				   u8 *result, unsigned int digestsize,
  				   const char *driver, const char *vec_name,
  				   const struct testvec_config *cfg)
466d7b9f6   Kamil Konieczny   crypto: testmgr -...
1244
  {
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1245
  	if (err) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1246
1247
  		pr_err("alg: ahash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1248
  		       driver, op, err, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1249
  		return err;
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1250
  	}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1251
  	if (!testmgr_is_poison(result, digestsize)) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1252
1253
  		pr_err("alg: ahash: %s %s() used result buffer on test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1254
  		       driver, op, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1255
  		return -EINVAL;
466d7b9f6   Kamil Konieczny   crypto: testmgr -...
1256
  	}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1257
  	return 0;
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1258
  }
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1259
1260
1261
1262
1263
1264
1265
1266
  /* Test one hash test vector in one configuration, using the ahash API */
  static int test_ahash_vec_cfg(const char *driver,
  			      const struct hash_testvec *vec,
  			      const char *vec_name,
  			      const struct testvec_config *cfg,
  			      struct ahash_request *req,
  			      struct test_sglist *tsgl,
  			      u8 *hashstate)
da7f033dd   Herbert Xu   crypto: cryptomgr...
1267
  {
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1268
1269
1270
1271
1272
1273
1274
  	struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
  	const unsigned int alignmask = crypto_ahash_alignmask(tfm);
  	const unsigned int digestsize = crypto_ahash_digestsize(tfm);
  	const unsigned int statesize = crypto_ahash_statesize(tfm);
  	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
  	const struct test_sg_division *divs[XBUFSIZE];
  	DECLARE_CRYPTO_WAIT(wait);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1275
1276
1277
1278
1279
  	unsigned int i;
  	struct scatterlist *pending_sgl;
  	unsigned int pending_len;
  	u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1280

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1281
1282
1283
1284
  	/* Set the key, if specified */
  	if (vec->ksize) {
  		err = crypto_ahash_setkey(tfm, vec->key, vec->ksize);
  		if (err) {
5283a8ee9   Eric Biggers   crypto: testmgr -...
1285
1286
  			if (err == vec->setkey_error)
  				return 0;
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1287
1288
  			pr_err("alg: ahash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1289
  			       driver, vec_name, vec->setkey_error, err,
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1290
1291
1292
  			       crypto_ahash_get_flags(tfm));
  			return err;
  		}
5283a8ee9   Eric Biggers   crypto: testmgr -...
1293
  		if (vec->setkey_error) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1294
1295
  			pr_err("alg: ahash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1296
  			       driver, vec_name, vec->setkey_error);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1297
1298
  			return -EINVAL;
  		}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1299
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1300

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1301
  	/* Build the scatterlist for the source data */
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1302
  	err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1303
  	if (err) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1304
1305
  		pr_err("alg: ahash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1306
  		       driver, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1307
  		return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1308
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1309

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1310
  	/* Do the actual hashing */
a0cfae59f   Herbert Xu   crypto: testmgr -...
1311

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1312
1313
  	testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
  	testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1314

5283a8ee9   Eric Biggers   crypto: testmgr -...
1315
1316
  	if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
  	    vec->digest_error) {
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1317
1318
1319
1320
  		/* Just using digest() */
  		ahash_request_set_callback(req, req_flags, crypto_req_done,
  					   &wait);
  		ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
6570737c7   Eric Biggers   crypto: testmgr -...
1321
  		err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1322
  		if (err) {
5283a8ee9   Eric Biggers   crypto: testmgr -...
1323
1324
  			if (err == vec->digest_error)
  				return 0;
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1325
1326
  			pr_err("alg: ahash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1327
  			       driver, vec_name, vec->digest_error, err,
5283a8ee9   Eric Biggers   crypto: testmgr -...
1328
  			       cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1329
1330
  			return err;
  		}
5283a8ee9   Eric Biggers   crypto: testmgr -...
1331
  		if (vec->digest_error) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1332
1333
  			pr_err("alg: ahash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1334
  			       driver, vec_name, vec->digest_error, cfg->name);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1335
1336
  			return -EINVAL;
  		}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1337
1338
  		goto result_ready;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1339

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1340
  	/* Using init(), zero or more update(), then final() or finup() */
da7f033dd   Herbert Xu   crypto: cryptomgr...
1341

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1342
1343
  	ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
  	ahash_request_set_crypt(req, NULL, result, 0);
6570737c7   Eric Biggers   crypto: testmgr -...
1344
  	err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1345
1346
  	err = check_nonfinal_ahash_op("init", err, result, digestsize,
  				      driver, vec_name, cfg);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1347
1348
  	if (err)
  		return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1349

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
  	pending_sgl = NULL;
  	pending_len = 0;
  	for (i = 0; i < tsgl->nents; i++) {
  		if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
  		    pending_sgl != NULL) {
  			/* update() with the pending data */
  			ahash_request_set_callback(req, req_flags,
  						   crypto_req_done, &wait);
  			ahash_request_set_crypt(req, pending_sgl, result,
  						pending_len);
6570737c7   Eric Biggers   crypto: testmgr -...
1360
1361
  			err = do_ahash_op(crypto_ahash_update, req, &wait,
  					  divs[i]->nosimd);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1362
1363
1364
  			err = check_nonfinal_ahash_op("update", err,
  						      result, digestsize,
  						      driver, vec_name, cfg);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1365
1366
1367
1368
  			if (err)
  				return err;
  			pending_sgl = NULL;
  			pending_len = 0;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1369
  		}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1370
1371
1372
1373
1374
  		if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
  			/* Test ->export() and ->import() */
  			testmgr_poison(hashstate + statesize,
  				       TESTMGR_POISON_LEN);
  			err = crypto_ahash_export(req, hashstate);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1375
1376
1377
  			err = check_nonfinal_ahash_op("export", err,
  						      result, digestsize,
  						      driver, vec_name, cfg);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1378
1379
1380
1381
  			if (err)
  				return err;
  			if (!testmgr_is_poison(hashstate + statesize,
  					       TESTMGR_POISON_LEN)) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1382
1383
  				pr_err("alg: ahash: %s export() overran state buffer on test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1384
  				       driver, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1385
  				return -EOVERFLOW;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1386
  			}
767150959   Gilad Ben-Yossef   crypto: testmgr -...
1387

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1388
1389
  			testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
  			err = crypto_ahash_import(req, hashstate);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1390
1391
1392
  			err = check_nonfinal_ahash_op("import", err,
  						      result, digestsize,
  						      driver, vec_name, cfg);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1393
1394
  			if (err)
  				return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1395
  		}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1396
1397
1398
1399
  		if (pending_sgl == NULL)
  			pending_sgl = &tsgl->sgl[i];
  		pending_len += tsgl->sgl[i].length;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1400

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1401
1402
1403
1404
  	ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
  	ahash_request_set_crypt(req, pending_sgl, result, pending_len);
  	if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
  		/* finish with update() and final() */
6570737c7   Eric Biggers   crypto: testmgr -...
1405
  		err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1406
1407
  		err = check_nonfinal_ahash_op("update", err, result, digestsize,
  					      driver, vec_name, cfg);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1408
1409
  		if (err)
  			return err;
6570737c7   Eric Biggers   crypto: testmgr -...
1410
  		err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1411
  		if (err) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1412
1413
  			pr_err("alg: ahash: %s final() failed with err %d on test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1414
  			       driver, err, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1415
1416
1417
1418
  			return err;
  		}
  	} else {
  		/* finish with finup() */
6570737c7   Eric Biggers   crypto: testmgr -...
1419
  		err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1420
  		if (err) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1421
1422
  			pr_err("alg: ahash: %s finup() failed with err %d on test vector %s, cfg=\"%s\"
  ",
951d13328   Eric Biggers   crypto: testmgr -...
1423
  			       driver, err, vec_name, cfg->name);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1424
  			return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1425
1426
  		}
  	}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1427
  result_ready:
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
  	return check_hash_result("ahash", result, digestsize, vec, vec_name,
  				 driver, cfg);
  }
  
  static int test_hash_vec_cfg(const char *driver,
  			     const struct hash_testvec *vec,
  			     const char *vec_name,
  			     const struct testvec_config *cfg,
  			     struct ahash_request *req,
  			     struct shash_desc *desc,
  			     struct test_sglist *tsgl,
  			     u8 *hashstate)
  {
  	int err;
  
  	/*
  	 * For algorithms implemented as "shash", most bugs will be detected by
  	 * both the shash and ahash tests.  Test the shash API first so that the
  	 * failures involve less indirection, so are easier to debug.
  	 */
  
  	if (desc) {
  		err = test_shash_vec_cfg(driver, vec, vec_name, cfg, desc, tsgl,
  					 hashstate);
  		if (err)
  			return err;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1454
  	}
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1455

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1456
1457
  	return test_ahash_vec_cfg(driver, vec, vec_name, cfg, req, tsgl,
  				  hashstate);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1458
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
1459

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1460
1461
  static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
  			 unsigned int vec_num, struct ahash_request *req,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1462
1463
  			 struct shash_desc *desc, struct test_sglist *tsgl,
  			 u8 *hashstate)
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1464
  {
951d13328   Eric Biggers   crypto: testmgr -...
1465
  	char vec_name[16];
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1466
1467
  	unsigned int i;
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1468

951d13328   Eric Biggers   crypto: testmgr -...
1469
  	sprintf(vec_name, "%u", vec_num);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1470
  	for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
951d13328   Eric Biggers   crypto: testmgr -...
1471
  		err = test_hash_vec_cfg(driver, vec, vec_name,
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1472
  					&default_hash_testvec_configs[i],
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1473
  					req, desc, tsgl, hashstate);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1474
1475
1476
  		if (err)
  			return err;
  	}
5f2b424e5   Cristian Stoica   crypto: testmgr -...
1477

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1478
1479
1480
1481
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  	if (!noextratests) {
  		struct testvec_config cfg;
  		char cfgname[TESTVEC_CONFIG_NAMELEN];
5f2b424e5   Cristian Stoica   crypto: testmgr -...
1482

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1483
1484
1485
  		for (i = 0; i < fuzz_iterations; i++) {
  			generate_random_testvec_config(&cfg, cfgname,
  						       sizeof(cfgname));
951d13328   Eric Biggers   crypto: testmgr -...
1486
  			err = test_hash_vec_cfg(driver, vec, vec_name, &cfg,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1487
  						req, desc, tsgl, hashstate);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1488
1489
  			if (err)
  				return err;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
1490
  			cond_resched();
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1491
1492
  		}
  	}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1493
1494
1495
  #endif
  	return 0;
  }
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1496

9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1497
1498
1499
1500
1501
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  /*
   * Generate a hash test vector from the given implementation.
   * Assumes the buffers in 'vec' were already allocated.
   */
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1502
  static void generate_random_hash_testvec(struct shash_desc *desc,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1503
1504
1505
1506
1507
  					 struct hash_testvec *vec,
  					 unsigned int maxkeysize,
  					 unsigned int maxdatasize,
  					 char *name, size_t max_namelen)
  {
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
  	/* Data */
  	vec->psize = generate_random_length(maxdatasize);
  	generate_random_bytes((u8 *)vec->plaintext, vec->psize);
  
  	/*
  	 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
  	 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
  	 */
  	vec->setkey_error = 0;
  	vec->ksize = 0;
  	if (maxkeysize) {
  		vec->ksize = maxkeysize;
  		if (prandom_u32() % 4 == 0)
  			vec->ksize = 1 + (prandom_u32() % maxkeysize);
  		generate_random_bytes((u8 *)vec->key, vec->ksize);
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1523
  		vec->setkey_error = crypto_shash_setkey(desc->tfm, vec->key,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1524
1525
1526
1527
1528
1529
1530
  							vec->ksize);
  		/* If the key couldn't be set, no need to continue to digest. */
  		if (vec->setkey_error)
  			goto done;
  	}
  
  	/* Digest */
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
  	vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
  						vec->psize, (u8 *)vec->digest);
  done:
  	snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
  		 vec->psize, vec->ksize);
  }
  
  /*
   * Test the hash algorithm represented by @req against the corresponding generic
   * implementation, if one is available.
   */
  static int test_hash_vs_generic_impl(const char *driver,
  				     const char *generic_driver,
  				     unsigned int maxkeysize,
  				     struct ahash_request *req,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1546
  				     struct shash_desc *desc,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
  				     struct test_sglist *tsgl,
  				     u8 *hashstate)
  {
  	struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
  	const unsigned int digestsize = crypto_ahash_digestsize(tfm);
  	const unsigned int blocksize = crypto_ahash_blocksize(tfm);
  	const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
  	const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
  	char _generic_driver[CRYPTO_MAX_ALG_NAME];
  	struct crypto_shash *generic_tfm = NULL;
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1557
  	struct shash_desc *generic_desc = NULL;
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1558
1559
1560
  	unsigned int i;
  	struct hash_testvec vec = { 0 };
  	char vec_name[64];
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
1561
  	struct testvec_config *cfg;
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
  	char cfgname[TESTVEC_CONFIG_NAMELEN];
  	int err;
  
  	if (noextratests)
  		return 0;
  
  	if (!generic_driver) { /* Use default naming convention? */
  		err = build_generic_driver_name(algname, _generic_driver);
  		if (err)
  			return err;
  		generic_driver = _generic_driver;
  	}
  
  	if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
  		return 0;
  
  	generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
  	if (IS_ERR(generic_tfm)) {
  		err = PTR_ERR(generic_tfm);
  		if (err == -ENOENT) {
  			pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable
  ",
  				driver, generic_driver);
  			return 0;
  		}
  		pr_err("alg: hash: error allocating %s (generic impl of %s): %d
  ",
  		       generic_driver, algname, err);
  		return err;
  	}
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
1592
1593
1594
1595
1596
  	cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
  	if (!cfg) {
  		err = -ENOMEM;
  		goto out;
  	}
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1597
1598
1599
1600
1601
1602
1603
  	generic_desc = kzalloc(sizeof(*desc) +
  			       crypto_shash_descsize(generic_tfm), GFP_KERNEL);
  	if (!generic_desc) {
  		err = -ENOMEM;
  		goto out;
  	}
  	generic_desc->tfm = generic_tfm;
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
  	/* Check the algorithm properties for consistency. */
  
  	if (digestsize != crypto_shash_digestsize(generic_tfm)) {
  		pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, digestsize,
  		       crypto_shash_digestsize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	if (blocksize != crypto_shash_blocksize(generic_tfm)) {
  		pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, blocksize, crypto_shash_blocksize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	/*
  	 * Now generate test vectors using the generic implementation, and test
  	 * the other implementation against them.
  	 */
  
  	vec.key = kmalloc(maxkeysize, GFP_KERNEL);
  	vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
  	vec.digest = kmalloc(digestsize, GFP_KERNEL);
  	if (!vec.key || !vec.plaintext || !vec.digest) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	for (i = 0; i < fuzz_iterations * 8; i++) {
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1637
  		generate_random_hash_testvec(generic_desc, &vec,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1638
1639
  					     maxkeysize, maxdatasize,
  					     vec_name, sizeof(vec_name));
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
1640
  		generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1641

6b5ca646c   Arnd Bergmann   crypto: testmgr -...
1642
  		err = test_hash_vec_cfg(driver, &vec, vec_name, cfg,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1643
  					req, desc, tsgl, hashstate);
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1644
1645
1646
1647
1648
1649
  		if (err)
  			goto out;
  		cond_resched();
  	}
  	err = 0;
  out:
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
1650
  	kfree(cfg);
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1651
1652
1653
1654
  	kfree(vec.key);
  	kfree(vec.plaintext);
  	kfree(vec.digest);
  	crypto_free_shash(generic_tfm);
149c4e6ef   Arnd Bergmann   crypto: testmgr -...
1655
  	kzfree(generic_desc);
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1656
1657
1658
1659
1660
1661
1662
  	return err;
  }
  #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
  static int test_hash_vs_generic_impl(const char *driver,
  				     const char *generic_driver,
  				     unsigned int maxkeysize,
  				     struct ahash_request *req,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1663
  				     struct shash_desc *desc,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1664
1665
1666
1667
1668
1669
  				     struct test_sglist *tsgl,
  				     u8 *hashstate)
  {
  	return 0;
  }
  #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
  static int alloc_shash(const char *driver, u32 type, u32 mask,
  		       struct crypto_shash **tfm_ret,
  		       struct shash_desc **desc_ret)
  {
  	struct crypto_shash *tfm;
  	struct shash_desc *desc;
  
  	tfm = crypto_alloc_shash(driver, type, mask);
  	if (IS_ERR(tfm)) {
  		if (PTR_ERR(tfm) == -ENOENT) {
  			/*
  			 * This algorithm is only available through the ahash
  			 * API, not the shash API, so skip the shash tests.
  			 */
  			return 0;
  		}
  		pr_err("alg: hash: failed to allocate shash transform for %s: %ld
  ",
  		       driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
  
  	desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
  	if (!desc) {
  		crypto_free_shash(tfm);
  		return -ENOMEM;
  	}
  	desc->tfm = tfm;
  
  	*tfm_ret = tfm;
  	*desc_ret = desc;
  	return 0;
  }
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1703
1704
  static int __alg_test_hash(const struct hash_testvec *vecs,
  			   unsigned int num_vecs, const char *driver,
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1705
1706
  			   u32 type, u32 mask,
  			   const char *generic_driver, unsigned int maxkeysize)
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1707
  {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1708
  	struct crypto_ahash *atfm = NULL;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1709
  	struct ahash_request *req = NULL;
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1710
1711
  	struct crypto_shash *stfm = NULL;
  	struct shash_desc *desc = NULL;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1712
1713
  	struct test_sglist *tsgl = NULL;
  	u8 *hashstate = NULL;
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1714
  	unsigned int statesize;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1715
1716
  	unsigned int i;
  	int err;
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1717

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1718
1719
1720
1721
1722
1723
1724
  	/*
  	 * Always test the ahash API.  This works regardless of whether the
  	 * algorithm is implemented as ahash or shash.
  	 */
  
  	atfm = crypto_alloc_ahash(driver, type, mask);
  	if (IS_ERR(atfm)) {
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1725
1726
  		pr_err("alg: hash: failed to allocate transform for %s: %ld
  ",
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1727
1728
  		       driver, PTR_ERR(atfm));
  		return PTR_ERR(atfm);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1729
  	}
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1730

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1731
  	req = ahash_request_alloc(atfm, GFP_KERNEL);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1732
1733
1734
1735
1736
1737
1738
  	if (!req) {
  		pr_err("alg: hash: failed to allocate request for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
  	}
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1739

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1740
1741
1742
1743
1744
1745
1746
  	/*
  	 * If available also test the shash API, to cover corner cases that may
  	 * be missed by testing the ahash API only.
  	 */
  	err = alloc_shash(driver, type, mask, &stfm, &desc);
  	if (err)
  		goto out;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
  	tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
  	if (!tsgl || init_test_sglist(tsgl) != 0) {
  		pr_err("alg: hash: failed to allocate test buffers for %s
  ",
  		       driver);
  		kfree(tsgl);
  		tsgl = NULL;
  		err = -ENOMEM;
  		goto out;
  	}
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1757

d8ea98aa3   Eric Biggers   crypto: testmgr -...
1758
1759
1760
1761
  	statesize = crypto_ahash_statesize(atfm);
  	if (stfm)
  		statesize = max(statesize, crypto_shash_statesize(stfm));
  	hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1762
1763
1764
1765
1766
1767
1768
  	if (!hashstate) {
  		pr_err("alg: hash: failed to allocate hash state buffer for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
  	}
018ba95c7   Wang, Rui Y   crypto: testmgr -...
1769

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1770
  	for (i = 0; i < num_vecs; i++) {
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1771
1772
  		err = test_hash_vec(driver, &vecs[i], i, req, desc, tsgl,
  				    hashstate);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1773
  		if (err)
5f2b424e5   Cristian Stoica   crypto: testmgr -...
1774
  			goto out;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
1775
  		cond_resched();
da7f033dd   Herbert Xu   crypto: cryptomgr...
1776
  	}
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1777
  	err = test_hash_vs_generic_impl(driver, generic_driver, maxkeysize, req,
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1778
  					desc, tsgl, hashstate);
da7f033dd   Herbert Xu   crypto: cryptomgr...
1779
  out:
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1780
1781
1782
1783
1784
  	kfree(hashstate);
  	if (tsgl) {
  		destroy_test_sglist(tsgl);
  		kfree(tsgl);
  	}
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1785
1786
  	kfree(desc);
  	crypto_free_shash(stfm);
da7f033dd   Herbert Xu   crypto: cryptomgr...
1787
  	ahash_request_free(req);
d8ea98aa3   Eric Biggers   crypto: testmgr -...
1788
  	crypto_free_ahash(atfm);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1789
  	return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1790
  }
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1791
1792
  static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
  			 u32 type, u32 mask)
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1793
  {
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1794
1795
1796
  	const struct hash_testvec *template = desc->suite.hash.vecs;
  	unsigned int tcount = desc->suite.hash.count;
  	unsigned int nr_unkeyed, nr_keyed;
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1797
  	unsigned int maxkeysize = 0;
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1798
  	int err;
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1799

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1800
1801
1802
1803
1804
  	/*
  	 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
  	 * first, before setting a key on the tfm.  To make this easier, we
  	 * require that the unkeyed test vectors (if any) are listed first.
  	 */
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1805

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
  	for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
  		if (template[nr_unkeyed].ksize)
  			break;
  	}
  	for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
  		if (!template[nr_unkeyed + nr_keyed].ksize) {
  			pr_err("alg: hash: test vectors for %s out of order, "
  			       "unkeyed ones must come first
  ", desc->alg);
  			return -EINVAL;
  		}
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1817
1818
  		maxkeysize = max_t(unsigned int, maxkeysize,
  				   template[nr_unkeyed + nr_keyed].ksize);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1819
  	}
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1820

4cc2dcf95   Eric Biggers   crypto: testmgr -...
1821
1822
  	err = 0;
  	if (nr_unkeyed) {
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1823
1824
  		err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
  				      desc->generic_driver, maxkeysize);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1825
  		template += nr_unkeyed;
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1826
  	}
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1827
  	if (!err && nr_keyed)
9a8a6b3f0   Eric Biggers   crypto: testmgr -...
1828
1829
  		err = __alg_test_hash(template, nr_keyed, driver, type, mask,
  				      desc->generic_driver, maxkeysize);
4cc2dcf95   Eric Biggers   crypto: testmgr -...
1830
1831
  
  	return err;
da5ffe113   Jussi Kivilinna   crypto: testmgr -...
1832
  }
ed96804ff   Eric Biggers   crypto: testmgr -...
1833
1834
  static int test_aead_vec_cfg(const char *driver, int enc,
  			     const struct aead_testvec *vec,
951d13328   Eric Biggers   crypto: testmgr -...
1835
  			     const char *vec_name,
ed96804ff   Eric Biggers   crypto: testmgr -...
1836
1837
1838
  			     const struct testvec_config *cfg,
  			     struct aead_request *req,
  			     struct cipher_test_sglists *tsgls)
da7f033dd   Herbert Xu   crypto: cryptomgr...
1839
  {
ed96804ff   Eric Biggers   crypto: testmgr -...
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
  	struct crypto_aead *tfm = crypto_aead_reqtfm(req);
  	const unsigned int alignmask = crypto_aead_alignmask(tfm);
  	const unsigned int ivsize = crypto_aead_ivsize(tfm);
  	const unsigned int authsize = vec->clen - vec->plen;
  	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
  	const char *op = enc ? "encryption" : "decryption";
  	DECLARE_CRYPTO_WAIT(wait);
  	u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
  	u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
  		 cfg->iv_offset +
  		 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
  	struct kvec input[2];
5283a8ee9   Eric Biggers   crypto: testmgr -...
1852
  	int expected_error;
ed96804ff   Eric Biggers   crypto: testmgr -...
1853
  	int err;
d8a32ac25   Jussi Kivilinna   crypto: testmgr -...
1854

ed96804ff   Eric Biggers   crypto: testmgr -...
1855
1856
1857
  	/* Set the key */
  	if (vec->wk)
  		crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
da7f033dd   Herbert Xu   crypto: cryptomgr...
1858
  	else
ed96804ff   Eric Biggers   crypto: testmgr -...
1859
1860
  		crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
  	err = crypto_aead_setkey(tfm, vec->key, vec->klen);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1861
  	if (err && err != vec->setkey_error) {
951d13328   Eric Biggers   crypto: testmgr -...
1862
1863
1864
  		pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x
  ",
  		       driver, vec_name, vec->setkey_error, err,
5283a8ee9   Eric Biggers   crypto: testmgr -...
1865
  		       crypto_aead_get_flags(tfm));
ed96804ff   Eric Biggers   crypto: testmgr -...
1866
  		return err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1867
  	}
5283a8ee9   Eric Biggers   crypto: testmgr -...
1868
  	if (!err && vec->setkey_error) {
951d13328   Eric Biggers   crypto: testmgr -...
1869
1870
1871
  		pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d
  ",
  		       driver, vec_name, vec->setkey_error);
ed96804ff   Eric Biggers   crypto: testmgr -...
1872
  		return -EINVAL;
da7f033dd   Herbert Xu   crypto: cryptomgr...
1873
  	}
ed96804ff   Eric Biggers   crypto: testmgr -...
1874
1875
  	/* Set the authentication tag size */
  	err = crypto_aead_setauthsize(tfm, authsize);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1876
  	if (err && err != vec->setauthsize_error) {
951d13328   Eric Biggers   crypto: testmgr -...
1877
1878
1879
  		pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d
  ",
  		       driver, vec_name, vec->setauthsize_error, err);
ed96804ff   Eric Biggers   crypto: testmgr -...
1880
1881
  		return err;
  	}
5283a8ee9   Eric Biggers   crypto: testmgr -...
1882
  	if (!err && vec->setauthsize_error) {
951d13328   Eric Biggers   crypto: testmgr -...
1883
1884
1885
  		pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d
  ",
  		       driver, vec_name, vec->setauthsize_error);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1886
1887
1888
1889
1890
  		return -EINVAL;
  	}
  
  	if (vec->setkey_error || vec->setauthsize_error)
  		return 0;
8ec25c512   Horia Geanta   crypto: testmgr -...
1891

ed96804ff   Eric Biggers   crypto: testmgr -...
1892
1893
1894
1895
1896
1897
1898
  	/* The IV must be copied to a buffer, as the algorithm may modify it */
  	if (WARN_ON(ivsize > MAX_IVLEN))
  		return -EINVAL;
  	if (vec->iv)
  		memcpy(iv, vec->iv, ivsize);
  	else
  		memset(iv, 0, ivsize);
da7f033dd   Herbert Xu   crypto: cryptomgr...
1899

ed96804ff   Eric Biggers   crypto: testmgr -...
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
  	/* Build the src/dst scatterlists */
  	input[0].iov_base = (void *)vec->assoc;
  	input[0].iov_len = vec->alen;
  	input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
  	input[1].iov_len = enc ? vec->plen : vec->clen;
  	err = build_cipher_test_sglists(tsgls, cfg, alignmask,
  					vec->alen + (enc ? vec->plen :
  						     vec->clen),
  					vec->alen + (enc ? vec->clen :
  						     vec->plen),
  					input, 2);
  	if (err) {
951d13328   Eric Biggers   crypto: testmgr -...
1912
1913
1914
  		pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
ed96804ff   Eric Biggers   crypto: testmgr -...
1915
1916
  		return err;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1917

ed96804ff   Eric Biggers   crypto: testmgr -...
1918
1919
1920
1921
1922
1923
  	/* Do the actual encryption or decryption */
  	testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
  	aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
  	aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
  			       enc ? vec->plen : vec->clen, iv);
  	aead_request_set_ad(req, vec->alen);
6570737c7   Eric Biggers   crypto: testmgr -...
1924
1925
1926
1927
1928
1929
  	if (cfg->nosimd)
  		crypto_disable_simd_for_test();
  	err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
  	if (cfg->nosimd)
  		crypto_reenable_simd_for_test();
  	err = crypto_wait_req(err, &wait);
a6e5ef9ba   Eric Biggers   crypto: testmgr -...
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
  
  	/* Check that the algorithm didn't overwrite things it shouldn't have */
  	if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
  	    req->assoclen != vec->alen ||
  	    req->iv != iv ||
  	    req->src != tsgls->src.sgl_ptr ||
  	    req->dst != tsgls->dst.sgl_ptr ||
  	    crypto_aead_reqtfm(req) != tfm ||
  	    req->base.complete != crypto_req_done ||
  	    req->base.flags != req_flags ||
  	    req->base.data != &wait) {
951d13328   Eric Biggers   crypto: testmgr -...
1941
1942
1943
  		pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
a6e5ef9ba   Eric Biggers   crypto: testmgr -...
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
  		if (req->cryptlen != (enc ? vec->plen : vec->clen))
  			pr_err("alg: aead: changed 'req->cryptlen'
  ");
  		if (req->assoclen != vec->alen)
  			pr_err("alg: aead: changed 'req->assoclen'
  ");
  		if (req->iv != iv)
  			pr_err("alg: aead: changed 'req->iv'
  ");
  		if (req->src != tsgls->src.sgl_ptr)
  			pr_err("alg: aead: changed 'req->src'
  ");
  		if (req->dst != tsgls->dst.sgl_ptr)
  			pr_err("alg: aead: changed 'req->dst'
  ");
  		if (crypto_aead_reqtfm(req) != tfm)
  			pr_err("alg: aead: changed 'req->base.tfm'
  ");
  		if (req->base.complete != crypto_req_done)
  			pr_err("alg: aead: changed 'req->base.complete'
  ");
  		if (req->base.flags != req_flags)
  			pr_err("alg: aead: changed 'req->base.flags'
  ");
  		if (req->base.data != &wait)
  			pr_err("alg: aead: changed 'req->base.data'
  ");
  		return -EINVAL;
  	}
  	if (is_test_sglist_corrupted(&tsgls->src)) {
951d13328   Eric Biggers   crypto: testmgr -...
1974
1975
1976
  		pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
a6e5ef9ba   Eric Biggers   crypto: testmgr -...
1977
1978
1979
1980
  		return -EINVAL;
  	}
  	if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
  	    is_test_sglist_corrupted(&tsgls->dst)) {
951d13328   Eric Biggers   crypto: testmgr -...
1981
1982
1983
  		pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
a6e5ef9ba   Eric Biggers   crypto: testmgr -...
1984
  		return -EINVAL;
ed96804ff   Eric Biggers   crypto: testmgr -...
1985
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
1986

5283a8ee9   Eric Biggers   crypto: testmgr -...
1987
1988
1989
1990
1991
  	/* Check for success or failure */
  	expected_error = vec->novrfy ? -EBADMSG : vec->crypt_error;
  	if (err) {
  		if (err == expected_error)
  			return 0;
951d13328   Eric Biggers   crypto: testmgr -...
1992
1993
1994
  		pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"
  ",
  		       driver, op, vec_name, expected_error, err, cfg->name);
5283a8ee9   Eric Biggers   crypto: testmgr -...
1995
1996
1997
  		return err;
  	}
  	if (expected_error) {
951d13328   Eric Biggers   crypto: testmgr -...
1998
1999
2000
  		pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"
  ",
  		       driver, op, vec_name, expected_error, cfg->name);
5283a8ee9   Eric Biggers   crypto: testmgr -...
2001
2002
  		return -EINVAL;
  	}
ed96804ff   Eric Biggers   crypto: testmgr -...
2003
2004
2005
2006
2007
  	/* Check for the correct output (ciphertext or plaintext) */
  	err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
  				    enc ? vec->clen : vec->plen,
  				    vec->alen, enc || !cfg->inplace);
  	if (err == -EOVERFLOW) {
951d13328   Eric Biggers   crypto: testmgr -...
2008
2009
2010
  		pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
ed96804ff   Eric Biggers   crypto: testmgr -...
2011
2012
2013
  		return err;
  	}
  	if (err) {
951d13328   Eric Biggers   crypto: testmgr -...
2014
2015
2016
  		pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
ed96804ff   Eric Biggers   crypto: testmgr -...
2017
2018
  		return err;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
2019

ed96804ff   Eric Biggers   crypto: testmgr -...
2020
2021
  	return 0;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
2022

ed96804ff   Eric Biggers   crypto: testmgr -...
2023
2024
2025
2026
2027
  static int test_aead_vec(const char *driver, int enc,
  			 const struct aead_testvec *vec, unsigned int vec_num,
  			 struct aead_request *req,
  			 struct cipher_test_sglists *tsgls)
  {
951d13328   Eric Biggers   crypto: testmgr -...
2028
  	char vec_name[16];
ed96804ff   Eric Biggers   crypto: testmgr -...
2029
2030
  	unsigned int i;
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2031

ed96804ff   Eric Biggers   crypto: testmgr -...
2032
2033
  	if (enc && vec->novrfy)
  		return 0;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2034

951d13328   Eric Biggers   crypto: testmgr -...
2035
  	sprintf(vec_name, "%u", vec_num);
ed96804ff   Eric Biggers   crypto: testmgr -...
2036
  	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
951d13328   Eric Biggers   crypto: testmgr -...
2037
  		err = test_aead_vec_cfg(driver, enc, vec, vec_name,
ed96804ff   Eric Biggers   crypto: testmgr -...
2038
2039
2040
2041
2042
  					&default_cipher_testvec_configs[i],
  					req, tsgls);
  		if (err)
  			return err;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
2043

ed96804ff   Eric Biggers   crypto: testmgr -...
2044
2045
2046
2047
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  	if (!noextratests) {
  		struct testvec_config cfg;
  		char cfgname[TESTVEC_CONFIG_NAMELEN];
05b1d3386   Cristian Stoica   crypto: testmgr -...
2048

ed96804ff   Eric Biggers   crypto: testmgr -...
2049
2050
2051
  		for (i = 0; i < fuzz_iterations; i++) {
  			generate_random_testvec_config(&cfg, cfgname,
  						       sizeof(cfgname));
951d13328   Eric Biggers   crypto: testmgr -...
2052
  			err = test_aead_vec_cfg(driver, enc, vec, vec_name,
ed96804ff   Eric Biggers   crypto: testmgr -...
2053
2054
2055
  						&cfg, req, tsgls);
  			if (err)
  				return err;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
2056
  			cond_resched();
da7f033dd   Herbert Xu   crypto: cryptomgr...
2057
2058
  		}
  	}
ed96804ff   Eric Biggers   crypto: testmgr -...
2059
2060
2061
  #endif
  	return 0;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
2062

40153b10d   Eric Biggers   crypto: testmgr -...
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  /*
   * Generate an AEAD test vector from the given implementation.
   * Assumes the buffers in 'vec' were already allocated.
   */
  static void generate_random_aead_testvec(struct aead_request *req,
  					 struct aead_testvec *vec,
  					 unsigned int maxkeysize,
  					 unsigned int maxdatasize,
  					 char *name, size_t max_namelen)
  {
  	struct crypto_aead *tfm = crypto_aead_reqtfm(req);
  	const unsigned int ivsize = crypto_aead_ivsize(tfm);
  	unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
  	unsigned int authsize;
  	unsigned int total_len;
  	int i;
  	struct scatterlist src[2], dst;
  	u8 iv[MAX_IVLEN];
  	DECLARE_CRYPTO_WAIT(wait);
  
  	/* Key: length in [0, maxkeysize], but usually choose maxkeysize */
  	vec->klen = maxkeysize;
  	if (prandom_u32() % 4 == 0)
  		vec->klen = prandom_u32() % (maxkeysize + 1);
  	generate_random_bytes((u8 *)vec->key, vec->klen);
  	vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
  
  	/* IV */
  	generate_random_bytes((u8 *)vec->iv, ivsize);
  
  	/* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
  	authsize = maxauthsize;
  	if (prandom_u32() % 4 == 0)
  		authsize = prandom_u32() % (maxauthsize + 1);
  	if (WARN_ON(authsize > maxdatasize))
  		authsize = maxdatasize;
  	maxdatasize -= authsize;
  	vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
  
  	/* Plaintext and associated data */
  	total_len = generate_random_length(maxdatasize);
  	if (prandom_u32() % 4 == 0)
  		vec->alen = 0;
  	else
  		vec->alen = generate_random_length(total_len);
  	vec->plen = total_len - vec->alen;
  	generate_random_bytes((u8 *)vec->assoc, vec->alen);
  	generate_random_bytes((u8 *)vec->ptext, vec->plen);
  
  	vec->clen = vec->plen + authsize;
  
  	/*
  	 * If the key or authentication tag size couldn't be set, no need to
  	 * continue to encrypt.
  	 */
ee1c6b1aa   Eric Biggers   crypto: testmgr -...
2119
  	vec->crypt_error = 0;
40153b10d   Eric Biggers   crypto: testmgr -...
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
  	if (vec->setkey_error || vec->setauthsize_error)
  		goto done;
  
  	/* Ciphertext */
  	sg_init_table(src, 2);
  	i = 0;
  	if (vec->alen)
  		sg_set_buf(&src[i++], vec->assoc, vec->alen);
  	if (vec->plen)
  		sg_set_buf(&src[i++], vec->ptext, vec->plen);
  	sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
  	memcpy(iv, vec->iv, ivsize);
  	aead_request_set_callback(req, 0, crypto_req_done, &wait);
  	aead_request_set_crypt(req, src, &dst, vec->plen, iv);
  	aead_request_set_ad(req, vec->alen);
  	vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req), &wait);
  	if (vec->crypt_error == 0)
  		memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
  done:
  	snprintf(name, max_namelen,
  		 "\"random: alen=%u plen=%u authsize=%u klen=%u\"",
  		 vec->alen, vec->plen, authsize, vec->klen);
  }
  
  /*
   * Test the AEAD algorithm represented by @req against the corresponding generic
   * implementation, if one is available.
   */
  static int test_aead_vs_generic_impl(const char *driver,
  				     const struct alg_test_desc *test_desc,
  				     struct aead_request *req,
  				     struct cipher_test_sglists *tsgls)
  {
  	struct crypto_aead *tfm = crypto_aead_reqtfm(req);
  	const unsigned int ivsize = crypto_aead_ivsize(tfm);
  	const unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
  	const unsigned int blocksize = crypto_aead_blocksize(tfm);
  	const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
  	const char *algname = crypto_aead_alg(tfm)->base.cra_name;
  	const char *generic_driver = test_desc->generic_driver;
  	char _generic_driver[CRYPTO_MAX_ALG_NAME];
  	struct crypto_aead *generic_tfm = NULL;
  	struct aead_request *generic_req = NULL;
  	unsigned int maxkeysize;
  	unsigned int i;
  	struct aead_testvec vec = { 0 };
  	char vec_name[64];
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2167
  	struct testvec_config *cfg;
40153b10d   Eric Biggers   crypto: testmgr -...
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
  	char cfgname[TESTVEC_CONFIG_NAMELEN];
  	int err;
  
  	if (noextratests)
  		return 0;
  
  	if (!generic_driver) { /* Use default naming convention? */
  		err = build_generic_driver_name(algname, _generic_driver);
  		if (err)
  			return err;
  		generic_driver = _generic_driver;
  	}
  
  	if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
  		return 0;
  
  	generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
  	if (IS_ERR(generic_tfm)) {
  		err = PTR_ERR(generic_tfm);
  		if (err == -ENOENT) {
  			pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable
  ",
  				driver, generic_driver);
  			return 0;
  		}
  		pr_err("alg: aead: error allocating %s (generic impl of %s): %d
  ",
  		       generic_driver, algname, err);
  		return err;
  	}
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2198
2199
2200
2201
2202
  	cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
  	if (!cfg) {
  		err = -ENOMEM;
  		goto out;
  	}
40153b10d   Eric Biggers   crypto: testmgr -...
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
  	generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
  	if (!generic_req) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	/* Check the algorithm properties for consistency. */
  
  	if (maxauthsize != crypto_aead_alg(generic_tfm)->maxauthsize) {
  		pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, maxauthsize,
  		       crypto_aead_alg(generic_tfm)->maxauthsize);
  		err = -EINVAL;
  		goto out;
  	}
  
  	if (ivsize != crypto_aead_ivsize(generic_tfm)) {
  		pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, ivsize, crypto_aead_ivsize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	if (blocksize != crypto_aead_blocksize(generic_tfm)) {
  		pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, blocksize, crypto_aead_blocksize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	/*
  	 * Now generate test vectors using the generic implementation, and test
  	 * the other implementation against them.
  	 */
  
  	maxkeysize = 0;
  	for (i = 0; i < test_desc->suite.aead.count; i++)
  		maxkeysize = max_t(unsigned int, maxkeysize,
  				   test_desc->suite.aead.vecs[i].klen);
  
  	vec.key = kmalloc(maxkeysize, GFP_KERNEL);
  	vec.iv = kmalloc(ivsize, GFP_KERNEL);
  	vec.assoc = kmalloc(maxdatasize, GFP_KERNEL);
  	vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
  	vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
  	if (!vec.key || !vec.iv || !vec.assoc || !vec.ptext || !vec.ctext) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	for (i = 0; i < fuzz_iterations * 8; i++) {
  		generate_random_aead_testvec(generic_req, &vec,
  					     maxkeysize, maxdatasize,
  					     vec_name, sizeof(vec_name));
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2260
  		generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
40153b10d   Eric Biggers   crypto: testmgr -...
2261

6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2262
  		err = test_aead_vec_cfg(driver, ENCRYPT, &vec, vec_name, cfg,
40153b10d   Eric Biggers   crypto: testmgr -...
2263
2264
2265
  					req, tsgls);
  		if (err)
  			goto out;
ee1c6b1aa   Eric Biggers   crypto: testmgr -...
2266
2267
2268
2269
2270
2271
  		if (vec.crypt_error == 0) {
  			err = test_aead_vec_cfg(driver, DECRYPT, &vec, vec_name,
  						cfg, req, tsgls);
  			if (err)
  				goto out;
  		}
40153b10d   Eric Biggers   crypto: testmgr -...
2272
2273
2274
2275
  		cond_resched();
  	}
  	err = 0;
  out:
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2276
  	kfree(cfg);
40153b10d   Eric Biggers   crypto: testmgr -...
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
  	kfree(vec.key);
  	kfree(vec.iv);
  	kfree(vec.assoc);
  	kfree(vec.ptext);
  	kfree(vec.ctext);
  	crypto_free_aead(generic_tfm);
  	aead_request_free(generic_req);
  	return err;
  }
  #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
  static int test_aead_vs_generic_impl(const char *driver,
  				     const struct alg_test_desc *test_desc,
  				     struct aead_request *req,
  				     struct cipher_test_sglists *tsgls)
  {
  	return 0;
  }
  #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
ed96804ff   Eric Biggers   crypto: testmgr -...
2295
2296
2297
2298
2299
2300
2301
  static int test_aead(const char *driver, int enc,
  		     const struct aead_test_suite *suite,
  		     struct aead_request *req,
  		     struct cipher_test_sglists *tsgls)
  {
  	unsigned int i;
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2302

ed96804ff   Eric Biggers   crypto: testmgr -...
2303
2304
2305
2306
2307
  	for (i = 0; i < suite->count; i++) {
  		err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
  				    tsgls);
  		if (err)
  			return err;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
2308
  		cond_resched();
ed96804ff   Eric Biggers   crypto: testmgr -...
2309
2310
  	}
  	return 0;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2311
  }
a9278aade   Radu Alexe   crypto: add suppo...
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
  static int __test_tls(struct crypto_aead *tfm, int enc,
  		      struct tls_testvec *template, unsigned int tcount,
  		      const bool diff_dst)
  {
  	const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
  	unsigned int i, k, authsize;
  	char *q;
  	struct aead_request *req;
  	struct scatterlist *sg;
  	struct scatterlist *sgout;
  	const char *e, *d;
  	struct crypto_wait wait;
  	void *input;
  	void *output;
  	void *assoc;
  	char *iv;
  	char *key;
  	char *xbuf[XBUFSIZE];
  	char *xoutbuf[XBUFSIZE];
  	char *axbuf[XBUFSIZE];
  	int ret = -ENOMEM;
  
  	if (testmgr_alloc_buf(xbuf))
  		goto out_noxbuf;
  
  	if (diff_dst && testmgr_alloc_buf(xoutbuf))
  		goto out_nooutbuf;
  
  	if (testmgr_alloc_buf(axbuf))
  		goto out_noaxbuf;
  
  	iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
  	if (!iv)
  		goto out_noiv;
  
  	key = kzalloc(MAX_KEYLEN, GFP_KERNEL);
  	if (!key)
  		goto out_nokey;
  
  	sg = kmalloc(sizeof(*sg) * 8 * (diff_dst ? 2 : 1), GFP_KERNEL);
  	if (!sg)
  		goto out_nosg;
  
  	sgout = sg + 8;
  
  	d = diff_dst ? "-ddst" : "";
  	e = enc ? "encryption" : "decryption";
  
  	crypto_init_wait(&wait);
  
  	req = aead_request_alloc(tfm, GFP_KERNEL);
  	if (!req) {
  		pr_err("alg: tls%s: Failed to allocate request for %s
  ",
  		       d, algo);
  		goto out;
  	}
  
  	aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
  				  crypto_req_done, &wait);
  
  	for (i = 0; i < tcount; i++) {
  		input = xbuf[0];
  		assoc = axbuf[0];
  
  		ret = -EINVAL;
  		if (WARN_ON(template[i].ilen > PAGE_SIZE ||
  			    template[i].alen > PAGE_SIZE))
  			goto out;
  
  		memcpy(assoc, template[i].assoc, template[i].alen);
  		memcpy(input, template[i].input, template[i].ilen);
  
  		if (template[i].iv)
  			memcpy(iv, template[i].iv, MAX_IVLEN);
  		else
  			memset(iv, 0, MAX_IVLEN);
  
  		crypto_aead_clear_flags(tfm, ~0);
  
  		if (template[i].klen > MAX_KEYLEN) {
  			pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d
  ",
  			       d, i, algo, template[i].klen, MAX_KEYLEN);
  			ret = -EINVAL;
  			goto out;
  		}
  		memcpy(key, template[i].key, template[i].klen);
  
  		ret = crypto_aead_setkey(tfm, key, template[i].klen);
d66c6d6af   Iuliana Prodan   crypto: tls - fix...
2402
  		if ((!ret) == template[i].fail) {
a9278aade   Radu Alexe   crypto: add suppo...
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
  			pr_err("alg: tls%s: setkey failed on test %d for %s: flags=%x
  ",
  			       d, i, algo, crypto_aead_get_flags(tfm));
  			goto out;
  		} else if (ret)
  			continue;
  
  		authsize = 20;
  		ret = crypto_aead_setauthsize(tfm, authsize);
  		if (ret) {
  			pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s
  ",
  			       d, authsize, i, algo);
  			goto out;
  		}
  
  		k = !!template[i].alen;
  		sg_init_table(sg, k + 1);
  		sg_set_buf(&sg[0], assoc, template[i].alen);
  		sg_set_buf(&sg[k], input, (enc ? template[i].rlen :
  					   template[i].ilen));
  		output = input;
  
  		if (diff_dst) {
  			sg_init_table(sgout, k + 1);
  			sg_set_buf(&sgout[0], assoc, template[i].alen);
  
  			output = xoutbuf[0];
  			sg_set_buf(&sgout[k], output,
  				   (enc ? template[i].rlen : template[i].ilen));
  		}
  
  		aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
  				       template[i].ilen, iv);
  
  		aead_request_set_ad(req, template[i].alen);
  
  		ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
  				      : crypto_aead_decrypt(req), &wait);
  
  		switch (ret) {
  		case 0:
  			if (template[i].novrfy) {
  				/* verification was supposed to fail */
  				pr_err("alg: tls%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG
  ",
  				       d, e, i, algo);
  				/* so really, we got a bad message */
  				ret = -EBADMSG;
  				goto out;
  			}
  			break;
  		case -EBADMSG:
  			/* verification failure was expected */
  			if (template[i].novrfy)
  				continue;
  			/* fall through */
  		default:
  			pr_err("alg: tls%s: %s failed on test %d for %s: ret=%d
  ",
  			       d, e, i, algo, -ret);
  			goto out;
  		}
  
  		q = output;
  		if (memcmp(q, template[i].result, template[i].rlen)) {
  			pr_err("alg: tls%s: Test %d failed on %s for %s
  ",
  			       d, i, e, algo);
  			hexdump(q, template[i].rlen);
  			pr_err("should be:
  ");
  			hexdump(template[i].result, template[i].rlen);
  			ret = -EINVAL;
  			goto out;
  		}
  	}
  
  out:
  	aead_request_free(req);
  
  	kfree(sg);
  out_nosg:
  	kfree(key);
  out_nokey:
  	kfree(iv);
  out_noiv:
  	testmgr_free_buf(axbuf);
  out_noaxbuf:
  	if (diff_dst)
  		testmgr_free_buf(xoutbuf);
  out_nooutbuf:
  	testmgr_free_buf(xbuf);
  out_noxbuf:
  	return ret;
  }
  
  static int test_tls(struct crypto_aead *tfm, int enc,
  		    struct tls_testvec *template, unsigned int tcount)
  {
  	int ret;
  	/* test 'dst == src' case */
  	ret = __test_tls(tfm, enc, template, tcount, false);
  	if (ret)
  		return ret;
  	/* test 'dst != src' case */
  	return __test_tls(tfm, enc, template, tcount, true);
  }
  
  static int alg_test_tls(const struct alg_test_desc *desc, const char *driver,
  			u32 type, u32 mask)
  {
  	struct crypto_aead *tfm;
  	int err = 0;
  
  	tfm = crypto_alloc_aead(driver, type, mask);
  	if (IS_ERR(tfm)) {
  		pr_err("alg: aead: Failed to load transform for %s: %ld
  ",
  			driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
  
  	if (desc->suite.tls.enc.vecs) {
  		err = test_tls(tfm, ENCRYPT, desc->suite.tls.enc.vecs,
  				desc->suite.tls.enc.count);
  		if (err)
  			goto out;
  	}
  
  	if (!err && desc->suite.tls.dec.vecs)
  		err = test_tls(tfm, DECRYPT, desc->suite.tls.dec.vecs,
  			       desc->suite.tls.dec.count);
  
  out:
  	crypto_free_aead(tfm);
  	return err;
  }
ed96804ff   Eric Biggers   crypto: testmgr -...
2541
2542
  static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
  			 u32 type, u32 mask)
d8a32ac25   Jussi Kivilinna   crypto: testmgr -...
2543
  {
ed96804ff   Eric Biggers   crypto: testmgr -...
2544
2545
2546
2547
2548
  	const struct aead_test_suite *suite = &desc->suite.aead;
  	struct crypto_aead *tfm;
  	struct aead_request *req = NULL;
  	struct cipher_test_sglists *tsgls = NULL;
  	int err;
d8a32ac25   Jussi Kivilinna   crypto: testmgr -...
2549

ed96804ff   Eric Biggers   crypto: testmgr -...
2550
2551
2552
2553
2554
  	if (suite->count <= 0) {
  		pr_err("alg: aead: empty test suite for %s
  ", driver);
  		return -EINVAL;
  	}
d8a32ac25   Jussi Kivilinna   crypto: testmgr -...
2555

ed96804ff   Eric Biggers   crypto: testmgr -...
2556
2557
2558
2559
2560
2561
2562
  	tfm = crypto_alloc_aead(driver, type, mask);
  	if (IS_ERR(tfm)) {
  		pr_err("alg: aead: failed to allocate transform for %s: %ld
  ",
  		       driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
58dcf5484   Jussi Kivilinna   crypto: testmgr -...
2563

ed96804ff   Eric Biggers   crypto: testmgr -...
2564
2565
2566
2567
2568
2569
2570
2571
  	req = aead_request_alloc(tfm, GFP_KERNEL);
  	if (!req) {
  		pr_err("alg: aead: failed to allocate request for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
  	}
58dcf5484   Jussi Kivilinna   crypto: testmgr -...
2572

ed96804ff   Eric Biggers   crypto: testmgr -...
2573
2574
2575
2576
2577
2578
2579
  	tsgls = alloc_cipher_test_sglists();
  	if (!tsgls) {
  		pr_err("alg: aead: failed to allocate test buffers for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
58dcf5484   Jussi Kivilinna   crypto: testmgr -...
2580
  	}
ed96804ff   Eric Biggers   crypto: testmgr -...
2581
2582
2583
2584
2585
  	err = test_aead(driver, ENCRYPT, suite, req, tsgls);
  	if (err)
  		goto out;
  
  	err = test_aead(driver, DECRYPT, suite, req, tsgls);
40153b10d   Eric Biggers   crypto: testmgr -...
2586
2587
2588
2589
  	if (err)
  		goto out;
  
  	err = test_aead_vs_generic_impl(driver, desc, req, tsgls);
ed96804ff   Eric Biggers   crypto: testmgr -...
2590
2591
2592
2593
2594
  out:
  	free_cipher_test_sglists(tsgls);
  	aead_request_free(req);
  	crypto_free_aead(tfm);
  	return err;
d8a32ac25   Jussi Kivilinna   crypto: testmgr -...
2595
  }
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2596
  static int test_cipher(struct crypto_cipher *tfm, int enc,
b13b1e0c6   Eric Biggers   crypto: testmgr -...
2597
2598
  		       const struct cipher_testvec *template,
  		       unsigned int tcount)
da7f033dd   Herbert Xu   crypto: cryptomgr...
2599
  {
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2600
2601
  	const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
  	unsigned int i, j, k;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2602
2603
  	char *q;
  	const char *e;
92a4c9fef   Eric Biggers   crypto: testmgr -...
2604
  	const char *input, *result;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2605
  	void *data;
f8b0d4d09   Herbert Xu   crypto: testmgr -...
2606
2607
2608
2609
2610
  	char *xbuf[XBUFSIZE];
  	int ret = -ENOMEM;
  
  	if (testmgr_alloc_buf(xbuf))
  		goto out_nobuf;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2611
2612
2613
2614
2615
2616
2617
2618
  
  	if (enc == ENCRYPT)
  	        e = "encryption";
  	else
  		e = "decryption";
  
  	j = 0;
  	for (i = 0; i < tcount; i++) {
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2619

10faa8c0d   Stephan Mueller   crypto: FIPS - al...
2620
2621
  		if (fips_enabled && template[i].fips_skip)
  			continue;
92a4c9fef   Eric Biggers   crypto: testmgr -...
2622
2623
  		input  = enc ? template[i].ptext : template[i].ctext;
  		result = enc ? template[i].ctext : template[i].ptext;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2624
  		j++;
fd57f22a0   Herbert Xu   crypto: testmgr -...
2625
  		ret = -EINVAL;
92a4c9fef   Eric Biggers   crypto: testmgr -...
2626
  		if (WARN_ON(template[i].len > PAGE_SIZE))
fd57f22a0   Herbert Xu   crypto: testmgr -...
2627
  			goto out;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2628
  		data = xbuf[0];
92a4c9fef   Eric Biggers   crypto: testmgr -...
2629
  		memcpy(data, input, template[i].len);
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2630
2631
2632
  
  		crypto_cipher_clear_flags(tfm, ~0);
  		if (template[i].wk)
231baecde   Eric Biggers   crypto: clarify n...
2633
  			crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2634
2635
2636
  
  		ret = crypto_cipher_setkey(tfm, template[i].key,
  					   template[i].klen);
5283a8ee9   Eric Biggers   crypto: testmgr -...
2637
2638
2639
2640
2641
2642
2643
  		if (ret) {
  			if (ret == template[i].setkey_error)
  				continue;
  			pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x
  ",
  			       algo, j, template[i].setkey_error, ret,
  			       crypto_cipher_get_flags(tfm));
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2644
  			goto out;
5283a8ee9   Eric Biggers   crypto: testmgr -...
2645
2646
2647
2648
2649
2650
2651
2652
  		}
  		if (template[i].setkey_error) {
  			pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d
  ",
  			       algo, j, template[i].setkey_error);
  			ret = -EINVAL;
  			goto out;
  		}
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2653

92a4c9fef   Eric Biggers   crypto: testmgr -...
2654
  		for (k = 0; k < template[i].len;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
  		     k += crypto_cipher_blocksize(tfm)) {
  			if (enc)
  				crypto_cipher_encrypt_one(tfm, data + k,
  							  data + k);
  			else
  				crypto_cipher_decrypt_one(tfm, data + k,
  							  data + k);
  		}
  
  		q = data;
92a4c9fef   Eric Biggers   crypto: testmgr -...
2665
  		if (memcmp(q, result, template[i].len)) {
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2666
2667
2668
  			printk(KERN_ERR "alg: cipher: Test %d failed "
  			       "on %s for %s
  ", j, e, algo);
92a4c9fef   Eric Biggers   crypto: testmgr -...
2669
  			hexdump(q, template[i].len);
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2670
2671
2672
2673
2674
2675
2676
2677
  			ret = -EINVAL;
  			goto out;
  		}
  	}
  
  	ret = 0;
  
  out:
f8b0d4d09   Herbert Xu   crypto: testmgr -...
2678
2679
  	testmgr_free_buf(xbuf);
  out_nobuf:
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2680
2681
  	return ret;
  }
4e7babba3   Eric Biggers   crypto: testmgr -...
2682
2683
  static int test_skcipher_vec_cfg(const char *driver, int enc,
  				 const struct cipher_testvec *vec,
951d13328   Eric Biggers   crypto: testmgr -...
2684
  				 const char *vec_name,
4e7babba3   Eric Biggers   crypto: testmgr -...
2685
2686
2687
  				 const struct testvec_config *cfg,
  				 struct skcipher_request *req,
  				 struct cipher_test_sglists *tsgls)
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
2688
  {
4e7babba3   Eric Biggers   crypto: testmgr -...
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
  	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
  	const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
  	const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
  	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
  	const char *op = enc ? "encryption" : "decryption";
  	DECLARE_CRYPTO_WAIT(wait);
  	u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
  	u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
  		 cfg->iv_offset +
  		 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
  	struct kvec input;
  	int err;
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
2701

4e7babba3   Eric Biggers   crypto: testmgr -...
2702
2703
2704
  	/* Set the key */
  	if (vec->wk)
  		crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
da7f033dd   Herbert Xu   crypto: cryptomgr...
2705
  	else
4e7babba3   Eric Biggers   crypto: testmgr -...
2706
2707
2708
2709
  		crypto_skcipher_clear_flags(tfm,
  					    CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
  	err = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
  	if (err) {
5283a8ee9   Eric Biggers   crypto: testmgr -...
2710
  		if (err == vec->setkey_error)
4e7babba3   Eric Biggers   crypto: testmgr -...
2711
  			return 0;
951d13328   Eric Biggers   crypto: testmgr -...
2712
2713
2714
  		pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x
  ",
  		       driver, vec_name, vec->setkey_error, err,
5283a8ee9   Eric Biggers   crypto: testmgr -...
2715
  		       crypto_skcipher_get_flags(tfm));
4e7babba3   Eric Biggers   crypto: testmgr -...
2716
2717
  		return err;
  	}
5283a8ee9   Eric Biggers   crypto: testmgr -...
2718
  	if (vec->setkey_error) {
951d13328   Eric Biggers   crypto: testmgr -...
2719
2720
2721
  		pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d
  ",
  		       driver, vec_name, vec->setkey_error);
4e7babba3   Eric Biggers   crypto: testmgr -...
2722
  		return -EINVAL;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2723
  	}
4e7babba3   Eric Biggers   crypto: testmgr -...
2724
2725
2726
2727
  	/* The IV must be copied to a buffer, as the algorithm may modify it */
  	if (ivsize) {
  		if (WARN_ON(ivsize > MAX_IVLEN))
  			return -EINVAL;
8efd972ef   Eric Biggers   crypto: testmgr -...
2728
2729
2730
  		if (vec->generates_iv && !enc)
  			memcpy(iv, vec->iv_out, ivsize);
  		else if (vec->iv)
4e7babba3   Eric Biggers   crypto: testmgr -...
2731
  			memcpy(iv, vec->iv, ivsize);
da7f033dd   Herbert Xu   crypto: cryptomgr...
2732
  		else
4e7babba3   Eric Biggers   crypto: testmgr -...
2733
2734
2735
  			memset(iv, 0, ivsize);
  	} else {
  		if (vec->generates_iv) {
951d13328   Eric Biggers   crypto: testmgr -...
2736
2737
2738
  			pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!
  ",
  			       driver, vec_name);
4e7babba3   Eric Biggers   crypto: testmgr -...
2739
  			return -EINVAL;
8a826a34a   Boris BREZILLON   crypto: testmgr -...
2740
  		}
4e7babba3   Eric Biggers   crypto: testmgr -...
2741
  		iv = NULL;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2742
  	}
4e7babba3   Eric Biggers   crypto: testmgr -...
2743
2744
2745
2746
2747
2748
  	/* Build the src/dst scatterlists */
  	input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
  	input.iov_len = vec->len;
  	err = build_cipher_test_sglists(tsgls, cfg, alignmask,
  					vec->len, vec->len, &input, 1);
  	if (err) {
951d13328   Eric Biggers   crypto: testmgr -...
2749
2750
2751
  		pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
4e7babba3   Eric Biggers   crypto: testmgr -...
2752
2753
  		return err;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
2754

4e7babba3   Eric Biggers   crypto: testmgr -...
2755
2756
2757
2758
2759
  	/* Do the actual encryption or decryption */
  	testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
  	skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
  	skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
  				   vec->len, iv);
6570737c7   Eric Biggers   crypto: testmgr -...
2760
2761
2762
2763
2764
2765
  	if (cfg->nosimd)
  		crypto_disable_simd_for_test();
  	err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
  	if (cfg->nosimd)
  		crypto_reenable_simd_for_test();
  	err = crypto_wait_req(err, &wait);
da7f033dd   Herbert Xu   crypto: cryptomgr...
2766

fa353c991   Eric Biggers   crypto: testmgr -...
2767
2768
2769
2770
2771
2772
2773
2774
2775
  	/* Check that the algorithm didn't overwrite things it shouldn't have */
  	if (req->cryptlen != vec->len ||
  	    req->iv != iv ||
  	    req->src != tsgls->src.sgl_ptr ||
  	    req->dst != tsgls->dst.sgl_ptr ||
  	    crypto_skcipher_reqtfm(req) != tfm ||
  	    req->base.complete != crypto_req_done ||
  	    req->base.flags != req_flags ||
  	    req->base.data != &wait) {
951d13328   Eric Biggers   crypto: testmgr -...
2776
2777
2778
  		pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
fa353c991   Eric Biggers   crypto: testmgr -...
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
  		if (req->cryptlen != vec->len)
  			pr_err("alg: skcipher: changed 'req->cryptlen'
  ");
  		if (req->iv != iv)
  			pr_err("alg: skcipher: changed 'req->iv'
  ");
  		if (req->src != tsgls->src.sgl_ptr)
  			pr_err("alg: skcipher: changed 'req->src'
  ");
  		if (req->dst != tsgls->dst.sgl_ptr)
  			pr_err("alg: skcipher: changed 'req->dst'
  ");
  		if (crypto_skcipher_reqtfm(req) != tfm)
  			pr_err("alg: skcipher: changed 'req->base.tfm'
  ");
  		if (req->base.complete != crypto_req_done)
  			pr_err("alg: skcipher: changed 'req->base.complete'
  ");
  		if (req->base.flags != req_flags)
  			pr_err("alg: skcipher: changed 'req->base.flags'
  ");
  		if (req->base.data != &wait)
  			pr_err("alg: skcipher: changed 'req->base.data'
  ");
  		return -EINVAL;
  	}
  	if (is_test_sglist_corrupted(&tsgls->src)) {
951d13328   Eric Biggers   crypto: testmgr -...
2806
2807
2808
  		pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
fa353c991   Eric Biggers   crypto: testmgr -...
2809
2810
2811
2812
  		return -EINVAL;
  	}
  	if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
  	    is_test_sglist_corrupted(&tsgls->dst)) {
951d13328   Eric Biggers   crypto: testmgr -...
2813
2814
2815
  		pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
fa353c991   Eric Biggers   crypto: testmgr -...
2816
2817
  		return -EINVAL;
  	}
5283a8ee9   Eric Biggers   crypto: testmgr -...
2818
2819
2820
2821
  	/* Check for success or failure */
  	if (err) {
  		if (err == vec->crypt_error)
  			return 0;
951d13328   Eric Biggers   crypto: testmgr -...
2822
2823
2824
  		pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"
  ",
  		       driver, op, vec_name, vec->crypt_error, err, cfg->name);
5283a8ee9   Eric Biggers   crypto: testmgr -...
2825
2826
2827
  		return err;
  	}
  	if (vec->crypt_error) {
951d13328   Eric Biggers   crypto: testmgr -...
2828
2829
2830
  		pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"
  ",
  		       driver, op, vec_name, vec->crypt_error, cfg->name);
5283a8ee9   Eric Biggers   crypto: testmgr -...
2831
2832
  		return -EINVAL;
  	}
4e7babba3   Eric Biggers   crypto: testmgr -...
2833
2834
2835
2836
  	/* Check for the correct output (ciphertext or plaintext) */
  	err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
  				    vec->len, 0, true);
  	if (err == -EOVERFLOW) {
951d13328   Eric Biggers   crypto: testmgr -...
2837
2838
2839
  		pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
4e7babba3   Eric Biggers   crypto: testmgr -...
2840
2841
2842
  		return err;
  	}
  	if (err) {
951d13328   Eric Biggers   crypto: testmgr -...
2843
2844
2845
  		pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
4e7babba3   Eric Biggers   crypto: testmgr -...
2846
2847
  		return err;
  	}
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
2848

4e7babba3   Eric Biggers   crypto: testmgr -...
2849
  	/* If applicable, check that the algorithm generated the correct IV */
8efd972ef   Eric Biggers   crypto: testmgr -...
2850
  	if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
951d13328   Eric Biggers   crypto: testmgr -...
2851
2852
2853
  		pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"
  ",
  		       driver, op, vec_name, cfg->name);
4e7babba3   Eric Biggers   crypto: testmgr -...
2854
2855
2856
  		hexdump(iv, ivsize);
  		return -EINVAL;
  	}
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
2857

4e7babba3   Eric Biggers   crypto: testmgr -...
2858
2859
  	return 0;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
2860

4e7babba3   Eric Biggers   crypto: testmgr -...
2861
2862
2863
2864
2865
2866
  static int test_skcipher_vec(const char *driver, int enc,
  			     const struct cipher_testvec *vec,
  			     unsigned int vec_num,
  			     struct skcipher_request *req,
  			     struct cipher_test_sglists *tsgls)
  {
951d13328   Eric Biggers   crypto: testmgr -...
2867
  	char vec_name[16];
4e7babba3   Eric Biggers   crypto: testmgr -...
2868
2869
  	unsigned int i;
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2870

4e7babba3   Eric Biggers   crypto: testmgr -...
2871
2872
  	if (fips_enabled && vec->fips_skip)
  		return 0;
da7f033dd   Herbert Xu   crypto: cryptomgr...
2873

951d13328   Eric Biggers   crypto: testmgr -...
2874
  	sprintf(vec_name, "%u", vec_num);
4e7babba3   Eric Biggers   crypto: testmgr -...
2875
  	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
951d13328   Eric Biggers   crypto: testmgr -...
2876
  		err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
4e7babba3   Eric Biggers   crypto: testmgr -...
2877
2878
2879
2880
2881
  					    &default_cipher_testvec_configs[i],
  					    req, tsgls);
  		if (err)
  			return err;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
2882

4e7babba3   Eric Biggers   crypto: testmgr -...
2883
2884
2885
2886
2887
2888
2889
2890
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  	if (!noextratests) {
  		struct testvec_config cfg;
  		char cfgname[TESTVEC_CONFIG_NAMELEN];
  
  		for (i = 0; i < fuzz_iterations; i++) {
  			generate_random_testvec_config(&cfg, cfgname,
  						       sizeof(cfgname));
951d13328   Eric Biggers   crypto: testmgr -...
2891
  			err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
4e7babba3   Eric Biggers   crypto: testmgr -...
2892
2893
2894
  						    &cfg, req, tsgls);
  			if (err)
  				return err;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
2895
  			cond_resched();
da7f033dd   Herbert Xu   crypto: cryptomgr...
2896
2897
  		}
  	}
4e7babba3   Eric Biggers   crypto: testmgr -...
2898
2899
2900
  #endif
  	return 0;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
2901

d435e10e6   Eric Biggers   crypto: testmgr -...
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  /*
   * Generate a symmetric cipher test vector from the given implementation.
   * Assumes the buffers in 'vec' were already allocated.
   */
  static void generate_random_cipher_testvec(struct skcipher_request *req,
  					   struct cipher_testvec *vec,
  					   unsigned int maxdatasize,
  					   char *name, size_t max_namelen)
  {
  	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
  	const unsigned int maxkeysize = tfm->keysize;
  	const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
  	struct scatterlist src, dst;
  	u8 iv[MAX_IVLEN];
  	DECLARE_CRYPTO_WAIT(wait);
  
  	/* Key: length in [0, maxkeysize], but usually choose maxkeysize */
  	vec->klen = maxkeysize;
  	if (prandom_u32() % 4 == 0)
  		vec->klen = prandom_u32() % (maxkeysize + 1);
  	generate_random_bytes((u8 *)vec->key, vec->klen);
  	vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
  
  	/* IV */
  	generate_random_bytes((u8 *)vec->iv, ivsize);
  
  	/* Plaintext */
  	vec->len = generate_random_length(maxdatasize);
  	generate_random_bytes((u8 *)vec->ptext, vec->len);
  
  	/* If the key couldn't be set, no need to continue to encrypt. */
  	if (vec->setkey_error)
  		goto done;
  
  	/* Ciphertext */
  	sg_init_one(&src, vec->ptext, vec->len);
  	sg_init_one(&dst, vec->ctext, vec->len);
  	memcpy(iv, vec->iv, ivsize);
  	skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
  	skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
  	vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
ee1c6b1aa   Eric Biggers   crypto: testmgr -...
2944
2945
2946
2947
2948
2949
2950
2951
2952
  	if (vec->crypt_error != 0) {
  		/*
  		 * The only acceptable error here is for an invalid length, so
  		 * skcipher decryption should fail with the same error too.
  		 * We'll test for this.  But to keep the API usage well-defined,
  		 * explicitly initialize the ciphertext buffer too.
  		 */
  		memset((u8 *)vec->ctext, 0, vec->len);
  	}
d435e10e6   Eric Biggers   crypto: testmgr -...
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
  done:
  	snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
  		 vec->len, vec->klen);
  }
  
  /*
   * Test the skcipher algorithm represented by @req against the corresponding
   * generic implementation, if one is available.
   */
  static int test_skcipher_vs_generic_impl(const char *driver,
  					 const char *generic_driver,
  					 struct skcipher_request *req,
  					 struct cipher_test_sglists *tsgls)
  {
  	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
  	const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
  	const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
  	const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
  	const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
  	char _generic_driver[CRYPTO_MAX_ALG_NAME];
  	struct crypto_skcipher *generic_tfm = NULL;
  	struct skcipher_request *generic_req = NULL;
  	unsigned int i;
  	struct cipher_testvec vec = { 0 };
  	char vec_name[64];
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
2978
  	struct testvec_config *cfg;
d435e10e6   Eric Biggers   crypto: testmgr -...
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
  	char cfgname[TESTVEC_CONFIG_NAMELEN];
  	int err;
  
  	if (noextratests)
  		return 0;
  
  	/* Keywrap isn't supported here yet as it handles its IV differently. */
  	if (strncmp(algname, "kw(", 3) == 0)
  		return 0;
  
  	if (!generic_driver) { /* Use default naming convention? */
  		err = build_generic_driver_name(algname, _generic_driver);
  		if (err)
  			return err;
  		generic_driver = _generic_driver;
  	}
  
  	if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
  		return 0;
  
  	generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
  	if (IS_ERR(generic_tfm)) {
  		err = PTR_ERR(generic_tfm);
  		if (err == -ENOENT) {
  			pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable
  ",
  				driver, generic_driver);
  			return 0;
  		}
  		pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d
  ",
  		       generic_driver, algname, err);
  		return err;
  	}
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
3013
3014
3015
3016
3017
  	cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
  	if (!cfg) {
  		err = -ENOMEM;
  		goto out;
  	}
d435e10e6   Eric Biggers   crypto: testmgr -...
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
  	generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
  	if (!generic_req) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	/* Check the algorithm properties for consistency. */
  
  	if (tfm->keysize != generic_tfm->keysize) {
  		pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, tfm->keysize, generic_tfm->keysize);
  		err = -EINVAL;
  		goto out;
  	}
  
  	if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
  		pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
  		pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)
  ",
  		       driver, blocksize,
  		       crypto_skcipher_blocksize(generic_tfm));
  		err = -EINVAL;
  		goto out;
  	}
  
  	/*
  	 * Now generate test vectors using the generic implementation, and test
  	 * the other implementation against them.
  	 */
  
  	vec.key = kmalloc(tfm->keysize, GFP_KERNEL);
  	vec.iv = kmalloc(ivsize, GFP_KERNEL);
  	vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
  	vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
  	if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	for (i = 0; i < fuzz_iterations * 8; i++) {
  		generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
  					       vec_name, sizeof(vec_name));
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
3068
  		generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
d435e10e6   Eric Biggers   crypto: testmgr -...
3069
3070
  
  		err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
3071
  					    cfg, req, tsgls);
d435e10e6   Eric Biggers   crypto: testmgr -...
3072
3073
3074
  		if (err)
  			goto out;
  		err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
3075
  					    cfg, req, tsgls);
d435e10e6   Eric Biggers   crypto: testmgr -...
3076
3077
3078
3079
3080
3081
  		if (err)
  			goto out;
  		cond_resched();
  	}
  	err = 0;
  out:
6b5ca646c   Arnd Bergmann   crypto: testmgr -...
3082
  	kfree(cfg);
d435e10e6   Eric Biggers   crypto: testmgr -...
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
  	kfree(vec.key);
  	kfree(vec.iv);
  	kfree(vec.ptext);
  	kfree(vec.ctext);
  	crypto_free_skcipher(generic_tfm);
  	skcipher_request_free(generic_req);
  	return err;
  }
  #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
  static int test_skcipher_vs_generic_impl(const char *driver,
  					 const char *generic_driver,
  					 struct skcipher_request *req,
  					 struct cipher_test_sglists *tsgls)
  {
  	return 0;
  }
  #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
4e7babba3   Eric Biggers   crypto: testmgr -...
3100
3101
3102
3103
3104
3105
3106
  static int test_skcipher(const char *driver, int enc,
  			 const struct cipher_test_suite *suite,
  			 struct skcipher_request *req,
  			 struct cipher_test_sglists *tsgls)
  {
  	unsigned int i;
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3107

4e7babba3   Eric Biggers   crypto: testmgr -...
3108
3109
3110
3111
3112
  	for (i = 0; i < suite->count; i++) {
  		err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
  					tsgls);
  		if (err)
  			return err;
e63e1b0dd   Eric Biggers   crypto: testmgr -...
3113
  		cond_resched();
4e7babba3   Eric Biggers   crypto: testmgr -...
3114
3115
  	}
  	return 0;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3116
  }
4e7babba3   Eric Biggers   crypto: testmgr -...
3117
3118
  static int alg_test_skcipher(const struct alg_test_desc *desc,
  			     const char *driver, u32 type, u32 mask)
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
3119
  {
4e7babba3   Eric Biggers   crypto: testmgr -...
3120
3121
3122
3123
3124
  	const struct cipher_test_suite *suite = &desc->suite.cipher;
  	struct crypto_skcipher *tfm;
  	struct skcipher_request *req = NULL;
  	struct cipher_test_sglists *tsgls = NULL;
  	int err;
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
3125

4e7babba3   Eric Biggers   crypto: testmgr -...
3126
3127
3128
3129
3130
  	if (suite->count <= 0) {
  		pr_err("alg: skcipher: empty test suite for %s
  ", driver);
  		return -EINVAL;
  	}
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
3131

4e7babba3   Eric Biggers   crypto: testmgr -...
3132
3133
3134
3135
3136
3137
3138
  	tfm = crypto_alloc_skcipher(driver, type, mask);
  	if (IS_ERR(tfm)) {
  		pr_err("alg: skcipher: failed to allocate transform for %s: %ld
  ",
  		       driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
3a338f20c   Jussi Kivilinna   crypto: testmgr -...
3139

4e7babba3   Eric Biggers   crypto: testmgr -...
3140
3141
3142
3143
3144
3145
3146
3147
  	req = skcipher_request_alloc(tfm, GFP_KERNEL);
  	if (!req) {
  		pr_err("alg: skcipher: failed to allocate request for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
  	}
3a338f20c   Jussi Kivilinna   crypto: testmgr -...
3148

4e7babba3   Eric Biggers   crypto: testmgr -...
3149
3150
3151
3152
3153
3154
3155
  	tsgls = alloc_cipher_test_sglists();
  	if (!tsgls) {
  		pr_err("alg: skcipher: failed to allocate test buffers for %s
  ",
  		       driver);
  		err = -ENOMEM;
  		goto out;
3a338f20c   Jussi Kivilinna   crypto: testmgr -...
3156
  	}
4e7babba3   Eric Biggers   crypto: testmgr -...
3157
3158
3159
3160
3161
  	err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
  	if (err)
  		goto out;
  
  	err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
d435e10e6   Eric Biggers   crypto: testmgr -...
3162
3163
3164
3165
3166
  	if (err)
  		goto out;
  
  	err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
  					    tsgls);
4e7babba3   Eric Biggers   crypto: testmgr -...
3167
3168
3169
3170
3171
  out:
  	free_cipher_test_sglists(tsgls);
  	skcipher_request_free(req);
  	crypto_free_skcipher(tfm);
  	return err;
08d6af8c1   Jussi Kivilinna   crypto: testmgr -...
3172
  }
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3173
3174
3175
3176
  static int test_comp(struct crypto_comp *tfm,
  		     const struct comp_testvec *ctemplate,
  		     const struct comp_testvec *dtemplate,
  		     int ctcount, int dtcount)
da7f033dd   Herbert Xu   crypto: cryptomgr...
3177
3178
  {
  	const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
336073840   Mahipal Challa   crypto: testmgr -...
3179
  	char *output, *decomp_output;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3180
  	unsigned int i;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3181
  	int ret;
336073840   Mahipal Challa   crypto: testmgr -...
3182
3183
3184
3185
3186
3187
3188
3189
3190
  	output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
  	if (!output)
  		return -ENOMEM;
  
  	decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
  	if (!decomp_output) {
  		kfree(output);
  		return -ENOMEM;
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
3191
  	for (i = 0; i < ctcount; i++) {
c79cf9100   Geert Uytterhoeven   crypto: testmgr -...
3192
3193
  		int ilen;
  		unsigned int dlen = COMP_BUF_SIZE;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3194

22a8118d3   Michael Schupikov   crypto: testmgr -...
3195
3196
  		memset(output, 0, COMP_BUF_SIZE);
  		memset(decomp_output, 0, COMP_BUF_SIZE);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3197
3198
3199
  
  		ilen = ctemplate[i].inlen;
  		ret = crypto_comp_compress(tfm, ctemplate[i].input,
336073840   Mahipal Challa   crypto: testmgr -...
3200
  					   ilen, output, &dlen);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3201
3202
3203
3204
3205
3206
3207
  		if (ret) {
  			printk(KERN_ERR "alg: comp: compression failed "
  			       "on test %d for %s: ret=%d
  ", i + 1, algo,
  			       -ret);
  			goto out;
  		}
336073840   Mahipal Challa   crypto: testmgr -...
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
  		ilen = dlen;
  		dlen = COMP_BUF_SIZE;
  		ret = crypto_comp_decompress(tfm, output,
  					     ilen, decomp_output, &dlen);
  		if (ret) {
  			pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d
  ",
  			       i + 1, algo, -ret);
  			goto out;
  		}
  
  		if (dlen != ctemplate[i].inlen) {
b812eb007   Geert Uytterhoeven   crypto: testmgr -...
3220
3221
3222
3223
3224
3225
3226
  			printk(KERN_ERR "alg: comp: Compression test %d "
  			       "failed for %s: output len = %d
  ", i + 1, algo,
  			       dlen);
  			ret = -EINVAL;
  			goto out;
  		}
336073840   Mahipal Challa   crypto: testmgr -...
3227
3228
3229
3230
3231
3232
  		if (memcmp(decomp_output, ctemplate[i].input,
  			   ctemplate[i].inlen)) {
  			pr_err("alg: comp: compression failed: output differs: on test %d for %s
  ",
  			       i + 1, algo);
  			hexdump(decomp_output, dlen);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3233
3234
3235
3236
3237
3238
  			ret = -EINVAL;
  			goto out;
  		}
  	}
  
  	for (i = 0; i < dtcount; i++) {
c79cf9100   Geert Uytterhoeven   crypto: testmgr -...
3239
3240
  		int ilen;
  		unsigned int dlen = COMP_BUF_SIZE;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3241

22a8118d3   Michael Schupikov   crypto: testmgr -...
3242
  		memset(decomp_output, 0, COMP_BUF_SIZE);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3243
3244
3245
  
  		ilen = dtemplate[i].inlen;
  		ret = crypto_comp_decompress(tfm, dtemplate[i].input,
336073840   Mahipal Challa   crypto: testmgr -...
3246
  					     ilen, decomp_output, &dlen);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3247
3248
3249
3250
3251
3252
3253
  		if (ret) {
  			printk(KERN_ERR "alg: comp: decompression failed "
  			       "on test %d for %s: ret=%d
  ", i + 1, algo,
  			       -ret);
  			goto out;
  		}
b812eb007   Geert Uytterhoeven   crypto: testmgr -...
3254
3255
3256
3257
3258
3259
3260
3261
  		if (dlen != dtemplate[i].outlen) {
  			printk(KERN_ERR "alg: comp: Decompression test %d "
  			       "failed for %s: output len = %d
  ", i + 1, algo,
  			       dlen);
  			ret = -EINVAL;
  			goto out;
  		}
336073840   Mahipal Challa   crypto: testmgr -...
3262
  		if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
da7f033dd   Herbert Xu   crypto: cryptomgr...
3263
3264
3265
  			printk(KERN_ERR "alg: comp: Decompression test %d "
  			       "failed for %s
  ", i + 1, algo);
336073840   Mahipal Challa   crypto: testmgr -...
3266
  			hexdump(decomp_output, dlen);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3267
3268
3269
3270
3271
3272
3273
3274
  			ret = -EINVAL;
  			goto out;
  		}
  	}
  
  	ret = 0;
  
  out:
336073840   Mahipal Challa   crypto: testmgr -...
3275
3276
  	kfree(decomp_output);
  	kfree(output);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3277
3278
  	return ret;
  }
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3279
  static int test_acomp(struct crypto_acomp *tfm,
336073840   Mahipal Challa   crypto: testmgr -...
3280
  			      const struct comp_testvec *ctemplate,
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3281
3282
  		      const struct comp_testvec *dtemplate,
  		      int ctcount, int dtcount)
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3283
3284
3285
  {
  	const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
  	unsigned int i;
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3286
  	char *output, *decomp_out;
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3287
3288
3289
  	int ret;
  	struct scatterlist src, dst;
  	struct acomp_req *req;
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3290
  	struct crypto_wait wait;
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3291

eb0955935   Eric Biggers   crypto: testmgr -...
3292
3293
3294
  	output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
  	if (!output)
  		return -ENOMEM;
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3295
3296
3297
3298
3299
  	decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
  	if (!decomp_out) {
  		kfree(output);
  		return -ENOMEM;
  	}
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3300
3301
3302
  	for (i = 0; i < ctcount; i++) {
  		unsigned int dlen = COMP_BUF_SIZE;
  		int ilen = ctemplate[i].inlen;
02608e02f   Laura Abbott   crypto: testmgr -...
3303
  		void *input_vec;
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3304

d2110224a   Eric Biggers   crypto: testmgr -...
3305
  		input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
02608e02f   Laura Abbott   crypto: testmgr -...
3306
3307
3308
3309
  		if (!input_vec) {
  			ret = -ENOMEM;
  			goto out;
  		}
eb0955935   Eric Biggers   crypto: testmgr -...
3310
  		memset(output, 0, dlen);
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3311
  		crypto_init_wait(&wait);
02608e02f   Laura Abbott   crypto: testmgr -...
3312
  		sg_init_one(&src, input_vec, ilen);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3313
3314
3315
3316
3317
3318
3319
  		sg_init_one(&dst, output, dlen);
  
  		req = acomp_request_alloc(tfm);
  		if (!req) {
  			pr_err("alg: acomp: request alloc failed for %s
  ",
  			       algo);
02608e02f   Laura Abbott   crypto: testmgr -...
3320
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3321
3322
3323
3324
3325
3326
  			ret = -ENOMEM;
  			goto out;
  		}
  
  		acomp_request_set_params(req, &src, &dst, ilen, dlen);
  		acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3327
  					   crypto_req_done, &wait);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3328

7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3329
  		ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3330
3331
3332
3333
  		if (ret) {
  			pr_err("alg: acomp: compression failed on test %d for %s: ret=%d
  ",
  			       i + 1, algo, -ret);
02608e02f   Laura Abbott   crypto: testmgr -...
3334
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3335
3336
3337
  			acomp_request_free(req);
  			goto out;
  		}
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3338
3339
3340
3341
  		ilen = req->dlen;
  		dlen = COMP_BUF_SIZE;
  		sg_init_one(&src, output, ilen);
  		sg_init_one(&dst, decomp_out, dlen);
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3342
  		crypto_init_wait(&wait);
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3343
  		acomp_request_set_params(req, &src, &dst, ilen, dlen);
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3344
  		ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
  		if (ret) {
  			pr_err("alg: acomp: compression failed on test %d for %s: ret=%d
  ",
  			       i + 1, algo, -ret);
  			kfree(input_vec);
  			acomp_request_free(req);
  			goto out;
  		}
  
  		if (req->dlen != ctemplate[i].inlen) {
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3355
3356
3357
3358
  			pr_err("alg: acomp: Compression test %d failed for %s: output len = %d
  ",
  			       i + 1, algo, req->dlen);
  			ret = -EINVAL;
02608e02f   Laura Abbott   crypto: testmgr -...
3359
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3360
3361
3362
  			acomp_request_free(req);
  			goto out;
  		}
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3363
  		if (memcmp(input_vec, decomp_out, req->dlen)) {
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3364
3365
3366
3367
3368
  			pr_err("alg: acomp: Compression test %d failed for %s
  ",
  			       i + 1, algo);
  			hexdump(output, req->dlen);
  			ret = -EINVAL;
02608e02f   Laura Abbott   crypto: testmgr -...
3369
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3370
3371
3372
  			acomp_request_free(req);
  			goto out;
  		}
02608e02f   Laura Abbott   crypto: testmgr -...
3373
  		kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3374
3375
3376
3377
3378
3379
  		acomp_request_free(req);
  	}
  
  	for (i = 0; i < dtcount; i++) {
  		unsigned int dlen = COMP_BUF_SIZE;
  		int ilen = dtemplate[i].inlen;
02608e02f   Laura Abbott   crypto: testmgr -...
3380
  		void *input_vec;
d2110224a   Eric Biggers   crypto: testmgr -...
3381
  		input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
02608e02f   Laura Abbott   crypto: testmgr -...
3382
3383
3384
3385
  		if (!input_vec) {
  			ret = -ENOMEM;
  			goto out;
  		}
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3386

eb0955935   Eric Biggers   crypto: testmgr -...
3387
  		memset(output, 0, dlen);
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3388
  		crypto_init_wait(&wait);
02608e02f   Laura Abbott   crypto: testmgr -...
3389
  		sg_init_one(&src, input_vec, ilen);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3390
3391
3392
3393
3394
3395
3396
  		sg_init_one(&dst, output, dlen);
  
  		req = acomp_request_alloc(tfm);
  		if (!req) {
  			pr_err("alg: acomp: request alloc failed for %s
  ",
  			       algo);
02608e02f   Laura Abbott   crypto: testmgr -...
3397
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3398
3399
3400
3401
3402
3403
  			ret = -ENOMEM;
  			goto out;
  		}
  
  		acomp_request_set_params(req, &src, &dst, ilen, dlen);
  		acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3404
  					   crypto_req_done, &wait);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3405

7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3406
  		ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3407
3408
3409
3410
  		if (ret) {
  			pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d
  ",
  			       i + 1, algo, -ret);
02608e02f   Laura Abbott   crypto: testmgr -...
3411
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3412
3413
3414
3415
3416
3417
3418
3419
3420
  			acomp_request_free(req);
  			goto out;
  		}
  
  		if (req->dlen != dtemplate[i].outlen) {
  			pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d
  ",
  			       i + 1, algo, req->dlen);
  			ret = -EINVAL;
02608e02f   Laura Abbott   crypto: testmgr -...
3421
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
  			acomp_request_free(req);
  			goto out;
  		}
  
  		if (memcmp(output, dtemplate[i].output, req->dlen)) {
  			pr_err("alg: acomp: Decompression test %d failed for %s
  ",
  			       i + 1, algo);
  			hexdump(output, req->dlen);
  			ret = -EINVAL;
02608e02f   Laura Abbott   crypto: testmgr -...
3432
  			kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3433
3434
3435
  			acomp_request_free(req);
  			goto out;
  		}
02608e02f   Laura Abbott   crypto: testmgr -...
3436
  		kfree(input_vec);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3437
3438
3439
3440
3441
3442
  		acomp_request_free(req);
  	}
  
  	ret = 0;
  
  out:
a9943a0ad   Giovanni Cabiddu   crypto: testmgr -...
3443
  	kfree(decomp_out);
eb0955935   Eric Biggers   crypto: testmgr -...
3444
  	kfree(output);
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3445
3446
  	return ret;
  }
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3447
3448
  static int test_cprng(struct crypto_rng *tfm,
  		      const struct cprng_testvec *template,
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3449
3450
3451
  		      unsigned int tcount)
  {
  	const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
fa4ef8a6a   Felipe Contreras   crypto: testmgr -...
3452
  	int err = 0, i, j, seedsize;
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
  	u8 *seed;
  	char result[32];
  
  	seedsize = crypto_rng_seedsize(tfm);
  
  	seed = kmalloc(seedsize, GFP_KERNEL);
  	if (!seed) {
  		printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
  		       "for %s
  ", algo);
  		return -ENOMEM;
  	}
  
  	for (i = 0; i < tcount; i++) {
  		memset(result, 0, 32);
  
  		memcpy(seed, template[i].v, template[i].vlen);
  		memcpy(seed + template[i].vlen, template[i].key,
  		       template[i].klen);
  		memcpy(seed + template[i].vlen + template[i].klen,
  		       template[i].dt, template[i].dtlen);
  
  		err = crypto_rng_reset(tfm, seed, seedsize);
  		if (err) {
  			printk(KERN_ERR "alg: cprng: Failed to reset rng "
  			       "for %s
  ", algo);
  			goto out;
  		}
  
  		for (j = 0; j < template[i].loops; j++) {
  			err = crypto_rng_get_bytes(tfm, result,
  						   template[i].rlen);
19e60e139   Stephan Mueller   crypto: testmgr -...
3486
  			if (err < 0) {
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3487
3488
  				printk(KERN_ERR "alg: cprng: Failed to obtain "
  				       "the correct amount of random data for "
19e60e139   Stephan Mueller   crypto: testmgr -...
3489
3490
3491
  				       "%s (requested %d)
  ", algo,
  				       template[i].rlen);
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
  				goto out;
  			}
  		}
  
  		err = memcmp(result, template[i].result,
  			     template[i].rlen);
  		if (err) {
  			printk(KERN_ERR "alg: cprng: Test %d failed for %s
  ",
  			       i, algo);
  			hexdump(result, template[i].rlen);
  			err = -EINVAL;
  			goto out;
  		}
  	}
  
  out:
  	kfree(seed);
  	return err;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
3512
3513
3514
  static int alg_test_cipher(const struct alg_test_desc *desc,
  			   const char *driver, u32 type, u32 mask)
  {
92a4c9fef   Eric Biggers   crypto: testmgr -...
3515
  	const struct cipher_test_suite *suite = &desc->suite.cipher;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
3516
  	struct crypto_cipher *tfm;
92a4c9fef   Eric Biggers   crypto: testmgr -...
3517
  	int err;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3518

eed93e0ce   Herbert Xu   crypto: testmgr -...
3519
  	tfm = crypto_alloc_cipher(driver, type, mask);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3520
3521
3522
3523
3524
3525
  	if (IS_ERR(tfm)) {
  		printk(KERN_ERR "alg: cipher: Failed to load transform for "
  		       "%s: %ld
  ", driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
92a4c9fef   Eric Biggers   crypto: testmgr -...
3526
3527
3528
  	err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
  	if (!err)
  		err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3529

1aa4ecd95   Herbert Xu   crypto: cryptomgr...
3530
3531
3532
  	crypto_free_cipher(tfm);
  	return err;
  }
da7f033dd   Herbert Xu   crypto: cryptomgr...
3533
3534
3535
  static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
  			 u32 type, u32 mask)
  {
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3536
3537
  	struct crypto_comp *comp;
  	struct crypto_acomp *acomp;
da7f033dd   Herbert Xu   crypto: cryptomgr...
3538
  	int err;
d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
  	u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
  
  	if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
  		acomp = crypto_alloc_acomp(driver, type, mask);
  		if (IS_ERR(acomp)) {
  			pr_err("alg: acomp: Failed to load transform for %s: %ld
  ",
  			       driver, PTR_ERR(acomp));
  			return PTR_ERR(acomp);
  		}
  		err = test_acomp(acomp, desc->suite.comp.comp.vecs,
  				 desc->suite.comp.decomp.vecs,
  				 desc->suite.comp.comp.count,
  				 desc->suite.comp.decomp.count);
  		crypto_free_acomp(acomp);
  	} else {
  		comp = crypto_alloc_comp(driver, type, mask);
  		if (IS_ERR(comp)) {
  			pr_err("alg: comp: Failed to load transform for %s: %ld
  ",
  			       driver, PTR_ERR(comp));
  			return PTR_ERR(comp);
  		}
da7f033dd   Herbert Xu   crypto: cryptomgr...
3562

d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3563
3564
3565
3566
  		err = test_comp(comp, desc->suite.comp.comp.vecs,
  				desc->suite.comp.decomp.vecs,
  				desc->suite.comp.comp.count,
  				desc->suite.comp.decomp.count);
da7f033dd   Herbert Xu   crypto: cryptomgr...
3567

d7db7a882   Giovanni Cabiddu   crypto: acomp - u...
3568
3569
  		crypto_free_comp(comp);
  	}
da7f033dd   Herbert Xu   crypto: cryptomgr...
3570
3571
  	return err;
  }
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3572
3573
3574
3575
  static int alg_test_crc32c(const struct alg_test_desc *desc,
  			   const char *driver, u32 type, u32 mask)
  {
  	struct crypto_shash *tfm;
cb9dde880   Eric Biggers   crypto: testmgr -...
3576
  	__le32 val;
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3577
3578
3579
3580
  	int err;
  
  	err = alg_test_hash(desc, driver, type, mask);
  	if (err)
eb5e6730d   Eric Biggers   crypto: testmgr -...
3581
  		return err;
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3582

eed93e0ce   Herbert Xu   crypto: testmgr -...
3583
  	tfm = crypto_alloc_shash(driver, type, mask);
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3584
  	if (IS_ERR(tfm)) {
eb5e6730d   Eric Biggers   crypto: testmgr -...
3585
3586
3587
3588
3589
3590
3591
3592
  		if (PTR_ERR(tfm) == -ENOENT) {
  			/*
  			 * This crc32c implementation is only available through
  			 * ahash API, not the shash API, so the remaining part
  			 * of the test is not applicable to it.
  			 */
  			return 0;
  		}
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3593
3594
3595
  		printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
  		       "%ld
  ", driver, PTR_ERR(tfm));
eb5e6730d   Eric Biggers   crypto: testmgr -...
3596
  		return PTR_ERR(tfm);
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3597
3598
3599
  	}
  
  	do {
4c5c30249   Jan-Simon Möller   crypto: LLVMLinux...
3600
3601
  		SHASH_DESC_ON_STACK(shash, tfm);
  		u32 *ctx = (u32 *)shash_desc_ctx(shash);
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3602

4c5c30249   Jan-Simon Möller   crypto: LLVMLinux...
3603
  		shash->tfm = tfm;
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3604

cb9dde880   Eric Biggers   crypto: testmgr -...
3605
  		*ctx = 420553207;
4c5c30249   Jan-Simon Möller   crypto: LLVMLinux...
3606
  		err = crypto_shash_final(shash, (u8 *)&val);
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3607
3608
3609
3610
3611
3612
  		if (err) {
  			printk(KERN_ERR "alg: crc32c: Operation failed for "
  			       "%s: %d
  ", driver, err);
  			break;
  		}
cb9dde880   Eric Biggers   crypto: testmgr -...
3613
3614
3615
3616
  		if (val != cpu_to_le32(~420553207)) {
  			pr_err("alg: crc32c: Test failed for %s: %u
  ",
  			       driver, le32_to_cpu(val));
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3617
3618
3619
3620
3621
  			err = -EINVAL;
  		}
  	} while (0);
  
  	crypto_free_shash(tfm);
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
3622
3623
  	return err;
  }
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3624
3625
3626
3627
3628
  static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
  			  u32 type, u32 mask)
  {
  	struct crypto_rng *rng;
  	int err;
eed93e0ce   Herbert Xu   crypto: testmgr -...
3629
  	rng = crypto_alloc_rng(driver, type, mask);
7647d6ce2   Jarod Wilson   crypto: testmgr -...
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
  	if (IS_ERR(rng)) {
  		printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
  		       "%ld
  ", driver, PTR_ERR(rng));
  		return PTR_ERR(rng);
  	}
  
  	err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
  
  	crypto_free_rng(rng);
  
  	return err;
  }
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3643

b13b1e0c6   Eric Biggers   crypto: testmgr -...
3644
  static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
  			  const char *driver, u32 type, u32 mask)
  {
  	int ret = -EAGAIN;
  	struct crypto_rng *drng;
  	struct drbg_test_data test_data;
  	struct drbg_string addtl, pers, testentropy;
  	unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
  
  	if (!buf)
  		return -ENOMEM;
eed93e0ce   Herbert Xu   crypto: testmgr -...
3655
  	drng = crypto_alloc_rng(driver, type, mask);
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3656
  	if (IS_ERR(drng)) {
2fc0d258b   Jarod Wilson   crypto: testmgr -...
3657
  		printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
  		       "%s
  ", driver);
  		kzfree(buf);
  		return -ENOMEM;
  	}
  
  	test_data.testentropy = &testentropy;
  	drbg_string_fill(&testentropy, test->entropy, test->entropylen);
  	drbg_string_fill(&pers, test->pers, test->perslen);
  	ret = crypto_drbg_reset_test(drng, &pers, &test_data);
  	if (ret) {
  		printk(KERN_ERR "alg: drbg: Failed to reset rng
  ");
  		goto outbuf;
  	}
  
  	drbg_string_fill(&addtl, test->addtla, test->addtllen);
  	if (pr) {
  		drbg_string_fill(&testentropy, test->entpra, test->entprlen);
  		ret = crypto_drbg_get_bytes_addtl_test(drng,
  			buf, test->expectedlen, &addtl,	&test_data);
  	} else {
  		ret = crypto_drbg_get_bytes_addtl(drng,
  			buf, test->expectedlen, &addtl);
  	}
19e60e139   Stephan Mueller   crypto: testmgr -...
3683
  	if (ret < 0) {
2fc0d258b   Jarod Wilson   crypto: testmgr -...
3684
  		printk(KERN_ERR "alg: drbg: could not obtain random data for "
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
  		       "driver %s
  ", driver);
  		goto outbuf;
  	}
  
  	drbg_string_fill(&addtl, test->addtlb, test->addtllen);
  	if (pr) {
  		drbg_string_fill(&testentropy, test->entprb, test->entprlen);
  		ret = crypto_drbg_get_bytes_addtl_test(drng,
  			buf, test->expectedlen, &addtl, &test_data);
  	} else {
  		ret = crypto_drbg_get_bytes_addtl(drng,
  			buf, test->expectedlen, &addtl);
  	}
19e60e139   Stephan Mueller   crypto: testmgr -...
3699
  	if (ret < 0) {
2fc0d258b   Jarod Wilson   crypto: testmgr -...
3700
  		printk(KERN_ERR "alg: drbg: could not obtain random data for "
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
  		       "driver %s
  ", driver);
  		goto outbuf;
  	}
  
  	ret = memcmp(test->expected, buf, test->expectedlen);
  
  outbuf:
  	crypto_free_rng(drng);
  	kzfree(buf);
  	return ret;
  }
  
  
  static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
  			 u32 type, u32 mask)
  {
  	int err = 0;
  	int pr = 0;
  	int i = 0;
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3721
  	const struct drbg_testvec *template = desc->suite.drbg.vecs;
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
  	unsigned int tcount = desc->suite.drbg.count;
  
  	if (0 == memcmp(driver, "drbg_pr_", 8))
  		pr = 1;
  
  	for (i = 0; i < tcount; i++) {
  		err = drbg_cavs_test(&template[i], pr, driver, type, mask);
  		if (err) {
  			printk(KERN_ERR "alg: drbg: Test %d failed for %s
  ",
  			       i, driver);
  			err = -EINVAL;
  			break;
  		}
  	}
  	return err;
  
  }
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3740
  static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3741
3742
3743
3744
3745
  		       const char *alg)
  {
  	struct kpp_request *req;
  	void *input_buf = NULL;
  	void *output_buf = NULL;
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3746
3747
3748
  	void *a_public = NULL;
  	void *a_ss = NULL;
  	void *shared_secret = NULL;
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3749
  	struct crypto_wait wait;
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3750
3751
3752
3753
3754
3755
3756
  	unsigned int out_len_max;
  	int err = -ENOMEM;
  	struct scatterlist src, dst;
  
  	req = kpp_request_alloc(tfm, GFP_KERNEL);
  	if (!req)
  		return err;
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3757
  	crypto_init_wait(&wait);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
  
  	err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
  	if (err < 0)
  		goto free_req;
  
  	out_len_max = crypto_kpp_maxsize(tfm);
  	output_buf = kzalloc(out_len_max, GFP_KERNEL);
  	if (!output_buf) {
  		err = -ENOMEM;
  		goto free_req;
  	}
  
  	/* Use appropriate parameter as base */
  	kpp_request_set_input(req, NULL, 0);
  	sg_init_one(&dst, output_buf, out_len_max);
  	kpp_request_set_output(req, &dst, out_len_max);
  	kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3775
  				 crypto_req_done, &wait);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3776

47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3777
  	/* Compute party A's public key */
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3778
  	err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3779
  	if (err) {
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3780
3781
  		pr_err("alg: %s: Party A: generate public key test failed. err %d
  ",
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3782
3783
3784
  		       alg, err);
  		goto free_output;
  	}
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3785
3786
3787
  
  	if (vec->genkey) {
  		/* Save party A's public key */
e3d90e52e   Christopher Diaz Riveros   crypto: testmgr -...
3788
  		a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3789
3790
3791
3792
  		if (!a_public) {
  			err = -ENOMEM;
  			goto free_output;
  		}
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
  	} else {
  		/* Verify calculated public key */
  		if (memcmp(vec->expected_a_public, sg_virt(req->dst),
  			   vec->expected_a_public_size)) {
  			pr_err("alg: %s: Party A: generate public key test failed. Invalid output
  ",
  			       alg);
  			err = -EINVAL;
  			goto free_output;
  		}
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3803
3804
3805
  	}
  
  	/* Calculate shared secret key by using counter part (b) public key. */
e3d90e52e   Christopher Diaz Riveros   crypto: testmgr -...
3806
  	input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3807
3808
3809
3810
  	if (!input_buf) {
  		err = -ENOMEM;
  		goto free_output;
  	}
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3811
3812
3813
3814
3815
  	sg_init_one(&src, input_buf, vec->b_public_size);
  	sg_init_one(&dst, output_buf, out_len_max);
  	kpp_request_set_input(req, &src, vec->b_public_size);
  	kpp_request_set_output(req, &dst, out_len_max);
  	kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3816
3817
  				 crypto_req_done, &wait);
  	err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3818
  	if (err) {
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3819
3820
  		pr_err("alg: %s: Party A: compute shared secret test failed. err %d
  ",
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3821
3822
3823
  		       alg, err);
  		goto free_all;
  	}
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3824
3825
3826
  
  	if (vec->genkey) {
  		/* Save the shared secret obtained by party A */
e3d90e52e   Christopher Diaz Riveros   crypto: testmgr -...
3827
  		a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3828
3829
3830
3831
  		if (!a_ss) {
  			err = -ENOMEM;
  			goto free_all;
  		}
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
  
  		/*
  		 * Calculate party B's shared secret by using party A's
  		 * public key.
  		 */
  		err = crypto_kpp_set_secret(tfm, vec->b_secret,
  					    vec->b_secret_size);
  		if (err < 0)
  			goto free_all;
  
  		sg_init_one(&src, a_public, vec->expected_a_public_size);
  		sg_init_one(&dst, output_buf, out_len_max);
  		kpp_request_set_input(req, &src, vec->expected_a_public_size);
  		kpp_request_set_output(req, &dst, out_len_max);
  		kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3847
3848
3849
  					 crypto_req_done, &wait);
  		err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
  				      &wait);
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
  		if (err) {
  			pr_err("alg: %s: Party B: compute shared secret failed. err %d
  ",
  			       alg, err);
  			goto free_all;
  		}
  
  		shared_secret = a_ss;
  	} else {
  		shared_secret = (void *)vec->expected_ss;
  	}
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3861
3862
3863
3864
  	/*
  	 * verify shared secret from which the user will derive
  	 * secret key by executing whatever hash it has chosen
  	 */
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3865
  	if (memcmp(shared_secret, sg_virt(req->dst),
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3866
3867
3868
3869
3870
3871
3872
3873
  		   vec->expected_ss_size)) {
  		pr_err("alg: %s: compute shared secret test failed. Invalid output
  ",
  		       alg);
  		err = -EINVAL;
  	}
  
  free_all:
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3874
  	kfree(a_ss);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3875
3876
  	kfree(input_buf);
  free_output:
47d3fd390   Tudor-Dan Ambarus   crypto: testmgr -...
3877
  	kfree(a_public);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3878
3879
3880
3881
3882
3883
3884
  	kfree(output_buf);
  free_req:
  	kpp_request_free(req);
  	return err;
  }
  
  static int test_kpp(struct crypto_kpp *tfm, const char *alg,
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3885
  		    const struct kpp_testvec *vecs, unsigned int tcount)
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
  {
  	int ret, i;
  
  	for (i = 0; i < tcount; i++) {
  		ret = do_test_kpp(tfm, vecs++, alg);
  		if (ret) {
  			pr_err("alg: %s: test failed on vector %d, err=%d
  ",
  			       alg, i + 1, ret);
  			return ret;
  		}
  	}
  	return 0;
  }
  
  static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
  			u32 type, u32 mask)
  {
  	struct crypto_kpp *tfm;
  	int err = 0;
eed93e0ce   Herbert Xu   crypto: testmgr -...
3906
  	tfm = crypto_alloc_kpp(driver, type, mask);
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
  	if (IS_ERR(tfm)) {
  		pr_err("alg: kpp: Failed to load tfm for %s: %ld
  ",
  		       driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
  	if (desc->suite.kpp.vecs)
  		err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
  			       desc->suite.kpp.count);
  
  	crypto_free_kpp(tfm);
  	return err;
  }
f1774cb89   Vitaly Chikunov   X.509: parse publ...
3920
3921
3922
3923
3924
  static u8 *test_pack_u32(u8 *dst, u32 val)
  {
  	memcpy(dst, &val, sizeof(val));
  	return dst + sizeof(val);
  }
50d2b643e   Herbert Xu   crypto: testmgr -...
3925
  static int test_akcipher_one(struct crypto_akcipher *tfm,
b13b1e0c6   Eric Biggers   crypto: testmgr -...
3926
  			     const struct akcipher_testvec *vecs)
946cc4637   Tadeusz Struk   crypto: testmgr -...
3927
  {
df27b26f0   Herbert Xu   crypto: testmgr -...
3928
  	char *xbuf[XBUFSIZE];
946cc4637   Tadeusz Struk   crypto: testmgr -...
3929
3930
3931
  	struct akcipher_request *req;
  	void *outbuf_enc = NULL;
  	void *outbuf_dec = NULL;
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3932
  	struct crypto_wait wait;
946cc4637   Tadeusz Struk   crypto: testmgr -...
3933
3934
  	unsigned int out_len_max, out_len = 0;
  	int err = -ENOMEM;
c7381b012   Vitaly Chikunov   crypto: akcipher ...
3935
  	struct scatterlist src, dst, src_tab[3];
0507de940   Vitaly Chikunov   crypto: testmgr -...
3936
3937
3938
  	const char *m, *c;
  	unsigned int m_size, c_size;
  	const char *op;
f1774cb89   Vitaly Chikunov   X.509: parse publ...
3939
  	u8 *key, *ptr;
946cc4637   Tadeusz Struk   crypto: testmgr -...
3940

df27b26f0   Herbert Xu   crypto: testmgr -...
3941
3942
  	if (testmgr_alloc_buf(xbuf))
  		return err;
946cc4637   Tadeusz Struk   crypto: testmgr -...
3943
3944
  	req = akcipher_request_alloc(tfm, GFP_KERNEL);
  	if (!req)
df27b26f0   Herbert Xu   crypto: testmgr -...
3945
  		goto free_xbuf;
946cc4637   Tadeusz Struk   crypto: testmgr -...
3946

7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
3947
  	crypto_init_wait(&wait);
946cc4637   Tadeusz Struk   crypto: testmgr -...
3948

f1774cb89   Vitaly Chikunov   X.509: parse publ...
3949
3950
3951
3952
3953
3954
3955
3956
3957
  	key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
  		      GFP_KERNEL);
  	if (!key)
  		goto free_xbuf;
  	memcpy(key, vecs->key, vecs->key_len);
  	ptr = key + vecs->key_len;
  	ptr = test_pack_u32(ptr, vecs->algo);
  	ptr = test_pack_u32(ptr, vecs->param_len);
  	memcpy(ptr, vecs->params, vecs->param_len);
22287b0b5   Tadeusz Struk   crypto: akcipher ...
3958
  	if (vecs->public_key_vec)
f1774cb89   Vitaly Chikunov   X.509: parse publ...
3959
  		err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
22287b0b5   Tadeusz Struk   crypto: akcipher ...
3960
  	else
f1774cb89   Vitaly Chikunov   X.509: parse publ...
3961
  		err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
22287b0b5   Tadeusz Struk   crypto: akcipher ...
3962
  	if (err)
946cc4637   Tadeusz Struk   crypto: testmgr -...
3963
  		goto free_req;
946cc4637   Tadeusz Struk   crypto: testmgr -...
3964

0507de940   Vitaly Chikunov   crypto: testmgr -...
3965
3966
3967
3968
  	/*
  	 * First run test which do not require a private key, such as
  	 * encrypt or verify.
  	 */
c7381b012   Vitaly Chikunov   crypto: akcipher ...
3969
3970
  	err = -ENOMEM;
  	out_len_max = crypto_akcipher_maxsize(tfm);
946cc4637   Tadeusz Struk   crypto: testmgr -...
3971
3972
3973
  	outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
  	if (!outbuf_enc)
  		goto free_req;
0507de940   Vitaly Chikunov   crypto: testmgr -...
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
  	if (!vecs->siggen_sigver_test) {
  		m = vecs->m;
  		m_size = vecs->m_size;
  		c = vecs->c;
  		c_size = vecs->c_size;
  		op = "encrypt";
  	} else {
  		/* Swap args so we could keep plaintext (digest)
  		 * in vecs->m, and cooked signature in vecs->c.
  		 */
  		m = vecs->c; /* signature */
  		m_size = vecs->c_size;
  		c = vecs->m; /* digest */
  		c_size = vecs->m_size;
  		op = "verify";
  	}
df27b26f0   Herbert Xu   crypto: testmgr -...
3990

0507de940   Vitaly Chikunov   crypto: testmgr -...
3991
3992
3993
  	if (WARN_ON(m_size > PAGE_SIZE))
  		goto free_all;
  	memcpy(xbuf[0], m, m_size);
df27b26f0   Herbert Xu   crypto: testmgr -...
3994

c7381b012   Vitaly Chikunov   crypto: akcipher ...
3995
  	sg_init_table(src_tab, 3);
df27b26f0   Herbert Xu   crypto: testmgr -...
3996
  	sg_set_buf(&src_tab[0], xbuf[0], 8);
0507de940   Vitaly Chikunov   crypto: testmgr -...
3997
  	sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
c7381b012   Vitaly Chikunov   crypto: akcipher ...
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
  	if (vecs->siggen_sigver_test) {
  		if (WARN_ON(c_size > PAGE_SIZE))
  			goto free_all;
  		memcpy(xbuf[1], c, c_size);
  		sg_set_buf(&src_tab[2], xbuf[1], c_size);
  		akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
  	} else {
  		sg_init_one(&dst, outbuf_enc, out_len_max);
  		akcipher_request_set_crypt(req, src_tab, &dst, m_size,
  					   out_len_max);
  	}
946cc4637   Tadeusz Struk   crypto: testmgr -...
4009
  	akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4010
  				      crypto_req_done, &wait);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4011

7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4012
  	err = crypto_wait_req(vecs->siggen_sigver_test ?
0507de940   Vitaly Chikunov   crypto: testmgr -...
4013
4014
  			      /* Run asymmetric signature verification */
  			      crypto_akcipher_verify(req) :
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4015
4016
  			      /* Run asymmetric encrypt */
  			      crypto_akcipher_encrypt(req), &wait);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4017
  	if (err) {
0507de940   Vitaly Chikunov   crypto: testmgr -...
4018
4019
  		pr_err("alg: akcipher: %s test failed. err %d
  ", op, err);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4020
4021
  		goto free_all;
  	}
c7381b012   Vitaly Chikunov   crypto: akcipher ...
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
  	if (!vecs->siggen_sigver_test) {
  		if (req->dst_len != c_size) {
  			pr_err("alg: akcipher: %s test failed. Invalid output len
  ",
  			       op);
  			err = -EINVAL;
  			goto free_all;
  		}
  		/* verify that encrypted message is equal to expected */
  		if (memcmp(c, outbuf_enc, c_size) != 0) {
  			pr_err("alg: akcipher: %s test failed. Invalid output
  ",
  			       op);
  			hexdump(outbuf_enc, c_size);
  			err = -EINVAL;
  			goto free_all;
  		}
946cc4637   Tadeusz Struk   crypto: testmgr -...
4039
  	}
0507de940   Vitaly Chikunov   crypto: testmgr -...
4040
4041
4042
4043
4044
  
  	/*
  	 * Don't invoke (decrypt or sign) test which require a private key
  	 * for vectors with only a public key.
  	 */
946cc4637   Tadeusz Struk   crypto: testmgr -...
4045
4046
4047
4048
4049
4050
4051
4052
4053
  	if (vecs->public_key_vec) {
  		err = 0;
  		goto free_all;
  	}
  	outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
  	if (!outbuf_dec) {
  		err = -ENOMEM;
  		goto free_all;
  	}
df27b26f0   Herbert Xu   crypto: testmgr -...
4054

0507de940   Vitaly Chikunov   crypto: testmgr -...
4055
4056
  	op = vecs->siggen_sigver_test ? "sign" : "decrypt";
  	if (WARN_ON(c_size > PAGE_SIZE))
df27b26f0   Herbert Xu   crypto: testmgr -...
4057
  		goto free_all;
0507de940   Vitaly Chikunov   crypto: testmgr -...
4058
  	memcpy(xbuf[0], c, c_size);
df27b26f0   Herbert Xu   crypto: testmgr -...
4059

0507de940   Vitaly Chikunov   crypto: testmgr -...
4060
  	sg_init_one(&src, xbuf[0], c_size);
22287b0b5   Tadeusz Struk   crypto: akcipher ...
4061
  	sg_init_one(&dst, outbuf_dec, out_len_max);
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4062
  	crypto_init_wait(&wait);
0507de940   Vitaly Chikunov   crypto: testmgr -...
4063
  	akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4064

7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4065
  	err = crypto_wait_req(vecs->siggen_sigver_test ?
0507de940   Vitaly Chikunov   crypto: testmgr -...
4066
4067
  			      /* Run asymmetric signature generation */
  			      crypto_akcipher_sign(req) :
7f3971368   Gilad Ben-Yossef   crypto: testmgr -...
4068
4069
  			      /* Run asymmetric decrypt */
  			      crypto_akcipher_decrypt(req), &wait);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4070
  	if (err) {
0507de940   Vitaly Chikunov   crypto: testmgr -...
4071
4072
  		pr_err("alg: akcipher: %s test failed. err %d
  ", op, err);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4073
4074
4075
  		goto free_all;
  	}
  	out_len = req->dst_len;
0507de940   Vitaly Chikunov   crypto: testmgr -...
4076
4077
4078
4079
  	if (out_len < m_size) {
  		pr_err("alg: akcipher: %s test failed. Invalid output len %u
  ",
  		       op, out_len);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4080
4081
4082
4083
  		err = -EINVAL;
  		goto free_all;
  	}
  	/* verify that decrypted message is equal to the original msg */
0507de940   Vitaly Chikunov   crypto: testmgr -...
4084
4085
4086
4087
  	if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
  	    memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
  		pr_err("alg: akcipher: %s test failed. Invalid output
  ", op);
50d2b643e   Herbert Xu   crypto: testmgr -...
4088
  		hexdump(outbuf_dec, out_len);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4089
4090
4091
4092
4093
4094
4095
  		err = -EINVAL;
  	}
  free_all:
  	kfree(outbuf_dec);
  	kfree(outbuf_enc);
  free_req:
  	akcipher_request_free(req);
f1774cb89   Vitaly Chikunov   X.509: parse publ...
4096
  	kfree(key);
df27b26f0   Herbert Xu   crypto: testmgr -...
4097
4098
  free_xbuf:
  	testmgr_free_buf(xbuf);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4099
4100
  	return err;
  }
50d2b643e   Herbert Xu   crypto: testmgr -...
4101
  static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
b13b1e0c6   Eric Biggers   crypto: testmgr -...
4102
4103
  			 const struct akcipher_testvec *vecs,
  			 unsigned int tcount)
946cc4637   Tadeusz Struk   crypto: testmgr -...
4104
  {
15226e480   Herbert Xu   crypto: testmgr -...
4105
4106
  	const char *algo =
  		crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
946cc4637   Tadeusz Struk   crypto: testmgr -...
4107
4108
4109
  	int ret, i;
  
  	for (i = 0; i < tcount; i++) {
50d2b643e   Herbert Xu   crypto: testmgr -...
4110
4111
4112
  		ret = test_akcipher_one(tfm, vecs++);
  		if (!ret)
  			continue;
946cc4637   Tadeusz Struk   crypto: testmgr -...
4113

15226e480   Herbert Xu   crypto: testmgr -...
4114
4115
4116
  		pr_err("alg: akcipher: test %d failed for %s, err=%d
  ",
  		       i + 1, algo, ret);
50d2b643e   Herbert Xu   crypto: testmgr -...
4117
4118
  		return ret;
  	}
946cc4637   Tadeusz Struk   crypto: testmgr -...
4119
4120
4121
4122
4123
4124
4125
4126
  	return 0;
  }
  
  static int alg_test_akcipher(const struct alg_test_desc *desc,
  			     const char *driver, u32 type, u32 mask)
  {
  	struct crypto_akcipher *tfm;
  	int err = 0;
eed93e0ce   Herbert Xu   crypto: testmgr -...
4127
  	tfm = crypto_alloc_akcipher(driver, type, mask);
946cc4637   Tadeusz Struk   crypto: testmgr -...
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
  	if (IS_ERR(tfm)) {
  		pr_err("alg: akcipher: Failed to load tfm for %s: %ld
  ",
  		       driver, PTR_ERR(tfm));
  		return PTR_ERR(tfm);
  	}
  	if (desc->suite.akcipher.vecs)
  		err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
  				    desc->suite.akcipher.count);
  
  	crypto_free_akcipher(tfm);
  	return err;
  }
863b557a8   Youquan, Song   crypto: testmgr -...
4141
4142
4143
4144
4145
  static int alg_test_null(const struct alg_test_desc *desc,
  			     const char *driver, u32 type, u32 mask)
  {
  	return 0;
  }
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4146
  #define __VECS(tv)	{ .vecs = tv, .count = ARRAY_SIZE(tv) }
da7f033dd   Herbert Xu   crypto: cryptomgr...
4147
4148
4149
  /* Please keep this list sorted by algorithm name. */
  static const struct alg_test_desc alg_test_descs[] = {
  	{
059c2a4d8   Eric Biggers   crypto: adiantum ...
4150
  		.alg = "adiantum(xchacha12,aes)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4151
  		.generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
059c2a4d8   Eric Biggers   crypto: adiantum ...
4152
4153
4154
4155
4156
4157
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(adiantum_xchacha12_aes_tv_template)
  		},
  	}, {
  		.alg = "adiantum(xchacha20,aes)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4158
  		.generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
059c2a4d8   Eric Biggers   crypto: adiantum ...
4159
4160
4161
4162
4163
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(adiantum_xchacha20_aes_tv_template)
  		},
  	}, {
b87dc2034   Ondrej Mosnacek   crypto: testmgr -...
4164
4165
4166
  		.alg = "aegis128",
  		.test = alg_test_aead,
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4167
  			.aead = __VECS(aegis128_tv_template)
b87dc2034   Ondrej Mosnacek   crypto: testmgr -...
4168
4169
  		}
  	}, {
e08ca2da3   Jarod Wilson   crypto: testmgr -...
4170
4171
4172
  		.alg = "ansi_cprng",
  		.test = alg_test_cprng,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4173
  			.cprng = __VECS(ansi_cprng_aes_tv_template)
e08ca2da3   Jarod Wilson   crypto: testmgr -...
4174
4175
  		}
  	}, {
bca4feb0d   Horia Geanta   crypto: testmgr -...
4176
4177
  		.alg = "authenc(hmac(md5),ecb(cipher_null))",
  		.test = alg_test_aead,
bca4feb0d   Horia Geanta   crypto: testmgr -...
4178
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4179
  			.aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
bca4feb0d   Horia Geanta   crypto: testmgr -...
4180
4181
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4182
  		.alg = "authenc(hmac(sha1),cbc(aes))",
e46e9a463   Horia Geanta   crypto: testmgr -...
4183
  		.test = alg_test_aead,
bcf741cb7   Herbert Xu   crypto: testmgr -...
4184
  		.fips_allowed = 1,
e46e9a463   Horia Geanta   crypto: testmgr -...
4185
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4186
  			.aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4187
4188
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4189
  		.alg = "authenc(hmac(sha1),cbc(des))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4190
  		.test = alg_test_aead,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4191
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4192
  			.aead = __VECS(hmac_sha1_des_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4193
4194
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4195
  		.alg = "authenc(hmac(sha1),cbc(des3_ede))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4196
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4197
  		.fips_allowed = 1,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4198
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4199
  			.aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
e46e9a463   Horia Geanta   crypto: testmgr -...
4200
4201
  		}
  	}, {
fb16abc2e   Marcus Meissner   crypto: testmgr -...
4202
4203
4204
4205
  		.alg = "authenc(hmac(sha1),ctr(aes))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
bca4feb0d   Horia Geanta   crypto: testmgr -...
4206
4207
  		.alg = "authenc(hmac(sha1),ecb(cipher_null))",
  		.test = alg_test_aead,
bca4feb0d   Horia Geanta   crypto: testmgr -...
4208
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4209
  			.aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4210
4211
  		}
  	}, {
8888690ef   Marcus Meissner   crypto: testmgr -...
4212
4213
4214
4215
  		.alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4216
  		.alg = "authenc(hmac(sha224),cbc(des))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4217
  		.test = alg_test_aead,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4218
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4219
  			.aead = __VECS(hmac_sha224_des_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4220
4221
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4222
  		.alg = "authenc(hmac(sha224),cbc(des3_ede))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4223
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4224
  		.fips_allowed = 1,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4225
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4226
  			.aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
bca4feb0d   Horia Geanta   crypto: testmgr -...
4227
4228
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4229
  		.alg = "authenc(hmac(sha256),cbc(aes))",
e46e9a463   Horia Geanta   crypto: testmgr -...
4230
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4231
  		.fips_allowed = 1,
e46e9a463   Horia Geanta   crypto: testmgr -...
4232
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4233
  			.aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4234
4235
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4236
  		.alg = "authenc(hmac(sha256),cbc(des))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4237
  		.test = alg_test_aead,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4238
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4239
  			.aead = __VECS(hmac_sha256_des_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4240
4241
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4242
  		.alg = "authenc(hmac(sha256),cbc(des3_ede))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4243
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4244
  		.fips_allowed = 1,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4245
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4246
  			.aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4247
4248
  		}
  	}, {
fb16abc2e   Marcus Meissner   crypto: testmgr -...
4249
4250
4251
4252
  		.alg = "authenc(hmac(sha256),ctr(aes))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
8888690ef   Marcus Meissner   crypto: testmgr -...
4253
4254
4255
4256
  		.alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4257
  		.alg = "authenc(hmac(sha384),cbc(des))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4258
  		.test = alg_test_aead,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4259
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4260
  			.aead = __VECS(hmac_sha384_des_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4261
4262
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4263
  		.alg = "authenc(hmac(sha384),cbc(des3_ede))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4264
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4265
  		.fips_allowed = 1,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4266
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4267
  			.aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
e46e9a463   Horia Geanta   crypto: testmgr -...
4268
4269
  		}
  	}, {
fb16abc2e   Marcus Meissner   crypto: testmgr -...
4270
4271
4272
4273
  		.alg = "authenc(hmac(sha384),ctr(aes))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
8888690ef   Marcus Meissner   crypto: testmgr -...
4274
4275
4276
4277
  		.alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4278
  		.alg = "authenc(hmac(sha512),cbc(aes))",
ed1afac91   Marcus Meissner   crypto: testmgr -...
4279
  		.fips_allowed = 1,
e46e9a463   Horia Geanta   crypto: testmgr -...
4280
  		.test = alg_test_aead,
e46e9a463   Horia Geanta   crypto: testmgr -...
4281
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4282
  			.aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4283
4284
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4285
  		.alg = "authenc(hmac(sha512),cbc(des))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4286
  		.test = alg_test_aead,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4287
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4288
  			.aead = __VECS(hmac_sha512_des_cbc_tv_temp)
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4289
4290
  		}
  	}, {
a4198fd4b   Herbert Xu   crypto: testmgr -...
4291
  		.alg = "authenc(hmac(sha512),cbc(des3_ede))",
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4292
  		.test = alg_test_aead,
ed1afac91   Marcus Meissner   crypto: testmgr -...
4293
  		.fips_allowed = 1,
5208ed2ca   Nitesh Lal   crypto: testmgr -...
4294
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4295
  			.aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
e46e9a463   Horia Geanta   crypto: testmgr -...
4296
4297
  		}
  	}, {
fb16abc2e   Marcus Meissner   crypto: testmgr -...
4298
4299
4300
4301
  		.alg = "authenc(hmac(sha512),ctr(aes))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
8888690ef   Marcus Meissner   crypto: testmgr -...
4302
4303
4304
4305
  		.alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4306
  		.alg = "cbc(aes)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4307
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4308
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4309
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4310
4311
  			.cipher = __VECS(aes_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4312
4313
  	}, {
  		.alg = "cbc(anubis)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4314
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4315
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4316
4317
  			.cipher = __VECS(anubis_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4318
4319
  	}, {
  		.alg = "cbc(blowfish)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4320
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4321
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4322
4323
  			.cipher = __VECS(bf_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4324
4325
  	}, {
  		.alg = "cbc(camellia)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4326
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4327
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4328
4329
  			.cipher = __VECS(camellia_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4330
  	}, {
a2c582609   Johannes Goetzfried   crypto: testmgr -...
4331
4332
4333
  		.alg = "cbc(cast5)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4334
4335
  			.cipher = __VECS(cast5_cbc_tv_template)
  		},
a2c582609   Johannes Goetzfried   crypto: testmgr -...
4336
  	}, {
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4337
4338
4339
  		.alg = "cbc(cast6)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4340
4341
  			.cipher = __VECS(cast6_cbc_tv_template)
  		},
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4342
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4343
  		.alg = "cbc(des)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4344
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4345
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4346
4347
  			.cipher = __VECS(des_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4348
4349
  	}, {
  		.alg = "cbc(des3_ede)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4350
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4351
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4352
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4353
4354
  			.cipher = __VECS(des3_ede_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4355
  	}, {
a794d8d87   Gilad Ben-Yossef   crypto: ccree - e...
4356
4357
4358
4359
4360
4361
4362
  		/* Same as cbc(aes) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "cbc(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
f0372c00a   Gilad Ben-Yossef   crypto: testmgr -...
4363
4364
4365
4366
4367
4368
  		/* Same as cbc(sm4) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "cbc(psm4)",
  		.test = alg_test_null,
  	}, {
9d25917d4   Jussi Kivilinna   crypto: testmgr -...
4369
4370
4371
  		.alg = "cbc(serpent)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4372
4373
  			.cipher = __VECS(serpent_cbc_tv_template)
  		},
9d25917d4   Jussi Kivilinna   crypto: testmgr -...
4374
  	}, {
95ba59736   Gilad Ben-Yossef   crypto: testmgr -...
4375
4376
4377
4378
4379
4380
  		.alg = "cbc(sm4)",
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(sm4_cbc_tv_template)
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4381
  		.alg = "cbc(twofish)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4382
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4383
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4384
4385
  			.cipher = __VECS(tf_cbc_tv_template)
  		},
da7f033dd   Herbert Xu   crypto: cryptomgr...
4386
  	}, {
092acf069   Ard Biesheuvel   crypto: testmgr -...
4387
4388
4389
4390
4391
4392
4393
  		.alg = "cbcmac(aes)",
  		.fips_allowed = 1,
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(aes_cbcmac_tv_template)
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4394
  		.alg = "ccm(aes)",
40153b10d   Eric Biggers   crypto: testmgr -...
4395
  		.generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
da7f033dd   Herbert Xu   crypto: cryptomgr...
4396
  		.test = alg_test_aead,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4397
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4398
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4399
  			.aead = __VECS(aes_ccm_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4400
4401
  		}
  	}, {
7da666707   Dmitry Eremin-Solenikov   crypto: testmgr -...
4402
4403
4404
4405
4406
4407
4408
  		.alg = "cfb(aes)",
  		.test = alg_test_skcipher,
  		.fips_allowed = 1,
  		.suite = {
  			.cipher = __VECS(aes_cfb_tv_template)
  		},
  	}, {
3590ebf2b   Martin Willi   crypto: testmgr -...
4409
4410
4411
  		.alg = "chacha20",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4412
4413
  			.cipher = __VECS(chacha20_tv_template)
  		},
3590ebf2b   Martin Willi   crypto: testmgr -...
4414
  	}, {
93b5e86a6   Jussi Kivilinna   crypto: add CMAC ...
4415
  		.alg = "cmac(aes)",
8f183751a   Stephan Mueller   crypto: cmac - al...
4416
  		.fips_allowed = 1,
93b5e86a6   Jussi Kivilinna   crypto: add CMAC ...
4417
4418
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4419
  			.hash = __VECS(aes_cmac128_tv_template)
93b5e86a6   Jussi Kivilinna   crypto: add CMAC ...
4420
4421
4422
  		}
  	}, {
  		.alg = "cmac(des3_ede)",
8f183751a   Stephan Mueller   crypto: cmac - al...
4423
  		.fips_allowed = 1,
93b5e86a6   Jussi Kivilinna   crypto: add CMAC ...
4424
4425
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4426
  			.hash = __VECS(des3_ede_cmac64_tv_template)
93b5e86a6   Jussi Kivilinna   crypto: add CMAC ...
4427
4428
  		}
  	}, {
e448370d7   Jussi Kivilinna   crypto: testmgr -...
4429
4430
4431
  		.alg = "compress_null",
  		.test = alg_test_null,
  	}, {
ebb3472f5   Ard Biesheuvel   crypto: testmgr -...
4432
4433
  		.alg = "crc32",
  		.test = alg_test_hash,
a8a344166   Milan Broz   crypto: testmgr -...
4434
  		.fips_allowed = 1,
ebb3472f5   Ard Biesheuvel   crypto: testmgr -...
4435
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4436
  			.hash = __VECS(crc32_tv_template)
ebb3472f5   Ard Biesheuvel   crypto: testmgr -...
4437
4438
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4439
  		.alg = "crc32c",
8e3ee85e6   Herbert Xu   crypto: crc32c - ...
4440
  		.test = alg_test_crc32c,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4441
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4442
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4443
  			.hash = __VECS(crc32c_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4444
4445
  		}
  	}, {
68411521c   Herbert Xu   Reinstate "crypto...
4446
4447
4448
4449
  		.alg = "crct10dif",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4450
  			.hash = __VECS(crct10dif_tv_template)
68411521c   Herbert Xu   Reinstate "crypto...
4451
4452
  		}
  	}, {
f7cb80f2b   Jarod Wilson   crypto: testmgr -...
4453
4454
  		.alg = "ctr(aes)",
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4455
  		.fips_allowed = 1,
f7cb80f2b   Jarod Wilson   crypto: testmgr -...
4456
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4457
  			.cipher = __VECS(aes_ctr_tv_template)
f7cb80f2b   Jarod Wilson   crypto: testmgr -...
4458
4459
  		}
  	}, {
85b63e342   Jussi Kivilinna   crypto: testmgr -...
4460
4461
4462
  		.alg = "ctr(blowfish)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4463
  			.cipher = __VECS(bf_ctr_tv_template)
85b63e342   Jussi Kivilinna   crypto: testmgr -...
4464
4465
  		}
  	}, {
0840605eb   Jussi Kivilinna   crypto: testmgr -...
4466
4467
4468
  		.alg = "ctr(camellia)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4469
  			.cipher = __VECS(camellia_ctr_tv_template)
0840605eb   Jussi Kivilinna   crypto: testmgr -...
4470
4471
  		}
  	}, {
a2c582609   Johannes Goetzfried   crypto: testmgr -...
4472
4473
4474
  		.alg = "ctr(cast5)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4475
  			.cipher = __VECS(cast5_ctr_tv_template)
a2c582609   Johannes Goetzfried   crypto: testmgr -...
4476
4477
  		}
  	}, {
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4478
4479
4480
  		.alg = "ctr(cast6)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4481
  			.cipher = __VECS(cast6_ctr_tv_template)
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4482
  		}
8163fc30d   Jussi Kivilinna   crypto: testmgr -...
4483
4484
4485
4486
  	}, {
  		.alg = "ctr(des)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4487
  			.cipher = __VECS(des_ctr_tv_template)
8163fc30d   Jussi Kivilinna   crypto: testmgr -...
4488
  		}
e080b17a8   Jussi Kivilinna   crypto: testmgr -...
4489
4490
4491
  	}, {
  		.alg = "ctr(des3_ede)",
  		.test = alg_test_skcipher,
0d8da1048   Marcelo Cerri   crypto: testmgr -...
4492
  		.fips_allowed = 1,
e080b17a8   Jussi Kivilinna   crypto: testmgr -...
4493
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4494
  			.cipher = __VECS(des3_ede_ctr_tv_template)
e080b17a8   Jussi Kivilinna   crypto: testmgr -...
4495
  		}
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4496
  	}, {
a794d8d87   Gilad Ben-Yossef   crypto: ccree - e...
4497
4498
4499
4500
4501
4502
4503
  		/* Same as ctr(aes) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "ctr(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
f0372c00a   Gilad Ben-Yossef   crypto: testmgr -...
4504
4505
4506
4507
4508
4509
4510
  
  		/* Same as ctr(sm4) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "ctr(psm4)",
  		.test = alg_test_null,
  	}, {
9d25917d4   Jussi Kivilinna   crypto: testmgr -...
4511
4512
4513
  		.alg = "ctr(serpent)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4514
  			.cipher = __VECS(serpent_ctr_tv_template)
9d25917d4   Jussi Kivilinna   crypto: testmgr -...
4515
4516
  		}
  	}, {
95ba59736   Gilad Ben-Yossef   crypto: testmgr -...
4517
4518
4519
4520
4521
4522
  		.alg = "ctr(sm4)",
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(sm4_ctr_tv_template)
  		}
  	}, {
573da6208   Jussi Kivilinna   crypto: testmgr -...
4523
4524
4525
  		.alg = "ctr(twofish)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4526
  			.cipher = __VECS(tf_ctr_tv_template)
573da6208   Jussi Kivilinna   crypto: testmgr -...
4527
4528
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4529
  		.alg = "cts(cbc(aes))",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4530
  		.test = alg_test_skcipher,
196ad6043   Gilad Ben-Yossef   crypto: testmgr -...
4531
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4532
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4533
  			.cipher = __VECS(cts_mode_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4534
4535
  		}
  	}, {
f0372c00a   Gilad Ben-Yossef   crypto: testmgr -...
4536
4537
4538
4539
4540
4541
4542
  		/* Same as cts(cbc((aes)) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "cts(cbc(paes))",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4543
4544
  		.alg = "deflate",
  		.test = alg_test_comp,
0818904d4   Milan Broz   crypto: testmgr -...
4545
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4546
4547
  		.suite = {
  			.comp = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4548
4549
  				.comp = __VECS(deflate_comp_tv_template),
  				.decomp = __VECS(deflate_decomp_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4550
4551
4552
  			}
  		}
  	}, {
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
4553
4554
4555
4556
  		.alg = "dh",
  		.test = alg_test_kpp,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4557
  			.kpp = __VECS(dh_tv_template)
802c7f1c8   Salvatore Benedetto   crypto: dh - Add ...
4558
4559
  		}
  	}, {
e448370d7   Jussi Kivilinna   crypto: testmgr -...
4560
4561
  		.alg = "digest_null",
  		.test = alg_test_null,
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4562
4563
4564
4565
4566
  	}, {
  		.alg = "drbg_nopr_ctr_aes128",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4567
  			.drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4568
4569
4570
4571
4572
4573
  		}
  	}, {
  		.alg = "drbg_nopr_ctr_aes192",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4574
  			.drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4575
4576
4577
4578
4579
4580
  		}
  	}, {
  		.alg = "drbg_nopr_ctr_aes256",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4581
  			.drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
  		}
  	}, {
  		/*
  		 * There is no need to specifically test the DRBG with every
  		 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
  		 */
  		.alg = "drbg_nopr_hmac_sha1",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_nopr_hmac_sha256",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4596
  			.drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
  		}
  	}, {
  		/* covered by drbg_nopr_hmac_sha256 test */
  		.alg = "drbg_nopr_hmac_sha384",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_nopr_hmac_sha512",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
  		.alg = "drbg_nopr_sha1",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_nopr_sha256",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4616
  			.drbg = __VECS(drbg_nopr_sha256_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
  		}
  	}, {
  		/* covered by drbg_nopr_sha256 test */
  		.alg = "drbg_nopr_sha384",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_nopr_sha512",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_ctr_aes128",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4632
  			.drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
  		}
  	}, {
  		/* covered by drbg_pr_ctr_aes128 test */
  		.alg = "drbg_pr_ctr_aes192",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_ctr_aes256",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_hmac_sha1",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_hmac_sha256",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4652
  			.drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
  		}
  	}, {
  		/* covered by drbg_pr_hmac_sha256 test */
  		.alg = "drbg_pr_hmac_sha384",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_hmac_sha512",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
  		.alg = "drbg_pr_sha1",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_sha256",
  		.test = alg_test_drbg,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4672
  			.drbg = __VECS(drbg_pr_sha256_tv_template)
64d1cdfbe   Stephan Mueller   crypto: drbg - Ad...
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
  		}
  	}, {
  		/* covered by drbg_pr_sha256 test */
  		.alg = "drbg_pr_sha384",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
  		.alg = "drbg_pr_sha512",
  		.fips_allowed = 1,
  		.test = alg_test_null,
e448370d7   Jussi Kivilinna   crypto: testmgr -...
4683
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4684
  		.alg = "ecb(aes)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4685
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4686
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4687
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4688
  			.cipher = __VECS(aes_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4689
4690
4691
  		}
  	}, {
  		.alg = "ecb(anubis)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4692
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4693
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4694
  			.cipher = __VECS(anubis_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4695
4696
4697
  		}
  	}, {
  		.alg = "ecb(arc4)",
611a23c2d   Ard Biesheuvel   crypto: arc4 - re...
4698
  		.generic_driver = "ecb(arc4)-generic",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4699
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4700
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4701
  			.cipher = __VECS(arc4_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4702
4703
4704
  		}
  	}, {
  		.alg = "ecb(blowfish)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4705
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4706
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4707
  			.cipher = __VECS(bf_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4708
4709
4710
  		}
  	}, {
  		.alg = "ecb(camellia)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4711
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4712
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4713
  			.cipher = __VECS(camellia_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4714
4715
4716
  		}
  	}, {
  		.alg = "ecb(cast5)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4717
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4718
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4719
  			.cipher = __VECS(cast5_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4720
4721
4722
  		}
  	}, {
  		.alg = "ecb(cast6)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4723
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4724
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4725
  			.cipher = __VECS(cast6_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4726
4727
  		}
  	}, {
e448370d7   Jussi Kivilinna   crypto: testmgr -...
4728
4729
  		.alg = "ecb(cipher_null)",
  		.test = alg_test_null,
6175ca2ba   Milan Broz   crypto: testmgr -...
4730
  		.fips_allowed = 1,
e448370d7   Jussi Kivilinna   crypto: testmgr -...
4731
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4732
  		.alg = "ecb(des)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4733
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4734
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4735
  			.cipher = __VECS(des_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4736
4737
4738
  		}
  	}, {
  		.alg = "ecb(des3_ede)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4739
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4740
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4741
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4742
  			.cipher = __VECS(des3_ede_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4743
4744
  		}
  	}, {
66e5bd006   Jussi Kivilinna   crypto: testmgr -...
4745
4746
4747
4748
  		.alg = "ecb(fcrypt)",
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4749
4750
  				.vecs = fcrypt_pcbc_tv_template,
  				.count = 1
66e5bd006   Jussi Kivilinna   crypto: testmgr -...
4751
4752
4753
  			}
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4754
  		.alg = "ecb(khazad)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4755
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4756
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4757
  			.cipher = __VECS(khazad_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4758
4759
  		}
  	}, {
15f47ce57   Gilad Ben-Yossef   crypto: testmgr -...
4760
4761
4762
4763
4764
4765
4766
  		/* Same as ecb(aes) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "ecb(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4767
  		.alg = "ecb(seed)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4768
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4769
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4770
  			.cipher = __VECS(seed_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4771
4772
4773
  		}
  	}, {
  		.alg = "ecb(serpent)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4774
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4775
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4776
  			.cipher = __VECS(serpent_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4777
4778
  		}
  	}, {
cd83a8a7c   Gilad Ben-Yossef   crypto: testmgr -...
4779
4780
4781
  		.alg = "ecb(sm4)",
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4782
  			.cipher = __VECS(sm4_tv_template)
cd83a8a7c   Gilad Ben-Yossef   crypto: testmgr -...
4783
4784
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4785
  		.alg = "ecb(tea)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4786
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4787
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4788
  			.cipher = __VECS(tea_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4789
4790
4791
  		}
  	}, {
  		.alg = "ecb(tnepres)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4792
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4793
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4794
  			.cipher = __VECS(tnepres_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4795
4796
4797
  		}
  	}, {
  		.alg = "ecb(twofish)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4798
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4799
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4800
  			.cipher = __VECS(tf_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4801
4802
4803
  		}
  	}, {
  		.alg = "ecb(xeta)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4804
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4805
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4806
  			.cipher = __VECS(xeta_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4807
4808
4809
  		}
  	}, {
  		.alg = "ecb(xtea)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4810
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4811
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4812
  			.cipher = __VECS(xtea_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4813
4814
  		}
  	}, {
3c4b23901   Salvatore Benedetto   crypto: ecdh - Ad...
4815
4816
4817
4818
  		.alg = "ecdh",
  		.test = alg_test_kpp,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4819
  			.kpp = __VECS(ecdh_tv_template)
3c4b23901   Salvatore Benedetto   crypto: ecdh - Ad...
4820
4821
  		}
  	}, {
32fbdbd32   Vitaly Chikunov   crypto: ecrdsa - ...
4822
4823
4824
4825
4826
4827
  		.alg = "ecrdsa",
  		.test = alg_test_akcipher,
  		.suite = {
  			.akcipher = __VECS(ecrdsa_tv_template)
  		}
  	}, {
f975abb23   Ard Biesheuvel   crypto: essiv - a...
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
  		.alg = "essiv(authenc(hmac(sha256),cbc(aes)),sha256)",
  		.test = alg_test_aead,
  		.fips_allowed = 1,
  		.suite = {
  			.aead = __VECS(essiv_hmac_sha256_aes_cbc_tv_temp)
  		}
  	}, {
  		.alg = "essiv(cbc(aes),sha256)",
  		.test = alg_test_skcipher,
  		.fips_allowed = 1,
  		.suite = {
  			.cipher = __VECS(essiv_aes_cbc_tv_template)
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4842
  		.alg = "gcm(aes)",
40153b10d   Eric Biggers   crypto: testmgr -...
4843
  		.generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
da7f033dd   Herbert Xu   crypto: cryptomgr...
4844
  		.test = alg_test_aead,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4845
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4846
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
4847
  			.aead = __VECS(aes_gcm_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4848
4849
  		}
  	}, {
507069c91   Youquan, Song   crypto: testmgr -...
4850
4851
  		.alg = "ghash",
  		.test = alg_test_hash,
18c0ebd2d   Jarod Wilson   crypto: testmgr -...
4852
  		.fips_allowed = 1,
507069c91   Youquan, Song   crypto: testmgr -...
4853
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4854
  			.hash = __VECS(ghash_tv_template)
507069c91   Youquan, Song   crypto: testmgr -...
4855
4856
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4857
4858
4859
  		.alg = "hmac(md5)",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4860
  			.hash = __VECS(hmac_md5_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4861
4862
4863
4864
4865
  		}
  	}, {
  		.alg = "hmac(rmd128)",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4866
  			.hash = __VECS(hmac_rmd128_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4867
4868
4869
4870
4871
  		}
  	}, {
  		.alg = "hmac(rmd160)",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4872
  			.hash = __VECS(hmac_rmd160_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4873
4874
4875
4876
  		}
  	}, {
  		.alg = "hmac(sha1)",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4877
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4878
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4879
  			.hash = __VECS(hmac_sha1_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4880
4881
4882
4883
  		}
  	}, {
  		.alg = "hmac(sha224)",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4884
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4885
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4886
  			.hash = __VECS(hmac_sha224_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4887
4888
4889
4890
  		}
  	}, {
  		.alg = "hmac(sha256)",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4891
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4892
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4893
  			.hash = __VECS(hmac_sha256_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4894
4895
  		}
  	}, {
98eca72fa   raveendra padasalagi   crypto: sha3 - Ad...
4896
4897
4898
4899
  		.alg = "hmac(sha3-224)",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4900
  			.hash = __VECS(hmac_sha3_224_tv_template)
98eca72fa   raveendra padasalagi   crypto: sha3 - Ad...
4901
4902
4903
4904
4905
4906
  		}
  	}, {
  		.alg = "hmac(sha3-256)",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4907
  			.hash = __VECS(hmac_sha3_256_tv_template)
98eca72fa   raveendra padasalagi   crypto: sha3 - Ad...
4908
4909
4910
4911
4912
4913
  		}
  	}, {
  		.alg = "hmac(sha3-384)",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4914
  			.hash = __VECS(hmac_sha3_384_tv_template)
98eca72fa   raveendra padasalagi   crypto: sha3 - Ad...
4915
4916
4917
4918
4919
4920
  		}
  	}, {
  		.alg = "hmac(sha3-512)",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4921
  			.hash = __VECS(hmac_sha3_512_tv_template)
98eca72fa   raveendra padasalagi   crypto: sha3 - Ad...
4922
4923
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4924
4925
  		.alg = "hmac(sha384)",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4926
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4927
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4928
  			.hash = __VECS(hmac_sha384_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4929
4930
4931
4932
  		}
  	}, {
  		.alg = "hmac(sha512)",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
4933
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4934
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
4935
  			.hash = __VECS(hmac_sha512_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4936
4937
  		}
  	}, {
25a0b9d4e   Vitaly Chikunov   crypto: streebog ...
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
  		.alg = "hmac(streebog256)",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(hmac_streebog256_tv_template)
  		}
  	}, {
  		.alg = "hmac(streebog512)",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(hmac_streebog512_tv_template)
  		}
  	}, {
bb5530e40   Stephan Mueller   crypto: jitterent...
4950
4951
4952
4953
  		.alg = "jitterentropy_rng",
  		.fips_allowed = 1,
  		.test = alg_test_null,
  	}, {
353519887   Stephan Mueller   crypto: keywrap -...
4954
4955
4956
4957
  		.alg = "kw(aes)",
  		.test = alg_test_skcipher,
  		.fips_allowed = 1,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4958
  			.cipher = __VECS(aes_kw_tv_template)
353519887   Stephan Mueller   crypto: keywrap -...
4959
4960
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
4961
  		.alg = "lrw(aes)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4962
  		.generic_driver = "lrw(ecb(aes-generic))",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
4963
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
4964
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4965
  			.cipher = __VECS(aes_lrw_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
4966
4967
  		}
  	}, {
0840605eb   Jussi Kivilinna   crypto: testmgr -...
4968
  		.alg = "lrw(camellia)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4969
  		.generic_driver = "lrw(ecb(camellia-generic))",
0840605eb   Jussi Kivilinna   crypto: testmgr -...
4970
4971
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4972
  			.cipher = __VECS(camellia_lrw_tv_template)
0840605eb   Jussi Kivilinna   crypto: testmgr -...
4973
4974
  		}
  	}, {
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4975
  		.alg = "lrw(cast6)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4976
  		.generic_driver = "lrw(ecb(cast6-generic))",
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4977
4978
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4979
  			.cipher = __VECS(cast6_lrw_tv_template)
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
4980
4981
  		}
  	}, {
d7bfc0fa3   Jussi Kivilinna   crypto: testmgr -...
4982
  		.alg = "lrw(serpent)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4983
  		.generic_driver = "lrw(ecb(serpent-generic))",
d7bfc0fa3   Jussi Kivilinna   crypto: testmgr -...
4984
4985
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4986
  			.cipher = __VECS(serpent_lrw_tv_template)
d7bfc0fa3   Jussi Kivilinna   crypto: testmgr -...
4987
4988
  		}
  	}, {
0b2a15510   Jussi Kivilinna   crypto: testmgr -...
4989
  		.alg = "lrw(twofish)",
d435e10e6   Eric Biggers   crypto: testmgr -...
4990
  		.generic_driver = "lrw(ecb(twofish-generic))",
0b2a15510   Jussi Kivilinna   crypto: testmgr -...
4991
4992
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
4993
  			.cipher = __VECS(tf_lrw_tv_template)
0b2a15510   Jussi Kivilinna   crypto: testmgr -...
4994
4995
  		}
  	}, {
1443cc9bc   KOVACS Krisztian   crypto: testmgr -...
4996
4997
4998
4999
5000
  		.alg = "lz4",
  		.test = alg_test_comp,
  		.fips_allowed = 1,
  		.suite = {
  			.comp = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5001
5002
  				.comp = __VECS(lz4_comp_tv_template),
  				.decomp = __VECS(lz4_decomp_tv_template)
1443cc9bc   KOVACS Krisztian   crypto: testmgr -...
5003
5004
5005
5006
5007
5008
5009
5010
  			}
  		}
  	}, {
  		.alg = "lz4hc",
  		.test = alg_test_comp,
  		.fips_allowed = 1,
  		.suite = {
  			.comp = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5011
5012
  				.comp = __VECS(lz4hc_comp_tv_template),
  				.decomp = __VECS(lz4hc_decomp_tv_template)
1443cc9bc   KOVACS Krisztian   crypto: testmgr -...
5013
5014
5015
  			}
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5016
5017
  		.alg = "lzo",
  		.test = alg_test_comp,
0818904d4   Milan Broz   crypto: testmgr -...
5018
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5019
5020
  		.suite = {
  			.comp = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5021
5022
  				.comp = __VECS(lzo_comp_tv_template),
  				.decomp = __VECS(lzo_decomp_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5023
5024
5025
  			}
  		}
  	}, {
f248caf9a   Hannah Pan   crypto: testmgr -...
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
  		.alg = "lzo-rle",
  		.test = alg_test_comp,
  		.fips_allowed = 1,
  		.suite = {
  			.comp = {
  				.comp = __VECS(lzorle_comp_tv_template),
  				.decomp = __VECS(lzorle_decomp_tv_template)
  			}
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5036
5037
5038
  		.alg = "md4",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5039
  			.hash = __VECS(md4_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5040
5041
5042
5043
5044
  		}
  	}, {
  		.alg = "md5",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5045
  			.hash = __VECS(md5_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5046
5047
5048
5049
5050
  		}
  	}, {
  		.alg = "michael_mic",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5051
  			.hash = __VECS(michael_mic_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5052
5053
  		}
  	}, {
26609a21a   Eric Biggers   crypto: nhpoly130...
5054
5055
5056
5057
5058
5059
  		.alg = "nhpoly1305",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(nhpoly1305_tv_template)
  		}
  	}, {
ba0e14acc   Puneet Saxena   crypto: testmgr -...
5060
5061
5062
5063
  		.alg = "ofb(aes)",
  		.test = alg_test_skcipher,
  		.fips_allowed = 1,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5064
  			.cipher = __VECS(aes_ofb_tv_template)
ba0e14acc   Puneet Saxena   crypto: testmgr -...
5065
5066
  		}
  	}, {
a794d8d87   Gilad Ben-Yossef   crypto: ccree - e...
5067
5068
5069
5070
5071
5072
5073
  		/* Same as ofb(aes) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "ofb(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5074
  		.alg = "pcbc(fcrypt)",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5075
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5076
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5077
  			.cipher = __VECS(fcrypt_pcbc_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5078
5079
  		}
  	}, {
1207107c7   Stephan Mueller   crypto: testmgr -...
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
  		.alg = "pkcs1pad(rsa,sha224)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
  		.alg = "pkcs1pad(rsa,sha256)",
  		.test = alg_test_akcipher,
  		.fips_allowed = 1,
  		.suite = {
  			.akcipher = __VECS(pkcs1pad_rsa_tv_template)
  		}
  	}, {
  		.alg = "pkcs1pad(rsa,sha384)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
  		.alg = "pkcs1pad(rsa,sha512)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
eee9dc616   Martin Willi   crypto: testmgr -...
5099
5100
5101
  		.alg = "poly1305",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5102
  			.hash = __VECS(poly1305_tv_template)
eee9dc616   Martin Willi   crypto: testmgr -...
5103
5104
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5105
  		.alg = "rfc3686(ctr(aes))",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5106
  		.test = alg_test_skcipher,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5107
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5108
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5109
  			.cipher = __VECS(aes_ctr_rfc3686_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5110
5111
  		}
  	}, {
3f31a740c   Herbert Xu   crypto: testmgr -...
5112
  		.alg = "rfc4106(gcm(aes))",
40153b10d   Eric Biggers   crypto: testmgr -...
5113
  		.generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
69435b94d   Adrian Hoban   crypto: rfc4106 -...
5114
  		.test = alg_test_aead,
db71f29a1   Jarod Wilson   crypto: testmgr -...
5115
  		.fips_allowed = 1,
69435b94d   Adrian Hoban   crypto: rfc4106 -...
5116
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
5117
  			.aead = __VECS(aes_gcm_rfc4106_tv_template)
69435b94d   Adrian Hoban   crypto: rfc4106 -...
5118
5119
  		}
  	}, {
544c436a8   Herbert Xu   crypto: testmgr -...
5120
  		.alg = "rfc4309(ccm(aes))",
40153b10d   Eric Biggers   crypto: testmgr -...
5121
  		.generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
5d667322a   Jarod Wilson   crypto: testmgr -...
5122
  		.test = alg_test_aead,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5123
  		.fips_allowed = 1,
5d667322a   Jarod Wilson   crypto: testmgr -...
5124
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
5125
  			.aead = __VECS(aes_ccm_rfc4309_tv_template)
5d667322a   Jarod Wilson   crypto: testmgr -...
5126
5127
  		}
  	}, {
bb68745e0   Herbert Xu   Revert "crypto: t...
5128
  		.alg = "rfc4543(gcm(aes))",
40153b10d   Eric Biggers   crypto: testmgr -...
5129
  		.generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
e9b7441a9   Jussi Kivilinna   crypto: testmgr -...
5130
5131
  		.test = alg_test_aead,
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
5132
  			.aead = __VECS(aes_gcm_rfc4543_tv_template)
e9b7441a9   Jussi Kivilinna   crypto: testmgr -...
5133
5134
  		}
  	}, {
af2b76b53   Martin Willi   crypto: testmgr -...
5135
5136
5137
  		.alg = "rfc7539(chacha20,poly1305)",
  		.test = alg_test_aead,
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
5138
  			.aead = __VECS(rfc7539_tv_template)
af2b76b53   Martin Willi   crypto: testmgr -...
5139
5140
  		}
  	}, {
5900758df   Martin Willi   crypto: testmgr -...
5141
5142
5143
  		.alg = "rfc7539esp(chacha20,poly1305)",
  		.test = alg_test_aead,
  		.suite = {
a0d608ee5   Eric Biggers   crypto: testmgr -...
5144
  			.aead = __VECS(rfc7539esp_tv_template)
5900758df   Martin Willi   crypto: testmgr -...
5145
5146
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5147
5148
5149
  		.alg = "rmd128",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5150
  			.hash = __VECS(rmd128_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5151
5152
5153
5154
5155
  		}
  	}, {
  		.alg = "rmd160",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5156
  			.hash = __VECS(rmd160_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5157
5158
5159
5160
5161
  		}
  	}, {
  		.alg = "rmd256",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5162
  			.hash = __VECS(rmd256_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5163
5164
5165
5166
5167
  		}
  	}, {
  		.alg = "rmd320",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5168
  			.hash = __VECS(rmd320_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5169
5170
  		}
  	}, {
946cc4637   Tadeusz Struk   crypto: testmgr -...
5171
5172
5173
5174
  		.alg = "rsa",
  		.test = alg_test_akcipher,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5175
  			.akcipher = __VECS(rsa_tv_template)
946cc4637   Tadeusz Struk   crypto: testmgr -...
5176
5177
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5178
  		.alg = "salsa20",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5179
  		.test = alg_test_skcipher,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5180
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5181
  			.cipher = __VECS(salsa20_stream_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5182
5183
5184
5185
  		}
  	}, {
  		.alg = "sha1",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5186
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5187
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5188
  			.hash = __VECS(sha1_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5189
5190
5191
5192
  		}
  	}, {
  		.alg = "sha224",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5193
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5194
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5195
  			.hash = __VECS(sha224_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5196
5197
5198
5199
  		}
  	}, {
  		.alg = "sha256",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5200
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5201
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5202
  			.hash = __VECS(sha256_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5203
5204
  		}
  	}, {
79cc6ab89   raveendra padasalagi   crypto: sha3 - Ad...
5205
5206
5207
5208
  		.alg = "sha3-224",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5209
  			.hash = __VECS(sha3_224_tv_template)
79cc6ab89   raveendra padasalagi   crypto: sha3 - Ad...
5210
5211
5212
5213
5214
5215
  		}
  	}, {
  		.alg = "sha3-256",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5216
  			.hash = __VECS(sha3_256_tv_template)
79cc6ab89   raveendra padasalagi   crypto: sha3 - Ad...
5217
5218
5219
5220
5221
5222
  		}
  	}, {
  		.alg = "sha3-384",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5223
  			.hash = __VECS(sha3_384_tv_template)
79cc6ab89   raveendra padasalagi   crypto: sha3 - Ad...
5224
5225
5226
5227
5228
5229
  		}
  	}, {
  		.alg = "sha3-512",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5230
  			.hash = __VECS(sha3_512_tv_template)
79cc6ab89   raveendra padasalagi   crypto: sha3 - Ad...
5231
5232
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5233
5234
  		.alg = "sha384",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5235
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5236
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5237
  			.hash = __VECS(sha384_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5238
5239
5240
5241
  		}
  	}, {
  		.alg = "sha512",
  		.test = alg_test_hash,
a1915d51e   Jarod Wilson   crypto: testmgr -...
5242
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5243
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5244
  			.hash = __VECS(sha512_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5245
5246
  		}
  	}, {
b7e275304   Gilad Ben-Yossef   crypto: sm3 - add...
5247
5248
5249
5250
5251
5252
  		.alg = "sm3",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(sm3_tv_template)
  		}
  	}, {
25a0b9d4e   Vitaly Chikunov   crypto: streebog ...
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
  		.alg = "streebog256",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(streebog256_tv_template)
  		}
  	}, {
  		.alg = "streebog512",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(streebog512_tv_template)
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5265
5266
5267
  		.alg = "tgr128",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5268
  			.hash = __VECS(tgr128_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5269
5270
5271
5272
5273
  		}
  	}, {
  		.alg = "tgr160",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5274
  			.hash = __VECS(tgr160_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5275
5276
5277
5278
5279
  		}
  	}, {
  		.alg = "tgr192",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5280
  			.hash = __VECS(tgr192_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5281
5282
  		}
  	}, {
a9278aade   Radu Alexe   crypto: add suppo...
5283
5284
5285
5286
5287
5288
5289
5290
5291
  		.alg = "tls10(hmac(sha1),cbc(aes))",
  		.test = alg_test_tls,
  		.suite = {
  			.tls = {
  				.enc = __VECS(tls_enc_tv_template),
  				.dec = __VECS(tls_dec_tv_template)
  			}
  		}
  	}, {
ed331adab   Eric Biggers   crypto: vmac - ad...
5292
5293
5294
5295
5296
5297
  		.alg = "vmac64(aes)",
  		.test = alg_test_hash,
  		.suite = {
  			.hash = __VECS(vmac64_aes_tv_template)
  		}
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5298
5299
5300
  		.alg = "wp256",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5301
  			.hash = __VECS(wp256_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5302
5303
5304
5305
5306
  		}
  	}, {
  		.alg = "wp384",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5307
  			.hash = __VECS(wp384_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5308
5309
5310
5311
5312
  		}
  	}, {
  		.alg = "wp512",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5313
  			.hash = __VECS(wp512_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5314
5315
5316
5317
5318
  		}
  	}, {
  		.alg = "xcbc(aes)",
  		.test = alg_test_hash,
  		.suite = {
21c8e7203   Ard Biesheuvel   crypto: testmgr -...
5319
  			.hash = __VECS(aes_xcbc128_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5320
5321
  		}
  	}, {
aa7624093   Eric Biggers   crypto: chacha - ...
5322
5323
5324
5325
5326
5327
  		.alg = "xchacha12",
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(xchacha12_tv_template)
  		},
  	}, {
de61d7ae5   Eric Biggers   crypto: chacha20-...
5328
5329
5330
5331
5332
5333
  		.alg = "xchacha20",
  		.test = alg_test_skcipher,
  		.suite = {
  			.cipher = __VECS(xchacha20_tv_template)
  		},
  	}, {
da7f033dd   Herbert Xu   crypto: cryptomgr...
5334
  		.alg = "xts(aes)",
d435e10e6   Eric Biggers   crypto: testmgr -...
5335
  		.generic_driver = "xts(ecb(aes-generic))",
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5336
  		.test = alg_test_skcipher,
2918aa8d1   Jarod Wilson   crypto: testmgr -...
5337
  		.fips_allowed = 1,
da7f033dd   Herbert Xu   crypto: cryptomgr...
5338
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5339
  			.cipher = __VECS(aes_xts_tv_template)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5340
  		}
0c01aed50   Geert Uytterhoeven   crypto: testmgr -...
5341
  	}, {
0840605eb   Jussi Kivilinna   crypto: testmgr -...
5342
  		.alg = "xts(camellia)",
d435e10e6   Eric Biggers   crypto: testmgr -...
5343
  		.generic_driver = "xts(ecb(camellia-generic))",
0840605eb   Jussi Kivilinna   crypto: testmgr -...
5344
5345
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5346
  			.cipher = __VECS(camellia_xts_tv_template)
0840605eb   Jussi Kivilinna   crypto: testmgr -...
5347
5348
  		}
  	}, {
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
5349
  		.alg = "xts(cast6)",
d435e10e6   Eric Biggers   crypto: testmgr -...
5350
  		.generic_driver = "xts(ecb(cast6-generic))",
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
5351
5352
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5353
  			.cipher = __VECS(cast6_xts_tv_template)
9b8b04051   Johannes Goetzfried   crypto: testmgr -...
5354
5355
  		}
  	}, {
15f47ce57   Gilad Ben-Yossef   crypto: testmgr -...
5356
5357
5358
5359
5360
5361
5362
  		/* Same as xts(aes) except the key is stored in
  		 * hardware secure memory which we reference by index
  		 */
  		.alg = "xts(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
18be20b94   Jussi Kivilinna   crypto: testmgr -...
5363
  		.alg = "xts(serpent)",
d435e10e6   Eric Biggers   crypto: testmgr -...
5364
  		.generic_driver = "xts(ecb(serpent-generic))",
18be20b94   Jussi Kivilinna   crypto: testmgr -...
5365
5366
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5367
  			.cipher = __VECS(serpent_xts_tv_template)
18be20b94   Jussi Kivilinna   crypto: testmgr -...
5368
5369
  		}
  	}, {
aed265b9f   Jussi Kivilinna   crypto: testmgr -...
5370
  		.alg = "xts(twofish)",
d435e10e6   Eric Biggers   crypto: testmgr -...
5371
  		.generic_driver = "xts(ecb(twofish-generic))",
aed265b9f   Jussi Kivilinna   crypto: testmgr -...
5372
5373
  		.test = alg_test_skcipher,
  		.suite = {
92a4c9fef   Eric Biggers   crypto: testmgr -...
5374
  			.cipher = __VECS(tf_xts_tv_template)
aed265b9f   Jussi Kivilinna   crypto: testmgr -...
5375
  		}
a368f43d6   Giovanni Cabiddu   crypto: scomp - a...
5376
  	}, {
15f47ce57   Gilad Ben-Yossef   crypto: testmgr -...
5377
5378
5379
5380
5381
5382
5383
5384
  		.alg = "xts4096(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
  		.alg = "xts512(paes)",
  		.test = alg_test_null,
  		.fips_allowed = 1,
  	}, {
67882e764   Nikolay Borisov   crypto: xxhash - ...
5385
5386
5387
5388
5389
5390
5391
  		.alg = "xxhash64",
  		.test = alg_test_hash,
  		.fips_allowed = 1,
  		.suite = {
  			.hash = __VECS(xxhash64_tv_template)
  		}
  	}, {
a368f43d6   Giovanni Cabiddu   crypto: scomp - a...
5392
5393
5394
5395
5396
5397
5398
5399
5400
  		.alg = "zlib-deflate",
  		.test = alg_test_comp,
  		.fips_allowed = 1,
  		.suite = {
  			.comp = {
  				.comp = __VECS(zlib_deflate_comp_tv_template),
  				.decomp = __VECS(zlib_deflate_decomp_tv_template)
  			}
  		}
d28fc3dbe   Nick Terrell   crypto: zstd - Ad...
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
  	}, {
  		.alg = "zstd",
  		.test = alg_test_comp,
  		.fips_allowed = 1,
  		.suite = {
  			.comp = {
  				.comp = __VECS(zstd_comp_tv_template),
  				.decomp = __VECS(zstd_decomp_tv_template)
  			}
  		}
da7f033dd   Herbert Xu   crypto: cryptomgr...
5411
5412
  	}
  };
3f47a03df   Eric Biggers   crypto: testmgr -...
5413
  static void alg_check_test_descs_order(void)
5714758b5   Jussi Kivilinna   crypto: testmgr -...
5414
5415
  {
  	int i;
5714758b5   Jussi Kivilinna   crypto: testmgr -...
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
  	for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
  		int diff = strcmp(alg_test_descs[i - 1].alg,
  				  alg_test_descs[i].alg);
  
  		if (WARN_ON(diff > 0)) {
  			pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'
  ",
  				alg_test_descs[i - 1].alg,
  				alg_test_descs[i].alg);
  		}
  
  		if (WARN_ON(diff == 0)) {
  			pr_warn("testmgr: duplicate alg_test_descs entry: '%s'
  ",
  				alg_test_descs[i].alg);
  		}
  	}
  }
3f47a03df   Eric Biggers   crypto: testmgr -...
5434
5435
  static void alg_check_testvec_configs(void)
  {
4e7babba3   Eric Biggers   crypto: testmgr -...
5436
5437
5438
5439
5440
  	int i;
  
  	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
  		WARN_ON(!valid_testvec_config(
  				&default_cipher_testvec_configs[i]));
4cc2dcf95   Eric Biggers   crypto: testmgr -...
5441
5442
5443
5444
  
  	for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
  		WARN_ON(!valid_testvec_config(
  				&default_hash_testvec_configs[i]));
3f47a03df   Eric Biggers   crypto: testmgr -...
5445
5446
5447
5448
5449
5450
  }
  
  static void testmgr_onetime_init(void)
  {
  	alg_check_test_descs_order();
  	alg_check_testvec_configs();
5b2706a4d   Eric Biggers   crypto: testmgr -...
5451
5452
5453
5454
5455
  
  #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
  	pr_warn("alg: extra crypto tests enabled.  This is intended for developer use only.
  ");
  #endif
3f47a03df   Eric Biggers   crypto: testmgr -...
5456
  }
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5457
  static int alg_find_test(const char *alg)
da7f033dd   Herbert Xu   crypto: cryptomgr...
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
  {
  	int start = 0;
  	int end = ARRAY_SIZE(alg_test_descs);
  
  	while (start < end) {
  		int i = (start + end) / 2;
  		int diff = strcmp(alg_test_descs[i].alg, alg);
  
  		if (diff > 0) {
  			end = i;
  			continue;
  		}
  
  		if (diff < 0) {
  			start = i + 1;
  			continue;
  		}
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5475
5476
5477
5478
5479
5480
5481
5482
5483
  		return i;
  	}
  
  	return -1;
  }
  
  int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
  {
  	int i;
a68f6610d   Herbert Xu   crypto: testmgr -...
5484
  	int j;
d12d6b6d3   Neil Horman   crypto: testmgr -...
5485
  	int rc;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5486

9e5c9fe4c   Richard W.M. Jones   crypto: testmgr -...
5487
5488
5489
5490
5491
  	if (!fips_enabled && notests) {
  		printk_once(KERN_INFO "alg: self-tests disabled
  ");
  		return 0;
  	}
3f47a03df   Eric Biggers   crypto: testmgr -...
5492
  	DO_ONCE(testmgr_onetime_init);
5714758b5   Jussi Kivilinna   crypto: testmgr -...
5493

1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
  	if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
  		char nalg[CRYPTO_MAX_ALG_NAME];
  
  		if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
  		    sizeof(nalg))
  			return -ENAMETOOLONG;
  
  		i = alg_find_test(nalg);
  		if (i < 0)
  			goto notest;
a3bef3a31   Jarod Wilson   crypto: testmgr -...
5504
5505
  		if (fips_enabled && !alg_test_descs[i].fips_allowed)
  			goto non_fips_alg;
941fb3287   Jarod Wilson   crypto: testmgr -...
5506
5507
  		rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
  		goto test_done;
da7f033dd   Herbert Xu   crypto: cryptomgr...
5508
  	}
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5509
  	i = alg_find_test(alg);
a68f6610d   Herbert Xu   crypto: testmgr -...
5510
5511
  	j = alg_find_test(driver);
  	if (i < 0 && j < 0)
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5512
  		goto notest;
a68f6610d   Herbert Xu   crypto: testmgr -...
5513
5514
  	if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
  			     (j >= 0 && !alg_test_descs[j].fips_allowed)))
a3bef3a31   Jarod Wilson   crypto: testmgr -...
5515
  		goto non_fips_alg;
a68f6610d   Herbert Xu   crypto: testmgr -...
5516
5517
5518
5519
  	rc = 0;
  	if (i >= 0)
  		rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
  					     type, mask);
032c8cacc   Cristian Stoica   crypto: testmgr -...
5520
  	if (j >= 0 && j != i)
a68f6610d   Herbert Xu   crypto: testmgr -...
5521
5522
  		rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
  					     type, mask);
941fb3287   Jarod Wilson   crypto: testmgr -...
5523
  test_done:
9552389c4   Gilad Ben-Yossef   crypto: fips - ad...
5524
5525
  	if (rc && (fips_enabled || panic_on_fail)) {
  		fips_fail_notify();
eda69b0c0   Eric Biggers   crypto: testmgr -...
5526
5527
5528
  		panic("alg: self-tests for %s (%s) failed in %s mode!
  ",
  		      driver, alg, fips_enabled ? "fips" : "panic_on_fail");
9552389c4   Gilad Ben-Yossef   crypto: fips - ad...
5529
  	}
d12d6b6d3   Neil Horman   crypto: testmgr -...
5530

29ecd4ab3   Jarod Wilson   crypto: testmgr -...
5531
  	if (fips_enabled && !rc)
3e8cffd43   Masanari Iida   crypto: testmgr -...
5532
5533
  		pr_info("alg: self-tests for %s (%s) passed
  ", driver, alg);
29ecd4ab3   Jarod Wilson   crypto: testmgr -...
5534

d12d6b6d3   Neil Horman   crypto: testmgr -...
5535
  	return rc;
1aa4ecd95   Herbert Xu   crypto: cryptomgr...
5536
5537
  
  notest:
da7f033dd   Herbert Xu   crypto: cryptomgr...
5538
5539
5540
  	printk(KERN_INFO "alg: No test for %s (%s)
  ", alg, driver);
  	return 0;
a3bef3a31   Jarod Wilson   crypto: testmgr -...
5541
5542
  non_fips_alg:
  	return -EINVAL;
da7f033dd   Herbert Xu   crypto: cryptomgr...
5543
  }
0b767f961   Alexander Shishkin   crypto: testmgr -...
5544

326a6346f   Herbert Xu   crypto: testmgr -...
5545
  #endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
0b767f961   Alexander Shishkin   crypto: testmgr -...
5546

da7f033dd   Herbert Xu   crypto: cryptomgr...
5547
  EXPORT_SYMBOL_GPL(alg_test);