blob: 2ba0c487ea2817950fa79985e8ce723afd8db6a4 [file] [log] [blame]
Herbert Xuda7f0332008-07-31 17:08:25 +08001/*
2 * Algorithm testing framework and tests.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
Eric Biggers3f47a032019-01-31 23:51:43 -08008 * Copyright (c) 2019 Google LLC
Herbert Xuda7f0332008-07-31 17:08:25 +08009 *
Adrian Hoban69435b92010-11-04 15:02:04 -040010 * Updated RFC4106 AES-GCM testing.
11 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
12 * Adrian Hoban <adrian.hoban@intel.com>
13 * Gabriele Paoloni <gabriele.paoloni@intel.com>
14 * Tadeusz Struk (tadeusz.struk@intel.com)
15 * Copyright (c) 2010, Intel Corporation.
16 *
Herbert Xuda7f0332008-07-31 17:08:25 +080017 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the Free
19 * Software Foundation; either version 2 of the License, or (at your option)
20 * any later version.
21 *
22 */
23
Herbert Xu1ce33112015-04-22 15:06:31 +080024#include <crypto/aead.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080025#include <crypto/hash.h>
Herbert Xu12773d92015-08-20 15:21:46 +080026#include <crypto/skcipher.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080027#include <linux/err.h>
Herbert Xu1c41b882015-04-22 13:25:58 +080028#include <linux/fips.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080029#include <linux/module.h>
Eric Biggers3f47a032019-01-31 23:51:43 -080030#include <linux/once.h>
Eric Biggers25f9ddd2019-01-31 23:51:45 -080031#include <linux/random.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080032#include <linux/scatterlist.h>
33#include <linux/slab.h>
34#include <linux/string.h>
Jarod Wilson7647d6c2009-05-04 19:44:50 +080035#include <crypto/rng.h>
Stephan Mueller64d1cdf2014-05-31 17:25:36 +020036#include <crypto/drbg.h>
Tadeusz Struk946cc462015-06-16 10:31:06 -070037#include <crypto/akcipher.h>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010038#include <crypto/kpp.h>
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +010039#include <crypto/acompress.h>
Eric Biggersb55e1a32019-03-12 22:12:47 -070040#include <crypto/internal/simd.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080041
42#include "internal.h"
Alexander Shishkin0b767f92010-06-03 20:53:43 +100043
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +010044static bool notests;
45module_param(notests, bool, 0644);
46MODULE_PARM_DESC(notests, "disable crypto self-tests");
47
Eric Biggerseda69b02019-03-31 13:09:14 -070048static bool panic_on_fail;
49module_param(panic_on_fail, bool, 0444);
50
Eric Biggers5b2706a2019-01-31 23:51:44 -080051#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
52static bool noextratests;
53module_param(noextratests, bool, 0644);
54MODULE_PARM_DESC(noextratests, "disable expensive crypto self-tests");
55
56static unsigned int fuzz_iterations = 100;
57module_param(fuzz_iterations, uint, 0644);
58MODULE_PARM_DESC(fuzz_iterations, "number of fuzz test iterations");
Eric Biggersb55e1a32019-03-12 22:12:47 -070059
60DEFINE_PER_CPU(bool, crypto_simd_disabled_for_test);
61EXPORT_PER_CPU_SYMBOL_GPL(crypto_simd_disabled_for_test);
Eric Biggers5b2706a2019-01-31 23:51:44 -080062#endif
63
Herbert Xu326a6342010-08-06 09:40:28 +080064#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
Alexander Shishkin0b767f92010-06-03 20:53:43 +100065
66/* a perfect nop */
67int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
68{
69 return 0;
70}
71
72#else
73
Herbert Xuda7f0332008-07-31 17:08:25 +080074#include "testmgr.h"
75
76/*
77 * Need slab memory for testing (size in number of pages).
78 */
79#define XBUFSIZE 8
80
81/*
Herbert Xuda7f0332008-07-31 17:08:25 +080082* Used by test_cipher()
83*/
84#define ENCRYPT 1
85#define DECRYPT 0
86
Herbert Xuda7f0332008-07-31 17:08:25 +080087struct aead_test_suite {
Eric Biggersa0d608ee2019-01-13 15:32:28 -080088 const struct aead_testvec *vecs;
89 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +080090};
91
92struct cipher_test_suite {
Eric Biggers92a4c9f2018-05-20 22:50:29 -070093 const struct cipher_testvec *vecs;
94 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +080095};
96
97struct comp_test_suite {
98 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080099 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800100 unsigned int count;
101 } comp, decomp;
102};
103
104struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800105 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800106 unsigned int count;
107};
108
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800109struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800110 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800111 unsigned int count;
112};
113
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200114struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800115 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200116 unsigned int count;
117};
118
Tadeusz Struk946cc462015-06-16 10:31:06 -0700119struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800120 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700121 unsigned int count;
122};
123
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100124struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800125 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100126 unsigned int count;
127};
128
Herbert Xuda7f0332008-07-31 17:08:25 +0800129struct alg_test_desc {
130 const char *alg;
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700131 const char *generic_driver;
Herbert Xuda7f0332008-07-31 17:08:25 +0800132 int (*test)(const struct alg_test_desc *desc, const char *driver,
133 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000134 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800135
136 union {
137 struct aead_test_suite aead;
138 struct cipher_test_suite cipher;
139 struct comp_test_suite comp;
140 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800141 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200142 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700143 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100144 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800145 } suite;
146};
147
Herbert Xuda7f0332008-07-31 17:08:25 +0800148static void hexdump(unsigned char *buf, unsigned int len)
149{
150 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
151 16, 1,
152 buf, len, false);
153}
154
Eric Biggers3f47a032019-01-31 23:51:43 -0800155static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800156{
157 int i;
158
159 for (i = 0; i < XBUFSIZE; i++) {
Eric Biggers3f47a032019-01-31 23:51:43 -0800160 buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800161 if (!buf[i])
162 goto err_free_buf;
163 }
164
165 return 0;
166
167err_free_buf:
168 while (i-- > 0)
Eric Biggers3f47a032019-01-31 23:51:43 -0800169 free_pages((unsigned long)buf[i], order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800170
171 return -ENOMEM;
172}
173
Eric Biggers3f47a032019-01-31 23:51:43 -0800174static int testmgr_alloc_buf(char *buf[XBUFSIZE])
175{
176 return __testmgr_alloc_buf(buf, 0);
177}
178
179static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800180{
181 int i;
182
183 for (i = 0; i < XBUFSIZE; i++)
Eric Biggers3f47a032019-01-31 23:51:43 -0800184 free_pages((unsigned long)buf[i], order);
185}
186
187static void testmgr_free_buf(char *buf[XBUFSIZE])
188{
189 __testmgr_free_buf(buf, 0);
190}
191
192#define TESTMGR_POISON_BYTE 0xfe
193#define TESTMGR_POISON_LEN 16
194
195static inline void testmgr_poison(void *addr, size_t len)
196{
197 memset(addr, TESTMGR_POISON_BYTE, len);
198}
199
200/* Is the memory region still fully poisoned? */
201static inline bool testmgr_is_poison(const void *addr, size_t len)
202{
203 return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
204}
205
206/* flush type for hash algorithms */
207enum flush_type {
208 /* merge with update of previous buffer(s) */
209 FLUSH_TYPE_NONE = 0,
210
211 /* update with previous buffer(s) before doing this one */
212 FLUSH_TYPE_FLUSH,
213
214 /* likewise, but also export and re-import the intermediate state */
215 FLUSH_TYPE_REIMPORT,
216};
217
218/* finalization function for hash algorithms */
219enum finalization_type {
220 FINALIZATION_TYPE_FINAL, /* use final() */
221 FINALIZATION_TYPE_FINUP, /* use finup() */
222 FINALIZATION_TYPE_DIGEST, /* use digest() */
223};
224
225#define TEST_SG_TOTAL 10000
226
227/**
228 * struct test_sg_division - description of a scatterlist entry
229 *
230 * This struct describes one entry of a scatterlist being constructed to check a
231 * crypto test vector.
232 *
233 * @proportion_of_total: length of this chunk relative to the total length,
234 * given as a proportion out of TEST_SG_TOTAL so that it
235 * scales to fit any test vector
236 * @offset: byte offset into a 2-page buffer at which this chunk will start
237 * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
238 * @offset
239 * @flush_type: for hashes, whether an update() should be done now vs.
240 * continuing to accumulate data
Eric Biggers65707372019-03-12 22:12:52 -0700241 * @nosimd: if doing the pending update(), do it with SIMD disabled?
Eric Biggers3f47a032019-01-31 23:51:43 -0800242 */
243struct test_sg_division {
244 unsigned int proportion_of_total;
245 unsigned int offset;
246 bool offset_relative_to_alignmask;
247 enum flush_type flush_type;
Eric Biggers65707372019-03-12 22:12:52 -0700248 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800249};
250
251/**
252 * struct testvec_config - configuration for testing a crypto test vector
253 *
254 * This struct describes the data layout and other parameters with which each
255 * crypto test vector can be tested.
256 *
257 * @name: name of this config, logged for debugging purposes if a test fails
258 * @inplace: operate on the data in-place, if applicable for the algorithm type?
259 * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
260 * @src_divs: description of how to arrange the source scatterlist
261 * @dst_divs: description of how to arrange the dst scatterlist, if applicable
262 * for the algorithm type. Defaults to @src_divs if unset.
263 * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
264 * where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
265 * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
266 * the @iv_offset
267 * @finalization_type: what finalization function to use for hashes
Eric Biggers65707372019-03-12 22:12:52 -0700268 * @nosimd: execute with SIMD disabled? Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
Eric Biggers3f47a032019-01-31 23:51:43 -0800269 */
270struct testvec_config {
271 const char *name;
272 bool inplace;
273 u32 req_flags;
274 struct test_sg_division src_divs[XBUFSIZE];
275 struct test_sg_division dst_divs[XBUFSIZE];
276 unsigned int iv_offset;
277 bool iv_offset_relative_to_alignmask;
278 enum finalization_type finalization_type;
Eric Biggers65707372019-03-12 22:12:52 -0700279 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800280};
281
282#define TESTVEC_CONFIG_NAMELEN 192
283
Eric Biggers4e7babba2019-01-31 23:51:46 -0800284/*
285 * The following are the lists of testvec_configs to test for each algorithm
286 * type when the basic crypto self-tests are enabled, i.e. when
287 * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset. They aim to provide good test
288 * coverage, while keeping the test time much shorter than the full fuzz tests
289 * so that the basic tests can be enabled in a wider range of circumstances.
290 */
291
292/* Configs for skciphers and aeads */
293static const struct testvec_config default_cipher_testvec_configs[] = {
294 {
295 .name = "in-place",
296 .inplace = true,
297 .src_divs = { { .proportion_of_total = 10000 } },
298 }, {
299 .name = "out-of-place",
300 .src_divs = { { .proportion_of_total = 10000 } },
301 }, {
302 .name = "unaligned buffer, offset=1",
303 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
304 .iv_offset = 1,
305 }, {
306 .name = "buffer aligned only to alignmask",
307 .src_divs = {
308 {
309 .proportion_of_total = 10000,
310 .offset = 1,
311 .offset_relative_to_alignmask = true,
312 },
313 },
314 .iv_offset = 1,
315 .iv_offset_relative_to_alignmask = true,
316 }, {
317 .name = "two even aligned splits",
318 .src_divs = {
319 { .proportion_of_total = 5000 },
320 { .proportion_of_total = 5000 },
321 },
322 }, {
323 .name = "uneven misaligned splits, may sleep",
324 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
325 .src_divs = {
326 { .proportion_of_total = 1900, .offset = 33 },
327 { .proportion_of_total = 3300, .offset = 7 },
328 { .proportion_of_total = 4800, .offset = 18 },
329 },
330 .iv_offset = 3,
331 }, {
332 .name = "misaligned splits crossing pages, inplace",
333 .inplace = true,
334 .src_divs = {
335 {
336 .proportion_of_total = 7500,
337 .offset = PAGE_SIZE - 32
338 }, {
339 .proportion_of_total = 2500,
340 .offset = PAGE_SIZE - 7
341 },
342 },
343 }
344};
345
Eric Biggers4cc2dcf2019-01-31 23:51:48 -0800346static const struct testvec_config default_hash_testvec_configs[] = {
347 {
348 .name = "init+update+final aligned buffer",
349 .src_divs = { { .proportion_of_total = 10000 } },
350 .finalization_type = FINALIZATION_TYPE_FINAL,
351 }, {
352 .name = "init+finup aligned buffer",
353 .src_divs = { { .proportion_of_total = 10000 } },
354 .finalization_type = FINALIZATION_TYPE_FINUP,
355 }, {
356 .name = "digest aligned buffer",
357 .src_divs = { { .proportion_of_total = 10000 } },
358 .finalization_type = FINALIZATION_TYPE_DIGEST,
359 }, {
360 .name = "init+update+final misaligned buffer",
361 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
362 .finalization_type = FINALIZATION_TYPE_FINAL,
363 }, {
364 .name = "digest buffer aligned only to alignmask",
365 .src_divs = {
366 {
367 .proportion_of_total = 10000,
368 .offset = 1,
369 .offset_relative_to_alignmask = true,
370 },
371 },
372 .finalization_type = FINALIZATION_TYPE_DIGEST,
373 }, {
374 .name = "init+update+update+final two even splits",
375 .src_divs = {
376 { .proportion_of_total = 5000 },
377 {
378 .proportion_of_total = 5000,
379 .flush_type = FLUSH_TYPE_FLUSH,
380 },
381 },
382 .finalization_type = FINALIZATION_TYPE_FINAL,
383 }, {
384 .name = "digest uneven misaligned splits, may sleep",
385 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
386 .src_divs = {
387 { .proportion_of_total = 1900, .offset = 33 },
388 { .proportion_of_total = 3300, .offset = 7 },
389 { .proportion_of_total = 4800, .offset = 18 },
390 },
391 .finalization_type = FINALIZATION_TYPE_DIGEST,
392 }, {
393 .name = "digest misaligned splits crossing pages",
394 .src_divs = {
395 {
396 .proportion_of_total = 7500,
397 .offset = PAGE_SIZE - 32,
398 }, {
399 .proportion_of_total = 2500,
400 .offset = PAGE_SIZE - 7,
401 },
402 },
403 .finalization_type = FINALIZATION_TYPE_DIGEST,
404 }, {
405 .name = "import/export",
406 .src_divs = {
407 {
408 .proportion_of_total = 6500,
409 .flush_type = FLUSH_TYPE_REIMPORT,
410 }, {
411 .proportion_of_total = 3500,
412 .flush_type = FLUSH_TYPE_REIMPORT,
413 },
414 },
415 .finalization_type = FINALIZATION_TYPE_FINAL,
416 }
417};
418
Eric Biggers3f47a032019-01-31 23:51:43 -0800419static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
420{
421 unsigned int remaining = TEST_SG_TOTAL;
422 unsigned int ndivs = 0;
423
424 do {
425 remaining -= divs[ndivs++].proportion_of_total;
426 } while (remaining);
427
428 return ndivs;
429}
430
Eric Biggers65707372019-03-12 22:12:52 -0700431#define SGDIVS_HAVE_FLUSHES BIT(0)
432#define SGDIVS_HAVE_NOSIMD BIT(1)
433
Eric Biggers3f47a032019-01-31 23:51:43 -0800434static bool valid_sg_divisions(const struct test_sg_division *divs,
Eric Biggers65707372019-03-12 22:12:52 -0700435 unsigned int count, int *flags_ret)
Eric Biggers3f47a032019-01-31 23:51:43 -0800436{
437 unsigned int total = 0;
438 unsigned int i;
439
440 for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
441 if (divs[i].proportion_of_total <= 0 ||
442 divs[i].proportion_of_total > TEST_SG_TOTAL - total)
443 return false;
444 total += divs[i].proportion_of_total;
445 if (divs[i].flush_type != FLUSH_TYPE_NONE)
Eric Biggers65707372019-03-12 22:12:52 -0700446 *flags_ret |= SGDIVS_HAVE_FLUSHES;
447 if (divs[i].nosimd)
448 *flags_ret |= SGDIVS_HAVE_NOSIMD;
Eric Biggers3f47a032019-01-31 23:51:43 -0800449 }
450 return total == TEST_SG_TOTAL &&
451 memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
452}
453
454/*
455 * Check whether the given testvec_config is valid. This isn't strictly needed
456 * since every testvec_config should be valid, but check anyway so that people
457 * don't unknowingly add broken configs that don't do what they wanted.
458 */
459static bool valid_testvec_config(const struct testvec_config *cfg)
460{
Eric Biggers65707372019-03-12 22:12:52 -0700461 int flags = 0;
Eric Biggers3f47a032019-01-31 23:51:43 -0800462
463 if (cfg->name == NULL)
464 return false;
465
466 if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
Eric Biggers65707372019-03-12 22:12:52 -0700467 &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800468 return false;
469
470 if (cfg->dst_divs[0].proportion_of_total) {
471 if (!valid_sg_divisions(cfg->dst_divs,
Eric Biggers65707372019-03-12 22:12:52 -0700472 ARRAY_SIZE(cfg->dst_divs), &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800473 return false;
474 } else {
475 if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
476 return false;
477 /* defaults to dst_divs=src_divs */
478 }
479
480 if (cfg->iv_offset +
481 (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
482 MAX_ALGAPI_ALIGNMASK + 1)
483 return false;
484
Eric Biggers65707372019-03-12 22:12:52 -0700485 if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
486 cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
487 return false;
488
489 if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
490 (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
Eric Biggers3f47a032019-01-31 23:51:43 -0800491 return false;
492
493 return true;
494}
495
496struct test_sglist {
497 char *bufs[XBUFSIZE];
498 struct scatterlist sgl[XBUFSIZE];
499 struct scatterlist sgl_saved[XBUFSIZE];
500 struct scatterlist *sgl_ptr;
501 unsigned int nents;
502};
503
504static int init_test_sglist(struct test_sglist *tsgl)
505{
506 return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
507}
508
509static void destroy_test_sglist(struct test_sglist *tsgl)
510{
511 return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
512}
513
514/**
515 * build_test_sglist() - build a scatterlist for a crypto test
516 *
517 * @tsgl: the scatterlist to build. @tsgl->bufs[] contains an array of 2-page
518 * buffers which the scatterlist @tsgl->sgl[] will be made to point into.
519 * @divs: the layout specification on which the scatterlist will be based
520 * @alignmask: the algorithm's alignmask
521 * @total_len: the total length of the scatterlist to build in bytes
522 * @data: if non-NULL, the buffers will be filled with this data until it ends.
523 * Otherwise the buffers will be poisoned. In both cases, some bytes
524 * past the end of each buffer will be poisoned to help detect overruns.
525 * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
526 * corresponds will be returned here. This will match @divs except
527 * that divisions resolving to a length of 0 are omitted as they are
528 * not included in the scatterlist.
529 *
530 * Return: 0 or a -errno value
531 */
532static int build_test_sglist(struct test_sglist *tsgl,
533 const struct test_sg_division *divs,
534 const unsigned int alignmask,
535 const unsigned int total_len,
536 struct iov_iter *data,
537 const struct test_sg_division *out_divs[XBUFSIZE])
538{
539 struct {
540 const struct test_sg_division *div;
541 size_t length;
542 } partitions[XBUFSIZE];
543 const unsigned int ndivs = count_test_sg_divisions(divs);
544 unsigned int len_remaining = total_len;
545 unsigned int i;
546
547 BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
548 if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
549 return -EINVAL;
550
551 /* Calculate the (div, length) pairs */
552 tsgl->nents = 0;
553 for (i = 0; i < ndivs; i++) {
554 unsigned int len_this_sg =
555 min(len_remaining,
556 (total_len * divs[i].proportion_of_total +
557 TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);
558
559 if (len_this_sg != 0) {
560 partitions[tsgl->nents].div = &divs[i];
561 partitions[tsgl->nents].length = len_this_sg;
562 tsgl->nents++;
563 len_remaining -= len_this_sg;
564 }
565 }
566 if (tsgl->nents == 0) {
567 partitions[tsgl->nents].div = &divs[0];
568 partitions[tsgl->nents].length = 0;
569 tsgl->nents++;
570 }
571 partitions[tsgl->nents - 1].length += len_remaining;
572
573 /* Set up the sgl entries and fill the data or poison */
574 sg_init_table(tsgl->sgl, tsgl->nents);
575 for (i = 0; i < tsgl->nents; i++) {
576 unsigned int offset = partitions[i].div->offset;
577 void *addr;
578
579 if (partitions[i].div->offset_relative_to_alignmask)
580 offset += alignmask;
581
582 while (offset + partitions[i].length + TESTMGR_POISON_LEN >
583 2 * PAGE_SIZE) {
584 if (WARN_ON(offset <= 0))
585 return -EINVAL;
586 offset /= 2;
587 }
588
589 addr = &tsgl->bufs[i][offset];
590 sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);
591
592 if (out_divs)
593 out_divs[i] = partitions[i].div;
594
595 if (data) {
596 size_t copy_len, copied;
597
598 copy_len = min(partitions[i].length, data->count);
599 copied = copy_from_iter(addr, copy_len, data);
600 if (WARN_ON(copied != copy_len))
601 return -EINVAL;
602 testmgr_poison(addr + copy_len, partitions[i].length +
603 TESTMGR_POISON_LEN - copy_len);
604 } else {
605 testmgr_poison(addr, partitions[i].length +
606 TESTMGR_POISON_LEN);
607 }
608 }
609
610 sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
611 tsgl->sgl_ptr = tsgl->sgl;
612 memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
613 return 0;
614}
615
616/*
617 * Verify that a scatterlist crypto operation produced the correct output.
618 *
619 * @tsgl: scatterlist containing the actual output
620 * @expected_output: buffer containing the expected output
621 * @len_to_check: length of @expected_output in bytes
622 * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
623 * @check_poison: verify that the poison bytes after each chunk are intact?
624 *
625 * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
626 */
627static int verify_correct_output(const struct test_sglist *tsgl,
628 const char *expected_output,
629 unsigned int len_to_check,
630 unsigned int unchecked_prefix_len,
631 bool check_poison)
632{
633 unsigned int i;
634
635 for (i = 0; i < tsgl->nents; i++) {
636 struct scatterlist *sg = &tsgl->sgl_ptr[i];
637 unsigned int len = sg->length;
638 unsigned int offset = sg->offset;
639 const char *actual_output;
640
641 if (unchecked_prefix_len) {
642 if (unchecked_prefix_len >= len) {
643 unchecked_prefix_len -= len;
644 continue;
645 }
646 offset += unchecked_prefix_len;
647 len -= unchecked_prefix_len;
648 unchecked_prefix_len = 0;
649 }
650 len = min(len, len_to_check);
651 actual_output = page_address(sg_page(sg)) + offset;
652 if (memcmp(expected_output, actual_output, len) != 0)
653 return -EINVAL;
654 if (check_poison &&
655 !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
656 return -EOVERFLOW;
657 len_to_check -= len;
658 expected_output += len;
659 }
660 if (WARN_ON(len_to_check != 0))
661 return -EINVAL;
662 return 0;
663}
664
665static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
666{
667 unsigned int i;
668
669 for (i = 0; i < tsgl->nents; i++) {
670 if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
671 return true;
672 if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
673 return true;
674 if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
675 return true;
676 }
677 return false;
678}
679
680struct cipher_test_sglists {
681 struct test_sglist src;
682 struct test_sglist dst;
683};
684
685static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
686{
687 struct cipher_test_sglists *tsgls;
688
689 tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
690 if (!tsgls)
691 return NULL;
692
693 if (init_test_sglist(&tsgls->src) != 0)
694 goto fail_kfree;
695 if (init_test_sglist(&tsgls->dst) != 0)
696 goto fail_destroy_src;
697
698 return tsgls;
699
700fail_destroy_src:
701 destroy_test_sglist(&tsgls->src);
702fail_kfree:
703 kfree(tsgls);
704 return NULL;
705}
706
707static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
708{
709 if (tsgls) {
710 destroy_test_sglist(&tsgls->src);
711 destroy_test_sglist(&tsgls->dst);
712 kfree(tsgls);
713 }
714}
715
716/* Build the src and dst scatterlists for an skcipher or AEAD test */
717static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
718 const struct testvec_config *cfg,
719 unsigned int alignmask,
720 unsigned int src_total_len,
721 unsigned int dst_total_len,
722 const struct kvec *inputs,
723 unsigned int nr_inputs)
724{
725 struct iov_iter input;
726 int err;
727
728 iov_iter_kvec(&input, WRITE, inputs, nr_inputs, src_total_len);
729 err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
730 cfg->inplace ?
731 max(dst_total_len, src_total_len) :
732 src_total_len,
733 &input, NULL);
734 if (err)
735 return err;
736
737 if (cfg->inplace) {
738 tsgls->dst.sgl_ptr = tsgls->src.sgl;
739 tsgls->dst.nents = tsgls->src.nents;
740 return 0;
741 }
742 return build_test_sglist(&tsgls->dst,
743 cfg->dst_divs[0].proportion_of_total ?
744 cfg->dst_divs : cfg->src_divs,
745 alignmask, dst_total_len, NULL, NULL);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800746}
747
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800748#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700749
750/* Generate a random length in range [0, max_len], but prefer smaller values */
751static unsigned int generate_random_length(unsigned int max_len)
752{
753 unsigned int len = prandom_u32() % (max_len + 1);
754
755 switch (prandom_u32() % 4) {
756 case 0:
757 return len % 64;
758 case 1:
759 return len % 256;
760 case 2:
761 return len % 1024;
762 default:
763 return len;
764 }
765}
766
767/* Sometimes make some random changes to the given data buffer */
768static void mutate_buffer(u8 *buf, size_t count)
769{
770 size_t num_flips;
771 size_t i;
772 size_t pos;
773
774 /* Sometimes flip some bits */
775 if (prandom_u32() % 4 == 0) {
776 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count * 8);
777 for (i = 0; i < num_flips; i++) {
778 pos = prandom_u32() % (count * 8);
779 buf[pos / 8] ^= 1 << (pos % 8);
780 }
781 }
782
783 /* Sometimes flip some bytes */
784 if (prandom_u32() % 4 == 0) {
785 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count);
786 for (i = 0; i < num_flips; i++)
787 buf[prandom_u32() % count] ^= 0xff;
788 }
789}
790
791/* Randomly generate 'count' bytes, but sometimes make them "interesting" */
792static void generate_random_bytes(u8 *buf, size_t count)
793{
794 u8 b;
795 u8 increment;
796 size_t i;
797
798 if (count == 0)
799 return;
800
801 switch (prandom_u32() % 8) { /* Choose a generation strategy */
802 case 0:
803 case 1:
804 /* All the same byte, plus optional mutations */
805 switch (prandom_u32() % 4) {
806 case 0:
807 b = 0x00;
808 break;
809 case 1:
810 b = 0xff;
811 break;
812 default:
813 b = (u8)prandom_u32();
814 break;
815 }
816 memset(buf, b, count);
817 mutate_buffer(buf, count);
818 break;
819 case 2:
820 /* Ascending or descending bytes, plus optional mutations */
821 increment = (u8)prandom_u32();
822 b = (u8)prandom_u32();
823 for (i = 0; i < count; i++, b += increment)
824 buf[i] = b;
825 mutate_buffer(buf, count);
826 break;
827 default:
828 /* Fully random bytes */
829 for (i = 0; i < count; i++)
830 buf[i] = (u8)prandom_u32();
831 }
832}
833
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800834static char *generate_random_sgl_divisions(struct test_sg_division *divs,
835 size_t max_divs, char *p, char *end,
Eric Biggers65707372019-03-12 22:12:52 -0700836 bool gen_flushes, u32 req_flags)
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800837{
838 struct test_sg_division *div = divs;
839 unsigned int remaining = TEST_SG_TOTAL;
840
841 do {
842 unsigned int this_len;
Eric Biggers65707372019-03-12 22:12:52 -0700843 const char *flushtype_str;
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800844
845 if (div == &divs[max_divs - 1] || prandom_u32() % 2 == 0)
846 this_len = remaining;
847 else
848 this_len = 1 + (prandom_u32() % remaining);
849 div->proportion_of_total = this_len;
850
851 if (prandom_u32() % 4 == 0)
852 div->offset = (PAGE_SIZE - 128) + (prandom_u32() % 128);
853 else if (prandom_u32() % 2 == 0)
854 div->offset = prandom_u32() % 32;
855 else
856 div->offset = prandom_u32() % PAGE_SIZE;
857 if (prandom_u32() % 8 == 0)
858 div->offset_relative_to_alignmask = true;
859
860 div->flush_type = FLUSH_TYPE_NONE;
861 if (gen_flushes) {
862 switch (prandom_u32() % 4) {
863 case 0:
864 div->flush_type = FLUSH_TYPE_REIMPORT;
865 break;
866 case 1:
867 div->flush_type = FLUSH_TYPE_FLUSH;
868 break;
869 }
870 }
871
Eric Biggers65707372019-03-12 22:12:52 -0700872 if (div->flush_type != FLUSH_TYPE_NONE &&
873 !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
874 prandom_u32() % 2 == 0)
875 div->nosimd = true;
876
877 switch (div->flush_type) {
878 case FLUSH_TYPE_FLUSH:
879 if (div->nosimd)
880 flushtype_str = "<flush,nosimd>";
881 else
882 flushtype_str = "<flush>";
883 break;
884 case FLUSH_TYPE_REIMPORT:
885 if (div->nosimd)
886 flushtype_str = "<reimport,nosimd>";
887 else
888 flushtype_str = "<reimport>";
889 break;
890 default:
891 flushtype_str = "";
892 break;
893 }
894
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800895 BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
Eric Biggers65707372019-03-12 22:12:52 -0700896 p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800897 this_len / 100, this_len % 100,
898 div->offset_relative_to_alignmask ?
899 "alignmask" : "",
900 div->offset, this_len == remaining ? "" : ", ");
901 remaining -= this_len;
902 div++;
903 } while (remaining);
904
905 return p;
906}
907
908/* Generate a random testvec_config for fuzz testing */
909static void generate_random_testvec_config(struct testvec_config *cfg,
910 char *name, size_t max_namelen)
911{
912 char *p = name;
913 char * const end = name + max_namelen;
914
915 memset(cfg, 0, sizeof(*cfg));
916
917 cfg->name = name;
918
919 p += scnprintf(p, end - p, "random:");
920
921 if (prandom_u32() % 2 == 0) {
922 cfg->inplace = true;
923 p += scnprintf(p, end - p, " inplace");
924 }
925
926 if (prandom_u32() % 2 == 0) {
927 cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
928 p += scnprintf(p, end - p, " may_sleep");
929 }
930
931 switch (prandom_u32() % 4) {
932 case 0:
933 cfg->finalization_type = FINALIZATION_TYPE_FINAL;
934 p += scnprintf(p, end - p, " use_final");
935 break;
936 case 1:
937 cfg->finalization_type = FINALIZATION_TYPE_FINUP;
938 p += scnprintf(p, end - p, " use_finup");
939 break;
940 default:
941 cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
942 p += scnprintf(p, end - p, " use_digest");
943 break;
944 }
945
Eric Biggers65707372019-03-12 22:12:52 -0700946 if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
947 prandom_u32() % 2 == 0) {
948 cfg->nosimd = true;
949 p += scnprintf(p, end - p, " nosimd");
950 }
951
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800952 p += scnprintf(p, end - p, " src_divs=[");
953 p = generate_random_sgl_divisions(cfg->src_divs,
954 ARRAY_SIZE(cfg->src_divs), p, end,
955 (cfg->finalization_type !=
Eric Biggers65707372019-03-12 22:12:52 -0700956 FINALIZATION_TYPE_DIGEST),
957 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800958 p += scnprintf(p, end - p, "]");
959
960 if (!cfg->inplace && prandom_u32() % 2 == 0) {
961 p += scnprintf(p, end - p, " dst_divs=[");
962 p = generate_random_sgl_divisions(cfg->dst_divs,
963 ARRAY_SIZE(cfg->dst_divs),
Eric Biggers65707372019-03-12 22:12:52 -0700964 p, end, false,
965 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800966 p += scnprintf(p, end - p, "]");
967 }
968
969 if (prandom_u32() % 2 == 0) {
970 cfg->iv_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
971 p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
972 }
973
974 WARN_ON_ONCE(!valid_testvec_config(cfg));
975}
Eric Biggersb55e1a32019-03-12 22:12:47 -0700976
977static void crypto_disable_simd_for_test(void)
978{
979 preempt_disable();
980 __this_cpu_write(crypto_simd_disabled_for_test, true);
981}
982
983static void crypto_reenable_simd_for_test(void)
984{
985 __this_cpu_write(crypto_simd_disabled_for_test, false);
986 preempt_enable();
987}
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700988
989/*
990 * Given an algorithm name, build the name of the generic implementation of that
991 * algorithm, assuming the usual naming convention. Specifically, this appends
992 * "-generic" to every part of the name that is not a template name. Examples:
993 *
994 * aes => aes-generic
995 * cbc(aes) => cbc(aes-generic)
996 * cts(cbc(aes)) => cts(cbc(aes-generic))
997 * rfc7539(chacha20,poly1305) => rfc7539(chacha20-generic,poly1305-generic)
998 *
999 * Return: 0 on success, or -ENAMETOOLONG if the generic name would be too long
1000 */
1001static int build_generic_driver_name(const char *algname,
1002 char driver_name[CRYPTO_MAX_ALG_NAME])
1003{
1004 const char *in = algname;
1005 char *out = driver_name;
1006 size_t len = strlen(algname);
1007
1008 if (len >= CRYPTO_MAX_ALG_NAME)
1009 goto too_long;
1010 do {
1011 const char *in_saved = in;
1012
1013 while (*in && *in != '(' && *in != ')' && *in != ',')
1014 *out++ = *in++;
1015 if (*in != '(' && in > in_saved) {
1016 len += 8;
1017 if (len >= CRYPTO_MAX_ALG_NAME)
1018 goto too_long;
1019 memcpy(out, "-generic", 8);
1020 out += 8;
1021 }
1022 } while ((*out++ = *in++) != '\0');
1023 return 0;
1024
1025too_long:
1026 pr_err("alg: generic driver name for \"%s\" would be too long\n",
1027 algname);
1028 return -ENAMETOOLONG;
1029}
Eric Biggersb55e1a32019-03-12 22:12:47 -07001030#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1031static void crypto_disable_simd_for_test(void)
1032{
1033}
1034
1035static void crypto_reenable_simd_for_test(void)
1036{
1037}
1038#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001039
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001040static int build_hash_sglist(struct test_sglist *tsgl,
1041 const struct hash_testvec *vec,
1042 const struct testvec_config *cfg,
1043 unsigned int alignmask,
1044 const struct test_sg_division *divs[XBUFSIZE])
1045{
1046 struct kvec kv;
1047 struct iov_iter input;
1048
1049 kv.iov_base = (void *)vec->plaintext;
1050 kv.iov_len = vec->psize;
1051 iov_iter_kvec(&input, WRITE, &kv, 1, vec->psize);
1052 return build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
1053 &input, divs);
1054}
1055
1056static int check_hash_result(const char *type,
1057 const u8 *result, unsigned int digestsize,
1058 const struct hash_testvec *vec,
1059 const char *vec_name,
1060 const char *driver,
1061 const struct testvec_config *cfg)
1062{
1063 if (memcmp(result, vec->digest, digestsize) != 0) {
1064 pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1065 type, driver, vec_name, cfg->name);
1066 return -EINVAL;
1067 }
1068 if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
1069 pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"\n",
1070 type, driver, vec_name, cfg->name);
1071 return -EOVERFLOW;
1072 }
1073 return 0;
1074}
1075
1076static inline int check_shash_op(const char *op, int err,
1077 const char *driver, const char *vec_name,
1078 const struct testvec_config *cfg)
1079{
1080 if (err)
1081 pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
1082 driver, op, err, vec_name, cfg->name);
1083 return err;
1084}
1085
1086static inline const void *sg_data(struct scatterlist *sg)
1087{
1088 return page_address(sg_page(sg)) + sg->offset;
1089}
1090
1091/* Test one hash test vector in one configuration, using the shash API */
1092static int test_shash_vec_cfg(const char *driver,
1093 const struct hash_testvec *vec,
1094 const char *vec_name,
1095 const struct testvec_config *cfg,
1096 struct shash_desc *desc,
1097 struct test_sglist *tsgl,
1098 u8 *hashstate)
1099{
1100 struct crypto_shash *tfm = desc->tfm;
1101 const unsigned int alignmask = crypto_shash_alignmask(tfm);
1102 const unsigned int digestsize = crypto_shash_digestsize(tfm);
1103 const unsigned int statesize = crypto_shash_statesize(tfm);
1104 const struct test_sg_division *divs[XBUFSIZE];
1105 unsigned int i;
1106 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1107 int err;
1108
1109 /* Set the key, if specified */
1110 if (vec->ksize) {
1111 err = crypto_shash_setkey(tfm, vec->key, vec->ksize);
1112 if (err) {
1113 if (err == vec->setkey_error)
1114 return 0;
1115 pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1116 driver, vec_name, vec->setkey_error, err,
1117 crypto_shash_get_flags(tfm));
1118 return err;
1119 }
1120 if (vec->setkey_error) {
1121 pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1122 driver, vec_name, vec->setkey_error);
1123 return -EINVAL;
1124 }
1125 }
1126
1127 /* Build the scatterlist for the source data */
1128 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
1129 if (err) {
1130 pr_err("alg: shash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
1131 driver, vec_name, cfg->name);
1132 return err;
1133 }
1134
1135 /* Do the actual hashing */
1136
1137 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1138 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1139
1140 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1141 vec->digest_error) {
1142 /* Just using digest() */
1143 if (tsgl->nents != 1)
1144 return 0;
1145 if (cfg->nosimd)
1146 crypto_disable_simd_for_test();
1147 err = crypto_shash_digest(desc, sg_data(&tsgl->sgl[0]),
1148 tsgl->sgl[0].length, result);
1149 if (cfg->nosimd)
1150 crypto_reenable_simd_for_test();
1151 if (err) {
1152 if (err == vec->digest_error)
1153 return 0;
1154 pr_err("alg: shash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1155 driver, vec_name, vec->digest_error, err,
1156 cfg->name);
1157 return err;
1158 }
1159 if (vec->digest_error) {
1160 pr_err("alg: shash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1161 driver, vec_name, vec->digest_error, cfg->name);
1162 return -EINVAL;
1163 }
1164 goto result_ready;
1165 }
1166
1167 /* Using init(), zero or more update(), then final() or finup() */
1168
1169 if (cfg->nosimd)
1170 crypto_disable_simd_for_test();
1171 err = crypto_shash_init(desc);
1172 if (cfg->nosimd)
1173 crypto_reenable_simd_for_test();
1174 err = check_shash_op("init", err, driver, vec_name, cfg);
1175 if (err)
1176 return err;
1177
1178 for (i = 0; i < tsgl->nents; i++) {
1179 if (i + 1 == tsgl->nents &&
1180 cfg->finalization_type == FINALIZATION_TYPE_FINUP) {
1181 if (divs[i]->nosimd)
1182 crypto_disable_simd_for_test();
1183 err = crypto_shash_finup(desc, sg_data(&tsgl->sgl[i]),
1184 tsgl->sgl[i].length, result);
1185 if (divs[i]->nosimd)
1186 crypto_reenable_simd_for_test();
1187 err = check_shash_op("finup", err, driver, vec_name,
1188 cfg);
1189 if (err)
1190 return err;
1191 goto result_ready;
1192 }
1193 if (divs[i]->nosimd)
1194 crypto_disable_simd_for_test();
1195 err = crypto_shash_update(desc, sg_data(&tsgl->sgl[i]),
1196 tsgl->sgl[i].length);
1197 if (divs[i]->nosimd)
1198 crypto_reenable_simd_for_test();
1199 err = check_shash_op("update", err, driver, vec_name, cfg);
1200 if (err)
1201 return err;
1202 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1203 /* Test ->export() and ->import() */
1204 testmgr_poison(hashstate + statesize,
1205 TESTMGR_POISON_LEN);
1206 err = crypto_shash_export(desc, hashstate);
1207 err = check_shash_op("export", err, driver, vec_name,
1208 cfg);
1209 if (err)
1210 return err;
1211 if (!testmgr_is_poison(hashstate + statesize,
1212 TESTMGR_POISON_LEN)) {
1213 pr_err("alg: shash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
1214 driver, vec_name, cfg->name);
1215 return -EOVERFLOW;
1216 }
1217 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1218 err = crypto_shash_import(desc, hashstate);
1219 err = check_shash_op("import", err, driver, vec_name,
1220 cfg);
1221 if (err)
1222 return err;
1223 }
1224 }
1225
1226 if (cfg->nosimd)
1227 crypto_disable_simd_for_test();
1228 err = crypto_shash_final(desc, result);
1229 if (cfg->nosimd)
1230 crypto_reenable_simd_for_test();
1231 err = check_shash_op("final", err, driver, vec_name, cfg);
1232 if (err)
1233 return err;
1234result_ready:
1235 return check_hash_result("shash", result, digestsize, vec, vec_name,
1236 driver, cfg);
1237}
1238
Eric Biggers65707372019-03-12 22:12:52 -07001239static int do_ahash_op(int (*op)(struct ahash_request *req),
1240 struct ahash_request *req,
1241 struct crypto_wait *wait, bool nosimd)
1242{
1243 int err;
1244
1245 if (nosimd)
1246 crypto_disable_simd_for_test();
1247
1248 err = op(req);
1249
1250 if (nosimd)
1251 crypto_reenable_simd_for_test();
1252
1253 return crypto_wait_req(err, wait);
1254}
1255
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001256static int check_nonfinal_ahash_op(const char *op, int err,
1257 u8 *result, unsigned int digestsize,
1258 const char *driver, const char *vec_name,
1259 const struct testvec_config *cfg)
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001260{
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001261 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001262 pr_err("alg: ahash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001263 driver, op, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001264 return err;
1265 }
1266 if (!testmgr_is_poison(result, digestsize)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001267 pr_err("alg: ahash: %s %s() used result buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001268 driver, op, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001269 return -EINVAL;
1270 }
1271 return 0;
1272}
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001273
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001274/* Test one hash test vector in one configuration, using the ahash API */
1275static int test_ahash_vec_cfg(const char *driver,
1276 const struct hash_testvec *vec,
1277 const char *vec_name,
1278 const struct testvec_config *cfg,
1279 struct ahash_request *req,
1280 struct test_sglist *tsgl,
1281 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001282{
1283 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1284 const unsigned int alignmask = crypto_ahash_alignmask(tfm);
1285 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1286 const unsigned int statesize = crypto_ahash_statesize(tfm);
1287 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1288 const struct test_sg_division *divs[XBUFSIZE];
1289 DECLARE_CRYPTO_WAIT(wait);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001290 unsigned int i;
1291 struct scatterlist *pending_sgl;
1292 unsigned int pending_len;
1293 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1294 int err;
1295
1296 /* Set the key, if specified */
1297 if (vec->ksize) {
1298 err = crypto_ahash_setkey(tfm, vec->key, vec->ksize);
1299 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001300 if (err == vec->setkey_error)
1301 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001302 pr_err("alg: ahash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001303 driver, vec_name, vec->setkey_error, err,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001304 crypto_ahash_get_flags(tfm));
1305 return err;
1306 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001307 if (vec->setkey_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001308 pr_err("alg: ahash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001309 driver, vec_name, vec->setkey_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001310 return -EINVAL;
1311 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001312 }
1313
1314 /* Build the scatterlist for the source data */
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001315 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001316 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001317 pr_err("alg: ahash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001318 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001319 return err;
1320 }
1321
1322 /* Do the actual hashing */
1323
1324 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1325 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1326
Eric Biggers5283a8e2019-04-11 21:57:36 -07001327 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1328 vec->digest_error) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001329 /* Just using digest() */
1330 ahash_request_set_callback(req, req_flags, crypto_req_done,
1331 &wait);
1332 ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
Eric Biggers65707372019-03-12 22:12:52 -07001333 err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001334 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001335 if (err == vec->digest_error)
1336 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001337 pr_err("alg: ahash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001338 driver, vec_name, vec->digest_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001339 cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001340 return err;
1341 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001342 if (vec->digest_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001343 pr_err("alg: ahash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001344 driver, vec_name, vec->digest_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001345 return -EINVAL;
1346 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001347 goto result_ready;
1348 }
1349
1350 /* Using init(), zero or more update(), then final() or finup() */
1351
1352 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1353 ahash_request_set_crypt(req, NULL, result, 0);
Eric Biggers65707372019-03-12 22:12:52 -07001354 err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001355 err = check_nonfinal_ahash_op("init", err, result, digestsize,
1356 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001357 if (err)
1358 return err;
1359
1360 pending_sgl = NULL;
1361 pending_len = 0;
1362 for (i = 0; i < tsgl->nents; i++) {
1363 if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
1364 pending_sgl != NULL) {
1365 /* update() with the pending data */
1366 ahash_request_set_callback(req, req_flags,
1367 crypto_req_done, &wait);
1368 ahash_request_set_crypt(req, pending_sgl, result,
1369 pending_len);
Eric Biggers65707372019-03-12 22:12:52 -07001370 err = do_ahash_op(crypto_ahash_update, req, &wait,
1371 divs[i]->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001372 err = check_nonfinal_ahash_op("update", err,
1373 result, digestsize,
1374 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001375 if (err)
1376 return err;
1377 pending_sgl = NULL;
1378 pending_len = 0;
1379 }
1380 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1381 /* Test ->export() and ->import() */
1382 testmgr_poison(hashstate + statesize,
1383 TESTMGR_POISON_LEN);
1384 err = crypto_ahash_export(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001385 err = check_nonfinal_ahash_op("export", err,
1386 result, digestsize,
1387 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001388 if (err)
1389 return err;
1390 if (!testmgr_is_poison(hashstate + statesize,
1391 TESTMGR_POISON_LEN)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001392 pr_err("alg: ahash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001393 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001394 return -EOVERFLOW;
1395 }
1396
1397 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1398 err = crypto_ahash_import(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001399 err = check_nonfinal_ahash_op("import", err,
1400 result, digestsize,
1401 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001402 if (err)
1403 return err;
1404 }
1405 if (pending_sgl == NULL)
1406 pending_sgl = &tsgl->sgl[i];
1407 pending_len += tsgl->sgl[i].length;
1408 }
1409
1410 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1411 ahash_request_set_crypt(req, pending_sgl, result, pending_len);
1412 if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
1413 /* finish with update() and final() */
Eric Biggers65707372019-03-12 22:12:52 -07001414 err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001415 err = check_nonfinal_ahash_op("update", err, result, digestsize,
1416 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001417 if (err)
1418 return err;
Eric Biggers65707372019-03-12 22:12:52 -07001419 err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001420 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001421 pr_err("alg: ahash: %s final() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001422 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001423 return err;
1424 }
1425 } else {
1426 /* finish with finup() */
Eric Biggers65707372019-03-12 22:12:52 -07001427 err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001428 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001429 pr_err("alg: ahash: %s finup() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001430 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001431 return err;
1432 }
1433 }
1434
1435result_ready:
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001436 return check_hash_result("ahash", result, digestsize, vec, vec_name,
1437 driver, cfg);
1438}
1439
1440static int test_hash_vec_cfg(const char *driver,
1441 const struct hash_testvec *vec,
1442 const char *vec_name,
1443 const struct testvec_config *cfg,
1444 struct ahash_request *req,
1445 struct shash_desc *desc,
1446 struct test_sglist *tsgl,
1447 u8 *hashstate)
1448{
1449 int err;
1450
1451 /*
1452 * For algorithms implemented as "shash", most bugs will be detected by
1453 * both the shash and ahash tests. Test the shash API first so that the
1454 * failures involve less indirection, so are easier to debug.
1455 */
1456
1457 if (desc) {
1458 err = test_shash_vec_cfg(driver, vec, vec_name, cfg, desc, tsgl,
1459 hashstate);
1460 if (err)
1461 return err;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001462 }
1463
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001464 return test_ahash_vec_cfg(driver, vec, vec_name, cfg, req, tsgl,
1465 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001466}
1467
1468static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
1469 unsigned int vec_num, struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001470 struct shash_desc *desc, struct test_sglist *tsgl,
1471 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001472{
Eric Biggers951d1332019-04-11 21:57:37 -07001473 char vec_name[16];
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001474 unsigned int i;
1475 int err;
1476
Eric Biggers951d1332019-04-11 21:57:37 -07001477 sprintf(vec_name, "%u", vec_num);
1478
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001479 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07001480 err = test_hash_vec_cfg(driver, vec, vec_name,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001481 &default_hash_testvec_configs[i],
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001482 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001483 if (err)
1484 return err;
1485 }
1486
1487#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1488 if (!noextratests) {
1489 struct testvec_config cfg;
1490 char cfgname[TESTVEC_CONFIG_NAMELEN];
1491
1492 for (i = 0; i < fuzz_iterations; i++) {
1493 generate_random_testvec_config(&cfg, cfgname,
1494 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07001495 err = test_hash_vec_cfg(driver, vec, vec_name, &cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001496 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001497 if (err)
1498 return err;
1499 }
1500 }
1501#endif
1502 return 0;
1503}
1504
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001505#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1506/*
1507 * Generate a hash test vector from the given implementation.
1508 * Assumes the buffers in 'vec' were already allocated.
1509 */
1510static void generate_random_hash_testvec(struct crypto_shash *tfm,
1511 struct hash_testvec *vec,
1512 unsigned int maxkeysize,
1513 unsigned int maxdatasize,
1514 char *name, size_t max_namelen)
1515{
1516 SHASH_DESC_ON_STACK(desc, tfm);
1517
1518 /* Data */
1519 vec->psize = generate_random_length(maxdatasize);
1520 generate_random_bytes((u8 *)vec->plaintext, vec->psize);
1521
1522 /*
1523 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
1524 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
1525 */
1526 vec->setkey_error = 0;
1527 vec->ksize = 0;
1528 if (maxkeysize) {
1529 vec->ksize = maxkeysize;
1530 if (prandom_u32() % 4 == 0)
1531 vec->ksize = 1 + (prandom_u32() % maxkeysize);
1532 generate_random_bytes((u8 *)vec->key, vec->ksize);
1533
1534 vec->setkey_error = crypto_shash_setkey(tfm, vec->key,
1535 vec->ksize);
1536 /* If the key couldn't be set, no need to continue to digest. */
1537 if (vec->setkey_error)
1538 goto done;
1539 }
1540
1541 /* Digest */
1542 desc->tfm = tfm;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001543 vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
1544 vec->psize, (u8 *)vec->digest);
1545done:
1546 snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
1547 vec->psize, vec->ksize);
1548}
1549
1550/*
1551 * Test the hash algorithm represented by @req against the corresponding generic
1552 * implementation, if one is available.
1553 */
1554static int test_hash_vs_generic_impl(const char *driver,
1555 const char *generic_driver,
1556 unsigned int maxkeysize,
1557 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001558 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001559 struct test_sglist *tsgl,
1560 u8 *hashstate)
1561{
1562 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1563 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1564 const unsigned int blocksize = crypto_ahash_blocksize(tfm);
1565 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
1566 const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
1567 char _generic_driver[CRYPTO_MAX_ALG_NAME];
1568 struct crypto_shash *generic_tfm = NULL;
1569 unsigned int i;
1570 struct hash_testvec vec = { 0 };
1571 char vec_name[64];
1572 struct testvec_config cfg;
1573 char cfgname[TESTVEC_CONFIG_NAMELEN];
1574 int err;
1575
1576 if (noextratests)
1577 return 0;
1578
1579 if (!generic_driver) { /* Use default naming convention? */
1580 err = build_generic_driver_name(algname, _generic_driver);
1581 if (err)
1582 return err;
1583 generic_driver = _generic_driver;
1584 }
1585
1586 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
1587 return 0;
1588
1589 generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
1590 if (IS_ERR(generic_tfm)) {
1591 err = PTR_ERR(generic_tfm);
1592 if (err == -ENOENT) {
1593 pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable\n",
1594 driver, generic_driver);
1595 return 0;
1596 }
1597 pr_err("alg: hash: error allocating %s (generic impl of %s): %d\n",
1598 generic_driver, algname, err);
1599 return err;
1600 }
1601
1602 /* Check the algorithm properties for consistency. */
1603
1604 if (digestsize != crypto_shash_digestsize(generic_tfm)) {
1605 pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)\n",
1606 driver, digestsize,
1607 crypto_shash_digestsize(generic_tfm));
1608 err = -EINVAL;
1609 goto out;
1610 }
1611
1612 if (blocksize != crypto_shash_blocksize(generic_tfm)) {
1613 pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)\n",
1614 driver, blocksize, crypto_shash_blocksize(generic_tfm));
1615 err = -EINVAL;
1616 goto out;
1617 }
1618
1619 /*
1620 * Now generate test vectors using the generic implementation, and test
1621 * the other implementation against them.
1622 */
1623
1624 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
1625 vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
1626 vec.digest = kmalloc(digestsize, GFP_KERNEL);
1627 if (!vec.key || !vec.plaintext || !vec.digest) {
1628 err = -ENOMEM;
1629 goto out;
1630 }
1631
1632 for (i = 0; i < fuzz_iterations * 8; i++) {
1633 generate_random_hash_testvec(generic_tfm, &vec,
1634 maxkeysize, maxdatasize,
1635 vec_name, sizeof(vec_name));
1636 generate_random_testvec_config(&cfg, cfgname, sizeof(cfgname));
1637
1638 err = test_hash_vec_cfg(driver, &vec, vec_name, &cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001639 req, desc, tsgl, hashstate);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001640 if (err)
1641 goto out;
1642 cond_resched();
1643 }
1644 err = 0;
1645out:
1646 kfree(vec.key);
1647 kfree(vec.plaintext);
1648 kfree(vec.digest);
1649 crypto_free_shash(generic_tfm);
1650 return err;
1651}
1652#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1653static int test_hash_vs_generic_impl(const char *driver,
1654 const char *generic_driver,
1655 unsigned int maxkeysize,
1656 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001657 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001658 struct test_sglist *tsgl,
1659 u8 *hashstate)
1660{
1661 return 0;
1662}
1663#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1664
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001665static int alloc_shash(const char *driver, u32 type, u32 mask,
1666 struct crypto_shash **tfm_ret,
1667 struct shash_desc **desc_ret)
1668{
1669 struct crypto_shash *tfm;
1670 struct shash_desc *desc;
1671
1672 tfm = crypto_alloc_shash(driver, type, mask);
1673 if (IS_ERR(tfm)) {
1674 if (PTR_ERR(tfm) == -ENOENT) {
1675 /*
1676 * This algorithm is only available through the ahash
1677 * API, not the shash API, so skip the shash tests.
1678 */
1679 return 0;
1680 }
1681 pr_err("alg: hash: failed to allocate shash transform for %s: %ld\n",
1682 driver, PTR_ERR(tfm));
1683 return PTR_ERR(tfm);
1684 }
1685
1686 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1687 if (!desc) {
1688 crypto_free_shash(tfm);
1689 return -ENOMEM;
1690 }
1691 desc->tfm = tfm;
1692
1693 *tfm_ret = tfm;
1694 *desc_ret = desc;
1695 return 0;
1696}
1697
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001698static int __alg_test_hash(const struct hash_testvec *vecs,
1699 unsigned int num_vecs, const char *driver,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001700 u32 type, u32 mask,
1701 const char *generic_driver, unsigned int maxkeysize)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001702{
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001703 struct crypto_ahash *atfm = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001704 struct ahash_request *req = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001705 struct crypto_shash *stfm = NULL;
1706 struct shash_desc *desc = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001707 struct test_sglist *tsgl = NULL;
1708 u8 *hashstate = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001709 unsigned int statesize;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001710 unsigned int i;
1711 int err;
1712
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001713 /*
1714 * Always test the ahash API. This works regardless of whether the
1715 * algorithm is implemented as ahash or shash.
1716 */
1717
1718 atfm = crypto_alloc_ahash(driver, type, mask);
1719 if (IS_ERR(atfm)) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001720 pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001721 driver, PTR_ERR(atfm));
1722 return PTR_ERR(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001723 }
1724
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001725 req = ahash_request_alloc(atfm, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001726 if (!req) {
1727 pr_err("alg: hash: failed to allocate request for %s\n",
1728 driver);
1729 err = -ENOMEM;
1730 goto out;
1731 }
1732
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001733 /*
1734 * If available also test the shash API, to cover corner cases that may
1735 * be missed by testing the ahash API only.
1736 */
1737 err = alloc_shash(driver, type, mask, &stfm, &desc);
1738 if (err)
1739 goto out;
1740
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001741 tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
1742 if (!tsgl || init_test_sglist(tsgl) != 0) {
1743 pr_err("alg: hash: failed to allocate test buffers for %s\n",
1744 driver);
1745 kfree(tsgl);
1746 tsgl = NULL;
1747 err = -ENOMEM;
1748 goto out;
1749 }
1750
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001751 statesize = crypto_ahash_statesize(atfm);
1752 if (stfm)
1753 statesize = max(statesize, crypto_shash_statesize(stfm));
1754 hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001755 if (!hashstate) {
1756 pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
1757 driver);
1758 err = -ENOMEM;
1759 goto out;
1760 }
1761
1762 for (i = 0; i < num_vecs; i++) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001763 err = test_hash_vec(driver, &vecs[i], i, req, desc, tsgl,
1764 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001765 if (err)
1766 goto out;
1767 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001768 err = test_hash_vs_generic_impl(driver, generic_driver, maxkeysize, req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001769 desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001770out:
1771 kfree(hashstate);
1772 if (tsgl) {
1773 destroy_test_sglist(tsgl);
1774 kfree(tsgl);
1775 }
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001776 kfree(desc);
1777 crypto_free_shash(stfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001778 ahash_request_free(req);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001779 crypto_free_ahash(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001780 return err;
1781}
1782
1783static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1784 u32 type, u32 mask)
1785{
1786 const struct hash_testvec *template = desc->suite.hash.vecs;
1787 unsigned int tcount = desc->suite.hash.count;
1788 unsigned int nr_unkeyed, nr_keyed;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001789 unsigned int maxkeysize = 0;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001790 int err;
1791
1792 /*
1793 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1794 * first, before setting a key on the tfm. To make this easier, we
1795 * require that the unkeyed test vectors (if any) are listed first.
1796 */
1797
1798 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1799 if (template[nr_unkeyed].ksize)
1800 break;
1801 }
1802 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1803 if (!template[nr_unkeyed + nr_keyed].ksize) {
1804 pr_err("alg: hash: test vectors for %s out of order, "
1805 "unkeyed ones must come first\n", desc->alg);
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001806 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08001807 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001808 maxkeysize = max_t(unsigned int, maxkeysize,
1809 template[nr_unkeyed + nr_keyed].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001810 }
1811
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001812 err = 0;
1813 if (nr_unkeyed) {
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001814 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
1815 desc->generic_driver, maxkeysize);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001816 template += nr_unkeyed;
Herbert Xuda7f0332008-07-31 17:08:25 +08001817 }
1818
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001819 if (!err && nr_keyed)
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001820 err = __alg_test_hash(template, nr_keyed, driver, type, mask,
1821 desc->generic_driver, maxkeysize);
Wang, Rui Y018ba952016-02-03 18:26:57 +08001822
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001823 return err;
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +03001824}
1825
Eric Biggersed968042019-01-31 23:51:47 -08001826static int test_aead_vec_cfg(const char *driver, int enc,
1827 const struct aead_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07001828 const char *vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08001829 const struct testvec_config *cfg,
1830 struct aead_request *req,
1831 struct cipher_test_sglists *tsgls)
Herbert Xuda7f0332008-07-31 17:08:25 +08001832{
Eric Biggersed968042019-01-31 23:51:47 -08001833 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1834 const unsigned int alignmask = crypto_aead_alignmask(tfm);
1835 const unsigned int ivsize = crypto_aead_ivsize(tfm);
1836 const unsigned int authsize = vec->clen - vec->plen;
1837 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1838 const char *op = enc ? "encryption" : "decryption";
1839 DECLARE_CRYPTO_WAIT(wait);
1840 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
1841 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
1842 cfg->iv_offset +
1843 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
1844 struct kvec input[2];
Eric Biggers5283a8e2019-04-11 21:57:36 -07001845 int expected_error;
Eric Biggersed968042019-01-31 23:51:47 -08001846 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001847
Eric Biggersed968042019-01-31 23:51:47 -08001848 /* Set the key */
1849 if (vec->wk)
1850 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001851 else
Eric Biggersed968042019-01-31 23:51:47 -08001852 crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1853 err = crypto_aead_setkey(tfm, vec->key, vec->klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001854 if (err && err != vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001855 pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1856 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001857 crypto_aead_get_flags(tfm));
Eric Biggersed968042019-01-31 23:51:47 -08001858 return err;
1859 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001860 if (!err && vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001861 pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1862 driver, vec_name, vec->setkey_error);
Eric Biggersed968042019-01-31 23:51:47 -08001863 return -EINVAL;
1864 }
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001865
Eric Biggersed968042019-01-31 23:51:47 -08001866 /* Set the authentication tag size */
1867 err = crypto_aead_setauthsize(tfm, authsize);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001868 if (err && err != vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001869 pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d\n",
1870 driver, vec_name, vec->setauthsize_error, err);
Eric Biggersed968042019-01-31 23:51:47 -08001871 return err;
1872 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001873 if (!err && vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001874 pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d\n",
1875 driver, vec_name, vec->setauthsize_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001876 return -EINVAL;
1877 }
1878
1879 if (vec->setkey_error || vec->setauthsize_error)
1880 return 0;
Eric Biggersed968042019-01-31 23:51:47 -08001881
1882 /* The IV must be copied to a buffer, as the algorithm may modify it */
1883 if (WARN_ON(ivsize > MAX_IVLEN))
1884 return -EINVAL;
1885 if (vec->iv)
1886 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001887 else
Eric Biggersed968042019-01-31 23:51:47 -08001888 memset(iv, 0, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001889
Eric Biggersed968042019-01-31 23:51:47 -08001890 /* Build the src/dst scatterlists */
1891 input[0].iov_base = (void *)vec->assoc;
1892 input[0].iov_len = vec->alen;
1893 input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
1894 input[1].iov_len = enc ? vec->plen : vec->clen;
1895 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
1896 vec->alen + (enc ? vec->plen :
1897 vec->clen),
1898 vec->alen + (enc ? vec->clen :
1899 vec->plen),
1900 input, 2);
1901 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07001902 pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
1903 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001904 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001905 }
1906
Eric Biggersed968042019-01-31 23:51:47 -08001907 /* Do the actual encryption or decryption */
1908 testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
1909 aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
1910 aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
1911 enc ? vec->plen : vec->clen, iv);
1912 aead_request_set_ad(req, vec->alen);
Eric Biggers65707372019-03-12 22:12:52 -07001913 if (cfg->nosimd)
1914 crypto_disable_simd_for_test();
1915 err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
1916 if (cfg->nosimd)
1917 crypto_reenable_simd_for_test();
1918 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001919
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001920 /* Check that the algorithm didn't overwrite things it shouldn't have */
1921 if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
1922 req->assoclen != vec->alen ||
1923 req->iv != iv ||
1924 req->src != tsgls->src.sgl_ptr ||
1925 req->dst != tsgls->dst.sgl_ptr ||
1926 crypto_aead_reqtfm(req) != tfm ||
1927 req->base.complete != crypto_req_done ||
1928 req->base.flags != req_flags ||
1929 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07001930 pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
1931 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001932 if (req->cryptlen != (enc ? vec->plen : vec->clen))
1933 pr_err("alg: aead: changed 'req->cryptlen'\n");
1934 if (req->assoclen != vec->alen)
1935 pr_err("alg: aead: changed 'req->assoclen'\n");
1936 if (req->iv != iv)
1937 pr_err("alg: aead: changed 'req->iv'\n");
1938 if (req->src != tsgls->src.sgl_ptr)
1939 pr_err("alg: aead: changed 'req->src'\n");
1940 if (req->dst != tsgls->dst.sgl_ptr)
1941 pr_err("alg: aead: changed 'req->dst'\n");
1942 if (crypto_aead_reqtfm(req) != tfm)
1943 pr_err("alg: aead: changed 'req->base.tfm'\n");
1944 if (req->base.complete != crypto_req_done)
1945 pr_err("alg: aead: changed 'req->base.complete'\n");
1946 if (req->base.flags != req_flags)
1947 pr_err("alg: aead: changed 'req->base.flags'\n");
1948 if (req->base.data != &wait)
1949 pr_err("alg: aead: changed 'req->base.data'\n");
1950 return -EINVAL;
1951 }
1952 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001953 pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
1954 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001955 return -EINVAL;
1956 }
1957 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
1958 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001959 pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
1960 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001961 return -EINVAL;
1962 }
1963
Eric Biggers5283a8e2019-04-11 21:57:36 -07001964 /* Check for success or failure */
1965 expected_error = vec->novrfy ? -EBADMSG : vec->crypt_error;
1966 if (err) {
1967 if (err == expected_error)
1968 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07001969 pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1970 driver, op, vec_name, expected_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001971 return err;
1972 }
1973 if (expected_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001974 pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1975 driver, op, vec_name, expected_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001976 return -EINVAL;
1977 }
1978
Eric Biggersed968042019-01-31 23:51:47 -08001979 /* Check for the correct output (ciphertext or plaintext) */
1980 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
1981 enc ? vec->clen : vec->plen,
1982 vec->alen, enc || !cfg->inplace);
1983 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07001984 pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
1985 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001986 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001987 }
Eric Biggersed968042019-01-31 23:51:47 -08001988 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07001989 pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1990 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001991 return err;
Jussi Kivilinna58dcf542013-06-13 17:37:50 +03001992 }
1993
1994 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001995}
1996
Eric Biggersed968042019-01-31 23:51:47 -08001997static int test_aead_vec(const char *driver, int enc,
1998 const struct aead_testvec *vec, unsigned int vec_num,
1999 struct aead_request *req,
2000 struct cipher_test_sglists *tsgls)
2001{
Eric Biggers951d1332019-04-11 21:57:37 -07002002 char vec_name[16];
Eric Biggersed968042019-01-31 23:51:47 -08002003 unsigned int i;
2004 int err;
2005
2006 if (enc && vec->novrfy)
2007 return 0;
2008
Eric Biggers951d1332019-04-11 21:57:37 -07002009 sprintf(vec_name, "%u", vec_num);
2010
Eric Biggersed968042019-01-31 23:51:47 -08002011 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002012 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002013 &default_cipher_testvec_configs[i],
2014 req, tsgls);
2015 if (err)
2016 return err;
2017 }
2018
2019#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2020 if (!noextratests) {
2021 struct testvec_config cfg;
2022 char cfgname[TESTVEC_CONFIG_NAMELEN];
2023
2024 for (i = 0; i < fuzz_iterations; i++) {
2025 generate_random_testvec_config(&cfg, cfgname,
2026 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002027 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002028 &cfg, req, tsgls);
2029 if (err)
2030 return err;
2031 }
2032 }
2033#endif
2034 return 0;
2035}
2036
Eric Biggers40153b12019-04-11 21:57:41 -07002037#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2038/*
2039 * Generate an AEAD test vector from the given implementation.
2040 * Assumes the buffers in 'vec' were already allocated.
2041 */
2042static void generate_random_aead_testvec(struct aead_request *req,
2043 struct aead_testvec *vec,
2044 unsigned int maxkeysize,
2045 unsigned int maxdatasize,
2046 char *name, size_t max_namelen)
2047{
2048 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2049 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2050 unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2051 unsigned int authsize;
2052 unsigned int total_len;
2053 int i;
2054 struct scatterlist src[2], dst;
2055 u8 iv[MAX_IVLEN];
2056 DECLARE_CRYPTO_WAIT(wait);
2057
2058 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2059 vec->klen = maxkeysize;
2060 if (prandom_u32() % 4 == 0)
2061 vec->klen = prandom_u32() % (maxkeysize + 1);
2062 generate_random_bytes((u8 *)vec->key, vec->klen);
2063 vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
2064
2065 /* IV */
2066 generate_random_bytes((u8 *)vec->iv, ivsize);
2067
2068 /* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
2069 authsize = maxauthsize;
2070 if (prandom_u32() % 4 == 0)
2071 authsize = prandom_u32() % (maxauthsize + 1);
2072 if (WARN_ON(authsize > maxdatasize))
2073 authsize = maxdatasize;
2074 maxdatasize -= authsize;
2075 vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
2076
2077 /* Plaintext and associated data */
2078 total_len = generate_random_length(maxdatasize);
2079 if (prandom_u32() % 4 == 0)
2080 vec->alen = 0;
2081 else
2082 vec->alen = generate_random_length(total_len);
2083 vec->plen = total_len - vec->alen;
2084 generate_random_bytes((u8 *)vec->assoc, vec->alen);
2085 generate_random_bytes((u8 *)vec->ptext, vec->plen);
2086
2087 vec->clen = vec->plen + authsize;
2088
2089 /*
2090 * If the key or authentication tag size couldn't be set, no need to
2091 * continue to encrypt.
2092 */
2093 if (vec->setkey_error || vec->setauthsize_error)
2094 goto done;
2095
2096 /* Ciphertext */
2097 sg_init_table(src, 2);
2098 i = 0;
2099 if (vec->alen)
2100 sg_set_buf(&src[i++], vec->assoc, vec->alen);
2101 if (vec->plen)
2102 sg_set_buf(&src[i++], vec->ptext, vec->plen);
2103 sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
2104 memcpy(iv, vec->iv, ivsize);
2105 aead_request_set_callback(req, 0, crypto_req_done, &wait);
2106 aead_request_set_crypt(req, src, &dst, vec->plen, iv);
2107 aead_request_set_ad(req, vec->alen);
2108 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req), &wait);
2109 if (vec->crypt_error == 0)
2110 memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
2111done:
2112 snprintf(name, max_namelen,
2113 "\"random: alen=%u plen=%u authsize=%u klen=%u\"",
2114 vec->alen, vec->plen, authsize, vec->klen);
2115}
2116
2117/*
2118 * Test the AEAD algorithm represented by @req against the corresponding generic
2119 * implementation, if one is available.
2120 */
2121static int test_aead_vs_generic_impl(const char *driver,
2122 const struct alg_test_desc *test_desc,
2123 struct aead_request *req,
2124 struct cipher_test_sglists *tsgls)
2125{
2126 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2127 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2128 const unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2129 const unsigned int blocksize = crypto_aead_blocksize(tfm);
2130 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2131 const char *algname = crypto_aead_alg(tfm)->base.cra_name;
2132 const char *generic_driver = test_desc->generic_driver;
2133 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2134 struct crypto_aead *generic_tfm = NULL;
2135 struct aead_request *generic_req = NULL;
2136 unsigned int maxkeysize;
2137 unsigned int i;
2138 struct aead_testvec vec = { 0 };
2139 char vec_name[64];
2140 struct testvec_config cfg;
2141 char cfgname[TESTVEC_CONFIG_NAMELEN];
2142 int err;
2143
2144 if (noextratests)
2145 return 0;
2146
2147 if (!generic_driver) { /* Use default naming convention? */
2148 err = build_generic_driver_name(algname, _generic_driver);
2149 if (err)
2150 return err;
2151 generic_driver = _generic_driver;
2152 }
2153
2154 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2155 return 0;
2156
2157 generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
2158 if (IS_ERR(generic_tfm)) {
2159 err = PTR_ERR(generic_tfm);
2160 if (err == -ENOENT) {
2161 pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable\n",
2162 driver, generic_driver);
2163 return 0;
2164 }
2165 pr_err("alg: aead: error allocating %s (generic impl of %s): %d\n",
2166 generic_driver, algname, err);
2167 return err;
2168 }
2169
2170 generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
2171 if (!generic_req) {
2172 err = -ENOMEM;
2173 goto out;
2174 }
2175
2176 /* Check the algorithm properties for consistency. */
2177
2178 if (maxauthsize != crypto_aead_alg(generic_tfm)->maxauthsize) {
2179 pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)\n",
2180 driver, maxauthsize,
2181 crypto_aead_alg(generic_tfm)->maxauthsize);
2182 err = -EINVAL;
2183 goto out;
2184 }
2185
2186 if (ivsize != crypto_aead_ivsize(generic_tfm)) {
2187 pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2188 driver, ivsize, crypto_aead_ivsize(generic_tfm));
2189 err = -EINVAL;
2190 goto out;
2191 }
2192
2193 if (blocksize != crypto_aead_blocksize(generic_tfm)) {
2194 pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2195 driver, blocksize, crypto_aead_blocksize(generic_tfm));
2196 err = -EINVAL;
2197 goto out;
2198 }
2199
2200 /*
2201 * Now generate test vectors using the generic implementation, and test
2202 * the other implementation against them.
2203 */
2204
2205 maxkeysize = 0;
2206 for (i = 0; i < test_desc->suite.aead.count; i++)
2207 maxkeysize = max_t(unsigned int, maxkeysize,
2208 test_desc->suite.aead.vecs[i].klen);
2209
2210 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
2211 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2212 vec.assoc = kmalloc(maxdatasize, GFP_KERNEL);
2213 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2214 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2215 if (!vec.key || !vec.iv || !vec.assoc || !vec.ptext || !vec.ctext) {
2216 err = -ENOMEM;
2217 goto out;
2218 }
2219
2220 for (i = 0; i < fuzz_iterations * 8; i++) {
2221 generate_random_aead_testvec(generic_req, &vec,
2222 maxkeysize, maxdatasize,
2223 vec_name, sizeof(vec_name));
2224 generate_random_testvec_config(&cfg, cfgname, sizeof(cfgname));
2225
2226 err = test_aead_vec_cfg(driver, ENCRYPT, &vec, vec_name, &cfg,
2227 req, tsgls);
2228 if (err)
2229 goto out;
2230 err = test_aead_vec_cfg(driver, DECRYPT, &vec, vec_name, &cfg,
2231 req, tsgls);
2232 if (err)
2233 goto out;
2234 cond_resched();
2235 }
2236 err = 0;
2237out:
2238 kfree(vec.key);
2239 kfree(vec.iv);
2240 kfree(vec.assoc);
2241 kfree(vec.ptext);
2242 kfree(vec.ctext);
2243 crypto_free_aead(generic_tfm);
2244 aead_request_free(generic_req);
2245 return err;
2246}
2247#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2248static int test_aead_vs_generic_impl(const char *driver,
2249 const struct alg_test_desc *test_desc,
2250 struct aead_request *req,
2251 struct cipher_test_sglists *tsgls)
2252{
2253 return 0;
2254}
2255#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2256
Eric Biggersed968042019-01-31 23:51:47 -08002257static int test_aead(const char *driver, int enc,
2258 const struct aead_test_suite *suite,
2259 struct aead_request *req,
2260 struct cipher_test_sglists *tsgls)
2261{
2262 unsigned int i;
2263 int err;
2264
2265 for (i = 0; i < suite->count; i++) {
2266 err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
2267 tsgls);
2268 if (err)
2269 return err;
2270 }
2271 return 0;
2272}
2273
2274static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
2275 u32 type, u32 mask)
2276{
2277 const struct aead_test_suite *suite = &desc->suite.aead;
2278 struct crypto_aead *tfm;
2279 struct aead_request *req = NULL;
2280 struct cipher_test_sglists *tsgls = NULL;
2281 int err;
2282
2283 if (suite->count <= 0) {
2284 pr_err("alg: aead: empty test suite for %s\n", driver);
2285 return -EINVAL;
2286 }
2287
2288 tfm = crypto_alloc_aead(driver, type, mask);
2289 if (IS_ERR(tfm)) {
2290 pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
2291 driver, PTR_ERR(tfm));
2292 return PTR_ERR(tfm);
2293 }
2294
2295 req = aead_request_alloc(tfm, GFP_KERNEL);
2296 if (!req) {
2297 pr_err("alg: aead: failed to allocate request for %s\n",
2298 driver);
2299 err = -ENOMEM;
2300 goto out;
2301 }
2302
2303 tsgls = alloc_cipher_test_sglists();
2304 if (!tsgls) {
2305 pr_err("alg: aead: failed to allocate test buffers for %s\n",
2306 driver);
2307 err = -ENOMEM;
2308 goto out;
2309 }
2310
2311 err = test_aead(driver, ENCRYPT, suite, req, tsgls);
2312 if (err)
2313 goto out;
2314
2315 err = test_aead(driver, DECRYPT, suite, req, tsgls);
Eric Biggers40153b12019-04-11 21:57:41 -07002316 if (err)
2317 goto out;
2318
2319 err = test_aead_vs_generic_impl(driver, desc, req, tsgls);
Eric Biggersed968042019-01-31 23:51:47 -08002320out:
2321 free_cipher_test_sglists(tsgls);
2322 aead_request_free(req);
2323 crypto_free_aead(tfm);
2324 return err;
2325}
2326
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002327static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002328 const struct cipher_testvec *template,
2329 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002330{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002331 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
2332 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002333 char *q;
2334 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002335 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002336 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002337 char *xbuf[XBUFSIZE];
2338 int ret = -ENOMEM;
2339
2340 if (testmgr_alloc_buf(xbuf))
2341 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002342
2343 if (enc == ENCRYPT)
2344 e = "encryption";
2345 else
2346 e = "decryption";
2347
2348 j = 0;
2349 for (i = 0; i < tcount; i++) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002350
Stephan Mueller10faa8c2016-08-25 15:15:01 +02002351 if (fips_enabled && template[i].fips_skip)
2352 continue;
2353
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002354 input = enc ? template[i].ptext : template[i].ctext;
2355 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002356 j++;
2357
Herbert Xufd57f222009-05-29 16:05:42 +10002358 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002359 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10002360 goto out;
2361
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002362 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002363 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002364
2365 crypto_cipher_clear_flags(tfm, ~0);
2366 if (template[i].wk)
Eric Biggers231baec2019-01-18 22:48:00 -08002367 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002368
2369 ret = crypto_cipher_setkey(tfm, template[i].key,
2370 template[i].klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002371 if (ret) {
2372 if (ret == template[i].setkey_error)
2373 continue;
2374 pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x\n",
2375 algo, j, template[i].setkey_error, ret,
2376 crypto_cipher_get_flags(tfm));
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002377 goto out;
Eric Biggers5283a8e2019-04-11 21:57:36 -07002378 }
2379 if (template[i].setkey_error) {
2380 pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d\n",
2381 algo, j, template[i].setkey_error);
2382 ret = -EINVAL;
2383 goto out;
2384 }
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002385
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002386 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002387 k += crypto_cipher_blocksize(tfm)) {
2388 if (enc)
2389 crypto_cipher_encrypt_one(tfm, data + k,
2390 data + k);
2391 else
2392 crypto_cipher_decrypt_one(tfm, data + k,
2393 data + k);
2394 }
2395
2396 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002397 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002398 printk(KERN_ERR "alg: cipher: Test %d failed "
2399 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002400 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002401 ret = -EINVAL;
2402 goto out;
2403 }
2404 }
2405
2406 ret = 0;
2407
2408out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002409 testmgr_free_buf(xbuf);
2410out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002411 return ret;
2412}
2413
Eric Biggers4e7babba2019-01-31 23:51:46 -08002414static int test_skcipher_vec_cfg(const char *driver, int enc,
2415 const struct cipher_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07002416 const char *vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002417 const struct testvec_config *cfg,
2418 struct skcipher_request *req,
2419 struct cipher_test_sglists *tsgls)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002420{
Eric Biggers4e7babba2019-01-31 23:51:46 -08002421 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2422 const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
2423 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2424 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2425 const char *op = enc ? "encryption" : "decryption";
2426 DECLARE_CRYPTO_WAIT(wait);
2427 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2428 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2429 cfg->iv_offset +
2430 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2431 struct kvec input;
2432 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002433
Eric Biggers4e7babba2019-01-31 23:51:46 -08002434 /* Set the key */
2435 if (vec->wk)
2436 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002437 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002438 crypto_skcipher_clear_flags(tfm,
2439 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2440 err = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2441 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07002442 if (err == vec->setkey_error)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002443 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002444 pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2445 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07002446 crypto_skcipher_get_flags(tfm));
Eric Biggers4e7babba2019-01-31 23:51:46 -08002447 return err;
2448 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07002449 if (vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002450 pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2451 driver, vec_name, vec->setkey_error);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002452 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002453 }
2454
Eric Biggers4e7babba2019-01-31 23:51:46 -08002455 /* The IV must be copied to a buffer, as the algorithm may modify it */
2456 if (ivsize) {
2457 if (WARN_ON(ivsize > MAX_IVLEN))
2458 return -EINVAL;
Eric Biggers8efd9722019-02-14 00:03:51 -08002459 if (vec->generates_iv && !enc)
2460 memcpy(iv, vec->iv_out, ivsize);
2461 else if (vec->iv)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002462 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08002463 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002464 memset(iv, 0, ivsize);
2465 } else {
2466 if (vec->generates_iv) {
Eric Biggers951d1332019-04-11 21:57:37 -07002467 pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!\n",
2468 driver, vec_name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002469 return -EINVAL;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03002470 }
Eric Biggers4e7babba2019-01-31 23:51:46 -08002471 iv = NULL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002472 }
2473
Eric Biggers4e7babba2019-01-31 23:51:46 -08002474 /* Build the src/dst scatterlists */
2475 input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2476 input.iov_len = vec->len;
2477 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2478 vec->len, vec->len, &input, 1);
2479 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002480 pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2481 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002482 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002483 }
2484
Eric Biggers4e7babba2019-01-31 23:51:46 -08002485 /* Do the actual encryption or decryption */
2486 testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
2487 skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
2488 skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2489 vec->len, iv);
Eric Biggers65707372019-03-12 22:12:52 -07002490 if (cfg->nosimd)
2491 crypto_disable_simd_for_test();
2492 err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
2493 if (cfg->nosimd)
2494 crypto_reenable_simd_for_test();
2495 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08002496
Eric Biggersfa353c92019-01-31 23:51:49 -08002497 /* Check that the algorithm didn't overwrite things it shouldn't have */
2498 if (req->cryptlen != vec->len ||
2499 req->iv != iv ||
2500 req->src != tsgls->src.sgl_ptr ||
2501 req->dst != tsgls->dst.sgl_ptr ||
2502 crypto_skcipher_reqtfm(req) != tfm ||
2503 req->base.complete != crypto_req_done ||
2504 req->base.flags != req_flags ||
2505 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07002506 pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2507 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002508 if (req->cryptlen != vec->len)
2509 pr_err("alg: skcipher: changed 'req->cryptlen'\n");
2510 if (req->iv != iv)
2511 pr_err("alg: skcipher: changed 'req->iv'\n");
2512 if (req->src != tsgls->src.sgl_ptr)
2513 pr_err("alg: skcipher: changed 'req->src'\n");
2514 if (req->dst != tsgls->dst.sgl_ptr)
2515 pr_err("alg: skcipher: changed 'req->dst'\n");
2516 if (crypto_skcipher_reqtfm(req) != tfm)
2517 pr_err("alg: skcipher: changed 'req->base.tfm'\n");
2518 if (req->base.complete != crypto_req_done)
2519 pr_err("alg: skcipher: changed 'req->base.complete'\n");
2520 if (req->base.flags != req_flags)
2521 pr_err("alg: skcipher: changed 'req->base.flags'\n");
2522 if (req->base.data != &wait)
2523 pr_err("alg: skcipher: changed 'req->base.data'\n");
2524 return -EINVAL;
2525 }
2526 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002527 pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2528 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002529 return -EINVAL;
2530 }
2531 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2532 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002533 pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2534 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002535 return -EINVAL;
2536 }
2537
Eric Biggers5283a8e2019-04-11 21:57:36 -07002538 /* Check for success or failure */
2539 if (err) {
2540 if (err == vec->crypt_error)
2541 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002542 pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
2543 driver, op, vec_name, vec->crypt_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002544 return err;
2545 }
2546 if (vec->crypt_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002547 pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
2548 driver, op, vec_name, vec->crypt_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002549 return -EINVAL;
2550 }
2551
Eric Biggers4e7babba2019-01-31 23:51:46 -08002552 /* Check for the correct output (ciphertext or plaintext) */
2553 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2554 vec->len, 0, true);
2555 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07002556 pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2557 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002558 return err;
2559 }
2560 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002561 pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2562 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002563 return err;
2564 }
Herbert Xuda7f0332008-07-31 17:08:25 +08002565
Eric Biggers4e7babba2019-01-31 23:51:46 -08002566 /* If applicable, check that the algorithm generated the correct IV */
Eric Biggers8efd9722019-02-14 00:03:51 -08002567 if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
Eric Biggers951d1332019-04-11 21:57:37 -07002568 pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"\n",
2569 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002570 hexdump(iv, ivsize);
2571 return -EINVAL;
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03002572 }
2573
2574 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002575}
2576
Eric Biggers4e7babba2019-01-31 23:51:46 -08002577static int test_skcipher_vec(const char *driver, int enc,
2578 const struct cipher_testvec *vec,
2579 unsigned int vec_num,
2580 struct skcipher_request *req,
2581 struct cipher_test_sglists *tsgls)
2582{
Eric Biggers951d1332019-04-11 21:57:37 -07002583 char vec_name[16];
Eric Biggers4e7babba2019-01-31 23:51:46 -08002584 unsigned int i;
2585 int err;
2586
2587 if (fips_enabled && vec->fips_skip)
2588 return 0;
2589
Eric Biggers951d1332019-04-11 21:57:37 -07002590 sprintf(vec_name, "%u", vec_num);
2591
Eric Biggers4e7babba2019-01-31 23:51:46 -08002592 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002593 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002594 &default_cipher_testvec_configs[i],
2595 req, tsgls);
2596 if (err)
2597 return err;
2598 }
2599
2600#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2601 if (!noextratests) {
2602 struct testvec_config cfg;
2603 char cfgname[TESTVEC_CONFIG_NAMELEN];
2604
2605 for (i = 0; i < fuzz_iterations; i++) {
2606 generate_random_testvec_config(&cfg, cfgname,
2607 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002608 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002609 &cfg, req, tsgls);
2610 if (err)
2611 return err;
2612 }
2613 }
2614#endif
2615 return 0;
2616}
2617
Eric Biggersd435e102019-04-11 21:57:40 -07002618#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2619/*
2620 * Generate a symmetric cipher test vector from the given implementation.
2621 * Assumes the buffers in 'vec' were already allocated.
2622 */
2623static void generate_random_cipher_testvec(struct skcipher_request *req,
2624 struct cipher_testvec *vec,
2625 unsigned int maxdatasize,
2626 char *name, size_t max_namelen)
2627{
2628 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2629 const unsigned int maxkeysize = tfm->keysize;
2630 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2631 struct scatterlist src, dst;
2632 u8 iv[MAX_IVLEN];
2633 DECLARE_CRYPTO_WAIT(wait);
2634
2635 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2636 vec->klen = maxkeysize;
2637 if (prandom_u32() % 4 == 0)
2638 vec->klen = prandom_u32() % (maxkeysize + 1);
2639 generate_random_bytes((u8 *)vec->key, vec->klen);
2640 vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2641
2642 /* IV */
2643 generate_random_bytes((u8 *)vec->iv, ivsize);
2644
2645 /* Plaintext */
2646 vec->len = generate_random_length(maxdatasize);
2647 generate_random_bytes((u8 *)vec->ptext, vec->len);
2648
2649 /* If the key couldn't be set, no need to continue to encrypt. */
2650 if (vec->setkey_error)
2651 goto done;
2652
2653 /* Ciphertext */
2654 sg_init_one(&src, vec->ptext, vec->len);
2655 sg_init_one(&dst, vec->ctext, vec->len);
2656 memcpy(iv, vec->iv, ivsize);
2657 skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
2658 skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
2659 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
2660done:
2661 snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
2662 vec->len, vec->klen);
2663}
2664
2665/*
2666 * Test the skcipher algorithm represented by @req against the corresponding
2667 * generic implementation, if one is available.
2668 */
2669static int test_skcipher_vs_generic_impl(const char *driver,
2670 const char *generic_driver,
2671 struct skcipher_request *req,
2672 struct cipher_test_sglists *tsgls)
2673{
2674 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2675 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2676 const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
2677 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2678 const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
2679 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2680 struct crypto_skcipher *generic_tfm = NULL;
2681 struct skcipher_request *generic_req = NULL;
2682 unsigned int i;
2683 struct cipher_testvec vec = { 0 };
2684 char vec_name[64];
2685 struct testvec_config cfg;
2686 char cfgname[TESTVEC_CONFIG_NAMELEN];
2687 int err;
2688
2689 if (noextratests)
2690 return 0;
2691
2692 /* Keywrap isn't supported here yet as it handles its IV differently. */
2693 if (strncmp(algname, "kw(", 3) == 0)
2694 return 0;
2695
2696 if (!generic_driver) { /* Use default naming convention? */
2697 err = build_generic_driver_name(algname, _generic_driver);
2698 if (err)
2699 return err;
2700 generic_driver = _generic_driver;
2701 }
2702
2703 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2704 return 0;
2705
2706 generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
2707 if (IS_ERR(generic_tfm)) {
2708 err = PTR_ERR(generic_tfm);
2709 if (err == -ENOENT) {
2710 pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable\n",
2711 driver, generic_driver);
2712 return 0;
2713 }
2714 pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d\n",
2715 generic_driver, algname, err);
2716 return err;
2717 }
2718
2719 generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
2720 if (!generic_req) {
2721 err = -ENOMEM;
2722 goto out;
2723 }
2724
2725 /* Check the algorithm properties for consistency. */
2726
2727 if (tfm->keysize != generic_tfm->keysize) {
2728 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
2729 driver, tfm->keysize, generic_tfm->keysize);
2730 err = -EINVAL;
2731 goto out;
2732 }
2733
2734 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
2735 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2736 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
2737 err = -EINVAL;
2738 goto out;
2739 }
2740
2741 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
2742 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2743 driver, blocksize,
2744 crypto_skcipher_blocksize(generic_tfm));
2745 err = -EINVAL;
2746 goto out;
2747 }
2748
2749 /*
2750 * Now generate test vectors using the generic implementation, and test
2751 * the other implementation against them.
2752 */
2753
2754 vec.key = kmalloc(tfm->keysize, GFP_KERNEL);
2755 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2756 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2757 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2758 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
2759 err = -ENOMEM;
2760 goto out;
2761 }
2762
2763 for (i = 0; i < fuzz_iterations * 8; i++) {
2764 generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
2765 vec_name, sizeof(vec_name));
2766 generate_random_testvec_config(&cfg, cfgname, sizeof(cfgname));
2767
2768 err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
2769 &cfg, req, tsgls);
2770 if (err)
2771 goto out;
2772 err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
2773 &cfg, req, tsgls);
2774 if (err)
2775 goto out;
2776 cond_resched();
2777 }
2778 err = 0;
2779out:
2780 kfree(vec.key);
2781 kfree(vec.iv);
2782 kfree(vec.ptext);
2783 kfree(vec.ctext);
2784 crypto_free_skcipher(generic_tfm);
2785 skcipher_request_free(generic_req);
2786 return err;
2787}
2788#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2789static int test_skcipher_vs_generic_impl(const char *driver,
2790 const char *generic_driver,
2791 struct skcipher_request *req,
2792 struct cipher_test_sglists *tsgls)
2793{
2794 return 0;
2795}
2796#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2797
Eric Biggers4e7babba2019-01-31 23:51:46 -08002798static int test_skcipher(const char *driver, int enc,
2799 const struct cipher_test_suite *suite,
2800 struct skcipher_request *req,
2801 struct cipher_test_sglists *tsgls)
2802{
2803 unsigned int i;
2804 int err;
2805
2806 for (i = 0; i < suite->count; i++) {
2807 err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
2808 tsgls);
2809 if (err)
2810 return err;
2811 }
2812 return 0;
2813}
2814
2815static int alg_test_skcipher(const struct alg_test_desc *desc,
2816 const char *driver, u32 type, u32 mask)
2817{
2818 const struct cipher_test_suite *suite = &desc->suite.cipher;
2819 struct crypto_skcipher *tfm;
2820 struct skcipher_request *req = NULL;
2821 struct cipher_test_sglists *tsgls = NULL;
2822 int err;
2823
2824 if (suite->count <= 0) {
2825 pr_err("alg: skcipher: empty test suite for %s\n", driver);
2826 return -EINVAL;
2827 }
2828
2829 tfm = crypto_alloc_skcipher(driver, type, mask);
2830 if (IS_ERR(tfm)) {
2831 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
2832 driver, PTR_ERR(tfm));
2833 return PTR_ERR(tfm);
2834 }
2835
2836 req = skcipher_request_alloc(tfm, GFP_KERNEL);
2837 if (!req) {
2838 pr_err("alg: skcipher: failed to allocate request for %s\n",
2839 driver);
2840 err = -ENOMEM;
2841 goto out;
2842 }
2843
2844 tsgls = alloc_cipher_test_sglists();
2845 if (!tsgls) {
2846 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
2847 driver);
2848 err = -ENOMEM;
2849 goto out;
2850 }
2851
2852 err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
2853 if (err)
2854 goto out;
2855
2856 err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002857 if (err)
2858 goto out;
2859
2860 err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
2861 tsgls);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002862out:
2863 free_cipher_test_sglists(tsgls);
2864 skcipher_request_free(req);
2865 crypto_free_skcipher(tfm);
2866 return err;
2867}
2868
Eric Biggersb13b1e02017-02-24 15:46:59 -08002869static int test_comp(struct crypto_comp *tfm,
2870 const struct comp_testvec *ctemplate,
2871 const struct comp_testvec *dtemplate,
2872 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002873{
2874 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02002875 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08002876 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08002877 int ret;
2878
Mahipal Challa33607382018-04-11 20:28:32 +02002879 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2880 if (!output)
2881 return -ENOMEM;
2882
2883 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2884 if (!decomp_output) {
2885 kfree(output);
2886 return -ENOMEM;
2887 }
2888
Herbert Xuda7f0332008-07-31 17:08:25 +08002889 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002890 int ilen;
2891 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002892
Michael Schupikov22a81182018-10-07 13:58:10 +02002893 memset(output, 0, COMP_BUF_SIZE);
2894 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002895
2896 ilen = ctemplate[i].inlen;
2897 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002898 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002899 if (ret) {
2900 printk(KERN_ERR "alg: comp: compression failed "
2901 "on test %d for %s: ret=%d\n", i + 1, algo,
2902 -ret);
2903 goto out;
2904 }
2905
Mahipal Challa33607382018-04-11 20:28:32 +02002906 ilen = dlen;
2907 dlen = COMP_BUF_SIZE;
2908 ret = crypto_comp_decompress(tfm, output,
2909 ilen, decomp_output, &dlen);
2910 if (ret) {
2911 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
2912 i + 1, algo, -ret);
2913 goto out;
2914 }
2915
2916 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002917 printk(KERN_ERR "alg: comp: Compression test %d "
2918 "failed for %s: output len = %d\n", i + 1, algo,
2919 dlen);
2920 ret = -EINVAL;
2921 goto out;
2922 }
2923
Mahipal Challa33607382018-04-11 20:28:32 +02002924 if (memcmp(decomp_output, ctemplate[i].input,
2925 ctemplate[i].inlen)) {
2926 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
2927 i + 1, algo);
2928 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002929 ret = -EINVAL;
2930 goto out;
2931 }
2932 }
2933
2934 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002935 int ilen;
2936 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002937
Michael Schupikov22a81182018-10-07 13:58:10 +02002938 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002939
2940 ilen = dtemplate[i].inlen;
2941 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002942 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002943 if (ret) {
2944 printk(KERN_ERR "alg: comp: decompression failed "
2945 "on test %d for %s: ret=%d\n", i + 1, algo,
2946 -ret);
2947 goto out;
2948 }
2949
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002950 if (dlen != dtemplate[i].outlen) {
2951 printk(KERN_ERR "alg: comp: Decompression test %d "
2952 "failed for %s: output len = %d\n", i + 1, algo,
2953 dlen);
2954 ret = -EINVAL;
2955 goto out;
2956 }
2957
Mahipal Challa33607382018-04-11 20:28:32 +02002958 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08002959 printk(KERN_ERR "alg: comp: Decompression test %d "
2960 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02002961 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002962 ret = -EINVAL;
2963 goto out;
2964 }
2965 }
2966
2967 ret = 0;
2968
2969out:
Mahipal Challa33607382018-04-11 20:28:32 +02002970 kfree(decomp_output);
2971 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08002972 return ret;
2973}
2974
Eric Biggersb13b1e02017-02-24 15:46:59 -08002975static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02002976 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002977 const struct comp_testvec *dtemplate,
2978 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01002979{
2980 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
2981 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01002982 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01002983 int ret;
2984 struct scatterlist src, dst;
2985 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002986 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01002987
Eric Biggerseb095592016-11-23 10:24:35 -08002988 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2989 if (!output)
2990 return -ENOMEM;
2991
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01002992 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2993 if (!decomp_out) {
2994 kfree(output);
2995 return -ENOMEM;
2996 }
2997
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01002998 for (i = 0; i < ctcount; i++) {
2999 unsigned int dlen = COMP_BUF_SIZE;
3000 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003001 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003002
Eric Biggersd2110222016-12-30 14:12:00 -06003003 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003004 if (!input_vec) {
3005 ret = -ENOMEM;
3006 goto out;
3007 }
3008
Eric Biggerseb095592016-11-23 10:24:35 -08003009 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003010 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003011 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003012 sg_init_one(&dst, output, dlen);
3013
3014 req = acomp_request_alloc(tfm);
3015 if (!req) {
3016 pr_err("alg: acomp: request alloc failed for %s\n",
3017 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003018 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003019 ret = -ENOMEM;
3020 goto out;
3021 }
3022
3023 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3024 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003025 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003026
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003027 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003028 if (ret) {
3029 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3030 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003031 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003032 acomp_request_free(req);
3033 goto out;
3034 }
3035
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003036 ilen = req->dlen;
3037 dlen = COMP_BUF_SIZE;
3038 sg_init_one(&src, output, ilen);
3039 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003040 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003041 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3042
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003043 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003044 if (ret) {
3045 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3046 i + 1, algo, -ret);
3047 kfree(input_vec);
3048 acomp_request_free(req);
3049 goto out;
3050 }
3051
3052 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003053 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3054 i + 1, algo, req->dlen);
3055 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003056 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003057 acomp_request_free(req);
3058 goto out;
3059 }
3060
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003061 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003062 pr_err("alg: acomp: Compression test %d failed for %s\n",
3063 i + 1, algo);
3064 hexdump(output, req->dlen);
3065 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003066 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003067 acomp_request_free(req);
3068 goto out;
3069 }
3070
Laura Abbott02608e02016-12-21 12:32:54 -08003071 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003072 acomp_request_free(req);
3073 }
3074
3075 for (i = 0; i < dtcount; i++) {
3076 unsigned int dlen = COMP_BUF_SIZE;
3077 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003078 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003079
Eric Biggersd2110222016-12-30 14:12:00 -06003080 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003081 if (!input_vec) {
3082 ret = -ENOMEM;
3083 goto out;
3084 }
3085
Eric Biggerseb095592016-11-23 10:24:35 -08003086 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003087 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003088 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003089 sg_init_one(&dst, output, dlen);
3090
3091 req = acomp_request_alloc(tfm);
3092 if (!req) {
3093 pr_err("alg: acomp: request alloc failed for %s\n",
3094 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003095 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003096 ret = -ENOMEM;
3097 goto out;
3098 }
3099
3100 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3101 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003102 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003103
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003104 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003105 if (ret) {
3106 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3107 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003108 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003109 acomp_request_free(req);
3110 goto out;
3111 }
3112
3113 if (req->dlen != dtemplate[i].outlen) {
3114 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3115 i + 1, algo, req->dlen);
3116 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003117 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003118 acomp_request_free(req);
3119 goto out;
3120 }
3121
3122 if (memcmp(output, dtemplate[i].output, req->dlen)) {
3123 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3124 i + 1, algo);
3125 hexdump(output, req->dlen);
3126 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003127 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003128 acomp_request_free(req);
3129 goto out;
3130 }
3131
Laura Abbott02608e02016-12-21 12:32:54 -08003132 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003133 acomp_request_free(req);
3134 }
3135
3136 ret = 0;
3137
3138out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003139 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08003140 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003141 return ret;
3142}
3143
Eric Biggersb13b1e02017-02-24 15:46:59 -08003144static int test_cprng(struct crypto_rng *tfm,
3145 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003146 unsigned int tcount)
3147{
3148 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08003149 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003150 u8 *seed;
3151 char result[32];
3152
3153 seedsize = crypto_rng_seedsize(tfm);
3154
3155 seed = kmalloc(seedsize, GFP_KERNEL);
3156 if (!seed) {
3157 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3158 "for %s\n", algo);
3159 return -ENOMEM;
3160 }
3161
3162 for (i = 0; i < tcount; i++) {
3163 memset(result, 0, 32);
3164
3165 memcpy(seed, template[i].v, template[i].vlen);
3166 memcpy(seed + template[i].vlen, template[i].key,
3167 template[i].klen);
3168 memcpy(seed + template[i].vlen + template[i].klen,
3169 template[i].dt, template[i].dtlen);
3170
3171 err = crypto_rng_reset(tfm, seed, seedsize);
3172 if (err) {
3173 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3174 "for %s\n", algo);
3175 goto out;
3176 }
3177
3178 for (j = 0; j < template[i].loops; j++) {
3179 err = crypto_rng_get_bytes(tfm, result,
3180 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01003181 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003182 printk(KERN_ERR "alg: cprng: Failed to obtain "
3183 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01003184 "%s (requested %d)\n", algo,
3185 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003186 goto out;
3187 }
3188 }
3189
3190 err = memcmp(result, template[i].result,
3191 template[i].rlen);
3192 if (err) {
3193 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3194 i, algo);
3195 hexdump(result, template[i].rlen);
3196 err = -EINVAL;
3197 goto out;
3198 }
3199 }
3200
3201out:
3202 kfree(seed);
3203 return err;
3204}
3205
Herbert Xuda7f0332008-07-31 17:08:25 +08003206static int alg_test_cipher(const struct alg_test_desc *desc,
3207 const char *driver, u32 type, u32 mask)
3208{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003209 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003210 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003211 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08003212
Herbert Xueed93e02016-11-22 20:08:31 +08003213 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08003214 if (IS_ERR(tfm)) {
3215 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3216 "%s: %ld\n", driver, PTR_ERR(tfm));
3217 return PTR_ERR(tfm);
3218 }
3219
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003220 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3221 if (!err)
3222 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08003223
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003224 crypto_free_cipher(tfm);
3225 return err;
3226}
3227
Herbert Xuda7f0332008-07-31 17:08:25 +08003228static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3229 u32 type, u32 mask)
3230{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003231 struct crypto_comp *comp;
3232 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08003233 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003234 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08003235
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003236 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3237 acomp = crypto_alloc_acomp(driver, type, mask);
3238 if (IS_ERR(acomp)) {
3239 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3240 driver, PTR_ERR(acomp));
3241 return PTR_ERR(acomp);
3242 }
3243 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3244 desc->suite.comp.decomp.vecs,
3245 desc->suite.comp.comp.count,
3246 desc->suite.comp.decomp.count);
3247 crypto_free_acomp(acomp);
3248 } else {
3249 comp = crypto_alloc_comp(driver, type, mask);
3250 if (IS_ERR(comp)) {
3251 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3252 driver, PTR_ERR(comp));
3253 return PTR_ERR(comp);
3254 }
3255
3256 err = test_comp(comp, desc->suite.comp.comp.vecs,
3257 desc->suite.comp.decomp.vecs,
3258 desc->suite.comp.comp.count,
3259 desc->suite.comp.decomp.count);
3260
3261 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08003262 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003263 return err;
3264}
3265
Herbert Xu8e3ee852008-11-07 14:58:52 +08003266static int alg_test_crc32c(const struct alg_test_desc *desc,
3267 const char *driver, u32 type, u32 mask)
3268{
3269 struct crypto_shash *tfm;
Eric Biggerscb9dde82019-01-10 12:17:55 -08003270 __le32 val;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003271 int err;
3272
3273 err = alg_test_hash(desc, driver, type, mask);
3274 if (err)
Eric Biggerseb5e6732019-01-23 20:57:35 -08003275 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003276
Herbert Xueed93e02016-11-22 20:08:31 +08003277 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003278 if (IS_ERR(tfm)) {
Eric Biggerseb5e6732019-01-23 20:57:35 -08003279 if (PTR_ERR(tfm) == -ENOENT) {
3280 /*
3281 * This crc32c implementation is only available through
3282 * ahash API, not the shash API, so the remaining part
3283 * of the test is not applicable to it.
3284 */
3285 return 0;
3286 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08003287 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3288 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggerseb5e6732019-01-23 20:57:35 -08003289 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003290 }
3291
3292 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003293 SHASH_DESC_ON_STACK(shash, tfm);
3294 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003295
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003296 shash->tfm = tfm;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003297
Eric Biggerscb9dde82019-01-10 12:17:55 -08003298 *ctx = 420553207;
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003299 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003300 if (err) {
3301 printk(KERN_ERR "alg: crc32c: Operation failed for "
3302 "%s: %d\n", driver, err);
3303 break;
3304 }
3305
Eric Biggerscb9dde82019-01-10 12:17:55 -08003306 if (val != cpu_to_le32(~420553207)) {
3307 pr_err("alg: crc32c: Test failed for %s: %u\n",
3308 driver, le32_to_cpu(val));
Herbert Xu8e3ee852008-11-07 14:58:52 +08003309 err = -EINVAL;
3310 }
3311 } while (0);
3312
3313 crypto_free_shash(tfm);
3314
Herbert Xu8e3ee852008-11-07 14:58:52 +08003315 return err;
3316}
3317
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003318static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3319 u32 type, u32 mask)
3320{
3321 struct crypto_rng *rng;
3322 int err;
3323
Herbert Xueed93e02016-11-22 20:08:31 +08003324 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003325 if (IS_ERR(rng)) {
3326 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3327 "%ld\n", driver, PTR_ERR(rng));
3328 return PTR_ERR(rng);
3329 }
3330
3331 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3332
3333 crypto_free_rng(rng);
3334
3335 return err;
3336}
3337
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003338
Eric Biggersb13b1e02017-02-24 15:46:59 -08003339static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003340 const char *driver, u32 type, u32 mask)
3341{
3342 int ret = -EAGAIN;
3343 struct crypto_rng *drng;
3344 struct drbg_test_data test_data;
3345 struct drbg_string addtl, pers, testentropy;
3346 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3347
3348 if (!buf)
3349 return -ENOMEM;
3350
Herbert Xueed93e02016-11-22 20:08:31 +08003351 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003352 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003353 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003354 "%s\n", driver);
3355 kzfree(buf);
3356 return -ENOMEM;
3357 }
3358
3359 test_data.testentropy = &testentropy;
3360 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3361 drbg_string_fill(&pers, test->pers, test->perslen);
3362 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3363 if (ret) {
3364 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3365 goto outbuf;
3366 }
3367
3368 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3369 if (pr) {
3370 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3371 ret = crypto_drbg_get_bytes_addtl_test(drng,
3372 buf, test->expectedlen, &addtl, &test_data);
3373 } else {
3374 ret = crypto_drbg_get_bytes_addtl(drng,
3375 buf, test->expectedlen, &addtl);
3376 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003377 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003378 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003379 "driver %s\n", driver);
3380 goto outbuf;
3381 }
3382
3383 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3384 if (pr) {
3385 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3386 ret = crypto_drbg_get_bytes_addtl_test(drng,
3387 buf, test->expectedlen, &addtl, &test_data);
3388 } else {
3389 ret = crypto_drbg_get_bytes_addtl(drng,
3390 buf, test->expectedlen, &addtl);
3391 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003392 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003393 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003394 "driver %s\n", driver);
3395 goto outbuf;
3396 }
3397
3398 ret = memcmp(test->expected, buf, test->expectedlen);
3399
3400outbuf:
3401 crypto_free_rng(drng);
3402 kzfree(buf);
3403 return ret;
3404}
3405
3406
3407static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3408 u32 type, u32 mask)
3409{
3410 int err = 0;
3411 int pr = 0;
3412 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08003413 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003414 unsigned int tcount = desc->suite.drbg.count;
3415
3416 if (0 == memcmp(driver, "drbg_pr_", 8))
3417 pr = 1;
3418
3419 for (i = 0; i < tcount; i++) {
3420 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3421 if (err) {
3422 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3423 i, driver);
3424 err = -EINVAL;
3425 break;
3426 }
3427 }
3428 return err;
3429
3430}
3431
Eric Biggersb13b1e02017-02-24 15:46:59 -08003432static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003433 const char *alg)
3434{
3435 struct kpp_request *req;
3436 void *input_buf = NULL;
3437 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003438 void *a_public = NULL;
3439 void *a_ss = NULL;
3440 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003441 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003442 unsigned int out_len_max;
3443 int err = -ENOMEM;
3444 struct scatterlist src, dst;
3445
3446 req = kpp_request_alloc(tfm, GFP_KERNEL);
3447 if (!req)
3448 return err;
3449
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003450 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003451
3452 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3453 if (err < 0)
3454 goto free_req;
3455
3456 out_len_max = crypto_kpp_maxsize(tfm);
3457 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3458 if (!output_buf) {
3459 err = -ENOMEM;
3460 goto free_req;
3461 }
3462
3463 /* Use appropriate parameter as base */
3464 kpp_request_set_input(req, NULL, 0);
3465 sg_init_one(&dst, output_buf, out_len_max);
3466 kpp_request_set_output(req, &dst, out_len_max);
3467 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003468 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003469
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003470 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003471 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003472 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003473 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003474 alg, err);
3475 goto free_output;
3476 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003477
3478 if (vec->genkey) {
3479 /* Save party A's public key */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003480 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003481 if (!a_public) {
3482 err = -ENOMEM;
3483 goto free_output;
3484 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003485 } else {
3486 /* Verify calculated public key */
3487 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3488 vec->expected_a_public_size)) {
3489 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3490 alg);
3491 err = -EINVAL;
3492 goto free_output;
3493 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003494 }
3495
3496 /* Calculate shared secret key by using counter part (b) public key. */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003497 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003498 if (!input_buf) {
3499 err = -ENOMEM;
3500 goto free_output;
3501 }
3502
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003503 sg_init_one(&src, input_buf, vec->b_public_size);
3504 sg_init_one(&dst, output_buf, out_len_max);
3505 kpp_request_set_input(req, &src, vec->b_public_size);
3506 kpp_request_set_output(req, &dst, out_len_max);
3507 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003508 crypto_req_done, &wait);
3509 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003510 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003511 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003512 alg, err);
3513 goto free_all;
3514 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003515
3516 if (vec->genkey) {
3517 /* Save the shared secret obtained by party A */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003518 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003519 if (!a_ss) {
3520 err = -ENOMEM;
3521 goto free_all;
3522 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003523
3524 /*
3525 * Calculate party B's shared secret by using party A's
3526 * public key.
3527 */
3528 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3529 vec->b_secret_size);
3530 if (err < 0)
3531 goto free_all;
3532
3533 sg_init_one(&src, a_public, vec->expected_a_public_size);
3534 sg_init_one(&dst, output_buf, out_len_max);
3535 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3536 kpp_request_set_output(req, &dst, out_len_max);
3537 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003538 crypto_req_done, &wait);
3539 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3540 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003541 if (err) {
3542 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3543 alg, err);
3544 goto free_all;
3545 }
3546
3547 shared_secret = a_ss;
3548 } else {
3549 shared_secret = (void *)vec->expected_ss;
3550 }
3551
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003552 /*
3553 * verify shared secret from which the user will derive
3554 * secret key by executing whatever hash it has chosen
3555 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003556 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003557 vec->expected_ss_size)) {
3558 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
3559 alg);
3560 err = -EINVAL;
3561 }
3562
3563free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003564 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003565 kfree(input_buf);
3566free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003567 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003568 kfree(output_buf);
3569free_req:
3570 kpp_request_free(req);
3571 return err;
3572}
3573
3574static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003575 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003576{
3577 int ret, i;
3578
3579 for (i = 0; i < tcount; i++) {
3580 ret = do_test_kpp(tfm, vecs++, alg);
3581 if (ret) {
3582 pr_err("alg: %s: test failed on vector %d, err=%d\n",
3583 alg, i + 1, ret);
3584 return ret;
3585 }
3586 }
3587 return 0;
3588}
3589
3590static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
3591 u32 type, u32 mask)
3592{
3593 struct crypto_kpp *tfm;
3594 int err = 0;
3595
Herbert Xueed93e02016-11-22 20:08:31 +08003596 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003597 if (IS_ERR(tfm)) {
3598 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
3599 driver, PTR_ERR(tfm));
3600 return PTR_ERR(tfm);
3601 }
3602 if (desc->suite.kpp.vecs)
3603 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
3604 desc->suite.kpp.count);
3605
3606 crypto_free_kpp(tfm);
3607 return err;
3608}
3609
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003610static u8 *test_pack_u32(u8 *dst, u32 val)
3611{
3612 memcpy(dst, &val, sizeof(val));
3613 return dst + sizeof(val);
3614}
3615
Herbert Xu50d2b6432016-06-29 19:32:20 +08003616static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003617 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003618{
Herbert Xudf27b262016-05-05 16:42:49 +08003619 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07003620 struct akcipher_request *req;
3621 void *outbuf_enc = NULL;
3622 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003623 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003624 unsigned int out_len_max, out_len = 0;
3625 int err = -ENOMEM;
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003626 struct scatterlist src, dst, src_tab[3];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003627 const char *m, *c;
3628 unsigned int m_size, c_size;
3629 const char *op;
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003630 u8 *key, *ptr;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003631
Herbert Xudf27b262016-05-05 16:42:49 +08003632 if (testmgr_alloc_buf(xbuf))
3633 return err;
3634
Tadeusz Struk946cc462015-06-16 10:31:06 -07003635 req = akcipher_request_alloc(tfm, GFP_KERNEL);
3636 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08003637 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003638
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003639 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003640
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003641 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
3642 GFP_KERNEL);
3643 if (!key)
3644 goto free_xbuf;
3645 memcpy(key, vecs->key, vecs->key_len);
3646 ptr = key + vecs->key_len;
3647 ptr = test_pack_u32(ptr, vecs->algo);
3648 ptr = test_pack_u32(ptr, vecs->param_len);
3649 memcpy(ptr, vecs->params, vecs->param_len);
3650
Tadeusz Struk22287b02015-10-08 09:26:55 -07003651 if (vecs->public_key_vec)
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003652 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003653 else
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003654 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003655 if (err)
3656 goto free_req;
3657
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003658 /*
3659 * First run test which do not require a private key, such as
3660 * encrypt or verify.
3661 */
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003662 err = -ENOMEM;
3663 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003664 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3665 if (!outbuf_enc)
3666 goto free_req;
3667
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003668 if (!vecs->siggen_sigver_test) {
3669 m = vecs->m;
3670 m_size = vecs->m_size;
3671 c = vecs->c;
3672 c_size = vecs->c_size;
3673 op = "encrypt";
3674 } else {
3675 /* Swap args so we could keep plaintext (digest)
3676 * in vecs->m, and cooked signature in vecs->c.
3677 */
3678 m = vecs->c; /* signature */
3679 m_size = vecs->c_size;
3680 c = vecs->m; /* digest */
3681 c_size = vecs->m_size;
3682 op = "verify";
3683 }
Herbert Xudf27b262016-05-05 16:42:49 +08003684
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003685 if (WARN_ON(m_size > PAGE_SIZE))
3686 goto free_all;
3687 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003688
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003689 sg_init_table(src_tab, 3);
Herbert Xudf27b262016-05-05 16:42:49 +08003690 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003691 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003692 if (vecs->siggen_sigver_test) {
3693 if (WARN_ON(c_size > PAGE_SIZE))
3694 goto free_all;
3695 memcpy(xbuf[1], c, c_size);
3696 sg_set_buf(&src_tab[2], xbuf[1], c_size);
3697 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
3698 } else {
3699 sg_init_one(&dst, outbuf_enc, out_len_max);
3700 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
3701 out_len_max);
3702 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003703 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003704 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003705
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003706 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003707 /* Run asymmetric signature verification */
3708 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003709 /* Run asymmetric encrypt */
3710 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003711 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003712 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003713 goto free_all;
3714 }
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003715 if (!vecs->siggen_sigver_test) {
3716 if (req->dst_len != c_size) {
3717 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
3718 op);
3719 err = -EINVAL;
3720 goto free_all;
3721 }
3722 /* verify that encrypted message is equal to expected */
3723 if (memcmp(c, outbuf_enc, c_size) != 0) {
3724 pr_err("alg: akcipher: %s test failed. Invalid output\n",
3725 op);
3726 hexdump(outbuf_enc, c_size);
3727 err = -EINVAL;
3728 goto free_all;
3729 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003730 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003731
3732 /*
3733 * Don't invoke (decrypt or sign) test which require a private key
3734 * for vectors with only a public key.
3735 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07003736 if (vecs->public_key_vec) {
3737 err = 0;
3738 goto free_all;
3739 }
3740 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
3741 if (!outbuf_dec) {
3742 err = -ENOMEM;
3743 goto free_all;
3744 }
Herbert Xudf27b262016-05-05 16:42:49 +08003745
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003746 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
3747 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08003748 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003749 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003750
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003751 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003752 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003753 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003754 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003755
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003756 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003757 /* Run asymmetric signature generation */
3758 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003759 /* Run asymmetric decrypt */
3760 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003761 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003762 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003763 goto free_all;
3764 }
3765 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003766 if (out_len < m_size) {
3767 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
3768 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003769 err = -EINVAL;
3770 goto free_all;
3771 }
3772 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003773 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
3774 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
3775 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003776 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003777 err = -EINVAL;
3778 }
3779free_all:
3780 kfree(outbuf_dec);
3781 kfree(outbuf_enc);
3782free_req:
3783 akcipher_request_free(req);
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003784 kfree(key);
Herbert Xudf27b262016-05-05 16:42:49 +08003785free_xbuf:
3786 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003787 return err;
3788}
3789
Herbert Xu50d2b6432016-06-29 19:32:20 +08003790static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003791 const struct akcipher_testvec *vecs,
3792 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003793{
Herbert Xu15226e42016-07-18 18:20:10 +08003794 const char *algo =
3795 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07003796 int ret, i;
3797
3798 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08003799 ret = test_akcipher_one(tfm, vecs++);
3800 if (!ret)
3801 continue;
3802
Herbert Xu15226e42016-07-18 18:20:10 +08003803 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
3804 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003805 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003806 }
3807 return 0;
3808}
3809
Tadeusz Struk946cc462015-06-16 10:31:06 -07003810static int alg_test_akcipher(const struct alg_test_desc *desc,
3811 const char *driver, u32 type, u32 mask)
3812{
3813 struct crypto_akcipher *tfm;
3814 int err = 0;
3815
Herbert Xueed93e02016-11-22 20:08:31 +08003816 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003817 if (IS_ERR(tfm)) {
3818 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
3819 driver, PTR_ERR(tfm));
3820 return PTR_ERR(tfm);
3821 }
3822 if (desc->suite.akcipher.vecs)
3823 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
3824 desc->suite.akcipher.count);
3825
3826 crypto_free_akcipher(tfm);
3827 return err;
3828}
3829
Youquan, Song863b5572009-12-23 19:45:20 +08003830static int alg_test_null(const struct alg_test_desc *desc,
3831 const char *driver, u32 type, u32 mask)
3832{
3833 return 0;
3834}
3835
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003836#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
3837
Herbert Xuda7f0332008-07-31 17:08:25 +08003838/* Please keep this list sorted by algorithm name. */
3839static const struct alg_test_desc alg_test_descs[] = {
3840 {
Eric Biggers059c2a42018-11-16 17:26:31 -08003841 .alg = "adiantum(xchacha12,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003842 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003843 .test = alg_test_skcipher,
3844 .suite = {
3845 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
3846 },
3847 }, {
3848 .alg = "adiantum(xchacha20,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003849 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003850 .test = alg_test_skcipher,
3851 .suite = {
3852 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
3853 },
3854 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003855 .alg = "aegis128",
3856 .test = alg_test_aead,
3857 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003858 .aead = __VECS(aegis128_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003859 }
3860 }, {
3861 .alg = "aegis128l",
3862 .test = alg_test_aead,
3863 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003864 .aead = __VECS(aegis128l_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003865 }
3866 }, {
3867 .alg = "aegis256",
3868 .test = alg_test_aead,
3869 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003870 .aead = __VECS(aegis256_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003871 }
3872 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003873 .alg = "ansi_cprng",
3874 .test = alg_test_cprng,
3875 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003876 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003877 }
3878 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003879 .alg = "authenc(hmac(md5),ecb(cipher_null))",
3880 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003881 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003882 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02003883 }
3884 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003885 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003886 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08003887 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003888 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003889 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303890 }
3891 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003892 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303893 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303894 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003895 .aead = __VECS(hmac_sha1_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303896 }
3897 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003898 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303899 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003900 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303901 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003902 .aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003903 }
3904 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003905 .alg = "authenc(hmac(sha1),ctr(aes))",
3906 .test = alg_test_null,
3907 .fips_allowed = 1,
3908 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003909 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
3910 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003911 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003912 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303913 }
3914 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003915 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
3916 .test = alg_test_null,
3917 .fips_allowed = 1,
3918 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003919 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303920 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303921 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003922 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303923 }
3924 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003925 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303926 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003927 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303928 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003929 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02003930 }
3931 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003932 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003933 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003934 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003935 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003936 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303937 }
3938 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003939 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303940 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303941 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003942 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303943 }
3944 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003945 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303946 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003947 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303948 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003949 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303950 }
3951 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003952 .alg = "authenc(hmac(sha256),ctr(aes))",
3953 .test = alg_test_null,
3954 .fips_allowed = 1,
3955 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003956 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
3957 .test = alg_test_null,
3958 .fips_allowed = 1,
3959 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003960 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303961 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303962 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003963 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303964 }
3965 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003966 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303967 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003968 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303969 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003970 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003971 }
3972 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003973 .alg = "authenc(hmac(sha384),ctr(aes))",
3974 .test = alg_test_null,
3975 .fips_allowed = 1,
3976 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003977 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
3978 .test = alg_test_null,
3979 .fips_allowed = 1,
3980 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003981 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01003982 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003983 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03003984 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003985 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303986 }
3987 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003988 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303989 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303990 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003991 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303992 }
3993 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003994 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303995 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003996 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303997 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003998 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003999 }
4000 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004001 .alg = "authenc(hmac(sha512),ctr(aes))",
4002 .test = alg_test_null,
4003 .fips_allowed = 1,
4004 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004005 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4006 .test = alg_test_null,
4007 .fips_allowed = 1,
4008 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004009 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004010 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004011 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004012 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004013 .cipher = __VECS(aes_cbc_tv_template)
4014 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004015 }, {
4016 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004017 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004018 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004019 .cipher = __VECS(anubis_cbc_tv_template)
4020 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004021 }, {
4022 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004023 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004024 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004025 .cipher = __VECS(bf_cbc_tv_template)
4026 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004027 }, {
4028 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004029 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004030 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004031 .cipher = __VECS(camellia_cbc_tv_template)
4032 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004033 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004034 .alg = "cbc(cast5)",
4035 .test = alg_test_skcipher,
4036 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004037 .cipher = __VECS(cast5_cbc_tv_template)
4038 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004039 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004040 .alg = "cbc(cast6)",
4041 .test = alg_test_skcipher,
4042 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004043 .cipher = __VECS(cast6_cbc_tv_template)
4044 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004045 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004046 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004047 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004048 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004049 .cipher = __VECS(des_cbc_tv_template)
4050 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004051 }, {
4052 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004053 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004054 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004055 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004056 .cipher = __VECS(des3_ede_cbc_tv_template)
4057 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004058 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004059 /* Same as cbc(aes) except the key is stored in
4060 * hardware secure memory which we reference by index
4061 */
4062 .alg = "cbc(paes)",
4063 .test = alg_test_null,
4064 .fips_allowed = 1,
4065 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004066 /* Same as cbc(sm4) except the key is stored in
4067 * hardware secure memory which we reference by index
4068 */
4069 .alg = "cbc(psm4)",
4070 .test = alg_test_null,
4071 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004072 .alg = "cbc(serpent)",
4073 .test = alg_test_skcipher,
4074 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004075 .cipher = __VECS(serpent_cbc_tv_template)
4076 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004077 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004078 .alg = "cbc(sm4)",
4079 .test = alg_test_skcipher,
4080 .suite = {
4081 .cipher = __VECS(sm4_cbc_tv_template)
4082 }
4083 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004084 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004085 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004086 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004087 .cipher = __VECS(tf_cbc_tv_template)
4088 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004089 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00004090 .alg = "cbcmac(aes)",
4091 .fips_allowed = 1,
4092 .test = alg_test_hash,
4093 .suite = {
4094 .hash = __VECS(aes_cbcmac_tv_template)
4095 }
4096 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004097 .alg = "ccm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004098 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
Herbert Xuda7f0332008-07-31 17:08:25 +08004099 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004100 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004101 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004102 .aead = __VECS(aes_ccm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004103 }
4104 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03004105 .alg = "cfb(aes)",
4106 .test = alg_test_skcipher,
4107 .fips_allowed = 1,
4108 .suite = {
4109 .cipher = __VECS(aes_cfb_tv_template)
4110 },
4111 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02004112 .alg = "chacha20",
4113 .test = alg_test_skcipher,
4114 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004115 .cipher = __VECS(chacha20_tv_template)
4116 },
Martin Willi3590ebf2015-06-01 13:43:57 +02004117 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004118 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004119 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004120 .test = alg_test_hash,
4121 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004122 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004123 }
4124 }, {
4125 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004126 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004127 .test = alg_test_hash,
4128 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004129 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004130 }
4131 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004132 .alg = "compress_null",
4133 .test = alg_test_null,
4134 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004135 .alg = "crc32",
4136 .test = alg_test_hash,
Milan Broza8a34412019-01-25 10:31:47 +01004137 .fips_allowed = 1,
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004138 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004139 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004140 }
4141 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004142 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08004143 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004144 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004145 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004146 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004147 }
4148 }, {
Herbert Xu684115212013-09-07 12:56:26 +10004149 .alg = "crct10dif",
4150 .test = alg_test_hash,
4151 .fips_allowed = 1,
4152 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004153 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10004154 }
4155 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004156 .alg = "ctr(aes)",
4157 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004158 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004159 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004160 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004161 }
4162 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004163 .alg = "ctr(blowfish)",
4164 .test = alg_test_skcipher,
4165 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004166 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004167 }
4168 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004169 .alg = "ctr(camellia)",
4170 .test = alg_test_skcipher,
4171 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004172 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004173 }
4174 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004175 .alg = "ctr(cast5)",
4176 .test = alg_test_skcipher,
4177 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004178 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004179 }
4180 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004181 .alg = "ctr(cast6)",
4182 .test = alg_test_skcipher,
4183 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004184 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004185 }
4186 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004187 .alg = "ctr(des)",
4188 .test = alg_test_skcipher,
4189 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004190 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004191 }
4192 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004193 .alg = "ctr(des3_ede)",
4194 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03004195 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004196 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004197 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004198 }
4199 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004200 /* Same as ctr(aes) except the key is stored in
4201 * hardware secure memory which we reference by index
4202 */
4203 .alg = "ctr(paes)",
4204 .test = alg_test_null,
4205 .fips_allowed = 1,
4206 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004207
4208 /* Same as ctr(sm4) except the key is stored in
4209 * hardware secure memory which we reference by index
4210 */
4211 .alg = "ctr(psm4)",
4212 .test = alg_test_null,
4213 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004214 .alg = "ctr(serpent)",
4215 .test = alg_test_skcipher,
4216 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004217 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004218 }
4219 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004220 .alg = "ctr(sm4)",
4221 .test = alg_test_skcipher,
4222 .suite = {
4223 .cipher = __VECS(sm4_ctr_tv_template)
4224 }
4225 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03004226 .alg = "ctr(twofish)",
4227 .test = alg_test_skcipher,
4228 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004229 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03004230 }
4231 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004232 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004233 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00004234 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004235 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004236 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004237 }
4238 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004239 /* Same as cts(cbc((aes)) except the key is stored in
4240 * hardware secure memory which we reference by index
4241 */
4242 .alg = "cts(cbc(paes))",
4243 .test = alg_test_null,
4244 .fips_allowed = 1,
4245 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004246 .alg = "deflate",
4247 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004248 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004249 .suite = {
4250 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004251 .comp = __VECS(deflate_comp_tv_template),
4252 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004253 }
4254 }
4255 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004256 .alg = "dh",
4257 .test = alg_test_kpp,
4258 .fips_allowed = 1,
4259 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004260 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004261 }
4262 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004263 .alg = "digest_null",
4264 .test = alg_test_null,
4265 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004266 .alg = "drbg_nopr_ctr_aes128",
4267 .test = alg_test_drbg,
4268 .fips_allowed = 1,
4269 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004270 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004271 }
4272 }, {
4273 .alg = "drbg_nopr_ctr_aes192",
4274 .test = alg_test_drbg,
4275 .fips_allowed = 1,
4276 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004277 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004278 }
4279 }, {
4280 .alg = "drbg_nopr_ctr_aes256",
4281 .test = alg_test_drbg,
4282 .fips_allowed = 1,
4283 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004284 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004285 }
4286 }, {
4287 /*
4288 * There is no need to specifically test the DRBG with every
4289 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4290 */
4291 .alg = "drbg_nopr_hmac_sha1",
4292 .fips_allowed = 1,
4293 .test = alg_test_null,
4294 }, {
4295 .alg = "drbg_nopr_hmac_sha256",
4296 .test = alg_test_drbg,
4297 .fips_allowed = 1,
4298 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004299 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004300 }
4301 }, {
4302 /* covered by drbg_nopr_hmac_sha256 test */
4303 .alg = "drbg_nopr_hmac_sha384",
4304 .fips_allowed = 1,
4305 .test = alg_test_null,
4306 }, {
4307 .alg = "drbg_nopr_hmac_sha512",
4308 .test = alg_test_null,
4309 .fips_allowed = 1,
4310 }, {
4311 .alg = "drbg_nopr_sha1",
4312 .fips_allowed = 1,
4313 .test = alg_test_null,
4314 }, {
4315 .alg = "drbg_nopr_sha256",
4316 .test = alg_test_drbg,
4317 .fips_allowed = 1,
4318 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004319 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004320 }
4321 }, {
4322 /* covered by drbg_nopr_sha256 test */
4323 .alg = "drbg_nopr_sha384",
4324 .fips_allowed = 1,
4325 .test = alg_test_null,
4326 }, {
4327 .alg = "drbg_nopr_sha512",
4328 .fips_allowed = 1,
4329 .test = alg_test_null,
4330 }, {
4331 .alg = "drbg_pr_ctr_aes128",
4332 .test = alg_test_drbg,
4333 .fips_allowed = 1,
4334 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004335 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004336 }
4337 }, {
4338 /* covered by drbg_pr_ctr_aes128 test */
4339 .alg = "drbg_pr_ctr_aes192",
4340 .fips_allowed = 1,
4341 .test = alg_test_null,
4342 }, {
4343 .alg = "drbg_pr_ctr_aes256",
4344 .fips_allowed = 1,
4345 .test = alg_test_null,
4346 }, {
4347 .alg = "drbg_pr_hmac_sha1",
4348 .fips_allowed = 1,
4349 .test = alg_test_null,
4350 }, {
4351 .alg = "drbg_pr_hmac_sha256",
4352 .test = alg_test_drbg,
4353 .fips_allowed = 1,
4354 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004355 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004356 }
4357 }, {
4358 /* covered by drbg_pr_hmac_sha256 test */
4359 .alg = "drbg_pr_hmac_sha384",
4360 .fips_allowed = 1,
4361 .test = alg_test_null,
4362 }, {
4363 .alg = "drbg_pr_hmac_sha512",
4364 .test = alg_test_null,
4365 .fips_allowed = 1,
4366 }, {
4367 .alg = "drbg_pr_sha1",
4368 .fips_allowed = 1,
4369 .test = alg_test_null,
4370 }, {
4371 .alg = "drbg_pr_sha256",
4372 .test = alg_test_drbg,
4373 .fips_allowed = 1,
4374 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004375 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004376 }
4377 }, {
4378 /* covered by drbg_pr_sha256 test */
4379 .alg = "drbg_pr_sha384",
4380 .fips_allowed = 1,
4381 .test = alg_test_null,
4382 }, {
4383 .alg = "drbg_pr_sha512",
4384 .fips_allowed = 1,
4385 .test = alg_test_null,
4386 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004387 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004388 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004389 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004390 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004391 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004392 }
4393 }, {
4394 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004395 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004396 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004397 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004398 }
4399 }, {
4400 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004401 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004402 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004403 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004404 }
4405 }, {
4406 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004407 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004408 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004409 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004410 }
4411 }, {
4412 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004413 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004414 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004415 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004416 }
4417 }, {
4418 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004419 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004420 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004421 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004422 }
4423 }, {
4424 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004425 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004426 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004427 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004428 }
4429 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004430 .alg = "ecb(cipher_null)",
4431 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02004432 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004433 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004434 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004435 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004436 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004437 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004438 }
4439 }, {
4440 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004441 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004442 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004443 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004444 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004445 }
4446 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004447 .alg = "ecb(fcrypt)",
4448 .test = alg_test_skcipher,
4449 .suite = {
4450 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004451 .vecs = fcrypt_pcbc_tv_template,
4452 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004453 }
4454 }
4455 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004456 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004457 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004458 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004459 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004460 }
4461 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01004462 /* Same as ecb(aes) except the key is stored in
4463 * hardware secure memory which we reference by index
4464 */
4465 .alg = "ecb(paes)",
4466 .test = alg_test_null,
4467 .fips_allowed = 1,
4468 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004469 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004470 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004471 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004472 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004473 }
4474 }, {
4475 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004476 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004477 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004478 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004479 }
4480 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004481 .alg = "ecb(sm4)",
4482 .test = alg_test_skcipher,
4483 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004484 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004485 }
4486 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004487 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004488 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004489 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004490 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004491 }
4492 }, {
4493 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004494 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004495 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004496 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004497 }
4498 }, {
4499 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004500 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004501 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004502 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004503 }
4504 }, {
4505 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004506 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004507 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004508 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004509 }
4510 }, {
4511 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004512 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004513 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004514 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004515 }
4516 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004517 .alg = "ecdh",
4518 .test = alg_test_kpp,
4519 .fips_allowed = 1,
4520 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004521 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004522 }
4523 }, {
Vitaly Chikunov32fbdbd2019-04-11 18:51:21 +03004524 .alg = "ecrdsa",
4525 .test = alg_test_akcipher,
4526 .suite = {
4527 .akcipher = __VECS(ecrdsa_tv_template)
4528 }
4529 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004530 .alg = "gcm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004531 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
Herbert Xuda7f0332008-07-31 17:08:25 +08004532 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004533 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004534 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004535 .aead = __VECS(aes_gcm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004536 }
4537 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08004538 .alg = "ghash",
4539 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11004540 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08004541 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004542 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08004543 }
4544 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004545 .alg = "hmac(md5)",
4546 .test = alg_test_hash,
4547 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004548 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004549 }
4550 }, {
4551 .alg = "hmac(rmd128)",
4552 .test = alg_test_hash,
4553 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004554 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004555 }
4556 }, {
4557 .alg = "hmac(rmd160)",
4558 .test = alg_test_hash,
4559 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004560 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004561 }
4562 }, {
4563 .alg = "hmac(sha1)",
4564 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004565 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004566 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004567 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004568 }
4569 }, {
4570 .alg = "hmac(sha224)",
4571 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004572 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004573 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004574 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004575 }
4576 }, {
4577 .alg = "hmac(sha256)",
4578 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004579 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004580 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004581 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004582 }
4583 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05304584 .alg = "hmac(sha3-224)",
4585 .test = alg_test_hash,
4586 .fips_allowed = 1,
4587 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004588 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304589 }
4590 }, {
4591 .alg = "hmac(sha3-256)",
4592 .test = alg_test_hash,
4593 .fips_allowed = 1,
4594 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004595 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304596 }
4597 }, {
4598 .alg = "hmac(sha3-384)",
4599 .test = alg_test_hash,
4600 .fips_allowed = 1,
4601 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004602 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304603 }
4604 }, {
4605 .alg = "hmac(sha3-512)",
4606 .test = alg_test_hash,
4607 .fips_allowed = 1,
4608 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004609 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304610 }
4611 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004612 .alg = "hmac(sha384)",
4613 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004614 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004615 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004616 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004617 }
4618 }, {
4619 .alg = "hmac(sha512)",
4620 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004621 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004622 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004623 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004624 }
4625 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004626 .alg = "hmac(streebog256)",
4627 .test = alg_test_hash,
4628 .suite = {
4629 .hash = __VECS(hmac_streebog256_tv_template)
4630 }
4631 }, {
4632 .alg = "hmac(streebog512)",
4633 .test = alg_test_hash,
4634 .suite = {
4635 .hash = __VECS(hmac_streebog512_tv_template)
4636 }
4637 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02004638 .alg = "jitterentropy_rng",
4639 .fips_allowed = 1,
4640 .test = alg_test_null,
4641 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02004642 .alg = "kw(aes)",
4643 .test = alg_test_skcipher,
4644 .fips_allowed = 1,
4645 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004646 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02004647 }
4648 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004649 .alg = "lrw(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004650 .generic_driver = "lrw(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004651 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004652 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004653 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004654 }
4655 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004656 .alg = "lrw(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07004657 .generic_driver = "lrw(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02004658 .test = alg_test_skcipher,
4659 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004660 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004661 }
4662 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004663 .alg = "lrw(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07004664 .generic_driver = "lrw(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004665 .test = alg_test_skcipher,
4666 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004667 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004668 }
4669 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004670 .alg = "lrw(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07004671 .generic_driver = "lrw(ecb(serpent-generic))",
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004672 .test = alg_test_skcipher,
4673 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004674 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004675 }
4676 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004677 .alg = "lrw(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07004678 .generic_driver = "lrw(ecb(twofish-generic))",
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004679 .test = alg_test_skcipher,
4680 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004681 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004682 }
4683 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004684 .alg = "lz4",
4685 .test = alg_test_comp,
4686 .fips_allowed = 1,
4687 .suite = {
4688 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004689 .comp = __VECS(lz4_comp_tv_template),
4690 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004691 }
4692 }
4693 }, {
4694 .alg = "lz4hc",
4695 .test = alg_test_comp,
4696 .fips_allowed = 1,
4697 .suite = {
4698 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004699 .comp = __VECS(lz4hc_comp_tv_template),
4700 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004701 }
4702 }
4703 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004704 .alg = "lzo",
4705 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004706 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004707 .suite = {
4708 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004709 .comp = __VECS(lzo_comp_tv_template),
4710 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004711 }
4712 }
4713 }, {
4714 .alg = "md4",
4715 .test = alg_test_hash,
4716 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004717 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004718 }
4719 }, {
4720 .alg = "md5",
4721 .test = alg_test_hash,
4722 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004723 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004724 }
4725 }, {
4726 .alg = "michael_mic",
4727 .test = alg_test_hash,
4728 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004729 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004730 }
4731 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004732 .alg = "morus1280",
4733 .test = alg_test_aead,
4734 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004735 .aead = __VECS(morus1280_tv_template)
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004736 }
4737 }, {
4738 .alg = "morus640",
4739 .test = alg_test_aead,
4740 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004741 .aead = __VECS(morus640_tv_template)
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004742 }
4743 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08004744 .alg = "nhpoly1305",
4745 .test = alg_test_hash,
4746 .suite = {
4747 .hash = __VECS(nhpoly1305_tv_template)
4748 }
4749 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004750 .alg = "ofb(aes)",
4751 .test = alg_test_skcipher,
4752 .fips_allowed = 1,
4753 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004754 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004755 }
4756 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004757 /* Same as ofb(aes) except the key is stored in
4758 * hardware secure memory which we reference by index
4759 */
4760 .alg = "ofb(paes)",
4761 .test = alg_test_null,
4762 .fips_allowed = 1,
4763 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004764 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004765 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004766 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004767 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004768 }
4769 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02004770 .alg = "pkcs1pad(rsa,sha224)",
4771 .test = alg_test_null,
4772 .fips_allowed = 1,
4773 }, {
4774 .alg = "pkcs1pad(rsa,sha256)",
4775 .test = alg_test_akcipher,
4776 .fips_allowed = 1,
4777 .suite = {
4778 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
4779 }
4780 }, {
4781 .alg = "pkcs1pad(rsa,sha384)",
4782 .test = alg_test_null,
4783 .fips_allowed = 1,
4784 }, {
4785 .alg = "pkcs1pad(rsa,sha512)",
4786 .test = alg_test_null,
4787 .fips_allowed = 1,
4788 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02004789 .alg = "poly1305",
4790 .test = alg_test_hash,
4791 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004792 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02004793 }
4794 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004795 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004796 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004797 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004798 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004799 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004800 }
4801 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08004802 .alg = "rfc4106(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004803 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
Adrian Hoban69435b92010-11-04 15:02:04 -04004804 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05004805 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04004806 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004807 .aead = __VECS(aes_gcm_rfc4106_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04004808 }
4809 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08004810 .alg = "rfc4309(ccm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004811 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
Jarod Wilson5d667322009-05-04 19:23:40 +08004812 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004813 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08004814 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004815 .aead = __VECS(aes_ccm_rfc4309_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08004816 }
4817 }, {
Herbert Xubb687452015-06-16 13:54:24 +08004818 .alg = "rfc4543(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004819 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004820 .test = alg_test_aead,
4821 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004822 .aead = __VECS(aes_gcm_rfc4543_tv_template)
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004823 }
4824 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02004825 .alg = "rfc7539(chacha20,poly1305)",
4826 .test = alg_test_aead,
4827 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004828 .aead = __VECS(rfc7539_tv_template)
Martin Williaf2b76b2015-06-01 13:44:01 +02004829 }
4830 }, {
Martin Willi59007582015-06-01 13:44:03 +02004831 .alg = "rfc7539esp(chacha20,poly1305)",
4832 .test = alg_test_aead,
4833 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004834 .aead = __VECS(rfc7539esp_tv_template)
Martin Willi59007582015-06-01 13:44:03 +02004835 }
4836 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004837 .alg = "rmd128",
4838 .test = alg_test_hash,
4839 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004840 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004841 }
4842 }, {
4843 .alg = "rmd160",
4844 .test = alg_test_hash,
4845 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004846 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004847 }
4848 }, {
4849 .alg = "rmd256",
4850 .test = alg_test_hash,
4851 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004852 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004853 }
4854 }, {
4855 .alg = "rmd320",
4856 .test = alg_test_hash,
4857 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004858 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004859 }
4860 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07004861 .alg = "rsa",
4862 .test = alg_test_akcipher,
4863 .fips_allowed = 1,
4864 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004865 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07004866 }
4867 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004868 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004869 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004870 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004871 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004872 }
4873 }, {
4874 .alg = "sha1",
4875 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004876 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004877 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004878 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004879 }
4880 }, {
4881 .alg = "sha224",
4882 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004883 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004884 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004885 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004886 }
4887 }, {
4888 .alg = "sha256",
4889 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004890 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004891 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004892 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004893 }
4894 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304895 .alg = "sha3-224",
4896 .test = alg_test_hash,
4897 .fips_allowed = 1,
4898 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004899 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304900 }
4901 }, {
4902 .alg = "sha3-256",
4903 .test = alg_test_hash,
4904 .fips_allowed = 1,
4905 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004906 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304907 }
4908 }, {
4909 .alg = "sha3-384",
4910 .test = alg_test_hash,
4911 .fips_allowed = 1,
4912 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004913 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304914 }
4915 }, {
4916 .alg = "sha3-512",
4917 .test = alg_test_hash,
4918 .fips_allowed = 1,
4919 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004920 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304921 }
4922 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004923 .alg = "sha384",
4924 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004925 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004926 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004927 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004928 }
4929 }, {
4930 .alg = "sha512",
4931 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004932 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004933 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004934 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004935 }
4936 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03004937 .alg = "sm3",
4938 .test = alg_test_hash,
4939 .suite = {
4940 .hash = __VECS(sm3_tv_template)
4941 }
4942 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004943 .alg = "streebog256",
4944 .test = alg_test_hash,
4945 .suite = {
4946 .hash = __VECS(streebog256_tv_template)
4947 }
4948 }, {
4949 .alg = "streebog512",
4950 .test = alg_test_hash,
4951 .suite = {
4952 .hash = __VECS(streebog512_tv_template)
4953 }
4954 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004955 .alg = "tgr128",
4956 .test = alg_test_hash,
4957 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004958 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004959 }
4960 }, {
4961 .alg = "tgr160",
4962 .test = alg_test_hash,
4963 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004964 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004965 }
4966 }, {
4967 .alg = "tgr192",
4968 .test = alg_test_hash,
4969 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004970 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004971 }
4972 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07004973 .alg = "vmac64(aes)",
4974 .test = alg_test_hash,
4975 .suite = {
4976 .hash = __VECS(vmac64_aes_tv_template)
4977 }
4978 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004979 .alg = "wp256",
4980 .test = alg_test_hash,
4981 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004982 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004983 }
4984 }, {
4985 .alg = "wp384",
4986 .test = alg_test_hash,
4987 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004988 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004989 }
4990 }, {
4991 .alg = "wp512",
4992 .test = alg_test_hash,
4993 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004994 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004995 }
4996 }, {
4997 .alg = "xcbc(aes)",
4998 .test = alg_test_hash,
4999 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005000 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005001 }
5002 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08005003 .alg = "xchacha12",
5004 .test = alg_test_skcipher,
5005 .suite = {
5006 .cipher = __VECS(xchacha12_tv_template)
5007 },
5008 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08005009 .alg = "xchacha20",
5010 .test = alg_test_skcipher,
5011 .suite = {
5012 .cipher = __VECS(xchacha20_tv_template)
5013 },
5014 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005015 .alg = "xts(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005016 .generic_driver = "xts(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005017 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11005018 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005019 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005020 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005021 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08005022 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005023 .alg = "xts(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005024 .generic_driver = "xts(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005025 .test = alg_test_skcipher,
5026 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005027 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005028 }
5029 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005030 .alg = "xts(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005031 .generic_driver = "xts(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005032 .test = alg_test_skcipher,
5033 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005034 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005035 }
5036 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005037 /* Same as xts(aes) except the key is stored in
5038 * hardware secure memory which we reference by index
5039 */
5040 .alg = "xts(paes)",
5041 .test = alg_test_null,
5042 .fips_allowed = 1,
5043 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005044 .alg = "xts(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005045 .generic_driver = "xts(ecb(serpent-generic))",
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005046 .test = alg_test_skcipher,
5047 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005048 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005049 }
5050 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005051 .alg = "xts(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005052 .generic_driver = "xts(ecb(twofish-generic))",
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005053 .test = alg_test_skcipher,
5054 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005055 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005056 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005057 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005058 .alg = "xts4096(paes)",
5059 .test = alg_test_null,
5060 .fips_allowed = 1,
5061 }, {
5062 .alg = "xts512(paes)",
5063 .test = alg_test_null,
5064 .fips_allowed = 1,
5065 }, {
Nikolay Borisov67882e72019-05-30 09:52:57 +03005066 .alg = "xxhash64",
5067 .test = alg_test_hash,
5068 .fips_allowed = 1,
5069 .suite = {
5070 .hash = __VECS(xxhash64_tv_template)
5071 }
5072 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005073 .alg = "zlib-deflate",
5074 .test = alg_test_comp,
5075 .fips_allowed = 1,
5076 .suite = {
5077 .comp = {
5078 .comp = __VECS(zlib_deflate_comp_tv_template),
5079 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5080 }
5081 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07005082 }, {
5083 .alg = "zstd",
5084 .test = alg_test_comp,
5085 .fips_allowed = 1,
5086 .suite = {
5087 .comp = {
5088 .comp = __VECS(zstd_comp_tv_template),
5089 .decomp = __VECS(zstd_decomp_tv_template)
5090 }
5091 }
Herbert Xuda7f0332008-07-31 17:08:25 +08005092 }
5093};
5094
Eric Biggers3f47a032019-01-31 23:51:43 -08005095static void alg_check_test_descs_order(void)
Jussi Kivilinna57147582013-06-13 17:37:40 +03005096{
5097 int i;
5098
Jussi Kivilinna57147582013-06-13 17:37:40 +03005099 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5100 int diff = strcmp(alg_test_descs[i - 1].alg,
5101 alg_test_descs[i].alg);
5102
5103 if (WARN_ON(diff > 0)) {
5104 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5105 alg_test_descs[i - 1].alg,
5106 alg_test_descs[i].alg);
5107 }
5108
5109 if (WARN_ON(diff == 0)) {
5110 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5111 alg_test_descs[i].alg);
5112 }
5113 }
5114}
5115
Eric Biggers3f47a032019-01-31 23:51:43 -08005116static void alg_check_testvec_configs(void)
5117{
Eric Biggers4e7babba2019-01-31 23:51:46 -08005118 int i;
5119
5120 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5121 WARN_ON(!valid_testvec_config(
5122 &default_cipher_testvec_configs[i]));
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08005123
5124 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5125 WARN_ON(!valid_testvec_config(
5126 &default_hash_testvec_configs[i]));
Eric Biggers3f47a032019-01-31 23:51:43 -08005127}
5128
5129static void testmgr_onetime_init(void)
5130{
5131 alg_check_test_descs_order();
5132 alg_check_testvec_configs();
Eric Biggers5b2706a2019-01-31 23:51:44 -08005133
5134#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5135 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5136#endif
Eric Biggers3f47a032019-01-31 23:51:43 -08005137}
5138
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005139static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08005140{
5141 int start = 0;
5142 int end = ARRAY_SIZE(alg_test_descs);
5143
5144 while (start < end) {
5145 int i = (start + end) / 2;
5146 int diff = strcmp(alg_test_descs[i].alg, alg);
5147
5148 if (diff > 0) {
5149 end = i;
5150 continue;
5151 }
5152
5153 if (diff < 0) {
5154 start = i + 1;
5155 continue;
5156 }
5157
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005158 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08005159 }
5160
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005161 return -1;
5162}
5163
5164int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5165{
5166 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08005167 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08005168 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005169
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01005170 if (!fips_enabled && notests) {
5171 printk_once(KERN_INFO "alg: self-tests disabled\n");
5172 return 0;
5173 }
5174
Eric Biggers3f47a032019-01-31 23:51:43 -08005175 DO_ONCE(testmgr_onetime_init);
Jussi Kivilinna57147582013-06-13 17:37:40 +03005176
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005177 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5178 char nalg[CRYPTO_MAX_ALG_NAME];
5179
5180 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5181 sizeof(nalg))
5182 return -ENAMETOOLONG;
5183
5184 i = alg_find_test(nalg);
5185 if (i < 0)
5186 goto notest;
5187
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005188 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5189 goto non_fips_alg;
5190
Jarod Wilson941fb322009-05-04 19:49:23 +08005191 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5192 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005193 }
5194
5195 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08005196 j = alg_find_test(driver);
5197 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005198 goto notest;
5199
Herbert Xua68f6612009-07-02 16:32:12 +08005200 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
5201 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005202 goto non_fips_alg;
5203
Herbert Xua68f6612009-07-02 16:32:12 +08005204 rc = 0;
5205 if (i >= 0)
5206 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5207 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03005208 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08005209 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5210 type, mask);
5211
Jarod Wilson941fb322009-05-04 19:49:23 +08005212test_done:
Eric Biggerseda69b02019-03-31 13:09:14 -07005213 if (rc && (fips_enabled || panic_on_fail))
5214 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5215 driver, alg, fips_enabled ? "fips" : "panic_on_fail");
Neil Hormand12d6b62008-10-12 20:36:51 +08005216
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005217 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09005218 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005219
Neil Hormand12d6b62008-10-12 20:36:51 +08005220 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005221
5222notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08005223 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5224 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005225non_fips_alg:
5226 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08005227}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005228
Herbert Xu326a6342010-08-06 09:40:28 +08005229#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005230
Herbert Xuda7f0332008-07-31 17:08:25 +08005231EXPORT_SYMBOL_GPL(alg_test);