blob: ace4c260ea5dde7a1844c5053cd97b6fb9d601e7 [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;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001499 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001500 }
1501 }
1502#endif
1503 return 0;
1504}
1505
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001506#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1507/*
1508 * Generate a hash test vector from the given implementation.
1509 * Assumes the buffers in 'vec' were already allocated.
1510 */
1511static void generate_random_hash_testvec(struct crypto_shash *tfm,
1512 struct hash_testvec *vec,
1513 unsigned int maxkeysize,
1514 unsigned int maxdatasize,
1515 char *name, size_t max_namelen)
1516{
1517 SHASH_DESC_ON_STACK(desc, tfm);
1518
1519 /* Data */
1520 vec->psize = generate_random_length(maxdatasize);
1521 generate_random_bytes((u8 *)vec->plaintext, vec->psize);
1522
1523 /*
1524 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
1525 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
1526 */
1527 vec->setkey_error = 0;
1528 vec->ksize = 0;
1529 if (maxkeysize) {
1530 vec->ksize = maxkeysize;
1531 if (prandom_u32() % 4 == 0)
1532 vec->ksize = 1 + (prandom_u32() % maxkeysize);
1533 generate_random_bytes((u8 *)vec->key, vec->ksize);
1534
1535 vec->setkey_error = crypto_shash_setkey(tfm, vec->key,
1536 vec->ksize);
1537 /* If the key couldn't be set, no need to continue to digest. */
1538 if (vec->setkey_error)
1539 goto done;
1540 }
1541
1542 /* Digest */
1543 desc->tfm = tfm;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001544 vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
1545 vec->psize, (u8 *)vec->digest);
1546done:
1547 snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
1548 vec->psize, vec->ksize);
1549}
1550
1551/*
1552 * Test the hash algorithm represented by @req against the corresponding generic
1553 * implementation, if one is available.
1554 */
1555static int test_hash_vs_generic_impl(const char *driver,
1556 const char *generic_driver,
1557 unsigned int maxkeysize,
1558 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001559 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001560 struct test_sglist *tsgl,
1561 u8 *hashstate)
1562{
1563 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1564 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1565 const unsigned int blocksize = crypto_ahash_blocksize(tfm);
1566 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
1567 const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
1568 char _generic_driver[CRYPTO_MAX_ALG_NAME];
1569 struct crypto_shash *generic_tfm = NULL;
1570 unsigned int i;
1571 struct hash_testvec vec = { 0 };
1572 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001573 struct testvec_config *cfg;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001574 char cfgname[TESTVEC_CONFIG_NAMELEN];
1575 int err;
1576
1577 if (noextratests)
1578 return 0;
1579
1580 if (!generic_driver) { /* Use default naming convention? */
1581 err = build_generic_driver_name(algname, _generic_driver);
1582 if (err)
1583 return err;
1584 generic_driver = _generic_driver;
1585 }
1586
1587 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
1588 return 0;
1589
1590 generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
1591 if (IS_ERR(generic_tfm)) {
1592 err = PTR_ERR(generic_tfm);
1593 if (err == -ENOENT) {
1594 pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable\n",
1595 driver, generic_driver);
1596 return 0;
1597 }
1598 pr_err("alg: hash: error allocating %s (generic impl of %s): %d\n",
1599 generic_driver, algname, err);
1600 return err;
1601 }
1602
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001603 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1604 if (!cfg) {
1605 err = -ENOMEM;
1606 goto out;
1607 }
1608
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001609 /* Check the algorithm properties for consistency. */
1610
1611 if (digestsize != crypto_shash_digestsize(generic_tfm)) {
1612 pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)\n",
1613 driver, digestsize,
1614 crypto_shash_digestsize(generic_tfm));
1615 err = -EINVAL;
1616 goto out;
1617 }
1618
1619 if (blocksize != crypto_shash_blocksize(generic_tfm)) {
1620 pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)\n",
1621 driver, blocksize, crypto_shash_blocksize(generic_tfm));
1622 err = -EINVAL;
1623 goto out;
1624 }
1625
1626 /*
1627 * Now generate test vectors using the generic implementation, and test
1628 * the other implementation against them.
1629 */
1630
1631 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
1632 vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
1633 vec.digest = kmalloc(digestsize, GFP_KERNEL);
1634 if (!vec.key || !vec.plaintext || !vec.digest) {
1635 err = -ENOMEM;
1636 goto out;
1637 }
1638
1639 for (i = 0; i < fuzz_iterations * 8; i++) {
1640 generate_random_hash_testvec(generic_tfm, &vec,
1641 maxkeysize, maxdatasize,
1642 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001643 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001644
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001645 err = test_hash_vec_cfg(driver, &vec, vec_name, cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001646 req, desc, tsgl, hashstate);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001647 if (err)
1648 goto out;
1649 cond_resched();
1650 }
1651 err = 0;
1652out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001653 kfree(cfg);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001654 kfree(vec.key);
1655 kfree(vec.plaintext);
1656 kfree(vec.digest);
1657 crypto_free_shash(generic_tfm);
1658 return err;
1659}
1660#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1661static int test_hash_vs_generic_impl(const char *driver,
1662 const char *generic_driver,
1663 unsigned int maxkeysize,
1664 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001665 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001666 struct test_sglist *tsgl,
1667 u8 *hashstate)
1668{
1669 return 0;
1670}
1671#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1672
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001673static int alloc_shash(const char *driver, u32 type, u32 mask,
1674 struct crypto_shash **tfm_ret,
1675 struct shash_desc **desc_ret)
1676{
1677 struct crypto_shash *tfm;
1678 struct shash_desc *desc;
1679
1680 tfm = crypto_alloc_shash(driver, type, mask);
1681 if (IS_ERR(tfm)) {
1682 if (PTR_ERR(tfm) == -ENOENT) {
1683 /*
1684 * This algorithm is only available through the ahash
1685 * API, not the shash API, so skip the shash tests.
1686 */
1687 return 0;
1688 }
1689 pr_err("alg: hash: failed to allocate shash transform for %s: %ld\n",
1690 driver, PTR_ERR(tfm));
1691 return PTR_ERR(tfm);
1692 }
1693
1694 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1695 if (!desc) {
1696 crypto_free_shash(tfm);
1697 return -ENOMEM;
1698 }
1699 desc->tfm = tfm;
1700
1701 *tfm_ret = tfm;
1702 *desc_ret = desc;
1703 return 0;
1704}
1705
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001706static int __alg_test_hash(const struct hash_testvec *vecs,
1707 unsigned int num_vecs, const char *driver,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001708 u32 type, u32 mask,
1709 const char *generic_driver, unsigned int maxkeysize)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001710{
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001711 struct crypto_ahash *atfm = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001712 struct ahash_request *req = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001713 struct crypto_shash *stfm = NULL;
1714 struct shash_desc *desc = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001715 struct test_sglist *tsgl = NULL;
1716 u8 *hashstate = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001717 unsigned int statesize;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001718 unsigned int i;
1719 int err;
1720
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001721 /*
1722 * Always test the ahash API. This works regardless of whether the
1723 * algorithm is implemented as ahash or shash.
1724 */
1725
1726 atfm = crypto_alloc_ahash(driver, type, mask);
1727 if (IS_ERR(atfm)) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001728 pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001729 driver, PTR_ERR(atfm));
1730 return PTR_ERR(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001731 }
1732
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001733 req = ahash_request_alloc(atfm, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001734 if (!req) {
1735 pr_err("alg: hash: failed to allocate request for %s\n",
1736 driver);
1737 err = -ENOMEM;
1738 goto out;
1739 }
1740
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001741 /*
1742 * If available also test the shash API, to cover corner cases that may
1743 * be missed by testing the ahash API only.
1744 */
1745 err = alloc_shash(driver, type, mask, &stfm, &desc);
1746 if (err)
1747 goto out;
1748
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001749 tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
1750 if (!tsgl || init_test_sglist(tsgl) != 0) {
1751 pr_err("alg: hash: failed to allocate test buffers for %s\n",
1752 driver);
1753 kfree(tsgl);
1754 tsgl = NULL;
1755 err = -ENOMEM;
1756 goto out;
1757 }
1758
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001759 statesize = crypto_ahash_statesize(atfm);
1760 if (stfm)
1761 statesize = max(statesize, crypto_shash_statesize(stfm));
1762 hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001763 if (!hashstate) {
1764 pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
1765 driver);
1766 err = -ENOMEM;
1767 goto out;
1768 }
1769
1770 for (i = 0; i < num_vecs; i++) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001771 err = test_hash_vec(driver, &vecs[i], i, req, desc, tsgl,
1772 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001773 if (err)
1774 goto out;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001775 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001776 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001777 err = test_hash_vs_generic_impl(driver, generic_driver, maxkeysize, req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001778 desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001779out:
1780 kfree(hashstate);
1781 if (tsgl) {
1782 destroy_test_sglist(tsgl);
1783 kfree(tsgl);
1784 }
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001785 kfree(desc);
1786 crypto_free_shash(stfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001787 ahash_request_free(req);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001788 crypto_free_ahash(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001789 return err;
1790}
1791
1792static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1793 u32 type, u32 mask)
1794{
1795 const struct hash_testvec *template = desc->suite.hash.vecs;
1796 unsigned int tcount = desc->suite.hash.count;
1797 unsigned int nr_unkeyed, nr_keyed;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001798 unsigned int maxkeysize = 0;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001799 int err;
1800
1801 /*
1802 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1803 * first, before setting a key on the tfm. To make this easier, we
1804 * require that the unkeyed test vectors (if any) are listed first.
1805 */
1806
1807 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1808 if (template[nr_unkeyed].ksize)
1809 break;
1810 }
1811 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1812 if (!template[nr_unkeyed + nr_keyed].ksize) {
1813 pr_err("alg: hash: test vectors for %s out of order, "
1814 "unkeyed ones must come first\n", desc->alg);
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001815 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08001816 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001817 maxkeysize = max_t(unsigned int, maxkeysize,
1818 template[nr_unkeyed + nr_keyed].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001819 }
1820
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001821 err = 0;
1822 if (nr_unkeyed) {
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001823 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
1824 desc->generic_driver, maxkeysize);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001825 template += nr_unkeyed;
Herbert Xuda7f0332008-07-31 17:08:25 +08001826 }
1827
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001828 if (!err && nr_keyed)
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001829 err = __alg_test_hash(template, nr_keyed, driver, type, mask,
1830 desc->generic_driver, maxkeysize);
Wang, Rui Y018ba952016-02-03 18:26:57 +08001831
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001832 return err;
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +03001833}
1834
Eric Biggersed968042019-01-31 23:51:47 -08001835static int test_aead_vec_cfg(const char *driver, int enc,
1836 const struct aead_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07001837 const char *vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08001838 const struct testvec_config *cfg,
1839 struct aead_request *req,
1840 struct cipher_test_sglists *tsgls)
Herbert Xuda7f0332008-07-31 17:08:25 +08001841{
Eric Biggersed968042019-01-31 23:51:47 -08001842 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1843 const unsigned int alignmask = crypto_aead_alignmask(tfm);
1844 const unsigned int ivsize = crypto_aead_ivsize(tfm);
1845 const unsigned int authsize = vec->clen - vec->plen;
1846 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1847 const char *op = enc ? "encryption" : "decryption";
1848 DECLARE_CRYPTO_WAIT(wait);
1849 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
1850 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
1851 cfg->iv_offset +
1852 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
1853 struct kvec input[2];
Eric Biggers5283a8e2019-04-11 21:57:36 -07001854 int expected_error;
Eric Biggersed968042019-01-31 23:51:47 -08001855 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001856
Eric Biggersed968042019-01-31 23:51:47 -08001857 /* Set the key */
1858 if (vec->wk)
1859 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001860 else
Eric Biggersed968042019-01-31 23:51:47 -08001861 crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1862 err = crypto_aead_setkey(tfm, vec->key, vec->klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001863 if (err && err != vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001864 pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1865 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001866 crypto_aead_get_flags(tfm));
Eric Biggersed968042019-01-31 23:51:47 -08001867 return err;
1868 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001869 if (!err && vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001870 pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1871 driver, vec_name, vec->setkey_error);
Eric Biggersed968042019-01-31 23:51:47 -08001872 return -EINVAL;
1873 }
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001874
Eric Biggersed968042019-01-31 23:51:47 -08001875 /* Set the authentication tag size */
1876 err = crypto_aead_setauthsize(tfm, authsize);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001877 if (err && err != vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001878 pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d\n",
1879 driver, vec_name, vec->setauthsize_error, err);
Eric Biggersed968042019-01-31 23:51:47 -08001880 return err;
1881 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001882 if (!err && vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001883 pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d\n",
1884 driver, vec_name, vec->setauthsize_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001885 return -EINVAL;
1886 }
1887
1888 if (vec->setkey_error || vec->setauthsize_error)
1889 return 0;
Eric Biggersed968042019-01-31 23:51:47 -08001890
1891 /* The IV must be copied to a buffer, as the algorithm may modify it */
1892 if (WARN_ON(ivsize > MAX_IVLEN))
1893 return -EINVAL;
1894 if (vec->iv)
1895 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001896 else
Eric Biggersed968042019-01-31 23:51:47 -08001897 memset(iv, 0, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001898
Eric Biggersed968042019-01-31 23:51:47 -08001899 /* Build the src/dst scatterlists */
1900 input[0].iov_base = (void *)vec->assoc;
1901 input[0].iov_len = vec->alen;
1902 input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
1903 input[1].iov_len = enc ? vec->plen : vec->clen;
1904 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
1905 vec->alen + (enc ? vec->plen :
1906 vec->clen),
1907 vec->alen + (enc ? vec->clen :
1908 vec->plen),
1909 input, 2);
1910 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07001911 pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
1912 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001913 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001914 }
1915
Eric Biggersed968042019-01-31 23:51:47 -08001916 /* Do the actual encryption or decryption */
1917 testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
1918 aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
1919 aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
1920 enc ? vec->plen : vec->clen, iv);
1921 aead_request_set_ad(req, vec->alen);
Eric Biggers65707372019-03-12 22:12:52 -07001922 if (cfg->nosimd)
1923 crypto_disable_simd_for_test();
1924 err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
1925 if (cfg->nosimd)
1926 crypto_reenable_simd_for_test();
1927 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001928
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001929 /* Check that the algorithm didn't overwrite things it shouldn't have */
1930 if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
1931 req->assoclen != vec->alen ||
1932 req->iv != iv ||
1933 req->src != tsgls->src.sgl_ptr ||
1934 req->dst != tsgls->dst.sgl_ptr ||
1935 crypto_aead_reqtfm(req) != tfm ||
1936 req->base.complete != crypto_req_done ||
1937 req->base.flags != req_flags ||
1938 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07001939 pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
1940 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001941 if (req->cryptlen != (enc ? vec->plen : vec->clen))
1942 pr_err("alg: aead: changed 'req->cryptlen'\n");
1943 if (req->assoclen != vec->alen)
1944 pr_err("alg: aead: changed 'req->assoclen'\n");
1945 if (req->iv != iv)
1946 pr_err("alg: aead: changed 'req->iv'\n");
1947 if (req->src != tsgls->src.sgl_ptr)
1948 pr_err("alg: aead: changed 'req->src'\n");
1949 if (req->dst != tsgls->dst.sgl_ptr)
1950 pr_err("alg: aead: changed 'req->dst'\n");
1951 if (crypto_aead_reqtfm(req) != tfm)
1952 pr_err("alg: aead: changed 'req->base.tfm'\n");
1953 if (req->base.complete != crypto_req_done)
1954 pr_err("alg: aead: changed 'req->base.complete'\n");
1955 if (req->base.flags != req_flags)
1956 pr_err("alg: aead: changed 'req->base.flags'\n");
1957 if (req->base.data != &wait)
1958 pr_err("alg: aead: changed 'req->base.data'\n");
1959 return -EINVAL;
1960 }
1961 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001962 pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
1963 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001964 return -EINVAL;
1965 }
1966 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
1967 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001968 pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
1969 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001970 return -EINVAL;
1971 }
1972
Eric Biggers5283a8e2019-04-11 21:57:36 -07001973 /* Check for success or failure */
1974 expected_error = vec->novrfy ? -EBADMSG : vec->crypt_error;
1975 if (err) {
1976 if (err == expected_error)
1977 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07001978 pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1979 driver, op, vec_name, expected_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001980 return err;
1981 }
1982 if (expected_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001983 pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1984 driver, op, vec_name, expected_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001985 return -EINVAL;
1986 }
1987
Eric Biggersed968042019-01-31 23:51:47 -08001988 /* Check for the correct output (ciphertext or plaintext) */
1989 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
1990 enc ? vec->clen : vec->plen,
1991 vec->alen, enc || !cfg->inplace);
1992 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07001993 pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
1994 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001995 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001996 }
Eric Biggersed968042019-01-31 23:51:47 -08001997 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07001998 pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1999 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08002000 return err;
Jussi Kivilinna58dcf542013-06-13 17:37:50 +03002001 }
2002
2003 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03002004}
2005
Eric Biggersed968042019-01-31 23:51:47 -08002006static int test_aead_vec(const char *driver, int enc,
2007 const struct aead_testvec *vec, unsigned int vec_num,
2008 struct aead_request *req,
2009 struct cipher_test_sglists *tsgls)
2010{
Eric Biggers951d1332019-04-11 21:57:37 -07002011 char vec_name[16];
Eric Biggersed968042019-01-31 23:51:47 -08002012 unsigned int i;
2013 int err;
2014
2015 if (enc && vec->novrfy)
2016 return 0;
2017
Eric Biggers951d1332019-04-11 21:57:37 -07002018 sprintf(vec_name, "%u", vec_num);
2019
Eric Biggersed968042019-01-31 23:51:47 -08002020 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002021 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002022 &default_cipher_testvec_configs[i],
2023 req, tsgls);
2024 if (err)
2025 return err;
2026 }
2027
2028#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2029 if (!noextratests) {
2030 struct testvec_config cfg;
2031 char cfgname[TESTVEC_CONFIG_NAMELEN];
2032
2033 for (i = 0; i < fuzz_iterations; i++) {
2034 generate_random_testvec_config(&cfg, cfgname,
2035 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002036 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002037 &cfg, req, tsgls);
2038 if (err)
2039 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002040 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002041 }
2042 }
2043#endif
2044 return 0;
2045}
2046
Eric Biggers40153b12019-04-11 21:57:41 -07002047#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2048/*
2049 * Generate an AEAD test vector from the given implementation.
2050 * Assumes the buffers in 'vec' were already allocated.
2051 */
2052static void generate_random_aead_testvec(struct aead_request *req,
2053 struct aead_testvec *vec,
2054 unsigned int maxkeysize,
2055 unsigned int maxdatasize,
2056 char *name, size_t max_namelen)
2057{
2058 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2059 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2060 unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2061 unsigned int authsize;
2062 unsigned int total_len;
2063 int i;
2064 struct scatterlist src[2], dst;
2065 u8 iv[MAX_IVLEN];
2066 DECLARE_CRYPTO_WAIT(wait);
2067
2068 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2069 vec->klen = maxkeysize;
2070 if (prandom_u32() % 4 == 0)
2071 vec->klen = prandom_u32() % (maxkeysize + 1);
2072 generate_random_bytes((u8 *)vec->key, vec->klen);
2073 vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
2074
2075 /* IV */
2076 generate_random_bytes((u8 *)vec->iv, ivsize);
2077
2078 /* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
2079 authsize = maxauthsize;
2080 if (prandom_u32() % 4 == 0)
2081 authsize = prandom_u32() % (maxauthsize + 1);
2082 if (WARN_ON(authsize > maxdatasize))
2083 authsize = maxdatasize;
2084 maxdatasize -= authsize;
2085 vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
2086
2087 /* Plaintext and associated data */
2088 total_len = generate_random_length(maxdatasize);
2089 if (prandom_u32() % 4 == 0)
2090 vec->alen = 0;
2091 else
2092 vec->alen = generate_random_length(total_len);
2093 vec->plen = total_len - vec->alen;
2094 generate_random_bytes((u8 *)vec->assoc, vec->alen);
2095 generate_random_bytes((u8 *)vec->ptext, vec->plen);
2096
2097 vec->clen = vec->plen + authsize;
2098
2099 /*
2100 * If the key or authentication tag size couldn't be set, no need to
2101 * continue to encrypt.
2102 */
2103 if (vec->setkey_error || vec->setauthsize_error)
2104 goto done;
2105
2106 /* Ciphertext */
2107 sg_init_table(src, 2);
2108 i = 0;
2109 if (vec->alen)
2110 sg_set_buf(&src[i++], vec->assoc, vec->alen);
2111 if (vec->plen)
2112 sg_set_buf(&src[i++], vec->ptext, vec->plen);
2113 sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
2114 memcpy(iv, vec->iv, ivsize);
2115 aead_request_set_callback(req, 0, crypto_req_done, &wait);
2116 aead_request_set_crypt(req, src, &dst, vec->plen, iv);
2117 aead_request_set_ad(req, vec->alen);
2118 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req), &wait);
2119 if (vec->crypt_error == 0)
2120 memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
2121done:
2122 snprintf(name, max_namelen,
2123 "\"random: alen=%u plen=%u authsize=%u klen=%u\"",
2124 vec->alen, vec->plen, authsize, vec->klen);
2125}
2126
2127/*
2128 * Test the AEAD algorithm represented by @req against the corresponding generic
2129 * implementation, if one is available.
2130 */
2131static int test_aead_vs_generic_impl(const char *driver,
2132 const struct alg_test_desc *test_desc,
2133 struct aead_request *req,
2134 struct cipher_test_sglists *tsgls)
2135{
2136 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2137 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2138 const unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2139 const unsigned int blocksize = crypto_aead_blocksize(tfm);
2140 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2141 const char *algname = crypto_aead_alg(tfm)->base.cra_name;
2142 const char *generic_driver = test_desc->generic_driver;
2143 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2144 struct crypto_aead *generic_tfm = NULL;
2145 struct aead_request *generic_req = NULL;
2146 unsigned int maxkeysize;
2147 unsigned int i;
2148 struct aead_testvec vec = { 0 };
2149 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002150 struct testvec_config *cfg;
Eric Biggers40153b12019-04-11 21:57:41 -07002151 char cfgname[TESTVEC_CONFIG_NAMELEN];
2152 int err;
2153
2154 if (noextratests)
2155 return 0;
2156
2157 if (!generic_driver) { /* Use default naming convention? */
2158 err = build_generic_driver_name(algname, _generic_driver);
2159 if (err)
2160 return err;
2161 generic_driver = _generic_driver;
2162 }
2163
2164 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2165 return 0;
2166
2167 generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
2168 if (IS_ERR(generic_tfm)) {
2169 err = PTR_ERR(generic_tfm);
2170 if (err == -ENOENT) {
2171 pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable\n",
2172 driver, generic_driver);
2173 return 0;
2174 }
2175 pr_err("alg: aead: error allocating %s (generic impl of %s): %d\n",
2176 generic_driver, algname, err);
2177 return err;
2178 }
2179
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002180 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
2181 if (!cfg) {
2182 err = -ENOMEM;
2183 goto out;
2184 }
2185
Eric Biggers40153b12019-04-11 21:57:41 -07002186 generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
2187 if (!generic_req) {
2188 err = -ENOMEM;
2189 goto out;
2190 }
2191
2192 /* Check the algorithm properties for consistency. */
2193
2194 if (maxauthsize != crypto_aead_alg(generic_tfm)->maxauthsize) {
2195 pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)\n",
2196 driver, maxauthsize,
2197 crypto_aead_alg(generic_tfm)->maxauthsize);
2198 err = -EINVAL;
2199 goto out;
2200 }
2201
2202 if (ivsize != crypto_aead_ivsize(generic_tfm)) {
2203 pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2204 driver, ivsize, crypto_aead_ivsize(generic_tfm));
2205 err = -EINVAL;
2206 goto out;
2207 }
2208
2209 if (blocksize != crypto_aead_blocksize(generic_tfm)) {
2210 pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2211 driver, blocksize, crypto_aead_blocksize(generic_tfm));
2212 err = -EINVAL;
2213 goto out;
2214 }
2215
2216 /*
2217 * Now generate test vectors using the generic implementation, and test
2218 * the other implementation against them.
2219 */
2220
2221 maxkeysize = 0;
2222 for (i = 0; i < test_desc->suite.aead.count; i++)
2223 maxkeysize = max_t(unsigned int, maxkeysize,
2224 test_desc->suite.aead.vecs[i].klen);
2225
2226 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
2227 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2228 vec.assoc = kmalloc(maxdatasize, GFP_KERNEL);
2229 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2230 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2231 if (!vec.key || !vec.iv || !vec.assoc || !vec.ptext || !vec.ctext) {
2232 err = -ENOMEM;
2233 goto out;
2234 }
2235
2236 for (i = 0; i < fuzz_iterations * 8; i++) {
2237 generate_random_aead_testvec(generic_req, &vec,
2238 maxkeysize, maxdatasize,
2239 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002240 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggers40153b12019-04-11 21:57:41 -07002241
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002242 err = test_aead_vec_cfg(driver, ENCRYPT, &vec, vec_name, cfg,
Eric Biggers40153b12019-04-11 21:57:41 -07002243 req, tsgls);
2244 if (err)
2245 goto out;
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002246 err = test_aead_vec_cfg(driver, DECRYPT, &vec, vec_name, cfg,
Eric Biggers40153b12019-04-11 21:57:41 -07002247 req, tsgls);
2248 if (err)
2249 goto out;
2250 cond_resched();
2251 }
2252 err = 0;
2253out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002254 kfree(cfg);
Eric Biggers40153b12019-04-11 21:57:41 -07002255 kfree(vec.key);
2256 kfree(vec.iv);
2257 kfree(vec.assoc);
2258 kfree(vec.ptext);
2259 kfree(vec.ctext);
2260 crypto_free_aead(generic_tfm);
2261 aead_request_free(generic_req);
2262 return err;
2263}
2264#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2265static int test_aead_vs_generic_impl(const char *driver,
2266 const struct alg_test_desc *test_desc,
2267 struct aead_request *req,
2268 struct cipher_test_sglists *tsgls)
2269{
2270 return 0;
2271}
2272#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2273
Eric Biggersed968042019-01-31 23:51:47 -08002274static int test_aead(const char *driver, int enc,
2275 const struct aead_test_suite *suite,
2276 struct aead_request *req,
2277 struct cipher_test_sglists *tsgls)
2278{
2279 unsigned int i;
2280 int err;
2281
2282 for (i = 0; i < suite->count; i++) {
2283 err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
2284 tsgls);
2285 if (err)
2286 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002287 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002288 }
2289 return 0;
2290}
2291
2292static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
2293 u32 type, u32 mask)
2294{
2295 const struct aead_test_suite *suite = &desc->suite.aead;
2296 struct crypto_aead *tfm;
2297 struct aead_request *req = NULL;
2298 struct cipher_test_sglists *tsgls = NULL;
2299 int err;
2300
2301 if (suite->count <= 0) {
2302 pr_err("alg: aead: empty test suite for %s\n", driver);
2303 return -EINVAL;
2304 }
2305
2306 tfm = crypto_alloc_aead(driver, type, mask);
2307 if (IS_ERR(tfm)) {
2308 pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
2309 driver, PTR_ERR(tfm));
2310 return PTR_ERR(tfm);
2311 }
2312
2313 req = aead_request_alloc(tfm, GFP_KERNEL);
2314 if (!req) {
2315 pr_err("alg: aead: failed to allocate request for %s\n",
2316 driver);
2317 err = -ENOMEM;
2318 goto out;
2319 }
2320
2321 tsgls = alloc_cipher_test_sglists();
2322 if (!tsgls) {
2323 pr_err("alg: aead: failed to allocate test buffers for %s\n",
2324 driver);
2325 err = -ENOMEM;
2326 goto out;
2327 }
2328
2329 err = test_aead(driver, ENCRYPT, suite, req, tsgls);
2330 if (err)
2331 goto out;
2332
2333 err = test_aead(driver, DECRYPT, suite, req, tsgls);
Eric Biggers40153b12019-04-11 21:57:41 -07002334 if (err)
2335 goto out;
2336
2337 err = test_aead_vs_generic_impl(driver, desc, req, tsgls);
Eric Biggersed968042019-01-31 23:51:47 -08002338out:
2339 free_cipher_test_sglists(tsgls);
2340 aead_request_free(req);
2341 crypto_free_aead(tfm);
2342 return err;
2343}
2344
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002345static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002346 const struct cipher_testvec *template,
2347 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002348{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002349 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
2350 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002351 char *q;
2352 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002353 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002354 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002355 char *xbuf[XBUFSIZE];
2356 int ret = -ENOMEM;
2357
2358 if (testmgr_alloc_buf(xbuf))
2359 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002360
2361 if (enc == ENCRYPT)
2362 e = "encryption";
2363 else
2364 e = "decryption";
2365
2366 j = 0;
2367 for (i = 0; i < tcount; i++) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002368
Stephan Mueller10faa8c2016-08-25 15:15:01 +02002369 if (fips_enabled && template[i].fips_skip)
2370 continue;
2371
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002372 input = enc ? template[i].ptext : template[i].ctext;
2373 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002374 j++;
2375
Herbert Xufd57f222009-05-29 16:05:42 +10002376 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002377 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10002378 goto out;
2379
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002380 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002381 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002382
2383 crypto_cipher_clear_flags(tfm, ~0);
2384 if (template[i].wk)
Eric Biggers231baec2019-01-18 22:48:00 -08002385 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002386
2387 ret = crypto_cipher_setkey(tfm, template[i].key,
2388 template[i].klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002389 if (ret) {
2390 if (ret == template[i].setkey_error)
2391 continue;
2392 pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x\n",
2393 algo, j, template[i].setkey_error, ret,
2394 crypto_cipher_get_flags(tfm));
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002395 goto out;
Eric Biggers5283a8e2019-04-11 21:57:36 -07002396 }
2397 if (template[i].setkey_error) {
2398 pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d\n",
2399 algo, j, template[i].setkey_error);
2400 ret = -EINVAL;
2401 goto out;
2402 }
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002403
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002404 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002405 k += crypto_cipher_blocksize(tfm)) {
2406 if (enc)
2407 crypto_cipher_encrypt_one(tfm, data + k,
2408 data + k);
2409 else
2410 crypto_cipher_decrypt_one(tfm, data + k,
2411 data + k);
2412 }
2413
2414 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002415 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002416 printk(KERN_ERR "alg: cipher: Test %d failed "
2417 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002418 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002419 ret = -EINVAL;
2420 goto out;
2421 }
2422 }
2423
2424 ret = 0;
2425
2426out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002427 testmgr_free_buf(xbuf);
2428out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002429 return ret;
2430}
2431
Eric Biggers4e7babba2019-01-31 23:51:46 -08002432static int test_skcipher_vec_cfg(const char *driver, int enc,
2433 const struct cipher_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07002434 const char *vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002435 const struct testvec_config *cfg,
2436 struct skcipher_request *req,
2437 struct cipher_test_sglists *tsgls)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002438{
Eric Biggers4e7babba2019-01-31 23:51:46 -08002439 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2440 const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
2441 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2442 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2443 const char *op = enc ? "encryption" : "decryption";
2444 DECLARE_CRYPTO_WAIT(wait);
2445 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2446 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2447 cfg->iv_offset +
2448 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2449 struct kvec input;
2450 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002451
Eric Biggers4e7babba2019-01-31 23:51:46 -08002452 /* Set the key */
2453 if (vec->wk)
2454 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002455 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002456 crypto_skcipher_clear_flags(tfm,
2457 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2458 err = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2459 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07002460 if (err == vec->setkey_error)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002461 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002462 pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2463 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07002464 crypto_skcipher_get_flags(tfm));
Eric Biggers4e7babba2019-01-31 23:51:46 -08002465 return err;
2466 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07002467 if (vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002468 pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2469 driver, vec_name, vec->setkey_error);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002470 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002471 }
2472
Eric Biggers4e7babba2019-01-31 23:51:46 -08002473 /* The IV must be copied to a buffer, as the algorithm may modify it */
2474 if (ivsize) {
2475 if (WARN_ON(ivsize > MAX_IVLEN))
2476 return -EINVAL;
Eric Biggers8efd9722019-02-14 00:03:51 -08002477 if (vec->generates_iv && !enc)
2478 memcpy(iv, vec->iv_out, ivsize);
2479 else if (vec->iv)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002480 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08002481 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002482 memset(iv, 0, ivsize);
2483 } else {
2484 if (vec->generates_iv) {
Eric Biggers951d1332019-04-11 21:57:37 -07002485 pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!\n",
2486 driver, vec_name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002487 return -EINVAL;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03002488 }
Eric Biggers4e7babba2019-01-31 23:51:46 -08002489 iv = NULL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002490 }
2491
Eric Biggers4e7babba2019-01-31 23:51:46 -08002492 /* Build the src/dst scatterlists */
2493 input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2494 input.iov_len = vec->len;
2495 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2496 vec->len, vec->len, &input, 1);
2497 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002498 pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2499 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002500 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002501 }
2502
Eric Biggers4e7babba2019-01-31 23:51:46 -08002503 /* Do the actual encryption or decryption */
2504 testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
2505 skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
2506 skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2507 vec->len, iv);
Eric Biggers65707372019-03-12 22:12:52 -07002508 if (cfg->nosimd)
2509 crypto_disable_simd_for_test();
2510 err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
2511 if (cfg->nosimd)
2512 crypto_reenable_simd_for_test();
2513 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08002514
Eric Biggersfa353c92019-01-31 23:51:49 -08002515 /* Check that the algorithm didn't overwrite things it shouldn't have */
2516 if (req->cryptlen != vec->len ||
2517 req->iv != iv ||
2518 req->src != tsgls->src.sgl_ptr ||
2519 req->dst != tsgls->dst.sgl_ptr ||
2520 crypto_skcipher_reqtfm(req) != tfm ||
2521 req->base.complete != crypto_req_done ||
2522 req->base.flags != req_flags ||
2523 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07002524 pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2525 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002526 if (req->cryptlen != vec->len)
2527 pr_err("alg: skcipher: changed 'req->cryptlen'\n");
2528 if (req->iv != iv)
2529 pr_err("alg: skcipher: changed 'req->iv'\n");
2530 if (req->src != tsgls->src.sgl_ptr)
2531 pr_err("alg: skcipher: changed 'req->src'\n");
2532 if (req->dst != tsgls->dst.sgl_ptr)
2533 pr_err("alg: skcipher: changed 'req->dst'\n");
2534 if (crypto_skcipher_reqtfm(req) != tfm)
2535 pr_err("alg: skcipher: changed 'req->base.tfm'\n");
2536 if (req->base.complete != crypto_req_done)
2537 pr_err("alg: skcipher: changed 'req->base.complete'\n");
2538 if (req->base.flags != req_flags)
2539 pr_err("alg: skcipher: changed 'req->base.flags'\n");
2540 if (req->base.data != &wait)
2541 pr_err("alg: skcipher: changed 'req->base.data'\n");
2542 return -EINVAL;
2543 }
2544 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002545 pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2546 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002547 return -EINVAL;
2548 }
2549 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2550 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002551 pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2552 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002553 return -EINVAL;
2554 }
2555
Eric Biggers5283a8e2019-04-11 21:57:36 -07002556 /* Check for success or failure */
2557 if (err) {
2558 if (err == vec->crypt_error)
2559 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002560 pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
2561 driver, op, vec_name, vec->crypt_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002562 return err;
2563 }
2564 if (vec->crypt_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002565 pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
2566 driver, op, vec_name, vec->crypt_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002567 return -EINVAL;
2568 }
2569
Eric Biggers4e7babba2019-01-31 23:51:46 -08002570 /* Check for the correct output (ciphertext or plaintext) */
2571 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2572 vec->len, 0, true);
2573 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07002574 pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2575 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002576 return err;
2577 }
2578 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002579 pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2580 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002581 return err;
2582 }
Herbert Xuda7f0332008-07-31 17:08:25 +08002583
Eric Biggers4e7babba2019-01-31 23:51:46 -08002584 /* If applicable, check that the algorithm generated the correct IV */
Eric Biggers8efd9722019-02-14 00:03:51 -08002585 if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
Eric Biggers951d1332019-04-11 21:57:37 -07002586 pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"\n",
2587 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002588 hexdump(iv, ivsize);
2589 return -EINVAL;
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03002590 }
2591
2592 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002593}
2594
Eric Biggers4e7babba2019-01-31 23:51:46 -08002595static int test_skcipher_vec(const char *driver, int enc,
2596 const struct cipher_testvec *vec,
2597 unsigned int vec_num,
2598 struct skcipher_request *req,
2599 struct cipher_test_sglists *tsgls)
2600{
Eric Biggers951d1332019-04-11 21:57:37 -07002601 char vec_name[16];
Eric Biggers4e7babba2019-01-31 23:51:46 -08002602 unsigned int i;
2603 int err;
2604
2605 if (fips_enabled && vec->fips_skip)
2606 return 0;
2607
Eric Biggers951d1332019-04-11 21:57:37 -07002608 sprintf(vec_name, "%u", vec_num);
2609
Eric Biggers4e7babba2019-01-31 23:51:46 -08002610 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002611 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002612 &default_cipher_testvec_configs[i],
2613 req, tsgls);
2614 if (err)
2615 return err;
2616 }
2617
2618#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2619 if (!noextratests) {
2620 struct testvec_config cfg;
2621 char cfgname[TESTVEC_CONFIG_NAMELEN];
2622
2623 for (i = 0; i < fuzz_iterations; i++) {
2624 generate_random_testvec_config(&cfg, cfgname,
2625 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002626 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002627 &cfg, req, tsgls);
2628 if (err)
2629 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002630 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002631 }
2632 }
2633#endif
2634 return 0;
2635}
2636
Eric Biggersd435e102019-04-11 21:57:40 -07002637#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2638/*
2639 * Generate a symmetric cipher test vector from the given implementation.
2640 * Assumes the buffers in 'vec' were already allocated.
2641 */
2642static void generate_random_cipher_testvec(struct skcipher_request *req,
2643 struct cipher_testvec *vec,
2644 unsigned int maxdatasize,
2645 char *name, size_t max_namelen)
2646{
2647 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2648 const unsigned int maxkeysize = tfm->keysize;
2649 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2650 struct scatterlist src, dst;
2651 u8 iv[MAX_IVLEN];
2652 DECLARE_CRYPTO_WAIT(wait);
2653
2654 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2655 vec->klen = maxkeysize;
2656 if (prandom_u32() % 4 == 0)
2657 vec->klen = prandom_u32() % (maxkeysize + 1);
2658 generate_random_bytes((u8 *)vec->key, vec->klen);
2659 vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2660
2661 /* IV */
2662 generate_random_bytes((u8 *)vec->iv, ivsize);
2663
2664 /* Plaintext */
2665 vec->len = generate_random_length(maxdatasize);
2666 generate_random_bytes((u8 *)vec->ptext, vec->len);
2667
2668 /* If the key couldn't be set, no need to continue to encrypt. */
2669 if (vec->setkey_error)
2670 goto done;
2671
2672 /* Ciphertext */
2673 sg_init_one(&src, vec->ptext, vec->len);
2674 sg_init_one(&dst, vec->ctext, vec->len);
2675 memcpy(iv, vec->iv, ivsize);
2676 skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
2677 skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
2678 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
2679done:
2680 snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
2681 vec->len, vec->klen);
2682}
2683
2684/*
2685 * Test the skcipher algorithm represented by @req against the corresponding
2686 * generic implementation, if one is available.
2687 */
2688static int test_skcipher_vs_generic_impl(const char *driver,
2689 const char *generic_driver,
2690 struct skcipher_request *req,
2691 struct cipher_test_sglists *tsgls)
2692{
2693 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2694 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2695 const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
2696 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2697 const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
2698 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2699 struct crypto_skcipher *generic_tfm = NULL;
2700 struct skcipher_request *generic_req = NULL;
2701 unsigned int i;
2702 struct cipher_testvec vec = { 0 };
2703 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002704 struct testvec_config *cfg;
Eric Biggersd435e102019-04-11 21:57:40 -07002705 char cfgname[TESTVEC_CONFIG_NAMELEN];
2706 int err;
2707
2708 if (noextratests)
2709 return 0;
2710
2711 /* Keywrap isn't supported here yet as it handles its IV differently. */
2712 if (strncmp(algname, "kw(", 3) == 0)
2713 return 0;
2714
2715 if (!generic_driver) { /* Use default naming convention? */
2716 err = build_generic_driver_name(algname, _generic_driver);
2717 if (err)
2718 return err;
2719 generic_driver = _generic_driver;
2720 }
2721
2722 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2723 return 0;
2724
2725 generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
2726 if (IS_ERR(generic_tfm)) {
2727 err = PTR_ERR(generic_tfm);
2728 if (err == -ENOENT) {
2729 pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable\n",
2730 driver, generic_driver);
2731 return 0;
2732 }
2733 pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d\n",
2734 generic_driver, algname, err);
2735 return err;
2736 }
2737
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002738 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
2739 if (!cfg) {
2740 err = -ENOMEM;
2741 goto out;
2742 }
2743
Eric Biggersd435e102019-04-11 21:57:40 -07002744 generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
2745 if (!generic_req) {
2746 err = -ENOMEM;
2747 goto out;
2748 }
2749
2750 /* Check the algorithm properties for consistency. */
2751
2752 if (tfm->keysize != generic_tfm->keysize) {
2753 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
2754 driver, tfm->keysize, generic_tfm->keysize);
2755 err = -EINVAL;
2756 goto out;
2757 }
2758
2759 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
2760 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2761 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
2762 err = -EINVAL;
2763 goto out;
2764 }
2765
2766 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
2767 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2768 driver, blocksize,
2769 crypto_skcipher_blocksize(generic_tfm));
2770 err = -EINVAL;
2771 goto out;
2772 }
2773
2774 /*
2775 * Now generate test vectors using the generic implementation, and test
2776 * the other implementation against them.
2777 */
2778
2779 vec.key = kmalloc(tfm->keysize, GFP_KERNEL);
2780 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2781 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2782 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2783 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
2784 err = -ENOMEM;
2785 goto out;
2786 }
2787
2788 for (i = 0; i < fuzz_iterations * 8; i++) {
2789 generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
2790 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002791 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggersd435e102019-04-11 21:57:40 -07002792
2793 err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002794 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002795 if (err)
2796 goto out;
2797 err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002798 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002799 if (err)
2800 goto out;
2801 cond_resched();
2802 }
2803 err = 0;
2804out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002805 kfree(cfg);
Eric Biggersd435e102019-04-11 21:57:40 -07002806 kfree(vec.key);
2807 kfree(vec.iv);
2808 kfree(vec.ptext);
2809 kfree(vec.ctext);
2810 crypto_free_skcipher(generic_tfm);
2811 skcipher_request_free(generic_req);
2812 return err;
2813}
2814#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2815static int test_skcipher_vs_generic_impl(const char *driver,
2816 const char *generic_driver,
2817 struct skcipher_request *req,
2818 struct cipher_test_sglists *tsgls)
2819{
2820 return 0;
2821}
2822#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2823
Eric Biggers4e7babba2019-01-31 23:51:46 -08002824static int test_skcipher(const char *driver, int enc,
2825 const struct cipher_test_suite *suite,
2826 struct skcipher_request *req,
2827 struct cipher_test_sglists *tsgls)
2828{
2829 unsigned int i;
2830 int err;
2831
2832 for (i = 0; i < suite->count; i++) {
2833 err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
2834 tsgls);
2835 if (err)
2836 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002837 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002838 }
2839 return 0;
2840}
2841
2842static int alg_test_skcipher(const struct alg_test_desc *desc,
2843 const char *driver, u32 type, u32 mask)
2844{
2845 const struct cipher_test_suite *suite = &desc->suite.cipher;
2846 struct crypto_skcipher *tfm;
2847 struct skcipher_request *req = NULL;
2848 struct cipher_test_sglists *tsgls = NULL;
2849 int err;
2850
2851 if (suite->count <= 0) {
2852 pr_err("alg: skcipher: empty test suite for %s\n", driver);
2853 return -EINVAL;
2854 }
2855
2856 tfm = crypto_alloc_skcipher(driver, type, mask);
2857 if (IS_ERR(tfm)) {
2858 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
2859 driver, PTR_ERR(tfm));
2860 return PTR_ERR(tfm);
2861 }
2862
2863 req = skcipher_request_alloc(tfm, GFP_KERNEL);
2864 if (!req) {
2865 pr_err("alg: skcipher: failed to allocate request for %s\n",
2866 driver);
2867 err = -ENOMEM;
2868 goto out;
2869 }
2870
2871 tsgls = alloc_cipher_test_sglists();
2872 if (!tsgls) {
2873 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
2874 driver);
2875 err = -ENOMEM;
2876 goto out;
2877 }
2878
2879 err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
2880 if (err)
2881 goto out;
2882
2883 err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002884 if (err)
2885 goto out;
2886
2887 err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
2888 tsgls);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002889out:
2890 free_cipher_test_sglists(tsgls);
2891 skcipher_request_free(req);
2892 crypto_free_skcipher(tfm);
2893 return err;
2894}
2895
Eric Biggersb13b1e02017-02-24 15:46:59 -08002896static int test_comp(struct crypto_comp *tfm,
2897 const struct comp_testvec *ctemplate,
2898 const struct comp_testvec *dtemplate,
2899 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002900{
2901 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02002902 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08002903 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08002904 int ret;
2905
Mahipal Challa33607382018-04-11 20:28:32 +02002906 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2907 if (!output)
2908 return -ENOMEM;
2909
2910 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2911 if (!decomp_output) {
2912 kfree(output);
2913 return -ENOMEM;
2914 }
2915
Herbert Xuda7f0332008-07-31 17:08:25 +08002916 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002917 int ilen;
2918 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002919
Michael Schupikov22a81182018-10-07 13:58:10 +02002920 memset(output, 0, COMP_BUF_SIZE);
2921 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002922
2923 ilen = ctemplate[i].inlen;
2924 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002925 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002926 if (ret) {
2927 printk(KERN_ERR "alg: comp: compression failed "
2928 "on test %d for %s: ret=%d\n", i + 1, algo,
2929 -ret);
2930 goto out;
2931 }
2932
Mahipal Challa33607382018-04-11 20:28:32 +02002933 ilen = dlen;
2934 dlen = COMP_BUF_SIZE;
2935 ret = crypto_comp_decompress(tfm, output,
2936 ilen, decomp_output, &dlen);
2937 if (ret) {
2938 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
2939 i + 1, algo, -ret);
2940 goto out;
2941 }
2942
2943 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002944 printk(KERN_ERR "alg: comp: Compression test %d "
2945 "failed for %s: output len = %d\n", i + 1, algo,
2946 dlen);
2947 ret = -EINVAL;
2948 goto out;
2949 }
2950
Mahipal Challa33607382018-04-11 20:28:32 +02002951 if (memcmp(decomp_output, ctemplate[i].input,
2952 ctemplate[i].inlen)) {
2953 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
2954 i + 1, algo);
2955 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002956 ret = -EINVAL;
2957 goto out;
2958 }
2959 }
2960
2961 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002962 int ilen;
2963 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002964
Michael Schupikov22a81182018-10-07 13:58:10 +02002965 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002966
2967 ilen = dtemplate[i].inlen;
2968 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002969 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002970 if (ret) {
2971 printk(KERN_ERR "alg: comp: decompression failed "
2972 "on test %d for %s: ret=%d\n", i + 1, algo,
2973 -ret);
2974 goto out;
2975 }
2976
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002977 if (dlen != dtemplate[i].outlen) {
2978 printk(KERN_ERR "alg: comp: Decompression test %d "
2979 "failed for %s: output len = %d\n", i + 1, algo,
2980 dlen);
2981 ret = -EINVAL;
2982 goto out;
2983 }
2984
Mahipal Challa33607382018-04-11 20:28:32 +02002985 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08002986 printk(KERN_ERR "alg: comp: Decompression test %d "
2987 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02002988 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002989 ret = -EINVAL;
2990 goto out;
2991 }
2992 }
2993
2994 ret = 0;
2995
2996out:
Mahipal Challa33607382018-04-11 20:28:32 +02002997 kfree(decomp_output);
2998 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08002999 return ret;
3000}
3001
Eric Biggersb13b1e02017-02-24 15:46:59 -08003002static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02003003 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003004 const struct comp_testvec *dtemplate,
3005 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003006{
3007 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
3008 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003009 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003010 int ret;
3011 struct scatterlist src, dst;
3012 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003013 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003014
Eric Biggerseb095592016-11-23 10:24:35 -08003015 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3016 if (!output)
3017 return -ENOMEM;
3018
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003019 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3020 if (!decomp_out) {
3021 kfree(output);
3022 return -ENOMEM;
3023 }
3024
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003025 for (i = 0; i < ctcount; i++) {
3026 unsigned int dlen = COMP_BUF_SIZE;
3027 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003028 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003029
Eric Biggersd2110222016-12-30 14:12:00 -06003030 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003031 if (!input_vec) {
3032 ret = -ENOMEM;
3033 goto out;
3034 }
3035
Eric Biggerseb095592016-11-23 10:24:35 -08003036 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003037 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003038 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003039 sg_init_one(&dst, output, dlen);
3040
3041 req = acomp_request_alloc(tfm);
3042 if (!req) {
3043 pr_err("alg: acomp: request alloc failed for %s\n",
3044 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003045 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003046 ret = -ENOMEM;
3047 goto out;
3048 }
3049
3050 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3051 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003052 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003053
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003054 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003055 if (ret) {
3056 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3057 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003058 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003059 acomp_request_free(req);
3060 goto out;
3061 }
3062
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003063 ilen = req->dlen;
3064 dlen = COMP_BUF_SIZE;
3065 sg_init_one(&src, output, ilen);
3066 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003067 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003068 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3069
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003070 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003071 if (ret) {
3072 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3073 i + 1, algo, -ret);
3074 kfree(input_vec);
3075 acomp_request_free(req);
3076 goto out;
3077 }
3078
3079 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003080 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3081 i + 1, algo, req->dlen);
3082 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003083 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003084 acomp_request_free(req);
3085 goto out;
3086 }
3087
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003088 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003089 pr_err("alg: acomp: Compression test %d failed for %s\n",
3090 i + 1, algo);
3091 hexdump(output, req->dlen);
3092 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003093 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003094 acomp_request_free(req);
3095 goto out;
3096 }
3097
Laura Abbott02608e02016-12-21 12:32:54 -08003098 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003099 acomp_request_free(req);
3100 }
3101
3102 for (i = 0; i < dtcount; i++) {
3103 unsigned int dlen = COMP_BUF_SIZE;
3104 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003105 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003106
Eric Biggersd2110222016-12-30 14:12:00 -06003107 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003108 if (!input_vec) {
3109 ret = -ENOMEM;
3110 goto out;
3111 }
3112
Eric Biggerseb095592016-11-23 10:24:35 -08003113 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003114 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003115 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003116 sg_init_one(&dst, output, dlen);
3117
3118 req = acomp_request_alloc(tfm);
3119 if (!req) {
3120 pr_err("alg: acomp: request alloc failed for %s\n",
3121 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003122 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003123 ret = -ENOMEM;
3124 goto out;
3125 }
3126
3127 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3128 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003129 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003130
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003131 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003132 if (ret) {
3133 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3134 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003135 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003136 acomp_request_free(req);
3137 goto out;
3138 }
3139
3140 if (req->dlen != dtemplate[i].outlen) {
3141 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3142 i + 1, algo, req->dlen);
3143 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003144 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003145 acomp_request_free(req);
3146 goto out;
3147 }
3148
3149 if (memcmp(output, dtemplate[i].output, req->dlen)) {
3150 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3151 i + 1, algo);
3152 hexdump(output, req->dlen);
3153 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003154 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003155 acomp_request_free(req);
3156 goto out;
3157 }
3158
Laura Abbott02608e02016-12-21 12:32:54 -08003159 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003160 acomp_request_free(req);
3161 }
3162
3163 ret = 0;
3164
3165out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003166 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08003167 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003168 return ret;
3169}
3170
Eric Biggersb13b1e02017-02-24 15:46:59 -08003171static int test_cprng(struct crypto_rng *tfm,
3172 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003173 unsigned int tcount)
3174{
3175 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08003176 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003177 u8 *seed;
3178 char result[32];
3179
3180 seedsize = crypto_rng_seedsize(tfm);
3181
3182 seed = kmalloc(seedsize, GFP_KERNEL);
3183 if (!seed) {
3184 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3185 "for %s\n", algo);
3186 return -ENOMEM;
3187 }
3188
3189 for (i = 0; i < tcount; i++) {
3190 memset(result, 0, 32);
3191
3192 memcpy(seed, template[i].v, template[i].vlen);
3193 memcpy(seed + template[i].vlen, template[i].key,
3194 template[i].klen);
3195 memcpy(seed + template[i].vlen + template[i].klen,
3196 template[i].dt, template[i].dtlen);
3197
3198 err = crypto_rng_reset(tfm, seed, seedsize);
3199 if (err) {
3200 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3201 "for %s\n", algo);
3202 goto out;
3203 }
3204
3205 for (j = 0; j < template[i].loops; j++) {
3206 err = crypto_rng_get_bytes(tfm, result,
3207 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01003208 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003209 printk(KERN_ERR "alg: cprng: Failed to obtain "
3210 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01003211 "%s (requested %d)\n", algo,
3212 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003213 goto out;
3214 }
3215 }
3216
3217 err = memcmp(result, template[i].result,
3218 template[i].rlen);
3219 if (err) {
3220 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3221 i, algo);
3222 hexdump(result, template[i].rlen);
3223 err = -EINVAL;
3224 goto out;
3225 }
3226 }
3227
3228out:
3229 kfree(seed);
3230 return err;
3231}
3232
Herbert Xuda7f0332008-07-31 17:08:25 +08003233static int alg_test_cipher(const struct alg_test_desc *desc,
3234 const char *driver, u32 type, u32 mask)
3235{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003236 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003237 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003238 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08003239
Herbert Xueed93e02016-11-22 20:08:31 +08003240 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08003241 if (IS_ERR(tfm)) {
3242 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3243 "%s: %ld\n", driver, PTR_ERR(tfm));
3244 return PTR_ERR(tfm);
3245 }
3246
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003247 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3248 if (!err)
3249 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08003250
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003251 crypto_free_cipher(tfm);
3252 return err;
3253}
3254
Herbert Xuda7f0332008-07-31 17:08:25 +08003255static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3256 u32 type, u32 mask)
3257{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003258 struct crypto_comp *comp;
3259 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08003260 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003261 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08003262
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003263 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3264 acomp = crypto_alloc_acomp(driver, type, mask);
3265 if (IS_ERR(acomp)) {
3266 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3267 driver, PTR_ERR(acomp));
3268 return PTR_ERR(acomp);
3269 }
3270 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3271 desc->suite.comp.decomp.vecs,
3272 desc->suite.comp.comp.count,
3273 desc->suite.comp.decomp.count);
3274 crypto_free_acomp(acomp);
3275 } else {
3276 comp = crypto_alloc_comp(driver, type, mask);
3277 if (IS_ERR(comp)) {
3278 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3279 driver, PTR_ERR(comp));
3280 return PTR_ERR(comp);
3281 }
3282
3283 err = test_comp(comp, desc->suite.comp.comp.vecs,
3284 desc->suite.comp.decomp.vecs,
3285 desc->suite.comp.comp.count,
3286 desc->suite.comp.decomp.count);
3287
3288 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08003289 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003290 return err;
3291}
3292
Herbert Xu8e3ee852008-11-07 14:58:52 +08003293static int alg_test_crc32c(const struct alg_test_desc *desc,
3294 const char *driver, u32 type, u32 mask)
3295{
3296 struct crypto_shash *tfm;
Eric Biggerscb9dde82019-01-10 12:17:55 -08003297 __le32 val;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003298 int err;
3299
3300 err = alg_test_hash(desc, driver, type, mask);
3301 if (err)
Eric Biggerseb5e6732019-01-23 20:57:35 -08003302 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003303
Herbert Xueed93e02016-11-22 20:08:31 +08003304 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003305 if (IS_ERR(tfm)) {
Eric Biggerseb5e6732019-01-23 20:57:35 -08003306 if (PTR_ERR(tfm) == -ENOENT) {
3307 /*
3308 * This crc32c implementation is only available through
3309 * ahash API, not the shash API, so the remaining part
3310 * of the test is not applicable to it.
3311 */
3312 return 0;
3313 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08003314 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3315 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggerseb5e6732019-01-23 20:57:35 -08003316 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003317 }
3318
3319 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003320 SHASH_DESC_ON_STACK(shash, tfm);
3321 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003322
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003323 shash->tfm = tfm;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003324
Eric Biggerscb9dde82019-01-10 12:17:55 -08003325 *ctx = 420553207;
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003326 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003327 if (err) {
3328 printk(KERN_ERR "alg: crc32c: Operation failed for "
3329 "%s: %d\n", driver, err);
3330 break;
3331 }
3332
Eric Biggerscb9dde82019-01-10 12:17:55 -08003333 if (val != cpu_to_le32(~420553207)) {
3334 pr_err("alg: crc32c: Test failed for %s: %u\n",
3335 driver, le32_to_cpu(val));
Herbert Xu8e3ee852008-11-07 14:58:52 +08003336 err = -EINVAL;
3337 }
3338 } while (0);
3339
3340 crypto_free_shash(tfm);
3341
Herbert Xu8e3ee852008-11-07 14:58:52 +08003342 return err;
3343}
3344
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003345static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3346 u32 type, u32 mask)
3347{
3348 struct crypto_rng *rng;
3349 int err;
3350
Herbert Xueed93e02016-11-22 20:08:31 +08003351 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003352 if (IS_ERR(rng)) {
3353 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3354 "%ld\n", driver, PTR_ERR(rng));
3355 return PTR_ERR(rng);
3356 }
3357
3358 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3359
3360 crypto_free_rng(rng);
3361
3362 return err;
3363}
3364
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003365
Eric Biggersb13b1e02017-02-24 15:46:59 -08003366static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003367 const char *driver, u32 type, u32 mask)
3368{
3369 int ret = -EAGAIN;
3370 struct crypto_rng *drng;
3371 struct drbg_test_data test_data;
3372 struct drbg_string addtl, pers, testentropy;
3373 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3374
3375 if (!buf)
3376 return -ENOMEM;
3377
Herbert Xueed93e02016-11-22 20:08:31 +08003378 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003379 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003380 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003381 "%s\n", driver);
3382 kzfree(buf);
3383 return -ENOMEM;
3384 }
3385
3386 test_data.testentropy = &testentropy;
3387 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3388 drbg_string_fill(&pers, test->pers, test->perslen);
3389 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3390 if (ret) {
3391 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3392 goto outbuf;
3393 }
3394
3395 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3396 if (pr) {
3397 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3398 ret = crypto_drbg_get_bytes_addtl_test(drng,
3399 buf, test->expectedlen, &addtl, &test_data);
3400 } else {
3401 ret = crypto_drbg_get_bytes_addtl(drng,
3402 buf, test->expectedlen, &addtl);
3403 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003404 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003405 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003406 "driver %s\n", driver);
3407 goto outbuf;
3408 }
3409
3410 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3411 if (pr) {
3412 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3413 ret = crypto_drbg_get_bytes_addtl_test(drng,
3414 buf, test->expectedlen, &addtl, &test_data);
3415 } else {
3416 ret = crypto_drbg_get_bytes_addtl(drng,
3417 buf, test->expectedlen, &addtl);
3418 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003419 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003420 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003421 "driver %s\n", driver);
3422 goto outbuf;
3423 }
3424
3425 ret = memcmp(test->expected, buf, test->expectedlen);
3426
3427outbuf:
3428 crypto_free_rng(drng);
3429 kzfree(buf);
3430 return ret;
3431}
3432
3433
3434static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3435 u32 type, u32 mask)
3436{
3437 int err = 0;
3438 int pr = 0;
3439 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08003440 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003441 unsigned int tcount = desc->suite.drbg.count;
3442
3443 if (0 == memcmp(driver, "drbg_pr_", 8))
3444 pr = 1;
3445
3446 for (i = 0; i < tcount; i++) {
3447 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3448 if (err) {
3449 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3450 i, driver);
3451 err = -EINVAL;
3452 break;
3453 }
3454 }
3455 return err;
3456
3457}
3458
Eric Biggersb13b1e02017-02-24 15:46:59 -08003459static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003460 const char *alg)
3461{
3462 struct kpp_request *req;
3463 void *input_buf = NULL;
3464 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003465 void *a_public = NULL;
3466 void *a_ss = NULL;
3467 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003468 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003469 unsigned int out_len_max;
3470 int err = -ENOMEM;
3471 struct scatterlist src, dst;
3472
3473 req = kpp_request_alloc(tfm, GFP_KERNEL);
3474 if (!req)
3475 return err;
3476
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003477 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003478
3479 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3480 if (err < 0)
3481 goto free_req;
3482
3483 out_len_max = crypto_kpp_maxsize(tfm);
3484 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3485 if (!output_buf) {
3486 err = -ENOMEM;
3487 goto free_req;
3488 }
3489
3490 /* Use appropriate parameter as base */
3491 kpp_request_set_input(req, NULL, 0);
3492 sg_init_one(&dst, output_buf, out_len_max);
3493 kpp_request_set_output(req, &dst, out_len_max);
3494 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003495 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003496
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003497 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003498 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003499 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003500 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003501 alg, err);
3502 goto free_output;
3503 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003504
3505 if (vec->genkey) {
3506 /* Save party A's public key */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003507 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003508 if (!a_public) {
3509 err = -ENOMEM;
3510 goto free_output;
3511 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003512 } else {
3513 /* Verify calculated public key */
3514 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3515 vec->expected_a_public_size)) {
3516 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3517 alg);
3518 err = -EINVAL;
3519 goto free_output;
3520 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003521 }
3522
3523 /* Calculate shared secret key by using counter part (b) public key. */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003524 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003525 if (!input_buf) {
3526 err = -ENOMEM;
3527 goto free_output;
3528 }
3529
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003530 sg_init_one(&src, input_buf, vec->b_public_size);
3531 sg_init_one(&dst, output_buf, out_len_max);
3532 kpp_request_set_input(req, &src, vec->b_public_size);
3533 kpp_request_set_output(req, &dst, out_len_max);
3534 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003535 crypto_req_done, &wait);
3536 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003537 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003538 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003539 alg, err);
3540 goto free_all;
3541 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003542
3543 if (vec->genkey) {
3544 /* Save the shared secret obtained by party A */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003545 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003546 if (!a_ss) {
3547 err = -ENOMEM;
3548 goto free_all;
3549 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003550
3551 /*
3552 * Calculate party B's shared secret by using party A's
3553 * public key.
3554 */
3555 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3556 vec->b_secret_size);
3557 if (err < 0)
3558 goto free_all;
3559
3560 sg_init_one(&src, a_public, vec->expected_a_public_size);
3561 sg_init_one(&dst, output_buf, out_len_max);
3562 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3563 kpp_request_set_output(req, &dst, out_len_max);
3564 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003565 crypto_req_done, &wait);
3566 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3567 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003568 if (err) {
3569 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3570 alg, err);
3571 goto free_all;
3572 }
3573
3574 shared_secret = a_ss;
3575 } else {
3576 shared_secret = (void *)vec->expected_ss;
3577 }
3578
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003579 /*
3580 * verify shared secret from which the user will derive
3581 * secret key by executing whatever hash it has chosen
3582 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003583 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003584 vec->expected_ss_size)) {
3585 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
3586 alg);
3587 err = -EINVAL;
3588 }
3589
3590free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003591 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003592 kfree(input_buf);
3593free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003594 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003595 kfree(output_buf);
3596free_req:
3597 kpp_request_free(req);
3598 return err;
3599}
3600
3601static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003602 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003603{
3604 int ret, i;
3605
3606 for (i = 0; i < tcount; i++) {
3607 ret = do_test_kpp(tfm, vecs++, alg);
3608 if (ret) {
3609 pr_err("alg: %s: test failed on vector %d, err=%d\n",
3610 alg, i + 1, ret);
3611 return ret;
3612 }
3613 }
3614 return 0;
3615}
3616
3617static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
3618 u32 type, u32 mask)
3619{
3620 struct crypto_kpp *tfm;
3621 int err = 0;
3622
Herbert Xueed93e02016-11-22 20:08:31 +08003623 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003624 if (IS_ERR(tfm)) {
3625 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
3626 driver, PTR_ERR(tfm));
3627 return PTR_ERR(tfm);
3628 }
3629 if (desc->suite.kpp.vecs)
3630 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
3631 desc->suite.kpp.count);
3632
3633 crypto_free_kpp(tfm);
3634 return err;
3635}
3636
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003637static u8 *test_pack_u32(u8 *dst, u32 val)
3638{
3639 memcpy(dst, &val, sizeof(val));
3640 return dst + sizeof(val);
3641}
3642
Herbert Xu50d2b6432016-06-29 19:32:20 +08003643static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003644 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003645{
Herbert Xudf27b262016-05-05 16:42:49 +08003646 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07003647 struct akcipher_request *req;
3648 void *outbuf_enc = NULL;
3649 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003650 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003651 unsigned int out_len_max, out_len = 0;
3652 int err = -ENOMEM;
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003653 struct scatterlist src, dst, src_tab[3];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003654 const char *m, *c;
3655 unsigned int m_size, c_size;
3656 const char *op;
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003657 u8 *key, *ptr;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003658
Herbert Xudf27b262016-05-05 16:42:49 +08003659 if (testmgr_alloc_buf(xbuf))
3660 return err;
3661
Tadeusz Struk946cc462015-06-16 10:31:06 -07003662 req = akcipher_request_alloc(tfm, GFP_KERNEL);
3663 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08003664 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003665
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003666 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003667
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003668 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
3669 GFP_KERNEL);
3670 if (!key)
3671 goto free_xbuf;
3672 memcpy(key, vecs->key, vecs->key_len);
3673 ptr = key + vecs->key_len;
3674 ptr = test_pack_u32(ptr, vecs->algo);
3675 ptr = test_pack_u32(ptr, vecs->param_len);
3676 memcpy(ptr, vecs->params, vecs->param_len);
3677
Tadeusz Struk22287b02015-10-08 09:26:55 -07003678 if (vecs->public_key_vec)
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003679 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003680 else
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003681 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003682 if (err)
3683 goto free_req;
3684
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003685 /*
3686 * First run test which do not require a private key, such as
3687 * encrypt or verify.
3688 */
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003689 err = -ENOMEM;
3690 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003691 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3692 if (!outbuf_enc)
3693 goto free_req;
3694
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003695 if (!vecs->siggen_sigver_test) {
3696 m = vecs->m;
3697 m_size = vecs->m_size;
3698 c = vecs->c;
3699 c_size = vecs->c_size;
3700 op = "encrypt";
3701 } else {
3702 /* Swap args so we could keep plaintext (digest)
3703 * in vecs->m, and cooked signature in vecs->c.
3704 */
3705 m = vecs->c; /* signature */
3706 m_size = vecs->c_size;
3707 c = vecs->m; /* digest */
3708 c_size = vecs->m_size;
3709 op = "verify";
3710 }
Herbert Xudf27b262016-05-05 16:42:49 +08003711
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003712 if (WARN_ON(m_size > PAGE_SIZE))
3713 goto free_all;
3714 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003715
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003716 sg_init_table(src_tab, 3);
Herbert Xudf27b262016-05-05 16:42:49 +08003717 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003718 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003719 if (vecs->siggen_sigver_test) {
3720 if (WARN_ON(c_size > PAGE_SIZE))
3721 goto free_all;
3722 memcpy(xbuf[1], c, c_size);
3723 sg_set_buf(&src_tab[2], xbuf[1], c_size);
3724 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
3725 } else {
3726 sg_init_one(&dst, outbuf_enc, out_len_max);
3727 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
3728 out_len_max);
3729 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003730 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003731 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003732
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003733 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003734 /* Run asymmetric signature verification */
3735 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003736 /* Run asymmetric encrypt */
3737 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003738 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003739 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003740 goto free_all;
3741 }
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003742 if (!vecs->siggen_sigver_test) {
3743 if (req->dst_len != c_size) {
3744 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
3745 op);
3746 err = -EINVAL;
3747 goto free_all;
3748 }
3749 /* verify that encrypted message is equal to expected */
3750 if (memcmp(c, outbuf_enc, c_size) != 0) {
3751 pr_err("alg: akcipher: %s test failed. Invalid output\n",
3752 op);
3753 hexdump(outbuf_enc, c_size);
3754 err = -EINVAL;
3755 goto free_all;
3756 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003757 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003758
3759 /*
3760 * Don't invoke (decrypt or sign) test which require a private key
3761 * for vectors with only a public key.
3762 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07003763 if (vecs->public_key_vec) {
3764 err = 0;
3765 goto free_all;
3766 }
3767 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
3768 if (!outbuf_dec) {
3769 err = -ENOMEM;
3770 goto free_all;
3771 }
Herbert Xudf27b262016-05-05 16:42:49 +08003772
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003773 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
3774 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08003775 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003776 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003777
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003778 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003779 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003780 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003781 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003782
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003783 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003784 /* Run asymmetric signature generation */
3785 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003786 /* Run asymmetric decrypt */
3787 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003788 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003789 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003790 goto free_all;
3791 }
3792 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003793 if (out_len < m_size) {
3794 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
3795 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003796 err = -EINVAL;
3797 goto free_all;
3798 }
3799 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003800 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
3801 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
3802 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003803 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003804 err = -EINVAL;
3805 }
3806free_all:
3807 kfree(outbuf_dec);
3808 kfree(outbuf_enc);
3809free_req:
3810 akcipher_request_free(req);
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003811 kfree(key);
Herbert Xudf27b262016-05-05 16:42:49 +08003812free_xbuf:
3813 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003814 return err;
3815}
3816
Herbert Xu50d2b6432016-06-29 19:32:20 +08003817static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003818 const struct akcipher_testvec *vecs,
3819 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003820{
Herbert Xu15226e42016-07-18 18:20:10 +08003821 const char *algo =
3822 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07003823 int ret, i;
3824
3825 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08003826 ret = test_akcipher_one(tfm, vecs++);
3827 if (!ret)
3828 continue;
3829
Herbert Xu15226e42016-07-18 18:20:10 +08003830 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
3831 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003832 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003833 }
3834 return 0;
3835}
3836
Tadeusz Struk946cc462015-06-16 10:31:06 -07003837static int alg_test_akcipher(const struct alg_test_desc *desc,
3838 const char *driver, u32 type, u32 mask)
3839{
3840 struct crypto_akcipher *tfm;
3841 int err = 0;
3842
Herbert Xueed93e02016-11-22 20:08:31 +08003843 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003844 if (IS_ERR(tfm)) {
3845 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
3846 driver, PTR_ERR(tfm));
3847 return PTR_ERR(tfm);
3848 }
3849 if (desc->suite.akcipher.vecs)
3850 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
3851 desc->suite.akcipher.count);
3852
3853 crypto_free_akcipher(tfm);
3854 return err;
3855}
3856
Youquan, Song863b5572009-12-23 19:45:20 +08003857static int alg_test_null(const struct alg_test_desc *desc,
3858 const char *driver, u32 type, u32 mask)
3859{
3860 return 0;
3861}
3862
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003863#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
3864
Herbert Xuda7f0332008-07-31 17:08:25 +08003865/* Please keep this list sorted by algorithm name. */
3866static const struct alg_test_desc alg_test_descs[] = {
3867 {
Eric Biggers059c2a42018-11-16 17:26:31 -08003868 .alg = "adiantum(xchacha12,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003869 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003870 .test = alg_test_skcipher,
3871 .suite = {
3872 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
3873 },
3874 }, {
3875 .alg = "adiantum(xchacha20,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003876 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003877 .test = alg_test_skcipher,
3878 .suite = {
3879 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
3880 },
3881 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003882 .alg = "aegis128",
3883 .test = alg_test_aead,
3884 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003885 .aead = __VECS(aegis128_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003886 }
3887 }, {
3888 .alg = "aegis128l",
3889 .test = alg_test_aead,
3890 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003891 .aead = __VECS(aegis128l_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003892 }
3893 }, {
3894 .alg = "aegis256",
3895 .test = alg_test_aead,
3896 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003897 .aead = __VECS(aegis256_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003898 }
3899 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003900 .alg = "ansi_cprng",
3901 .test = alg_test_cprng,
3902 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003903 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003904 }
3905 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003906 .alg = "authenc(hmac(md5),ecb(cipher_null))",
3907 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003908 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003909 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02003910 }
3911 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003912 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003913 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08003914 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003915 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003916 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303917 }
3918 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003919 .alg = "authenc(hmac(sha1),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_sha1_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303923 }
3924 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003925 .alg = "authenc(hmac(sha1),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_sha1_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003930 }
3931 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003932 .alg = "authenc(hmac(sha1),ctr(aes))",
3933 .test = alg_test_null,
3934 .fips_allowed = 1,
3935 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003936 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
3937 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003938 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003939 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303940 }
3941 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003942 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
3943 .test = alg_test_null,
3944 .fips_allowed = 1,
3945 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003946 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303947 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303948 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003949 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303950 }
3951 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003952 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303953 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003954 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303955 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003956 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02003957 }
3958 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003959 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003960 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003961 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003962 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003963 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303964 }
3965 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003966 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303967 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303968 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003969 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303970 }
3971 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003972 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303973 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003974 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303975 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003976 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303977 }
3978 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003979 .alg = "authenc(hmac(sha256),ctr(aes))",
3980 .test = alg_test_null,
3981 .fips_allowed = 1,
3982 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003983 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
3984 .test = alg_test_null,
3985 .fips_allowed = 1,
3986 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003987 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303988 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303989 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003990 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303991 }
3992 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003993 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303994 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003995 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303996 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003997 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003998 }
3999 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004000 .alg = "authenc(hmac(sha384),ctr(aes))",
4001 .test = alg_test_null,
4002 .fips_allowed = 1,
4003 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004004 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
4005 .test = alg_test_null,
4006 .fips_allowed = 1,
4007 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004008 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01004009 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004010 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03004011 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004012 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304013 }
4014 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004015 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304016 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304017 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004018 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304019 }
4020 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004021 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304022 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004023 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304024 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004025 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004026 }
4027 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004028 .alg = "authenc(hmac(sha512),ctr(aes))",
4029 .test = alg_test_null,
4030 .fips_allowed = 1,
4031 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004032 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4033 .test = alg_test_null,
4034 .fips_allowed = 1,
4035 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004036 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004037 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004038 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004039 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004040 .cipher = __VECS(aes_cbc_tv_template)
4041 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004042 }, {
4043 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004044 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004045 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004046 .cipher = __VECS(anubis_cbc_tv_template)
4047 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004048 }, {
4049 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004050 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004051 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004052 .cipher = __VECS(bf_cbc_tv_template)
4053 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004054 }, {
4055 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004056 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004057 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004058 .cipher = __VECS(camellia_cbc_tv_template)
4059 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004060 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004061 .alg = "cbc(cast5)",
4062 .test = alg_test_skcipher,
4063 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004064 .cipher = __VECS(cast5_cbc_tv_template)
4065 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004066 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004067 .alg = "cbc(cast6)",
4068 .test = alg_test_skcipher,
4069 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004070 .cipher = __VECS(cast6_cbc_tv_template)
4071 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004072 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004073 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004074 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004075 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004076 .cipher = __VECS(des_cbc_tv_template)
4077 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004078 }, {
4079 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004080 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004081 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004082 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004083 .cipher = __VECS(des3_ede_cbc_tv_template)
4084 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004085 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004086 /* Same as cbc(aes) except the key is stored in
4087 * hardware secure memory which we reference by index
4088 */
4089 .alg = "cbc(paes)",
4090 .test = alg_test_null,
4091 .fips_allowed = 1,
4092 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004093 /* Same as cbc(sm4) except the key is stored in
4094 * hardware secure memory which we reference by index
4095 */
4096 .alg = "cbc(psm4)",
4097 .test = alg_test_null,
4098 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004099 .alg = "cbc(serpent)",
4100 .test = alg_test_skcipher,
4101 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004102 .cipher = __VECS(serpent_cbc_tv_template)
4103 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004104 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004105 .alg = "cbc(sm4)",
4106 .test = alg_test_skcipher,
4107 .suite = {
4108 .cipher = __VECS(sm4_cbc_tv_template)
4109 }
4110 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004111 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004112 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004113 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004114 .cipher = __VECS(tf_cbc_tv_template)
4115 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004116 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00004117 .alg = "cbcmac(aes)",
4118 .fips_allowed = 1,
4119 .test = alg_test_hash,
4120 .suite = {
4121 .hash = __VECS(aes_cbcmac_tv_template)
4122 }
4123 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004124 .alg = "ccm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004125 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
Herbert Xuda7f0332008-07-31 17:08:25 +08004126 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004127 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004128 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004129 .aead = __VECS(aes_ccm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004130 }
4131 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03004132 .alg = "cfb(aes)",
4133 .test = alg_test_skcipher,
4134 .fips_allowed = 1,
4135 .suite = {
4136 .cipher = __VECS(aes_cfb_tv_template)
4137 },
4138 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02004139 .alg = "chacha20",
4140 .test = alg_test_skcipher,
4141 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004142 .cipher = __VECS(chacha20_tv_template)
4143 },
Martin Willi3590ebf2015-06-01 13:43:57 +02004144 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004145 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004146 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004147 .test = alg_test_hash,
4148 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004149 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004150 }
4151 }, {
4152 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004153 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004154 .test = alg_test_hash,
4155 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004156 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004157 }
4158 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004159 .alg = "compress_null",
4160 .test = alg_test_null,
4161 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004162 .alg = "crc32",
4163 .test = alg_test_hash,
Milan Broza8a34412019-01-25 10:31:47 +01004164 .fips_allowed = 1,
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004165 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004166 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004167 }
4168 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004169 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08004170 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004171 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004172 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004173 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004174 }
4175 }, {
Herbert Xu684115212013-09-07 12:56:26 +10004176 .alg = "crct10dif",
4177 .test = alg_test_hash,
4178 .fips_allowed = 1,
4179 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004180 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10004181 }
4182 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004183 .alg = "ctr(aes)",
4184 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004185 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004186 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004187 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004188 }
4189 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004190 .alg = "ctr(blowfish)",
4191 .test = alg_test_skcipher,
4192 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004193 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004194 }
4195 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004196 .alg = "ctr(camellia)",
4197 .test = alg_test_skcipher,
4198 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004199 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004200 }
4201 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004202 .alg = "ctr(cast5)",
4203 .test = alg_test_skcipher,
4204 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004205 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004206 }
4207 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004208 .alg = "ctr(cast6)",
4209 .test = alg_test_skcipher,
4210 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004211 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004212 }
4213 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004214 .alg = "ctr(des)",
4215 .test = alg_test_skcipher,
4216 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004217 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004218 }
4219 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004220 .alg = "ctr(des3_ede)",
4221 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03004222 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004223 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004224 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004225 }
4226 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004227 /* Same as ctr(aes) except the key is stored in
4228 * hardware secure memory which we reference by index
4229 */
4230 .alg = "ctr(paes)",
4231 .test = alg_test_null,
4232 .fips_allowed = 1,
4233 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004234
4235 /* Same as ctr(sm4) except the key is stored in
4236 * hardware secure memory which we reference by index
4237 */
4238 .alg = "ctr(psm4)",
4239 .test = alg_test_null,
4240 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004241 .alg = "ctr(serpent)",
4242 .test = alg_test_skcipher,
4243 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004244 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004245 }
4246 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004247 .alg = "ctr(sm4)",
4248 .test = alg_test_skcipher,
4249 .suite = {
4250 .cipher = __VECS(sm4_ctr_tv_template)
4251 }
4252 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03004253 .alg = "ctr(twofish)",
4254 .test = alg_test_skcipher,
4255 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004256 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03004257 }
4258 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004259 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004260 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00004261 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004262 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004263 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004264 }
4265 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004266 /* Same as cts(cbc((aes)) except the key is stored in
4267 * hardware secure memory which we reference by index
4268 */
4269 .alg = "cts(cbc(paes))",
4270 .test = alg_test_null,
4271 .fips_allowed = 1,
4272 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004273 .alg = "deflate",
4274 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004275 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004276 .suite = {
4277 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004278 .comp = __VECS(deflate_comp_tv_template),
4279 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004280 }
4281 }
4282 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004283 .alg = "dh",
4284 .test = alg_test_kpp,
4285 .fips_allowed = 1,
4286 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004287 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004288 }
4289 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004290 .alg = "digest_null",
4291 .test = alg_test_null,
4292 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004293 .alg = "drbg_nopr_ctr_aes128",
4294 .test = alg_test_drbg,
4295 .fips_allowed = 1,
4296 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004297 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004298 }
4299 }, {
4300 .alg = "drbg_nopr_ctr_aes192",
4301 .test = alg_test_drbg,
4302 .fips_allowed = 1,
4303 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004304 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004305 }
4306 }, {
4307 .alg = "drbg_nopr_ctr_aes256",
4308 .test = alg_test_drbg,
4309 .fips_allowed = 1,
4310 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004311 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004312 }
4313 }, {
4314 /*
4315 * There is no need to specifically test the DRBG with every
4316 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4317 */
4318 .alg = "drbg_nopr_hmac_sha1",
4319 .fips_allowed = 1,
4320 .test = alg_test_null,
4321 }, {
4322 .alg = "drbg_nopr_hmac_sha256",
4323 .test = alg_test_drbg,
4324 .fips_allowed = 1,
4325 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004326 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004327 }
4328 }, {
4329 /* covered by drbg_nopr_hmac_sha256 test */
4330 .alg = "drbg_nopr_hmac_sha384",
4331 .fips_allowed = 1,
4332 .test = alg_test_null,
4333 }, {
4334 .alg = "drbg_nopr_hmac_sha512",
4335 .test = alg_test_null,
4336 .fips_allowed = 1,
4337 }, {
4338 .alg = "drbg_nopr_sha1",
4339 .fips_allowed = 1,
4340 .test = alg_test_null,
4341 }, {
4342 .alg = "drbg_nopr_sha256",
4343 .test = alg_test_drbg,
4344 .fips_allowed = 1,
4345 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004346 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004347 }
4348 }, {
4349 /* covered by drbg_nopr_sha256 test */
4350 .alg = "drbg_nopr_sha384",
4351 .fips_allowed = 1,
4352 .test = alg_test_null,
4353 }, {
4354 .alg = "drbg_nopr_sha512",
4355 .fips_allowed = 1,
4356 .test = alg_test_null,
4357 }, {
4358 .alg = "drbg_pr_ctr_aes128",
4359 .test = alg_test_drbg,
4360 .fips_allowed = 1,
4361 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004362 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004363 }
4364 }, {
4365 /* covered by drbg_pr_ctr_aes128 test */
4366 .alg = "drbg_pr_ctr_aes192",
4367 .fips_allowed = 1,
4368 .test = alg_test_null,
4369 }, {
4370 .alg = "drbg_pr_ctr_aes256",
4371 .fips_allowed = 1,
4372 .test = alg_test_null,
4373 }, {
4374 .alg = "drbg_pr_hmac_sha1",
4375 .fips_allowed = 1,
4376 .test = alg_test_null,
4377 }, {
4378 .alg = "drbg_pr_hmac_sha256",
4379 .test = alg_test_drbg,
4380 .fips_allowed = 1,
4381 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004382 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004383 }
4384 }, {
4385 /* covered by drbg_pr_hmac_sha256 test */
4386 .alg = "drbg_pr_hmac_sha384",
4387 .fips_allowed = 1,
4388 .test = alg_test_null,
4389 }, {
4390 .alg = "drbg_pr_hmac_sha512",
4391 .test = alg_test_null,
4392 .fips_allowed = 1,
4393 }, {
4394 .alg = "drbg_pr_sha1",
4395 .fips_allowed = 1,
4396 .test = alg_test_null,
4397 }, {
4398 .alg = "drbg_pr_sha256",
4399 .test = alg_test_drbg,
4400 .fips_allowed = 1,
4401 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004402 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004403 }
4404 }, {
4405 /* covered by drbg_pr_sha256 test */
4406 .alg = "drbg_pr_sha384",
4407 .fips_allowed = 1,
4408 .test = alg_test_null,
4409 }, {
4410 .alg = "drbg_pr_sha512",
4411 .fips_allowed = 1,
4412 .test = alg_test_null,
4413 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004414 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004415 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004416 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004417 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004418 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004419 }
4420 }, {
4421 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004422 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004423 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004424 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004425 }
4426 }, {
4427 .alg = "ecb(arc4)",
Ard Biesheuvel611a23c2019-06-12 18:19:57 +02004428 .generic_driver = "ecb(arc4)-generic",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004429 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004430 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004431 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004432 }
4433 }, {
4434 .alg = "ecb(blowfish)",
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(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004438 }
4439 }, {
4440 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004441 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004442 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004443 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004444 }
4445 }, {
4446 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004447 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004448 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004449 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004450 }
4451 }, {
4452 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004453 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004454 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004455 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004456 }
4457 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004458 .alg = "ecb(cipher_null)",
4459 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02004460 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004461 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004462 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004463 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004464 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004465 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004466 }
4467 }, {
4468 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004469 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004470 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004471 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004472 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004473 }
4474 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004475 .alg = "ecb(fcrypt)",
4476 .test = alg_test_skcipher,
4477 .suite = {
4478 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004479 .vecs = fcrypt_pcbc_tv_template,
4480 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004481 }
4482 }
4483 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004484 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004485 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004486 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004487 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004488 }
4489 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01004490 /* Same as ecb(aes) except the key is stored in
4491 * hardware secure memory which we reference by index
4492 */
4493 .alg = "ecb(paes)",
4494 .test = alg_test_null,
4495 .fips_allowed = 1,
4496 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004497 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004498 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004499 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004500 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004501 }
4502 }, {
4503 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004504 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004505 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004506 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004507 }
4508 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004509 .alg = "ecb(sm4)",
4510 .test = alg_test_skcipher,
4511 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004512 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004513 }
4514 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004515 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004516 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004517 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004518 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004519 }
4520 }, {
4521 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004522 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004523 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004524 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004525 }
4526 }, {
4527 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004528 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004529 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004530 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004531 }
4532 }, {
4533 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004534 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004535 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004536 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004537 }
4538 }, {
4539 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004540 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004541 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004542 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004543 }
4544 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004545 .alg = "ecdh",
4546 .test = alg_test_kpp,
4547 .fips_allowed = 1,
4548 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004549 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004550 }
4551 }, {
Vitaly Chikunov32fbdbd2019-04-11 18:51:21 +03004552 .alg = "ecrdsa",
4553 .test = alg_test_akcipher,
4554 .suite = {
4555 .akcipher = __VECS(ecrdsa_tv_template)
4556 }
4557 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004558 .alg = "gcm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004559 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
Herbert Xuda7f0332008-07-31 17:08:25 +08004560 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004561 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004562 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004563 .aead = __VECS(aes_gcm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004564 }
4565 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08004566 .alg = "ghash",
4567 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11004568 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08004569 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004570 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08004571 }
4572 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004573 .alg = "hmac(md5)",
4574 .test = alg_test_hash,
4575 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004576 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004577 }
4578 }, {
4579 .alg = "hmac(rmd128)",
4580 .test = alg_test_hash,
4581 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004582 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004583 }
4584 }, {
4585 .alg = "hmac(rmd160)",
4586 .test = alg_test_hash,
4587 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004588 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004589 }
4590 }, {
4591 .alg = "hmac(sha1)",
4592 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004593 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004594 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004595 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004596 }
4597 }, {
4598 .alg = "hmac(sha224)",
4599 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004600 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004601 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004602 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004603 }
4604 }, {
4605 .alg = "hmac(sha256)",
4606 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004607 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004608 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004609 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004610 }
4611 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05304612 .alg = "hmac(sha3-224)",
4613 .test = alg_test_hash,
4614 .fips_allowed = 1,
4615 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004616 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304617 }
4618 }, {
4619 .alg = "hmac(sha3-256)",
4620 .test = alg_test_hash,
4621 .fips_allowed = 1,
4622 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004623 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304624 }
4625 }, {
4626 .alg = "hmac(sha3-384)",
4627 .test = alg_test_hash,
4628 .fips_allowed = 1,
4629 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004630 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304631 }
4632 }, {
4633 .alg = "hmac(sha3-512)",
4634 .test = alg_test_hash,
4635 .fips_allowed = 1,
4636 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004637 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304638 }
4639 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004640 .alg = "hmac(sha384)",
4641 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004642 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004643 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004644 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004645 }
4646 }, {
4647 .alg = "hmac(sha512)",
4648 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004649 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004650 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004651 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004652 }
4653 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004654 .alg = "hmac(streebog256)",
4655 .test = alg_test_hash,
4656 .suite = {
4657 .hash = __VECS(hmac_streebog256_tv_template)
4658 }
4659 }, {
4660 .alg = "hmac(streebog512)",
4661 .test = alg_test_hash,
4662 .suite = {
4663 .hash = __VECS(hmac_streebog512_tv_template)
4664 }
4665 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02004666 .alg = "jitterentropy_rng",
4667 .fips_allowed = 1,
4668 .test = alg_test_null,
4669 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02004670 .alg = "kw(aes)",
4671 .test = alg_test_skcipher,
4672 .fips_allowed = 1,
4673 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004674 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02004675 }
4676 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004677 .alg = "lrw(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004678 .generic_driver = "lrw(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004679 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004680 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004681 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004682 }
4683 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004684 .alg = "lrw(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07004685 .generic_driver = "lrw(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02004686 .test = alg_test_skcipher,
4687 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004688 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004689 }
4690 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004691 .alg = "lrw(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07004692 .generic_driver = "lrw(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004693 .test = alg_test_skcipher,
4694 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004695 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004696 }
4697 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004698 .alg = "lrw(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07004699 .generic_driver = "lrw(ecb(serpent-generic))",
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004700 .test = alg_test_skcipher,
4701 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004702 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004703 }
4704 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004705 .alg = "lrw(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07004706 .generic_driver = "lrw(ecb(twofish-generic))",
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004707 .test = alg_test_skcipher,
4708 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004709 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004710 }
4711 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004712 .alg = "lz4",
4713 .test = alg_test_comp,
4714 .fips_allowed = 1,
4715 .suite = {
4716 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004717 .comp = __VECS(lz4_comp_tv_template),
4718 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004719 }
4720 }
4721 }, {
4722 .alg = "lz4hc",
4723 .test = alg_test_comp,
4724 .fips_allowed = 1,
4725 .suite = {
4726 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004727 .comp = __VECS(lz4hc_comp_tv_template),
4728 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004729 }
4730 }
4731 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004732 .alg = "lzo",
4733 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004734 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004735 .suite = {
4736 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004737 .comp = __VECS(lzo_comp_tv_template),
4738 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004739 }
4740 }
4741 }, {
4742 .alg = "md4",
4743 .test = alg_test_hash,
4744 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004745 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004746 }
4747 }, {
4748 .alg = "md5",
4749 .test = alg_test_hash,
4750 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004751 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004752 }
4753 }, {
4754 .alg = "michael_mic",
4755 .test = alg_test_hash,
4756 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004757 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004758 }
4759 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004760 .alg = "morus1280",
4761 .test = alg_test_aead,
4762 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004763 .aead = __VECS(morus1280_tv_template)
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004764 }
4765 }, {
4766 .alg = "morus640",
4767 .test = alg_test_aead,
4768 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004769 .aead = __VECS(morus640_tv_template)
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02004770 }
4771 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08004772 .alg = "nhpoly1305",
4773 .test = alg_test_hash,
4774 .suite = {
4775 .hash = __VECS(nhpoly1305_tv_template)
4776 }
4777 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004778 .alg = "ofb(aes)",
4779 .test = alg_test_skcipher,
4780 .fips_allowed = 1,
4781 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004782 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004783 }
4784 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004785 /* Same as ofb(aes) except the key is stored in
4786 * hardware secure memory which we reference by index
4787 */
4788 .alg = "ofb(paes)",
4789 .test = alg_test_null,
4790 .fips_allowed = 1,
4791 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004792 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004793 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004794 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004795 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004796 }
4797 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02004798 .alg = "pkcs1pad(rsa,sha224)",
4799 .test = alg_test_null,
4800 .fips_allowed = 1,
4801 }, {
4802 .alg = "pkcs1pad(rsa,sha256)",
4803 .test = alg_test_akcipher,
4804 .fips_allowed = 1,
4805 .suite = {
4806 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
4807 }
4808 }, {
4809 .alg = "pkcs1pad(rsa,sha384)",
4810 .test = alg_test_null,
4811 .fips_allowed = 1,
4812 }, {
4813 .alg = "pkcs1pad(rsa,sha512)",
4814 .test = alg_test_null,
4815 .fips_allowed = 1,
4816 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02004817 .alg = "poly1305",
4818 .test = alg_test_hash,
4819 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004820 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02004821 }
4822 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004823 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004824 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004825 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004826 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004827 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004828 }
4829 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08004830 .alg = "rfc4106(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004831 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
Adrian Hoban69435b92010-11-04 15:02:04 -04004832 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05004833 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04004834 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004835 .aead = __VECS(aes_gcm_rfc4106_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04004836 }
4837 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08004838 .alg = "rfc4309(ccm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004839 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
Jarod Wilson5d667322009-05-04 19:23:40 +08004840 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004841 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08004842 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004843 .aead = __VECS(aes_ccm_rfc4309_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08004844 }
4845 }, {
Herbert Xubb687452015-06-16 13:54:24 +08004846 .alg = "rfc4543(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004847 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004848 .test = alg_test_aead,
4849 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004850 .aead = __VECS(aes_gcm_rfc4543_tv_template)
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004851 }
4852 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02004853 .alg = "rfc7539(chacha20,poly1305)",
4854 .test = alg_test_aead,
4855 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004856 .aead = __VECS(rfc7539_tv_template)
Martin Williaf2b76b2015-06-01 13:44:01 +02004857 }
4858 }, {
Martin Willi59007582015-06-01 13:44:03 +02004859 .alg = "rfc7539esp(chacha20,poly1305)",
4860 .test = alg_test_aead,
4861 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004862 .aead = __VECS(rfc7539esp_tv_template)
Martin Willi59007582015-06-01 13:44:03 +02004863 }
4864 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004865 .alg = "rmd128",
4866 .test = alg_test_hash,
4867 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004868 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004869 }
4870 }, {
4871 .alg = "rmd160",
4872 .test = alg_test_hash,
4873 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004874 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004875 }
4876 }, {
4877 .alg = "rmd256",
4878 .test = alg_test_hash,
4879 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004880 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004881 }
4882 }, {
4883 .alg = "rmd320",
4884 .test = alg_test_hash,
4885 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004886 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004887 }
4888 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07004889 .alg = "rsa",
4890 .test = alg_test_akcipher,
4891 .fips_allowed = 1,
4892 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004893 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07004894 }
4895 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004896 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004897 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004898 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004899 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004900 }
4901 }, {
4902 .alg = "sha1",
4903 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004904 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004905 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004906 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004907 }
4908 }, {
4909 .alg = "sha224",
4910 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004911 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004912 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004913 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004914 }
4915 }, {
4916 .alg = "sha256",
4917 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004918 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004919 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004920 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004921 }
4922 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304923 .alg = "sha3-224",
4924 .test = alg_test_hash,
4925 .fips_allowed = 1,
4926 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004927 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304928 }
4929 }, {
4930 .alg = "sha3-256",
4931 .test = alg_test_hash,
4932 .fips_allowed = 1,
4933 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004934 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304935 }
4936 }, {
4937 .alg = "sha3-384",
4938 .test = alg_test_hash,
4939 .fips_allowed = 1,
4940 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004941 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304942 }
4943 }, {
4944 .alg = "sha3-512",
4945 .test = alg_test_hash,
4946 .fips_allowed = 1,
4947 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004948 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05304949 }
4950 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004951 .alg = "sha384",
4952 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004953 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004954 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004955 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004956 }
4957 }, {
4958 .alg = "sha512",
4959 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004960 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004961 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004962 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004963 }
4964 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03004965 .alg = "sm3",
4966 .test = alg_test_hash,
4967 .suite = {
4968 .hash = __VECS(sm3_tv_template)
4969 }
4970 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004971 .alg = "streebog256",
4972 .test = alg_test_hash,
4973 .suite = {
4974 .hash = __VECS(streebog256_tv_template)
4975 }
4976 }, {
4977 .alg = "streebog512",
4978 .test = alg_test_hash,
4979 .suite = {
4980 .hash = __VECS(streebog512_tv_template)
4981 }
4982 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004983 .alg = "tgr128",
4984 .test = alg_test_hash,
4985 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004986 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004987 }
4988 }, {
4989 .alg = "tgr160",
4990 .test = alg_test_hash,
4991 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004992 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004993 }
4994 }, {
4995 .alg = "tgr192",
4996 .test = alg_test_hash,
4997 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004998 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004999 }
5000 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07005001 .alg = "vmac64(aes)",
5002 .test = alg_test_hash,
5003 .suite = {
5004 .hash = __VECS(vmac64_aes_tv_template)
5005 }
5006 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005007 .alg = "wp256",
5008 .test = alg_test_hash,
5009 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005010 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005011 }
5012 }, {
5013 .alg = "wp384",
5014 .test = alg_test_hash,
5015 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005016 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005017 }
5018 }, {
5019 .alg = "wp512",
5020 .test = alg_test_hash,
5021 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005022 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005023 }
5024 }, {
5025 .alg = "xcbc(aes)",
5026 .test = alg_test_hash,
5027 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005028 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005029 }
5030 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08005031 .alg = "xchacha12",
5032 .test = alg_test_skcipher,
5033 .suite = {
5034 .cipher = __VECS(xchacha12_tv_template)
5035 },
5036 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08005037 .alg = "xchacha20",
5038 .test = alg_test_skcipher,
5039 .suite = {
5040 .cipher = __VECS(xchacha20_tv_template)
5041 },
5042 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005043 .alg = "xts(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005044 .generic_driver = "xts(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005045 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11005046 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005047 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005048 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005049 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08005050 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005051 .alg = "xts(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005052 .generic_driver = "xts(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005053 .test = alg_test_skcipher,
5054 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005055 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005056 }
5057 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005058 .alg = "xts(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005059 .generic_driver = "xts(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005060 .test = alg_test_skcipher,
5061 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005062 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005063 }
5064 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005065 /* Same as xts(aes) except the key is stored in
5066 * hardware secure memory which we reference by index
5067 */
5068 .alg = "xts(paes)",
5069 .test = alg_test_null,
5070 .fips_allowed = 1,
5071 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005072 .alg = "xts(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005073 .generic_driver = "xts(ecb(serpent-generic))",
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005074 .test = alg_test_skcipher,
5075 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005076 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005077 }
5078 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005079 .alg = "xts(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005080 .generic_driver = "xts(ecb(twofish-generic))",
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005081 .test = alg_test_skcipher,
5082 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005083 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005084 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005085 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005086 .alg = "xts4096(paes)",
5087 .test = alg_test_null,
5088 .fips_allowed = 1,
5089 }, {
5090 .alg = "xts512(paes)",
5091 .test = alg_test_null,
5092 .fips_allowed = 1,
5093 }, {
Nikolay Borisov67882e72019-05-30 09:52:57 +03005094 .alg = "xxhash64",
5095 .test = alg_test_hash,
5096 .fips_allowed = 1,
5097 .suite = {
5098 .hash = __VECS(xxhash64_tv_template)
5099 }
5100 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005101 .alg = "zlib-deflate",
5102 .test = alg_test_comp,
5103 .fips_allowed = 1,
5104 .suite = {
5105 .comp = {
5106 .comp = __VECS(zlib_deflate_comp_tv_template),
5107 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5108 }
5109 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07005110 }, {
5111 .alg = "zstd",
5112 .test = alg_test_comp,
5113 .fips_allowed = 1,
5114 .suite = {
5115 .comp = {
5116 .comp = __VECS(zstd_comp_tv_template),
5117 .decomp = __VECS(zstd_decomp_tv_template)
5118 }
5119 }
Herbert Xuda7f0332008-07-31 17:08:25 +08005120 }
5121};
5122
Eric Biggers3f47a032019-01-31 23:51:43 -08005123static void alg_check_test_descs_order(void)
Jussi Kivilinna57147582013-06-13 17:37:40 +03005124{
5125 int i;
5126
Jussi Kivilinna57147582013-06-13 17:37:40 +03005127 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5128 int diff = strcmp(alg_test_descs[i - 1].alg,
5129 alg_test_descs[i].alg);
5130
5131 if (WARN_ON(diff > 0)) {
5132 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5133 alg_test_descs[i - 1].alg,
5134 alg_test_descs[i].alg);
5135 }
5136
5137 if (WARN_ON(diff == 0)) {
5138 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5139 alg_test_descs[i].alg);
5140 }
5141 }
5142}
5143
Eric Biggers3f47a032019-01-31 23:51:43 -08005144static void alg_check_testvec_configs(void)
5145{
Eric Biggers4e7babba2019-01-31 23:51:46 -08005146 int i;
5147
5148 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5149 WARN_ON(!valid_testvec_config(
5150 &default_cipher_testvec_configs[i]));
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08005151
5152 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5153 WARN_ON(!valid_testvec_config(
5154 &default_hash_testvec_configs[i]));
Eric Biggers3f47a032019-01-31 23:51:43 -08005155}
5156
5157static void testmgr_onetime_init(void)
5158{
5159 alg_check_test_descs_order();
5160 alg_check_testvec_configs();
Eric Biggers5b2706a2019-01-31 23:51:44 -08005161
5162#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5163 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5164#endif
Eric Biggers3f47a032019-01-31 23:51:43 -08005165}
5166
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005167static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08005168{
5169 int start = 0;
5170 int end = ARRAY_SIZE(alg_test_descs);
5171
5172 while (start < end) {
5173 int i = (start + end) / 2;
5174 int diff = strcmp(alg_test_descs[i].alg, alg);
5175
5176 if (diff > 0) {
5177 end = i;
5178 continue;
5179 }
5180
5181 if (diff < 0) {
5182 start = i + 1;
5183 continue;
5184 }
5185
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005186 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08005187 }
5188
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005189 return -1;
5190}
5191
5192int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5193{
5194 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08005195 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08005196 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005197
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01005198 if (!fips_enabled && notests) {
5199 printk_once(KERN_INFO "alg: self-tests disabled\n");
5200 return 0;
5201 }
5202
Eric Biggers3f47a032019-01-31 23:51:43 -08005203 DO_ONCE(testmgr_onetime_init);
Jussi Kivilinna57147582013-06-13 17:37:40 +03005204
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005205 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5206 char nalg[CRYPTO_MAX_ALG_NAME];
5207
5208 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5209 sizeof(nalg))
5210 return -ENAMETOOLONG;
5211
5212 i = alg_find_test(nalg);
5213 if (i < 0)
5214 goto notest;
5215
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005216 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5217 goto non_fips_alg;
5218
Jarod Wilson941fb322009-05-04 19:49:23 +08005219 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5220 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005221 }
5222
5223 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08005224 j = alg_find_test(driver);
5225 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005226 goto notest;
5227
Herbert Xua68f6612009-07-02 16:32:12 +08005228 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
5229 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005230 goto non_fips_alg;
5231
Herbert Xua68f6612009-07-02 16:32:12 +08005232 rc = 0;
5233 if (i >= 0)
5234 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5235 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03005236 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08005237 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5238 type, mask);
5239
Jarod Wilson941fb322009-05-04 19:49:23 +08005240test_done:
Eric Biggerseda69b02019-03-31 13:09:14 -07005241 if (rc && (fips_enabled || panic_on_fail))
5242 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5243 driver, alg, fips_enabled ? "fips" : "panic_on_fail");
Neil Hormand12d6b62008-10-12 20:36:51 +08005244
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005245 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09005246 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005247
Neil Hormand12d6b62008-10-12 20:36:51 +08005248 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005249
5250notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08005251 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5252 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005253non_fips_alg:
5254 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08005255}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005256
Herbert Xu326a6342010-08-06 09:40:28 +08005257#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005258
Herbert Xuda7f0332008-07-31 17:08:25 +08005259EXPORT_SYMBOL_GPL(alg_test);