blob: 0a10dbde27efa3079294778c9ea811abe589e2bd [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Herbert Xuda7f0332008-07-31 17:08:25 +08002/*
3 * Algorithm testing framework and tests.
4 *
5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
7 * Copyright (c) 2007 Nokia Siemens Networks
8 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
Eric Biggers3f47a032019-01-31 23:51:43 -08009 * Copyright (c) 2019 Google LLC
Herbert Xuda7f0332008-07-31 17:08:25 +080010 *
Adrian Hoban69435b92010-11-04 15:02:04 -040011 * Updated RFC4106 AES-GCM testing.
12 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
13 * Adrian Hoban <adrian.hoban@intel.com>
14 * Gabriele Paoloni <gabriele.paoloni@intel.com>
15 * Tadeusz Struk (tadeusz.struk@intel.com)
16 * Copyright (c) 2010, Intel Corporation.
Herbert Xuda7f0332008-07-31 17:08:25 +080017 */
18
Herbert Xu1ce33112015-04-22 15:06:31 +080019#include <crypto/aead.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080020#include <crypto/hash.h>
Herbert Xu12773d92015-08-20 15:21:46 +080021#include <crypto/skcipher.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080022#include <linux/err.h>
Herbert Xu1c41b882015-04-22 13:25:58 +080023#include <linux/fips.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080024#include <linux/module.h>
Eric Biggers3f47a032019-01-31 23:51:43 -080025#include <linux/once.h>
Eric Biggers25f9ddd2019-01-31 23:51:45 -080026#include <linux/random.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080027#include <linux/scatterlist.h>
28#include <linux/slab.h>
29#include <linux/string.h>
Jarod Wilson7647d6c2009-05-04 19:44:50 +080030#include <crypto/rng.h>
Stephan Mueller64d1cdf2014-05-31 17:25:36 +020031#include <crypto/drbg.h>
Tadeusz Struk946cc462015-06-16 10:31:06 -070032#include <crypto/akcipher.h>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010033#include <crypto/kpp.h>
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +010034#include <crypto/acompress.h>
Eric Biggersb55e1a32019-03-12 22:12:47 -070035#include <crypto/internal/simd.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080036
37#include "internal.h"
Alexander Shishkin0b767f92010-06-03 20:53:43 +100038
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +010039static bool notests;
40module_param(notests, bool, 0644);
41MODULE_PARM_DESC(notests, "disable crypto self-tests");
42
Eric Biggerseda69b02019-03-31 13:09:14 -070043static bool panic_on_fail;
44module_param(panic_on_fail, bool, 0444);
45
Eric Biggers5b2706a2019-01-31 23:51:44 -080046#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
47static bool noextratests;
48module_param(noextratests, bool, 0644);
49MODULE_PARM_DESC(noextratests, "disable expensive crypto self-tests");
50
51static unsigned int fuzz_iterations = 100;
52module_param(fuzz_iterations, uint, 0644);
53MODULE_PARM_DESC(fuzz_iterations, "number of fuzz test iterations");
Eric Biggersb55e1a32019-03-12 22:12:47 -070054
55DEFINE_PER_CPU(bool, crypto_simd_disabled_for_test);
56EXPORT_PER_CPU_SYMBOL_GPL(crypto_simd_disabled_for_test);
Eric Biggers5b2706a2019-01-31 23:51:44 -080057#endif
58
Herbert Xu326a6342010-08-06 09:40:28 +080059#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
Alexander Shishkin0b767f92010-06-03 20:53:43 +100060
61/* a perfect nop */
62int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
63{
64 return 0;
65}
66
67#else
68
Herbert Xuda7f0332008-07-31 17:08:25 +080069#include "testmgr.h"
70
71/*
72 * Need slab memory for testing (size in number of pages).
73 */
74#define XBUFSIZE 8
75
76/*
Herbert Xuda7f0332008-07-31 17:08:25 +080077* Used by test_cipher()
78*/
79#define ENCRYPT 1
80#define DECRYPT 0
81
Herbert Xuda7f0332008-07-31 17:08:25 +080082struct aead_test_suite {
Eric Biggersa0d608ee2019-01-13 15:32:28 -080083 const struct aead_testvec *vecs;
84 unsigned int count;
Eric Biggers49763fc2019-12-01 13:53:30 -080085
86 /*
87 * Set if trying to decrypt an inauthentic ciphertext with this
88 * algorithm might result in EINVAL rather than EBADMSG, due to other
89 * validation the algorithm does on the inputs such as length checks.
90 */
91 unsigned int einval_allowed : 1;
92
93 /*
Eric Biggers6f3a06d2020-03-04 14:44:03 -080094 * Set if this algorithm requires that the IV be located at the end of
95 * the AAD buffer, in addition to being given in the normal way. The
96 * behavior when the two IV copies differ is implementation-defined.
Eric Biggers49763fc2019-12-01 13:53:30 -080097 */
Eric Biggers6f3a06d2020-03-04 14:44:03 -080098 unsigned int aad_iv : 1;
Herbert Xuda7f0332008-07-31 17:08:25 +080099};
100
101struct cipher_test_suite {
Eric Biggers92a4c9f2018-05-20 22:50:29 -0700102 const struct cipher_testvec *vecs;
103 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +0800104};
105
106struct comp_test_suite {
107 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800108 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800109 unsigned int count;
110 } comp, decomp;
111};
112
113struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800114 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800115 unsigned int count;
116};
117
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800118struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800119 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800120 unsigned int count;
121};
122
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200123struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800124 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200125 unsigned int count;
126};
127
Tadeusz Struk946cc462015-06-16 10:31:06 -0700128struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800129 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700130 unsigned int count;
131};
132
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100133struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800134 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100135 unsigned int count;
136};
137
Herbert Xuda7f0332008-07-31 17:08:25 +0800138struct alg_test_desc {
139 const char *alg;
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700140 const char *generic_driver;
Herbert Xuda7f0332008-07-31 17:08:25 +0800141 int (*test)(const struct alg_test_desc *desc, const char *driver,
142 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000143 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800144
145 union {
146 struct aead_test_suite aead;
147 struct cipher_test_suite cipher;
148 struct comp_test_suite comp;
149 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800150 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200151 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700152 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100153 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800154 } suite;
155};
156
Herbert Xuda7f0332008-07-31 17:08:25 +0800157static void hexdump(unsigned char *buf, unsigned int len)
158{
159 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
160 16, 1,
161 buf, len, false);
162}
163
Eric Biggers3f47a032019-01-31 23:51:43 -0800164static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800165{
166 int i;
167
168 for (i = 0; i < XBUFSIZE; i++) {
Eric Biggers3f47a032019-01-31 23:51:43 -0800169 buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800170 if (!buf[i])
171 goto err_free_buf;
172 }
173
174 return 0;
175
176err_free_buf:
177 while (i-- > 0)
Eric Biggers3f47a032019-01-31 23:51:43 -0800178 free_pages((unsigned long)buf[i], order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800179
180 return -ENOMEM;
181}
182
Eric Biggers3f47a032019-01-31 23:51:43 -0800183static int testmgr_alloc_buf(char *buf[XBUFSIZE])
184{
185 return __testmgr_alloc_buf(buf, 0);
186}
187
188static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800189{
190 int i;
191
192 for (i = 0; i < XBUFSIZE; i++)
Eric Biggers3f47a032019-01-31 23:51:43 -0800193 free_pages((unsigned long)buf[i], order);
194}
195
196static void testmgr_free_buf(char *buf[XBUFSIZE])
197{
198 __testmgr_free_buf(buf, 0);
199}
200
201#define TESTMGR_POISON_BYTE 0xfe
202#define TESTMGR_POISON_LEN 16
203
204static inline void testmgr_poison(void *addr, size_t len)
205{
206 memset(addr, TESTMGR_POISON_BYTE, len);
207}
208
209/* Is the memory region still fully poisoned? */
210static inline bool testmgr_is_poison(const void *addr, size_t len)
211{
212 return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
213}
214
215/* flush type for hash algorithms */
216enum flush_type {
217 /* merge with update of previous buffer(s) */
218 FLUSH_TYPE_NONE = 0,
219
220 /* update with previous buffer(s) before doing this one */
221 FLUSH_TYPE_FLUSH,
222
223 /* likewise, but also export and re-import the intermediate state */
224 FLUSH_TYPE_REIMPORT,
225};
226
227/* finalization function for hash algorithms */
228enum finalization_type {
229 FINALIZATION_TYPE_FINAL, /* use final() */
230 FINALIZATION_TYPE_FINUP, /* use finup() */
231 FINALIZATION_TYPE_DIGEST, /* use digest() */
232};
233
234#define TEST_SG_TOTAL 10000
235
236/**
237 * struct test_sg_division - description of a scatterlist entry
238 *
239 * This struct describes one entry of a scatterlist being constructed to check a
240 * crypto test vector.
241 *
242 * @proportion_of_total: length of this chunk relative to the total length,
243 * given as a proportion out of TEST_SG_TOTAL so that it
244 * scales to fit any test vector
245 * @offset: byte offset into a 2-page buffer at which this chunk will start
246 * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
247 * @offset
248 * @flush_type: for hashes, whether an update() should be done now vs.
249 * continuing to accumulate data
Eric Biggers65707372019-03-12 22:12:52 -0700250 * @nosimd: if doing the pending update(), do it with SIMD disabled?
Eric Biggers3f47a032019-01-31 23:51:43 -0800251 */
252struct test_sg_division {
253 unsigned int proportion_of_total;
254 unsigned int offset;
255 bool offset_relative_to_alignmask;
256 enum flush_type flush_type;
Eric Biggers65707372019-03-12 22:12:52 -0700257 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800258};
259
260/**
261 * struct testvec_config - configuration for testing a crypto test vector
262 *
263 * This struct describes the data layout and other parameters with which each
264 * crypto test vector can be tested.
265 *
266 * @name: name of this config, logged for debugging purposes if a test fails
267 * @inplace: operate on the data in-place, if applicable for the algorithm type?
268 * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
269 * @src_divs: description of how to arrange the source scatterlist
270 * @dst_divs: description of how to arrange the dst scatterlist, if applicable
271 * for the algorithm type. Defaults to @src_divs if unset.
272 * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
273 * where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
274 * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
275 * the @iv_offset
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800276 * @key_offset: misalignment of the key, where 0 is default alignment
277 * @key_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
278 * the @key_offset
Eric Biggers3f47a032019-01-31 23:51:43 -0800279 * @finalization_type: what finalization function to use for hashes
Eric Biggers65707372019-03-12 22:12:52 -0700280 * @nosimd: execute with SIMD disabled? Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
Eric Biggers3f47a032019-01-31 23:51:43 -0800281 */
282struct testvec_config {
283 const char *name;
284 bool inplace;
285 u32 req_flags;
286 struct test_sg_division src_divs[XBUFSIZE];
287 struct test_sg_division dst_divs[XBUFSIZE];
288 unsigned int iv_offset;
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800289 unsigned int key_offset;
Eric Biggers3f47a032019-01-31 23:51:43 -0800290 bool iv_offset_relative_to_alignmask;
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800291 bool key_offset_relative_to_alignmask;
Eric Biggers3f47a032019-01-31 23:51:43 -0800292 enum finalization_type finalization_type;
Eric Biggers65707372019-03-12 22:12:52 -0700293 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800294};
295
296#define TESTVEC_CONFIG_NAMELEN 192
297
Eric Biggers4e7babba2019-01-31 23:51:46 -0800298/*
299 * The following are the lists of testvec_configs to test for each algorithm
300 * type when the basic crypto self-tests are enabled, i.e. when
301 * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset. They aim to provide good test
302 * coverage, while keeping the test time much shorter than the full fuzz tests
303 * so that the basic tests can be enabled in a wider range of circumstances.
304 */
305
306/* Configs for skciphers and aeads */
307static const struct testvec_config default_cipher_testvec_configs[] = {
308 {
309 .name = "in-place",
310 .inplace = true,
311 .src_divs = { { .proportion_of_total = 10000 } },
312 }, {
313 .name = "out-of-place",
314 .src_divs = { { .proportion_of_total = 10000 } },
315 }, {
316 .name = "unaligned buffer, offset=1",
317 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
318 .iv_offset = 1,
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800319 .key_offset = 1,
Eric Biggers4e7babba2019-01-31 23:51:46 -0800320 }, {
321 .name = "buffer aligned only to alignmask",
322 .src_divs = {
323 {
324 .proportion_of_total = 10000,
325 .offset = 1,
326 .offset_relative_to_alignmask = true,
327 },
328 },
329 .iv_offset = 1,
330 .iv_offset_relative_to_alignmask = true,
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800331 .key_offset = 1,
332 .key_offset_relative_to_alignmask = true,
Eric Biggers4e7babba2019-01-31 23:51:46 -0800333 }, {
334 .name = "two even aligned splits",
335 .src_divs = {
336 { .proportion_of_total = 5000 },
337 { .proportion_of_total = 5000 },
338 },
339 }, {
340 .name = "uneven misaligned splits, may sleep",
341 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
342 .src_divs = {
343 { .proportion_of_total = 1900, .offset = 33 },
344 { .proportion_of_total = 3300, .offset = 7 },
345 { .proportion_of_total = 4800, .offset = 18 },
346 },
347 .iv_offset = 3,
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800348 .key_offset = 3,
Eric Biggers4e7babba2019-01-31 23:51:46 -0800349 }, {
350 .name = "misaligned splits crossing pages, inplace",
351 .inplace = true,
352 .src_divs = {
353 {
354 .proportion_of_total = 7500,
355 .offset = PAGE_SIZE - 32
356 }, {
357 .proportion_of_total = 2500,
358 .offset = PAGE_SIZE - 7
359 },
360 },
361 }
362};
363
Eric Biggers4cc2dcf2019-01-31 23:51:48 -0800364static const struct testvec_config default_hash_testvec_configs[] = {
365 {
366 .name = "init+update+final aligned buffer",
367 .src_divs = { { .proportion_of_total = 10000 } },
368 .finalization_type = FINALIZATION_TYPE_FINAL,
369 }, {
370 .name = "init+finup aligned buffer",
371 .src_divs = { { .proportion_of_total = 10000 } },
372 .finalization_type = FINALIZATION_TYPE_FINUP,
373 }, {
374 .name = "digest aligned buffer",
375 .src_divs = { { .proportion_of_total = 10000 } },
376 .finalization_type = FINALIZATION_TYPE_DIGEST,
377 }, {
378 .name = "init+update+final misaligned buffer",
379 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
380 .finalization_type = FINALIZATION_TYPE_FINAL,
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800381 .key_offset = 1,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -0800382 }, {
383 .name = "digest buffer aligned only to alignmask",
384 .src_divs = {
385 {
386 .proportion_of_total = 10000,
387 .offset = 1,
388 .offset_relative_to_alignmask = true,
389 },
390 },
391 .finalization_type = FINALIZATION_TYPE_DIGEST,
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800392 .key_offset = 1,
393 .key_offset_relative_to_alignmask = true,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -0800394 }, {
395 .name = "init+update+update+final two even splits",
396 .src_divs = {
397 { .proportion_of_total = 5000 },
398 {
399 .proportion_of_total = 5000,
400 .flush_type = FLUSH_TYPE_FLUSH,
401 },
402 },
403 .finalization_type = FINALIZATION_TYPE_FINAL,
404 }, {
405 .name = "digest uneven misaligned splits, may sleep",
406 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
407 .src_divs = {
408 { .proportion_of_total = 1900, .offset = 33 },
409 { .proportion_of_total = 3300, .offset = 7 },
410 { .proportion_of_total = 4800, .offset = 18 },
411 },
412 .finalization_type = FINALIZATION_TYPE_DIGEST,
413 }, {
414 .name = "digest misaligned splits crossing pages",
415 .src_divs = {
416 {
417 .proportion_of_total = 7500,
418 .offset = PAGE_SIZE - 32,
419 }, {
420 .proportion_of_total = 2500,
421 .offset = PAGE_SIZE - 7,
422 },
423 },
424 .finalization_type = FINALIZATION_TYPE_DIGEST,
425 }, {
426 .name = "import/export",
427 .src_divs = {
428 {
429 .proportion_of_total = 6500,
430 .flush_type = FLUSH_TYPE_REIMPORT,
431 }, {
432 .proportion_of_total = 3500,
433 .flush_type = FLUSH_TYPE_REIMPORT,
434 },
435 },
436 .finalization_type = FINALIZATION_TYPE_FINAL,
437 }
438};
439
Eric Biggers3f47a032019-01-31 23:51:43 -0800440static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
441{
442 unsigned int remaining = TEST_SG_TOTAL;
443 unsigned int ndivs = 0;
444
445 do {
446 remaining -= divs[ndivs++].proportion_of_total;
447 } while (remaining);
448
449 return ndivs;
450}
451
Eric Biggers65707372019-03-12 22:12:52 -0700452#define SGDIVS_HAVE_FLUSHES BIT(0)
453#define SGDIVS_HAVE_NOSIMD BIT(1)
454
Eric Biggers3f47a032019-01-31 23:51:43 -0800455static bool valid_sg_divisions(const struct test_sg_division *divs,
Eric Biggers65707372019-03-12 22:12:52 -0700456 unsigned int count, int *flags_ret)
Eric Biggers3f47a032019-01-31 23:51:43 -0800457{
458 unsigned int total = 0;
459 unsigned int i;
460
461 for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
462 if (divs[i].proportion_of_total <= 0 ||
463 divs[i].proportion_of_total > TEST_SG_TOTAL - total)
464 return false;
465 total += divs[i].proportion_of_total;
466 if (divs[i].flush_type != FLUSH_TYPE_NONE)
Eric Biggers65707372019-03-12 22:12:52 -0700467 *flags_ret |= SGDIVS_HAVE_FLUSHES;
468 if (divs[i].nosimd)
469 *flags_ret |= SGDIVS_HAVE_NOSIMD;
Eric Biggers3f47a032019-01-31 23:51:43 -0800470 }
471 return total == TEST_SG_TOTAL &&
472 memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
473}
474
475/*
476 * Check whether the given testvec_config is valid. This isn't strictly needed
477 * since every testvec_config should be valid, but check anyway so that people
478 * don't unknowingly add broken configs that don't do what they wanted.
479 */
480static bool valid_testvec_config(const struct testvec_config *cfg)
481{
Eric Biggers65707372019-03-12 22:12:52 -0700482 int flags = 0;
Eric Biggers3f47a032019-01-31 23:51:43 -0800483
484 if (cfg->name == NULL)
485 return false;
486
487 if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
Eric Biggers65707372019-03-12 22:12:52 -0700488 &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800489 return false;
490
491 if (cfg->dst_divs[0].proportion_of_total) {
492 if (!valid_sg_divisions(cfg->dst_divs,
Eric Biggers65707372019-03-12 22:12:52 -0700493 ARRAY_SIZE(cfg->dst_divs), &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800494 return false;
495 } else {
496 if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
497 return false;
498 /* defaults to dst_divs=src_divs */
499 }
500
501 if (cfg->iv_offset +
502 (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
503 MAX_ALGAPI_ALIGNMASK + 1)
504 return false;
505
Eric Biggers65707372019-03-12 22:12:52 -0700506 if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
507 cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
508 return false;
509
510 if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
511 (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
Eric Biggers3f47a032019-01-31 23:51:43 -0800512 return false;
513
514 return true;
515}
516
517struct test_sglist {
518 char *bufs[XBUFSIZE];
519 struct scatterlist sgl[XBUFSIZE];
520 struct scatterlist sgl_saved[XBUFSIZE];
521 struct scatterlist *sgl_ptr;
522 unsigned int nents;
523};
524
525static int init_test_sglist(struct test_sglist *tsgl)
526{
527 return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
528}
529
530static void destroy_test_sglist(struct test_sglist *tsgl)
531{
532 return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
533}
534
535/**
536 * build_test_sglist() - build a scatterlist for a crypto test
537 *
538 * @tsgl: the scatterlist to build. @tsgl->bufs[] contains an array of 2-page
539 * buffers which the scatterlist @tsgl->sgl[] will be made to point into.
540 * @divs: the layout specification on which the scatterlist will be based
541 * @alignmask: the algorithm's alignmask
542 * @total_len: the total length of the scatterlist to build in bytes
543 * @data: if non-NULL, the buffers will be filled with this data until it ends.
544 * Otherwise the buffers will be poisoned. In both cases, some bytes
545 * past the end of each buffer will be poisoned to help detect overruns.
546 * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
547 * corresponds will be returned here. This will match @divs except
548 * that divisions resolving to a length of 0 are omitted as they are
549 * not included in the scatterlist.
550 *
551 * Return: 0 or a -errno value
552 */
553static int build_test_sglist(struct test_sglist *tsgl,
554 const struct test_sg_division *divs,
555 const unsigned int alignmask,
556 const unsigned int total_len,
557 struct iov_iter *data,
558 const struct test_sg_division *out_divs[XBUFSIZE])
559{
560 struct {
561 const struct test_sg_division *div;
562 size_t length;
563 } partitions[XBUFSIZE];
564 const unsigned int ndivs = count_test_sg_divisions(divs);
565 unsigned int len_remaining = total_len;
566 unsigned int i;
567
568 BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
569 if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
570 return -EINVAL;
571
572 /* Calculate the (div, length) pairs */
573 tsgl->nents = 0;
574 for (i = 0; i < ndivs; i++) {
575 unsigned int len_this_sg =
576 min(len_remaining,
577 (total_len * divs[i].proportion_of_total +
578 TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);
579
580 if (len_this_sg != 0) {
581 partitions[tsgl->nents].div = &divs[i];
582 partitions[tsgl->nents].length = len_this_sg;
583 tsgl->nents++;
584 len_remaining -= len_this_sg;
585 }
586 }
587 if (tsgl->nents == 0) {
588 partitions[tsgl->nents].div = &divs[0];
589 partitions[tsgl->nents].length = 0;
590 tsgl->nents++;
591 }
592 partitions[tsgl->nents - 1].length += len_remaining;
593
594 /* Set up the sgl entries and fill the data or poison */
595 sg_init_table(tsgl->sgl, tsgl->nents);
596 for (i = 0; i < tsgl->nents; i++) {
597 unsigned int offset = partitions[i].div->offset;
598 void *addr;
599
600 if (partitions[i].div->offset_relative_to_alignmask)
601 offset += alignmask;
602
603 while (offset + partitions[i].length + TESTMGR_POISON_LEN >
604 2 * PAGE_SIZE) {
605 if (WARN_ON(offset <= 0))
606 return -EINVAL;
607 offset /= 2;
608 }
609
610 addr = &tsgl->bufs[i][offset];
611 sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);
612
613 if (out_divs)
614 out_divs[i] = partitions[i].div;
615
616 if (data) {
617 size_t copy_len, copied;
618
619 copy_len = min(partitions[i].length, data->count);
620 copied = copy_from_iter(addr, copy_len, data);
621 if (WARN_ON(copied != copy_len))
622 return -EINVAL;
623 testmgr_poison(addr + copy_len, partitions[i].length +
624 TESTMGR_POISON_LEN - copy_len);
625 } else {
626 testmgr_poison(addr, partitions[i].length +
627 TESTMGR_POISON_LEN);
628 }
629 }
630
631 sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
632 tsgl->sgl_ptr = tsgl->sgl;
633 memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
634 return 0;
635}
636
637/*
638 * Verify that a scatterlist crypto operation produced the correct output.
639 *
640 * @tsgl: scatterlist containing the actual output
641 * @expected_output: buffer containing the expected output
642 * @len_to_check: length of @expected_output in bytes
643 * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
644 * @check_poison: verify that the poison bytes after each chunk are intact?
645 *
646 * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
647 */
648static int verify_correct_output(const struct test_sglist *tsgl,
649 const char *expected_output,
650 unsigned int len_to_check,
651 unsigned int unchecked_prefix_len,
652 bool check_poison)
653{
654 unsigned int i;
655
656 for (i = 0; i < tsgl->nents; i++) {
657 struct scatterlist *sg = &tsgl->sgl_ptr[i];
658 unsigned int len = sg->length;
659 unsigned int offset = sg->offset;
660 const char *actual_output;
661
662 if (unchecked_prefix_len) {
663 if (unchecked_prefix_len >= len) {
664 unchecked_prefix_len -= len;
665 continue;
666 }
667 offset += unchecked_prefix_len;
668 len -= unchecked_prefix_len;
669 unchecked_prefix_len = 0;
670 }
671 len = min(len, len_to_check);
672 actual_output = page_address(sg_page(sg)) + offset;
673 if (memcmp(expected_output, actual_output, len) != 0)
674 return -EINVAL;
675 if (check_poison &&
676 !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
677 return -EOVERFLOW;
678 len_to_check -= len;
679 expected_output += len;
680 }
681 if (WARN_ON(len_to_check != 0))
682 return -EINVAL;
683 return 0;
684}
685
686static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
687{
688 unsigned int i;
689
690 for (i = 0; i < tsgl->nents; i++) {
691 if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
692 return true;
693 if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
694 return true;
695 if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
696 return true;
697 }
698 return false;
699}
700
701struct cipher_test_sglists {
702 struct test_sglist src;
703 struct test_sglist dst;
704};
705
706static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
707{
708 struct cipher_test_sglists *tsgls;
709
710 tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
711 if (!tsgls)
712 return NULL;
713
714 if (init_test_sglist(&tsgls->src) != 0)
715 goto fail_kfree;
716 if (init_test_sglist(&tsgls->dst) != 0)
717 goto fail_destroy_src;
718
719 return tsgls;
720
721fail_destroy_src:
722 destroy_test_sglist(&tsgls->src);
723fail_kfree:
724 kfree(tsgls);
725 return NULL;
726}
727
728static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
729{
730 if (tsgls) {
731 destroy_test_sglist(&tsgls->src);
732 destroy_test_sglist(&tsgls->dst);
733 kfree(tsgls);
734 }
735}
736
737/* Build the src and dst scatterlists for an skcipher or AEAD test */
738static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
739 const struct testvec_config *cfg,
740 unsigned int alignmask,
741 unsigned int src_total_len,
742 unsigned int dst_total_len,
743 const struct kvec *inputs,
744 unsigned int nr_inputs)
745{
746 struct iov_iter input;
747 int err;
748
749 iov_iter_kvec(&input, WRITE, inputs, nr_inputs, src_total_len);
750 err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
751 cfg->inplace ?
752 max(dst_total_len, src_total_len) :
753 src_total_len,
754 &input, NULL);
755 if (err)
756 return err;
757
758 if (cfg->inplace) {
759 tsgls->dst.sgl_ptr = tsgls->src.sgl;
760 tsgls->dst.nents = tsgls->src.nents;
761 return 0;
762 }
763 return build_test_sglist(&tsgls->dst,
764 cfg->dst_divs[0].proportion_of_total ?
765 cfg->dst_divs : cfg->src_divs,
766 alignmask, dst_total_len, NULL, NULL);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800767}
768
Eric Biggersfd8c37c2019-12-01 13:53:28 -0800769/*
770 * Support for testing passing a misaligned key to setkey():
771 *
772 * If cfg->key_offset is set, copy the key into a new buffer at that offset,
773 * optionally adding alignmask. Else, just use the key directly.
774 */
775static int prepare_keybuf(const u8 *key, unsigned int ksize,
776 const struct testvec_config *cfg,
777 unsigned int alignmask,
778 const u8 **keybuf_ret, const u8 **keyptr_ret)
779{
780 unsigned int key_offset = cfg->key_offset;
781 u8 *keybuf = NULL, *keyptr = (u8 *)key;
782
783 if (key_offset != 0) {
784 if (cfg->key_offset_relative_to_alignmask)
785 key_offset += alignmask;
786 keybuf = kmalloc(key_offset + ksize, GFP_KERNEL);
787 if (!keybuf)
788 return -ENOMEM;
789 keyptr = keybuf + key_offset;
790 memcpy(keyptr, key, ksize);
791 }
792 *keybuf_ret = keybuf;
793 *keyptr_ret = keyptr;
794 return 0;
795}
796
797/* Like setkey_f(tfm, key, ksize), but sometimes misalign the key */
798#define do_setkey(setkey_f, tfm, key, ksize, cfg, alignmask) \
799({ \
800 const u8 *keybuf, *keyptr; \
801 int err; \
802 \
803 err = prepare_keybuf((key), (ksize), (cfg), (alignmask), \
804 &keybuf, &keyptr); \
805 if (err == 0) { \
806 err = setkey_f((tfm), keyptr, (ksize)); \
807 kfree(keybuf); \
808 } \
809 err; \
810})
811
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800812#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700813
814/* Generate a random length in range [0, max_len], but prefer smaller values */
815static unsigned int generate_random_length(unsigned int max_len)
816{
817 unsigned int len = prandom_u32() % (max_len + 1);
818
819 switch (prandom_u32() % 4) {
820 case 0:
821 return len % 64;
822 case 1:
823 return len % 256;
824 case 2:
825 return len % 1024;
826 default:
827 return len;
828 }
829}
830
Eric Biggers49763fc2019-12-01 13:53:30 -0800831/* Flip a random bit in the given nonempty data buffer */
832static void flip_random_bit(u8 *buf, size_t size)
833{
834 size_t bitpos;
835
836 bitpos = prandom_u32() % (size * 8);
837 buf[bitpos / 8] ^= 1 << (bitpos % 8);
838}
839
840/* Flip a random byte in the given nonempty data buffer */
841static void flip_random_byte(u8 *buf, size_t size)
842{
843 buf[prandom_u32() % size] ^= 0xff;
844}
845
846/* Sometimes make some random changes to the given nonempty data buffer */
847static void mutate_buffer(u8 *buf, size_t size)
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700848{
849 size_t num_flips;
850 size_t i;
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700851
852 /* Sometimes flip some bits */
853 if (prandom_u32() % 4 == 0) {
Eric Biggers49763fc2019-12-01 13:53:30 -0800854 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), size * 8);
855 for (i = 0; i < num_flips; i++)
856 flip_random_bit(buf, size);
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700857 }
858
859 /* Sometimes flip some bytes */
860 if (prandom_u32() % 4 == 0) {
Eric Biggers49763fc2019-12-01 13:53:30 -0800861 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), size);
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700862 for (i = 0; i < num_flips; i++)
Eric Biggers49763fc2019-12-01 13:53:30 -0800863 flip_random_byte(buf, size);
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700864 }
865}
866
867/* Randomly generate 'count' bytes, but sometimes make them "interesting" */
868static void generate_random_bytes(u8 *buf, size_t count)
869{
870 u8 b;
871 u8 increment;
872 size_t i;
873
874 if (count == 0)
875 return;
876
877 switch (prandom_u32() % 8) { /* Choose a generation strategy */
878 case 0:
879 case 1:
880 /* All the same byte, plus optional mutations */
881 switch (prandom_u32() % 4) {
882 case 0:
883 b = 0x00;
884 break;
885 case 1:
886 b = 0xff;
887 break;
888 default:
889 b = (u8)prandom_u32();
890 break;
891 }
892 memset(buf, b, count);
893 mutate_buffer(buf, count);
894 break;
895 case 2:
896 /* Ascending or descending bytes, plus optional mutations */
897 increment = (u8)prandom_u32();
898 b = (u8)prandom_u32();
899 for (i = 0; i < count; i++, b += increment)
900 buf[i] = b;
901 mutate_buffer(buf, count);
902 break;
903 default:
904 /* Fully random bytes */
905 for (i = 0; i < count; i++)
906 buf[i] = (u8)prandom_u32();
907 }
908}
909
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800910static char *generate_random_sgl_divisions(struct test_sg_division *divs,
911 size_t max_divs, char *p, char *end,
Eric Biggers65707372019-03-12 22:12:52 -0700912 bool gen_flushes, u32 req_flags)
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800913{
914 struct test_sg_division *div = divs;
915 unsigned int remaining = TEST_SG_TOTAL;
916
917 do {
918 unsigned int this_len;
Eric Biggers65707372019-03-12 22:12:52 -0700919 const char *flushtype_str;
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800920
921 if (div == &divs[max_divs - 1] || prandom_u32() % 2 == 0)
922 this_len = remaining;
923 else
924 this_len = 1 + (prandom_u32() % remaining);
925 div->proportion_of_total = this_len;
926
927 if (prandom_u32() % 4 == 0)
928 div->offset = (PAGE_SIZE - 128) + (prandom_u32() % 128);
929 else if (prandom_u32() % 2 == 0)
930 div->offset = prandom_u32() % 32;
931 else
932 div->offset = prandom_u32() % PAGE_SIZE;
933 if (prandom_u32() % 8 == 0)
934 div->offset_relative_to_alignmask = true;
935
936 div->flush_type = FLUSH_TYPE_NONE;
937 if (gen_flushes) {
938 switch (prandom_u32() % 4) {
939 case 0:
940 div->flush_type = FLUSH_TYPE_REIMPORT;
941 break;
942 case 1:
943 div->flush_type = FLUSH_TYPE_FLUSH;
944 break;
945 }
946 }
947
Eric Biggers65707372019-03-12 22:12:52 -0700948 if (div->flush_type != FLUSH_TYPE_NONE &&
949 !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
950 prandom_u32() % 2 == 0)
951 div->nosimd = true;
952
953 switch (div->flush_type) {
954 case FLUSH_TYPE_FLUSH:
955 if (div->nosimd)
956 flushtype_str = "<flush,nosimd>";
957 else
958 flushtype_str = "<flush>";
959 break;
960 case FLUSH_TYPE_REIMPORT:
961 if (div->nosimd)
962 flushtype_str = "<reimport,nosimd>";
963 else
964 flushtype_str = "<reimport>";
965 break;
966 default:
967 flushtype_str = "";
968 break;
969 }
970
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800971 BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
Eric Biggers65707372019-03-12 22:12:52 -0700972 p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800973 this_len / 100, this_len % 100,
974 div->offset_relative_to_alignmask ?
975 "alignmask" : "",
976 div->offset, this_len == remaining ? "" : ", ");
977 remaining -= this_len;
978 div++;
979 } while (remaining);
980
981 return p;
982}
983
984/* Generate a random testvec_config for fuzz testing */
985static void generate_random_testvec_config(struct testvec_config *cfg,
986 char *name, size_t max_namelen)
987{
988 char *p = name;
989 char * const end = name + max_namelen;
990
991 memset(cfg, 0, sizeof(*cfg));
992
993 cfg->name = name;
994
995 p += scnprintf(p, end - p, "random:");
996
997 if (prandom_u32() % 2 == 0) {
998 cfg->inplace = true;
999 p += scnprintf(p, end - p, " inplace");
1000 }
1001
1002 if (prandom_u32() % 2 == 0) {
1003 cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
1004 p += scnprintf(p, end - p, " may_sleep");
1005 }
1006
1007 switch (prandom_u32() % 4) {
1008 case 0:
1009 cfg->finalization_type = FINALIZATION_TYPE_FINAL;
1010 p += scnprintf(p, end - p, " use_final");
1011 break;
1012 case 1:
1013 cfg->finalization_type = FINALIZATION_TYPE_FINUP;
1014 p += scnprintf(p, end - p, " use_finup");
1015 break;
1016 default:
1017 cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
1018 p += scnprintf(p, end - p, " use_digest");
1019 break;
1020 }
1021
Eric Biggers65707372019-03-12 22:12:52 -07001022 if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
1023 prandom_u32() % 2 == 0) {
1024 cfg->nosimd = true;
1025 p += scnprintf(p, end - p, " nosimd");
1026 }
1027
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001028 p += scnprintf(p, end - p, " src_divs=[");
1029 p = generate_random_sgl_divisions(cfg->src_divs,
1030 ARRAY_SIZE(cfg->src_divs), p, end,
1031 (cfg->finalization_type !=
Eric Biggers65707372019-03-12 22:12:52 -07001032 FINALIZATION_TYPE_DIGEST),
1033 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001034 p += scnprintf(p, end - p, "]");
1035
1036 if (!cfg->inplace && prandom_u32() % 2 == 0) {
1037 p += scnprintf(p, end - p, " dst_divs=[");
1038 p = generate_random_sgl_divisions(cfg->dst_divs,
1039 ARRAY_SIZE(cfg->dst_divs),
Eric Biggers65707372019-03-12 22:12:52 -07001040 p, end, false,
1041 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001042 p += scnprintf(p, end - p, "]");
1043 }
1044
1045 if (prandom_u32() % 2 == 0) {
1046 cfg->iv_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
1047 p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
1048 }
1049
Eric Biggersfd8c37c2019-12-01 13:53:28 -08001050 if (prandom_u32() % 2 == 0) {
1051 cfg->key_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
1052 p += scnprintf(p, end - p, " key_offset=%u", cfg->key_offset);
1053 }
1054
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001055 WARN_ON_ONCE(!valid_testvec_config(cfg));
1056}
Eric Biggersb55e1a32019-03-12 22:12:47 -07001057
1058static void crypto_disable_simd_for_test(void)
1059{
1060 preempt_disable();
1061 __this_cpu_write(crypto_simd_disabled_for_test, true);
1062}
1063
1064static void crypto_reenable_simd_for_test(void)
1065{
1066 __this_cpu_write(crypto_simd_disabled_for_test, false);
1067 preempt_enable();
1068}
Eric Biggersf2bb770a2019-04-11 21:57:38 -07001069
1070/*
1071 * Given an algorithm name, build the name of the generic implementation of that
1072 * algorithm, assuming the usual naming convention. Specifically, this appends
1073 * "-generic" to every part of the name that is not a template name. Examples:
1074 *
1075 * aes => aes-generic
1076 * cbc(aes) => cbc(aes-generic)
1077 * cts(cbc(aes)) => cts(cbc(aes-generic))
1078 * rfc7539(chacha20,poly1305) => rfc7539(chacha20-generic,poly1305-generic)
1079 *
1080 * Return: 0 on success, or -ENAMETOOLONG if the generic name would be too long
1081 */
1082static int build_generic_driver_name(const char *algname,
1083 char driver_name[CRYPTO_MAX_ALG_NAME])
1084{
1085 const char *in = algname;
1086 char *out = driver_name;
1087 size_t len = strlen(algname);
1088
1089 if (len >= CRYPTO_MAX_ALG_NAME)
1090 goto too_long;
1091 do {
1092 const char *in_saved = in;
1093
1094 while (*in && *in != '(' && *in != ')' && *in != ',')
1095 *out++ = *in++;
1096 if (*in != '(' && in > in_saved) {
1097 len += 8;
1098 if (len >= CRYPTO_MAX_ALG_NAME)
1099 goto too_long;
1100 memcpy(out, "-generic", 8);
1101 out += 8;
1102 }
1103 } while ((*out++ = *in++) != '\0');
1104 return 0;
1105
1106too_long:
1107 pr_err("alg: generic driver name for \"%s\" would be too long\n",
1108 algname);
1109 return -ENAMETOOLONG;
1110}
Eric Biggersb55e1a32019-03-12 22:12:47 -07001111#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1112static void crypto_disable_simd_for_test(void)
1113{
1114}
1115
1116static void crypto_reenable_simd_for_test(void)
1117{
1118}
1119#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001120
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001121static int build_hash_sglist(struct test_sglist *tsgl,
1122 const struct hash_testvec *vec,
1123 const struct testvec_config *cfg,
1124 unsigned int alignmask,
1125 const struct test_sg_division *divs[XBUFSIZE])
1126{
1127 struct kvec kv;
1128 struct iov_iter input;
1129
1130 kv.iov_base = (void *)vec->plaintext;
1131 kv.iov_len = vec->psize;
1132 iov_iter_kvec(&input, WRITE, &kv, 1, vec->psize);
1133 return build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
1134 &input, divs);
1135}
1136
1137static int check_hash_result(const char *type,
1138 const u8 *result, unsigned int digestsize,
1139 const struct hash_testvec *vec,
1140 const char *vec_name,
1141 const char *driver,
1142 const struct testvec_config *cfg)
1143{
1144 if (memcmp(result, vec->digest, digestsize) != 0) {
1145 pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1146 type, driver, vec_name, cfg->name);
1147 return -EINVAL;
1148 }
1149 if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
1150 pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"\n",
1151 type, driver, vec_name, cfg->name);
1152 return -EOVERFLOW;
1153 }
1154 return 0;
1155}
1156
1157static inline int check_shash_op(const char *op, int err,
1158 const char *driver, const char *vec_name,
1159 const struct testvec_config *cfg)
1160{
1161 if (err)
1162 pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
1163 driver, op, err, vec_name, cfg->name);
1164 return err;
1165}
1166
1167static inline const void *sg_data(struct scatterlist *sg)
1168{
1169 return page_address(sg_page(sg)) + sg->offset;
1170}
1171
1172/* Test one hash test vector in one configuration, using the shash API */
1173static int test_shash_vec_cfg(const char *driver,
1174 const struct hash_testvec *vec,
1175 const char *vec_name,
1176 const struct testvec_config *cfg,
1177 struct shash_desc *desc,
1178 struct test_sglist *tsgl,
1179 u8 *hashstate)
1180{
1181 struct crypto_shash *tfm = desc->tfm;
1182 const unsigned int alignmask = crypto_shash_alignmask(tfm);
1183 const unsigned int digestsize = crypto_shash_digestsize(tfm);
1184 const unsigned int statesize = crypto_shash_statesize(tfm);
1185 const struct test_sg_division *divs[XBUFSIZE];
1186 unsigned int i;
1187 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1188 int err;
1189
1190 /* Set the key, if specified */
1191 if (vec->ksize) {
Eric Biggersfd8c37c2019-12-01 13:53:28 -08001192 err = do_setkey(crypto_shash_setkey, tfm, vec->key, vec->ksize,
1193 cfg, alignmask);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001194 if (err) {
1195 if (err == vec->setkey_error)
1196 return 0;
1197 pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1198 driver, vec_name, vec->setkey_error, err,
1199 crypto_shash_get_flags(tfm));
1200 return err;
1201 }
1202 if (vec->setkey_error) {
1203 pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1204 driver, vec_name, vec->setkey_error);
1205 return -EINVAL;
1206 }
1207 }
1208
1209 /* Build the scatterlist for the source data */
1210 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
1211 if (err) {
1212 pr_err("alg: shash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
1213 driver, vec_name, cfg->name);
1214 return err;
1215 }
1216
1217 /* Do the actual hashing */
1218
1219 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1220 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1221
1222 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1223 vec->digest_error) {
1224 /* Just using digest() */
1225 if (tsgl->nents != 1)
1226 return 0;
1227 if (cfg->nosimd)
1228 crypto_disable_simd_for_test();
1229 err = crypto_shash_digest(desc, sg_data(&tsgl->sgl[0]),
1230 tsgl->sgl[0].length, result);
1231 if (cfg->nosimd)
1232 crypto_reenable_simd_for_test();
1233 if (err) {
1234 if (err == vec->digest_error)
1235 return 0;
1236 pr_err("alg: shash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1237 driver, vec_name, vec->digest_error, err,
1238 cfg->name);
1239 return err;
1240 }
1241 if (vec->digest_error) {
1242 pr_err("alg: shash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1243 driver, vec_name, vec->digest_error, cfg->name);
1244 return -EINVAL;
1245 }
1246 goto result_ready;
1247 }
1248
1249 /* Using init(), zero or more update(), then final() or finup() */
1250
1251 if (cfg->nosimd)
1252 crypto_disable_simd_for_test();
1253 err = crypto_shash_init(desc);
1254 if (cfg->nosimd)
1255 crypto_reenable_simd_for_test();
1256 err = check_shash_op("init", err, driver, vec_name, cfg);
1257 if (err)
1258 return err;
1259
1260 for (i = 0; i < tsgl->nents; i++) {
1261 if (i + 1 == tsgl->nents &&
1262 cfg->finalization_type == FINALIZATION_TYPE_FINUP) {
1263 if (divs[i]->nosimd)
1264 crypto_disable_simd_for_test();
1265 err = crypto_shash_finup(desc, sg_data(&tsgl->sgl[i]),
1266 tsgl->sgl[i].length, result);
1267 if (divs[i]->nosimd)
1268 crypto_reenable_simd_for_test();
1269 err = check_shash_op("finup", err, driver, vec_name,
1270 cfg);
1271 if (err)
1272 return err;
1273 goto result_ready;
1274 }
1275 if (divs[i]->nosimd)
1276 crypto_disable_simd_for_test();
1277 err = crypto_shash_update(desc, sg_data(&tsgl->sgl[i]),
1278 tsgl->sgl[i].length);
1279 if (divs[i]->nosimd)
1280 crypto_reenable_simd_for_test();
1281 err = check_shash_op("update", err, driver, vec_name, cfg);
1282 if (err)
1283 return err;
1284 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1285 /* Test ->export() and ->import() */
1286 testmgr_poison(hashstate + statesize,
1287 TESTMGR_POISON_LEN);
1288 err = crypto_shash_export(desc, hashstate);
1289 err = check_shash_op("export", err, driver, vec_name,
1290 cfg);
1291 if (err)
1292 return err;
1293 if (!testmgr_is_poison(hashstate + statesize,
1294 TESTMGR_POISON_LEN)) {
1295 pr_err("alg: shash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
1296 driver, vec_name, cfg->name);
1297 return -EOVERFLOW;
1298 }
1299 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1300 err = crypto_shash_import(desc, hashstate);
1301 err = check_shash_op("import", err, driver, vec_name,
1302 cfg);
1303 if (err)
1304 return err;
1305 }
1306 }
1307
1308 if (cfg->nosimd)
1309 crypto_disable_simd_for_test();
1310 err = crypto_shash_final(desc, result);
1311 if (cfg->nosimd)
1312 crypto_reenable_simd_for_test();
1313 err = check_shash_op("final", err, driver, vec_name, cfg);
1314 if (err)
1315 return err;
1316result_ready:
1317 return check_hash_result("shash", result, digestsize, vec, vec_name,
1318 driver, cfg);
1319}
1320
Eric Biggers65707372019-03-12 22:12:52 -07001321static int do_ahash_op(int (*op)(struct ahash_request *req),
1322 struct ahash_request *req,
1323 struct crypto_wait *wait, bool nosimd)
1324{
1325 int err;
1326
1327 if (nosimd)
1328 crypto_disable_simd_for_test();
1329
1330 err = op(req);
1331
1332 if (nosimd)
1333 crypto_reenable_simd_for_test();
1334
1335 return crypto_wait_req(err, wait);
1336}
1337
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001338static int check_nonfinal_ahash_op(const char *op, int err,
1339 u8 *result, unsigned int digestsize,
1340 const char *driver, const char *vec_name,
1341 const struct testvec_config *cfg)
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001342{
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001343 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001344 pr_err("alg: ahash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001345 driver, op, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001346 return err;
1347 }
1348 if (!testmgr_is_poison(result, digestsize)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001349 pr_err("alg: ahash: %s %s() used result buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001350 driver, op, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001351 return -EINVAL;
1352 }
1353 return 0;
1354}
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001355
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001356/* Test one hash test vector in one configuration, using the ahash API */
1357static int test_ahash_vec_cfg(const char *driver,
1358 const struct hash_testvec *vec,
1359 const char *vec_name,
1360 const struct testvec_config *cfg,
1361 struct ahash_request *req,
1362 struct test_sglist *tsgl,
1363 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001364{
1365 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1366 const unsigned int alignmask = crypto_ahash_alignmask(tfm);
1367 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1368 const unsigned int statesize = crypto_ahash_statesize(tfm);
1369 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1370 const struct test_sg_division *divs[XBUFSIZE];
1371 DECLARE_CRYPTO_WAIT(wait);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001372 unsigned int i;
1373 struct scatterlist *pending_sgl;
1374 unsigned int pending_len;
1375 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1376 int err;
1377
1378 /* Set the key, if specified */
1379 if (vec->ksize) {
Eric Biggersfd8c37c2019-12-01 13:53:28 -08001380 err = do_setkey(crypto_ahash_setkey, tfm, vec->key, vec->ksize,
1381 cfg, alignmask);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001382 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001383 if (err == vec->setkey_error)
1384 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001385 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 -07001386 driver, vec_name, vec->setkey_error, err,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001387 crypto_ahash_get_flags(tfm));
1388 return err;
1389 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001390 if (vec->setkey_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001391 pr_err("alg: ahash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001392 driver, vec_name, vec->setkey_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001393 return -EINVAL;
1394 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001395 }
1396
1397 /* Build the scatterlist for the source data */
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001398 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001399 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001400 pr_err("alg: ahash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001401 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001402 return err;
1403 }
1404
1405 /* Do the actual hashing */
1406
1407 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1408 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1409
Eric Biggers5283a8e2019-04-11 21:57:36 -07001410 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1411 vec->digest_error) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001412 /* Just using digest() */
1413 ahash_request_set_callback(req, req_flags, crypto_req_done,
1414 &wait);
1415 ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
Eric Biggers65707372019-03-12 22:12:52 -07001416 err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001417 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001418 if (err == vec->digest_error)
1419 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001420 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 -07001421 driver, vec_name, vec->digest_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001422 cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001423 return err;
1424 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001425 if (vec->digest_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001426 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 -07001427 driver, vec_name, vec->digest_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001428 return -EINVAL;
1429 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001430 goto result_ready;
1431 }
1432
1433 /* Using init(), zero or more update(), then final() or finup() */
1434
1435 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1436 ahash_request_set_crypt(req, NULL, result, 0);
Eric Biggers65707372019-03-12 22:12:52 -07001437 err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001438 err = check_nonfinal_ahash_op("init", err, result, digestsize,
1439 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001440 if (err)
1441 return err;
1442
1443 pending_sgl = NULL;
1444 pending_len = 0;
1445 for (i = 0; i < tsgl->nents; i++) {
1446 if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
1447 pending_sgl != NULL) {
1448 /* update() with the pending data */
1449 ahash_request_set_callback(req, req_flags,
1450 crypto_req_done, &wait);
1451 ahash_request_set_crypt(req, pending_sgl, result,
1452 pending_len);
Eric Biggers65707372019-03-12 22:12:52 -07001453 err = do_ahash_op(crypto_ahash_update, req, &wait,
1454 divs[i]->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001455 err = check_nonfinal_ahash_op("update", err,
1456 result, digestsize,
1457 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001458 if (err)
1459 return err;
1460 pending_sgl = NULL;
1461 pending_len = 0;
1462 }
1463 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1464 /* Test ->export() and ->import() */
1465 testmgr_poison(hashstate + statesize,
1466 TESTMGR_POISON_LEN);
1467 err = crypto_ahash_export(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001468 err = check_nonfinal_ahash_op("export", err,
1469 result, digestsize,
1470 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001471 if (err)
1472 return err;
1473 if (!testmgr_is_poison(hashstate + statesize,
1474 TESTMGR_POISON_LEN)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001475 pr_err("alg: ahash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001476 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001477 return -EOVERFLOW;
1478 }
1479
1480 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1481 err = crypto_ahash_import(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001482 err = check_nonfinal_ahash_op("import", err,
1483 result, digestsize,
1484 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001485 if (err)
1486 return err;
1487 }
1488 if (pending_sgl == NULL)
1489 pending_sgl = &tsgl->sgl[i];
1490 pending_len += tsgl->sgl[i].length;
1491 }
1492
1493 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1494 ahash_request_set_crypt(req, pending_sgl, result, pending_len);
1495 if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
1496 /* finish with update() and final() */
Eric Biggers65707372019-03-12 22:12:52 -07001497 err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001498 err = check_nonfinal_ahash_op("update", err, result, digestsize,
1499 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001500 if (err)
1501 return err;
Eric Biggers65707372019-03-12 22:12:52 -07001502 err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001503 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001504 pr_err("alg: ahash: %s final() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001505 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001506 return err;
1507 }
1508 } else {
1509 /* finish with finup() */
Eric Biggers65707372019-03-12 22:12:52 -07001510 err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001511 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001512 pr_err("alg: ahash: %s finup() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001513 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001514 return err;
1515 }
1516 }
1517
1518result_ready:
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001519 return check_hash_result("ahash", result, digestsize, vec, vec_name,
1520 driver, cfg);
1521}
1522
1523static int test_hash_vec_cfg(const char *driver,
1524 const struct hash_testvec *vec,
1525 const char *vec_name,
1526 const struct testvec_config *cfg,
1527 struct ahash_request *req,
1528 struct shash_desc *desc,
1529 struct test_sglist *tsgl,
1530 u8 *hashstate)
1531{
1532 int err;
1533
1534 /*
1535 * For algorithms implemented as "shash", most bugs will be detected by
1536 * both the shash and ahash tests. Test the shash API first so that the
1537 * failures involve less indirection, so are easier to debug.
1538 */
1539
1540 if (desc) {
1541 err = test_shash_vec_cfg(driver, vec, vec_name, cfg, desc, tsgl,
1542 hashstate);
1543 if (err)
1544 return err;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001545 }
1546
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001547 return test_ahash_vec_cfg(driver, vec, vec_name, cfg, req, tsgl,
1548 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001549}
1550
1551static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
1552 unsigned int vec_num, struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001553 struct shash_desc *desc, struct test_sglist *tsgl,
1554 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001555{
Eric Biggers951d1332019-04-11 21:57:37 -07001556 char vec_name[16];
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001557 unsigned int i;
1558 int err;
1559
Eric Biggers951d1332019-04-11 21:57:37 -07001560 sprintf(vec_name, "%u", vec_num);
1561
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001562 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07001563 err = test_hash_vec_cfg(driver, vec, vec_name,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001564 &default_hash_testvec_configs[i],
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001565 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001566 if (err)
1567 return err;
1568 }
1569
1570#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1571 if (!noextratests) {
1572 struct testvec_config cfg;
1573 char cfgname[TESTVEC_CONFIG_NAMELEN];
1574
1575 for (i = 0; i < fuzz_iterations; i++) {
1576 generate_random_testvec_config(&cfg, cfgname,
1577 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07001578 err = test_hash_vec_cfg(driver, vec, vec_name, &cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001579 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001580 if (err)
1581 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001582 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001583 }
1584 }
1585#endif
1586 return 0;
1587}
1588
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001589#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1590/*
1591 * Generate a hash test vector from the given implementation.
1592 * Assumes the buffers in 'vec' were already allocated.
1593 */
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001594static void generate_random_hash_testvec(struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001595 struct hash_testvec *vec,
1596 unsigned int maxkeysize,
1597 unsigned int maxdatasize,
1598 char *name, size_t max_namelen)
1599{
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001600 /* Data */
1601 vec->psize = generate_random_length(maxdatasize);
1602 generate_random_bytes((u8 *)vec->plaintext, vec->psize);
1603
1604 /*
1605 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
1606 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
1607 */
1608 vec->setkey_error = 0;
1609 vec->ksize = 0;
1610 if (maxkeysize) {
1611 vec->ksize = maxkeysize;
1612 if (prandom_u32() % 4 == 0)
1613 vec->ksize = 1 + (prandom_u32() % maxkeysize);
1614 generate_random_bytes((u8 *)vec->key, vec->ksize);
1615
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001616 vec->setkey_error = crypto_shash_setkey(desc->tfm, vec->key,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001617 vec->ksize);
1618 /* If the key couldn't be set, no need to continue to digest. */
1619 if (vec->setkey_error)
1620 goto done;
1621 }
1622
1623 /* Digest */
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001624 vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
1625 vec->psize, (u8 *)vec->digest);
1626done:
1627 snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
1628 vec->psize, vec->ksize);
1629}
1630
1631/*
1632 * Test the hash algorithm represented by @req against the corresponding generic
1633 * implementation, if one is available.
1634 */
1635static int test_hash_vs_generic_impl(const char *driver,
1636 const char *generic_driver,
1637 unsigned int maxkeysize,
1638 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001639 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001640 struct test_sglist *tsgl,
1641 u8 *hashstate)
1642{
1643 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1644 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1645 const unsigned int blocksize = crypto_ahash_blocksize(tfm);
1646 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
1647 const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
1648 char _generic_driver[CRYPTO_MAX_ALG_NAME];
1649 struct crypto_shash *generic_tfm = NULL;
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001650 struct shash_desc *generic_desc = NULL;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001651 unsigned int i;
1652 struct hash_testvec vec = { 0 };
1653 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001654 struct testvec_config *cfg;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001655 char cfgname[TESTVEC_CONFIG_NAMELEN];
1656 int err;
1657
1658 if (noextratests)
1659 return 0;
1660
1661 if (!generic_driver) { /* Use default naming convention? */
1662 err = build_generic_driver_name(algname, _generic_driver);
1663 if (err)
1664 return err;
1665 generic_driver = _generic_driver;
1666 }
1667
1668 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
1669 return 0;
1670
1671 generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
1672 if (IS_ERR(generic_tfm)) {
1673 err = PTR_ERR(generic_tfm);
1674 if (err == -ENOENT) {
1675 pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable\n",
1676 driver, generic_driver);
1677 return 0;
1678 }
1679 pr_err("alg: hash: error allocating %s (generic impl of %s): %d\n",
1680 generic_driver, algname, err);
1681 return err;
1682 }
1683
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001684 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1685 if (!cfg) {
1686 err = -ENOMEM;
1687 goto out;
1688 }
1689
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001690 generic_desc = kzalloc(sizeof(*desc) +
1691 crypto_shash_descsize(generic_tfm), GFP_KERNEL);
1692 if (!generic_desc) {
1693 err = -ENOMEM;
1694 goto out;
1695 }
1696 generic_desc->tfm = generic_tfm;
1697
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001698 /* Check the algorithm properties for consistency. */
1699
1700 if (digestsize != crypto_shash_digestsize(generic_tfm)) {
1701 pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)\n",
1702 driver, digestsize,
1703 crypto_shash_digestsize(generic_tfm));
1704 err = -EINVAL;
1705 goto out;
1706 }
1707
1708 if (blocksize != crypto_shash_blocksize(generic_tfm)) {
1709 pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)\n",
1710 driver, blocksize, crypto_shash_blocksize(generic_tfm));
1711 err = -EINVAL;
1712 goto out;
1713 }
1714
1715 /*
1716 * Now generate test vectors using the generic implementation, and test
1717 * the other implementation against them.
1718 */
1719
1720 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
1721 vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
1722 vec.digest = kmalloc(digestsize, GFP_KERNEL);
1723 if (!vec.key || !vec.plaintext || !vec.digest) {
1724 err = -ENOMEM;
1725 goto out;
1726 }
1727
1728 for (i = 0; i < fuzz_iterations * 8; i++) {
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001729 generate_random_hash_testvec(generic_desc, &vec,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001730 maxkeysize, maxdatasize,
1731 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001732 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001733
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001734 err = test_hash_vec_cfg(driver, &vec, vec_name, cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001735 req, desc, tsgl, hashstate);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001736 if (err)
1737 goto out;
1738 cond_resched();
1739 }
1740 err = 0;
1741out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001742 kfree(cfg);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001743 kfree(vec.key);
1744 kfree(vec.plaintext);
1745 kfree(vec.digest);
1746 crypto_free_shash(generic_tfm);
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001747 kzfree(generic_desc);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001748 return err;
1749}
1750#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1751static int test_hash_vs_generic_impl(const char *driver,
1752 const char *generic_driver,
1753 unsigned int maxkeysize,
1754 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001755 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001756 struct test_sglist *tsgl,
1757 u8 *hashstate)
1758{
1759 return 0;
1760}
1761#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1762
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001763static int alloc_shash(const char *driver, u32 type, u32 mask,
1764 struct crypto_shash **tfm_ret,
1765 struct shash_desc **desc_ret)
1766{
1767 struct crypto_shash *tfm;
1768 struct shash_desc *desc;
1769
1770 tfm = crypto_alloc_shash(driver, type, mask);
1771 if (IS_ERR(tfm)) {
1772 if (PTR_ERR(tfm) == -ENOENT) {
1773 /*
1774 * This algorithm is only available through the ahash
1775 * API, not the shash API, so skip the shash tests.
1776 */
1777 return 0;
1778 }
1779 pr_err("alg: hash: failed to allocate shash transform for %s: %ld\n",
1780 driver, PTR_ERR(tfm));
1781 return PTR_ERR(tfm);
1782 }
1783
1784 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1785 if (!desc) {
1786 crypto_free_shash(tfm);
1787 return -ENOMEM;
1788 }
1789 desc->tfm = tfm;
1790
1791 *tfm_ret = tfm;
1792 *desc_ret = desc;
1793 return 0;
1794}
1795
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001796static int __alg_test_hash(const struct hash_testvec *vecs,
1797 unsigned int num_vecs, const char *driver,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001798 u32 type, u32 mask,
1799 const char *generic_driver, unsigned int maxkeysize)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001800{
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001801 struct crypto_ahash *atfm = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001802 struct ahash_request *req = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001803 struct crypto_shash *stfm = NULL;
1804 struct shash_desc *desc = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001805 struct test_sglist *tsgl = NULL;
1806 u8 *hashstate = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001807 unsigned int statesize;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001808 unsigned int i;
1809 int err;
1810
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001811 /*
1812 * Always test the ahash API. This works regardless of whether the
1813 * algorithm is implemented as ahash or shash.
1814 */
1815
1816 atfm = crypto_alloc_ahash(driver, type, mask);
1817 if (IS_ERR(atfm)) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001818 pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001819 driver, PTR_ERR(atfm));
1820 return PTR_ERR(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001821 }
1822
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001823 req = ahash_request_alloc(atfm, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001824 if (!req) {
1825 pr_err("alg: hash: failed to allocate request for %s\n",
1826 driver);
1827 err = -ENOMEM;
1828 goto out;
1829 }
1830
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001831 /*
1832 * If available also test the shash API, to cover corner cases that may
1833 * be missed by testing the ahash API only.
1834 */
1835 err = alloc_shash(driver, type, mask, &stfm, &desc);
1836 if (err)
1837 goto out;
1838
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001839 tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
1840 if (!tsgl || init_test_sglist(tsgl) != 0) {
1841 pr_err("alg: hash: failed to allocate test buffers for %s\n",
1842 driver);
1843 kfree(tsgl);
1844 tsgl = NULL;
1845 err = -ENOMEM;
1846 goto out;
1847 }
1848
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001849 statesize = crypto_ahash_statesize(atfm);
1850 if (stfm)
1851 statesize = max(statesize, crypto_shash_statesize(stfm));
1852 hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001853 if (!hashstate) {
1854 pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
1855 driver);
1856 err = -ENOMEM;
1857 goto out;
1858 }
1859
1860 for (i = 0; i < num_vecs; i++) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001861 err = test_hash_vec(driver, &vecs[i], i, req, desc, tsgl,
1862 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001863 if (err)
1864 goto out;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001865 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001866 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001867 err = test_hash_vs_generic_impl(driver, generic_driver, maxkeysize, req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001868 desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001869out:
1870 kfree(hashstate);
1871 if (tsgl) {
1872 destroy_test_sglist(tsgl);
1873 kfree(tsgl);
1874 }
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001875 kfree(desc);
1876 crypto_free_shash(stfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001877 ahash_request_free(req);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001878 crypto_free_ahash(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001879 return err;
1880}
1881
1882static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1883 u32 type, u32 mask)
1884{
1885 const struct hash_testvec *template = desc->suite.hash.vecs;
1886 unsigned int tcount = desc->suite.hash.count;
1887 unsigned int nr_unkeyed, nr_keyed;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001888 unsigned int maxkeysize = 0;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001889 int err;
1890
1891 /*
1892 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1893 * first, before setting a key on the tfm. To make this easier, we
1894 * require that the unkeyed test vectors (if any) are listed first.
1895 */
1896
1897 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1898 if (template[nr_unkeyed].ksize)
1899 break;
1900 }
1901 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1902 if (!template[nr_unkeyed + nr_keyed].ksize) {
1903 pr_err("alg: hash: test vectors for %s out of order, "
1904 "unkeyed ones must come first\n", desc->alg);
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001905 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08001906 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001907 maxkeysize = max_t(unsigned int, maxkeysize,
1908 template[nr_unkeyed + nr_keyed].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001909 }
1910
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001911 err = 0;
1912 if (nr_unkeyed) {
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001913 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
1914 desc->generic_driver, maxkeysize);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001915 template += nr_unkeyed;
Herbert Xuda7f0332008-07-31 17:08:25 +08001916 }
1917
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001918 if (!err && nr_keyed)
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001919 err = __alg_test_hash(template, nr_keyed, driver, type, mask,
1920 desc->generic_driver, maxkeysize);
Wang, Rui Y018ba952016-02-03 18:26:57 +08001921
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001922 return err;
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +03001923}
1924
Eric Biggersed968042019-01-31 23:51:47 -08001925static int test_aead_vec_cfg(const char *driver, int enc,
1926 const struct aead_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07001927 const char *vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08001928 const struct testvec_config *cfg,
1929 struct aead_request *req,
1930 struct cipher_test_sglists *tsgls)
Herbert Xuda7f0332008-07-31 17:08:25 +08001931{
Eric Biggersed968042019-01-31 23:51:47 -08001932 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1933 const unsigned int alignmask = crypto_aead_alignmask(tfm);
1934 const unsigned int ivsize = crypto_aead_ivsize(tfm);
1935 const unsigned int authsize = vec->clen - vec->plen;
1936 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1937 const char *op = enc ? "encryption" : "decryption";
1938 DECLARE_CRYPTO_WAIT(wait);
1939 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
1940 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
1941 cfg->iv_offset +
1942 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
1943 struct kvec input[2];
1944 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001945
Eric Biggersed968042019-01-31 23:51:47 -08001946 /* Set the key */
1947 if (vec->wk)
1948 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001949 else
Eric Biggersed968042019-01-31 23:51:47 -08001950 crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Eric Biggersfd8c37c2019-12-01 13:53:28 -08001951
1952 err = do_setkey(crypto_aead_setkey, tfm, vec->key, vec->klen,
1953 cfg, alignmask);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001954 if (err && err != vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001955 pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1956 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001957 crypto_aead_get_flags(tfm));
Eric Biggersed968042019-01-31 23:51:47 -08001958 return err;
1959 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001960 if (!err && vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001961 pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1962 driver, vec_name, vec->setkey_error);
Eric Biggersed968042019-01-31 23:51:47 -08001963 return -EINVAL;
1964 }
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001965
Eric Biggersed968042019-01-31 23:51:47 -08001966 /* Set the authentication tag size */
1967 err = crypto_aead_setauthsize(tfm, authsize);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001968 if (err && err != vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001969 pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d\n",
1970 driver, vec_name, vec->setauthsize_error, err);
Eric Biggersed968042019-01-31 23:51:47 -08001971 return err;
1972 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001973 if (!err && vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001974 pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d\n",
1975 driver, vec_name, vec->setauthsize_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001976 return -EINVAL;
1977 }
1978
1979 if (vec->setkey_error || vec->setauthsize_error)
1980 return 0;
Eric Biggersed968042019-01-31 23:51:47 -08001981
1982 /* The IV must be copied to a buffer, as the algorithm may modify it */
1983 if (WARN_ON(ivsize > MAX_IVLEN))
1984 return -EINVAL;
1985 if (vec->iv)
1986 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001987 else
Eric Biggersed968042019-01-31 23:51:47 -08001988 memset(iv, 0, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001989
Eric Biggersed968042019-01-31 23:51:47 -08001990 /* Build the src/dst scatterlists */
1991 input[0].iov_base = (void *)vec->assoc;
1992 input[0].iov_len = vec->alen;
1993 input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
1994 input[1].iov_len = enc ? vec->plen : vec->clen;
1995 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
1996 vec->alen + (enc ? vec->plen :
1997 vec->clen),
1998 vec->alen + (enc ? vec->clen :
1999 vec->plen),
2000 input, 2);
2001 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002002 pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2003 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08002004 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002005 }
2006
Eric Biggersed968042019-01-31 23:51:47 -08002007 /* Do the actual encryption or decryption */
2008 testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
2009 aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
2010 aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2011 enc ? vec->plen : vec->clen, iv);
2012 aead_request_set_ad(req, vec->alen);
Eric Biggers65707372019-03-12 22:12:52 -07002013 if (cfg->nosimd)
2014 crypto_disable_simd_for_test();
2015 err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
2016 if (cfg->nosimd)
2017 crypto_reenable_simd_for_test();
2018 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08002019
Eric Biggersa6e5ef92019-01-31 23:51:50 -08002020 /* Check that the algorithm didn't overwrite things it shouldn't have */
2021 if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
2022 req->assoclen != vec->alen ||
2023 req->iv != iv ||
2024 req->src != tsgls->src.sgl_ptr ||
2025 req->dst != tsgls->dst.sgl_ptr ||
2026 crypto_aead_reqtfm(req) != tfm ||
2027 req->base.complete != crypto_req_done ||
2028 req->base.flags != req_flags ||
2029 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07002030 pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2031 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08002032 if (req->cryptlen != (enc ? vec->plen : vec->clen))
2033 pr_err("alg: aead: changed 'req->cryptlen'\n");
2034 if (req->assoclen != vec->alen)
2035 pr_err("alg: aead: changed 'req->assoclen'\n");
2036 if (req->iv != iv)
2037 pr_err("alg: aead: changed 'req->iv'\n");
2038 if (req->src != tsgls->src.sgl_ptr)
2039 pr_err("alg: aead: changed 'req->src'\n");
2040 if (req->dst != tsgls->dst.sgl_ptr)
2041 pr_err("alg: aead: changed 'req->dst'\n");
2042 if (crypto_aead_reqtfm(req) != tfm)
2043 pr_err("alg: aead: changed 'req->base.tfm'\n");
2044 if (req->base.complete != crypto_req_done)
2045 pr_err("alg: aead: changed 'req->base.complete'\n");
2046 if (req->base.flags != req_flags)
2047 pr_err("alg: aead: changed 'req->base.flags'\n");
2048 if (req->base.data != &wait)
2049 pr_err("alg: aead: changed 'req->base.data'\n");
2050 return -EINVAL;
2051 }
2052 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002053 pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2054 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08002055 return -EINVAL;
2056 }
2057 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2058 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002059 pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2060 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08002061 return -EINVAL;
2062 }
2063
Eric Biggers49763fc2019-12-01 13:53:30 -08002064 /* Check for unexpected success or failure, or wrong error code */
2065 if ((err == 0 && vec->novrfy) ||
2066 (err != vec->crypt_error && !(err == -EBADMSG && vec->novrfy))) {
2067 char expected_error[32];
2068
2069 if (vec->novrfy &&
2070 vec->crypt_error != 0 && vec->crypt_error != -EBADMSG)
2071 sprintf(expected_error, "-EBADMSG or %d",
2072 vec->crypt_error);
2073 else if (vec->novrfy)
2074 sprintf(expected_error, "-EBADMSG");
2075 else
2076 sprintf(expected_error, "%d", vec->crypt_error);
2077 if (err) {
2078 pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%s, actual_error=%d, cfg=\"%s\"\n",
2079 driver, op, vec_name, expected_error, err,
2080 cfg->name);
2081 return err;
2082 }
2083 pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07002084 driver, op, vec_name, expected_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002085 return -EINVAL;
2086 }
Eric Biggers49763fc2019-12-01 13:53:30 -08002087 if (err) /* Expectedly failed. */
2088 return 0;
Eric Biggers5283a8e2019-04-11 21:57:36 -07002089
Eric Biggersed968042019-01-31 23:51:47 -08002090 /* Check for the correct output (ciphertext or plaintext) */
2091 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2092 enc ? vec->clen : vec->plen,
2093 vec->alen, enc || !cfg->inplace);
2094 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07002095 pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2096 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08002097 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002098 }
Eric Biggersed968042019-01-31 23:51:47 -08002099 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002100 pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2101 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08002102 return err;
Jussi Kivilinna58dcf542013-06-13 17:37:50 +03002103 }
2104
2105 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03002106}
2107
Eric Biggersed968042019-01-31 23:51:47 -08002108static int test_aead_vec(const char *driver, int enc,
2109 const struct aead_testvec *vec, unsigned int vec_num,
2110 struct aead_request *req,
2111 struct cipher_test_sglists *tsgls)
2112{
Eric Biggers951d1332019-04-11 21:57:37 -07002113 char vec_name[16];
Eric Biggersed968042019-01-31 23:51:47 -08002114 unsigned int i;
2115 int err;
2116
2117 if (enc && vec->novrfy)
2118 return 0;
2119
Eric Biggers951d1332019-04-11 21:57:37 -07002120 sprintf(vec_name, "%u", vec_num);
2121
Eric Biggersed968042019-01-31 23:51:47 -08002122 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002123 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002124 &default_cipher_testvec_configs[i],
2125 req, tsgls);
2126 if (err)
2127 return err;
2128 }
2129
2130#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2131 if (!noextratests) {
2132 struct testvec_config cfg;
2133 char cfgname[TESTVEC_CONFIG_NAMELEN];
2134
2135 for (i = 0; i < fuzz_iterations; i++) {
2136 generate_random_testvec_config(&cfg, cfgname,
2137 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002138 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002139 &cfg, req, tsgls);
2140 if (err)
2141 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002142 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002143 }
2144 }
2145#endif
2146 return 0;
2147}
2148
Eric Biggers40153b12019-04-11 21:57:41 -07002149#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
Eric Biggers2ea91502019-12-01 13:53:29 -08002150
2151struct aead_extra_tests_ctx {
2152 struct aead_request *req;
2153 struct crypto_aead *tfm;
2154 const char *driver;
2155 const struct alg_test_desc *test_desc;
2156 struct cipher_test_sglists *tsgls;
2157 unsigned int maxdatasize;
2158 unsigned int maxkeysize;
2159
2160 struct aead_testvec vec;
2161 char vec_name[64];
2162 char cfgname[TESTVEC_CONFIG_NAMELEN];
2163 struct testvec_config cfg;
2164};
2165
Eric Biggers40153b12019-04-11 21:57:41 -07002166/*
Eric Biggers49763fc2019-12-01 13:53:30 -08002167 * Make at least one random change to a (ciphertext, AAD) pair. "Ciphertext"
2168 * here means the full ciphertext including the authentication tag. The
2169 * authentication tag (and hence also the ciphertext) is assumed to be nonempty.
2170 */
Eric Biggers6f3a06d2020-03-04 14:44:03 -08002171static void mutate_aead_message(struct aead_testvec *vec, bool aad_iv,
2172 unsigned int ivsize)
Eric Biggers49763fc2019-12-01 13:53:30 -08002173{
Eric Biggers6f3a06d2020-03-04 14:44:03 -08002174 const unsigned int aad_tail_size = aad_iv ? ivsize : 0;
Eric Biggers49763fc2019-12-01 13:53:30 -08002175 const unsigned int authsize = vec->clen - vec->plen;
2176
2177 if (prandom_u32() % 2 == 0 && vec->alen > aad_tail_size) {
2178 /* Mutate the AAD */
2179 flip_random_bit((u8 *)vec->assoc, vec->alen - aad_tail_size);
2180 if (prandom_u32() % 2 == 0)
2181 return;
2182 }
2183 if (prandom_u32() % 2 == 0) {
2184 /* Mutate auth tag (assuming it's at the end of ciphertext) */
2185 flip_random_bit((u8 *)vec->ctext + vec->plen, authsize);
2186 } else {
2187 /* Mutate any part of the ciphertext */
2188 flip_random_bit((u8 *)vec->ctext, vec->clen);
2189 }
2190}
2191
2192/*
2193 * Minimum authentication tag size in bytes at which we assume that we can
2194 * reliably generate inauthentic messages, i.e. not generate an authentic
2195 * message by chance.
2196 */
2197#define MIN_COLLISION_FREE_AUTHSIZE 8
2198
2199static void generate_aead_message(struct aead_request *req,
2200 const struct aead_test_suite *suite,
2201 struct aead_testvec *vec,
2202 bool prefer_inauthentic)
2203{
2204 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2205 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2206 const unsigned int authsize = vec->clen - vec->plen;
2207 const bool inauthentic = (authsize >= MIN_COLLISION_FREE_AUTHSIZE) &&
2208 (prefer_inauthentic || prandom_u32() % 4 == 0);
2209
2210 /* Generate the AAD. */
2211 generate_random_bytes((u8 *)vec->assoc, vec->alen);
Eric Biggers6f3a06d2020-03-04 14:44:03 -08002212 if (suite->aad_iv && vec->alen >= ivsize)
2213 /* Avoid implementation-defined behavior. */
2214 memcpy((u8 *)vec->assoc + vec->alen - ivsize, vec->iv, ivsize);
Eric Biggers49763fc2019-12-01 13:53:30 -08002215
2216 if (inauthentic && prandom_u32() % 2 == 0) {
2217 /* Generate a random ciphertext. */
2218 generate_random_bytes((u8 *)vec->ctext, vec->clen);
2219 } else {
2220 int i = 0;
2221 struct scatterlist src[2], dst;
2222 u8 iv[MAX_IVLEN];
2223 DECLARE_CRYPTO_WAIT(wait);
2224
2225 /* Generate a random plaintext and encrypt it. */
2226 sg_init_table(src, 2);
2227 if (vec->alen)
2228 sg_set_buf(&src[i++], vec->assoc, vec->alen);
2229 if (vec->plen) {
2230 generate_random_bytes((u8 *)vec->ptext, vec->plen);
2231 sg_set_buf(&src[i++], vec->ptext, vec->plen);
2232 }
2233 sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
2234 memcpy(iv, vec->iv, ivsize);
2235 aead_request_set_callback(req, 0, crypto_req_done, &wait);
2236 aead_request_set_crypt(req, src, &dst, vec->plen, iv);
2237 aead_request_set_ad(req, vec->alen);
2238 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req),
2239 &wait);
2240 /* If encryption failed, we're done. */
2241 if (vec->crypt_error != 0)
2242 return;
2243 memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
2244 if (!inauthentic)
2245 return;
2246 /*
2247 * Mutate the authentic (ciphertext, AAD) pair to get an
2248 * inauthentic one.
2249 */
Eric Biggers6f3a06d2020-03-04 14:44:03 -08002250 mutate_aead_message(vec, suite->aad_iv, ivsize);
Eric Biggers49763fc2019-12-01 13:53:30 -08002251 }
2252 vec->novrfy = 1;
2253 if (suite->einval_allowed)
2254 vec->crypt_error = -EINVAL;
2255}
2256
2257/*
2258 * Generate an AEAD test vector 'vec' using the implementation specified by
2259 * 'req'. The buffers in 'vec' must already be allocated.
2260 *
2261 * If 'prefer_inauthentic' is true, then this function will generate inauthentic
2262 * test vectors (i.e. vectors with 'vec->novrfy=1') more often.
Eric Biggers40153b12019-04-11 21:57:41 -07002263 */
2264static void generate_random_aead_testvec(struct aead_request *req,
2265 struct aead_testvec *vec,
Eric Biggers49763fc2019-12-01 13:53:30 -08002266 const struct aead_test_suite *suite,
Eric Biggers40153b12019-04-11 21:57:41 -07002267 unsigned int maxkeysize,
2268 unsigned int maxdatasize,
Eric Biggers49763fc2019-12-01 13:53:30 -08002269 char *name, size_t max_namelen,
2270 bool prefer_inauthentic)
Eric Biggers40153b12019-04-11 21:57:41 -07002271{
2272 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2273 const unsigned int ivsize = crypto_aead_ivsize(tfm);
Eric Biggers2ea91502019-12-01 13:53:29 -08002274 const unsigned int maxauthsize = crypto_aead_maxauthsize(tfm);
Eric Biggers40153b12019-04-11 21:57:41 -07002275 unsigned int authsize;
2276 unsigned int total_len;
Eric Biggers40153b12019-04-11 21:57:41 -07002277
2278 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2279 vec->klen = maxkeysize;
2280 if (prandom_u32() % 4 == 0)
2281 vec->klen = prandom_u32() % (maxkeysize + 1);
2282 generate_random_bytes((u8 *)vec->key, vec->klen);
2283 vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
2284
2285 /* IV */
2286 generate_random_bytes((u8 *)vec->iv, ivsize);
2287
2288 /* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
2289 authsize = maxauthsize;
2290 if (prandom_u32() % 4 == 0)
2291 authsize = prandom_u32() % (maxauthsize + 1);
Eric Biggers49763fc2019-12-01 13:53:30 -08002292 if (prefer_inauthentic && authsize < MIN_COLLISION_FREE_AUTHSIZE)
2293 authsize = MIN_COLLISION_FREE_AUTHSIZE;
Eric Biggers40153b12019-04-11 21:57:41 -07002294 if (WARN_ON(authsize > maxdatasize))
2295 authsize = maxdatasize;
2296 maxdatasize -= authsize;
2297 vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
2298
Eric Biggers49763fc2019-12-01 13:53:30 -08002299 /* AAD, plaintext, and ciphertext lengths */
Eric Biggers40153b12019-04-11 21:57:41 -07002300 total_len = generate_random_length(maxdatasize);
2301 if (prandom_u32() % 4 == 0)
2302 vec->alen = 0;
2303 else
2304 vec->alen = generate_random_length(total_len);
2305 vec->plen = total_len - vec->alen;
Eric Biggers40153b12019-04-11 21:57:41 -07002306 vec->clen = vec->plen + authsize;
2307
2308 /*
Eric Biggers49763fc2019-12-01 13:53:30 -08002309 * Generate the AAD, plaintext, and ciphertext. Not applicable if the
2310 * key or the authentication tag size couldn't be set.
Eric Biggers40153b12019-04-11 21:57:41 -07002311 */
Eric Biggers49763fc2019-12-01 13:53:30 -08002312 vec->novrfy = 0;
Eric Biggerseb455db2019-12-01 13:53:26 -08002313 vec->crypt_error = 0;
Eric Biggers49763fc2019-12-01 13:53:30 -08002314 if (vec->setkey_error == 0 && vec->setauthsize_error == 0)
2315 generate_aead_message(req, suite, vec, prefer_inauthentic);
Eric Biggers40153b12019-04-11 21:57:41 -07002316 snprintf(name, max_namelen,
Eric Biggers49763fc2019-12-01 13:53:30 -08002317 "\"random: alen=%u plen=%u authsize=%u klen=%u novrfy=%d\"",
2318 vec->alen, vec->plen, authsize, vec->klen, vec->novrfy);
2319}
2320
2321static void try_to_generate_inauthentic_testvec(
2322 struct aead_extra_tests_ctx *ctx)
2323{
2324 int i;
2325
2326 for (i = 0; i < 10; i++) {
2327 generate_random_aead_testvec(ctx->req, &ctx->vec,
2328 &ctx->test_desc->suite.aead,
2329 ctx->maxkeysize, ctx->maxdatasize,
2330 ctx->vec_name,
2331 sizeof(ctx->vec_name), true);
2332 if (ctx->vec.novrfy)
2333 return;
2334 }
2335}
2336
2337/*
2338 * Generate inauthentic test vectors (i.e. ciphertext, AAD pairs that aren't the
2339 * result of an encryption with the key) and verify that decryption fails.
2340 */
2341static int test_aead_inauthentic_inputs(struct aead_extra_tests_ctx *ctx)
2342{
2343 unsigned int i;
2344 int err;
2345
2346 for (i = 0; i < fuzz_iterations * 8; i++) {
2347 /*
2348 * Since this part of the tests isn't comparing the
2349 * implementation to another, there's no point in testing any
2350 * test vectors other than inauthentic ones (vec.novrfy=1) here.
2351 *
2352 * If we're having trouble generating such a test vector, e.g.
2353 * if the algorithm keeps rejecting the generated keys, don't
2354 * retry forever; just continue on.
2355 */
2356 try_to_generate_inauthentic_testvec(ctx);
2357 if (ctx->vec.novrfy) {
2358 generate_random_testvec_config(&ctx->cfg, ctx->cfgname,
2359 sizeof(ctx->cfgname));
2360 err = test_aead_vec_cfg(ctx->driver, DECRYPT, &ctx->vec,
2361 ctx->vec_name, &ctx->cfg,
2362 ctx->req, ctx->tsgls);
2363 if (err)
2364 return err;
2365 }
2366 cond_resched();
2367 }
2368 return 0;
Eric Biggers40153b12019-04-11 21:57:41 -07002369}
2370
2371/*
Eric Biggers2ea91502019-12-01 13:53:29 -08002372 * Test the AEAD algorithm against the corresponding generic implementation, if
2373 * one is available.
Eric Biggers40153b12019-04-11 21:57:41 -07002374 */
Eric Biggers2ea91502019-12-01 13:53:29 -08002375static int test_aead_vs_generic_impl(struct aead_extra_tests_ctx *ctx)
Eric Biggers40153b12019-04-11 21:57:41 -07002376{
Eric Biggers2ea91502019-12-01 13:53:29 -08002377 struct crypto_aead *tfm = ctx->tfm;
Eric Biggers40153b12019-04-11 21:57:41 -07002378 const char *algname = crypto_aead_alg(tfm)->base.cra_name;
Eric Biggers2ea91502019-12-01 13:53:29 -08002379 const char *driver = ctx->driver;
2380 const char *generic_driver = ctx->test_desc->generic_driver;
Eric Biggers40153b12019-04-11 21:57:41 -07002381 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2382 struct crypto_aead *generic_tfm = NULL;
2383 struct aead_request *generic_req = NULL;
Eric Biggers40153b12019-04-11 21:57:41 -07002384 unsigned int i;
Eric Biggers40153b12019-04-11 21:57:41 -07002385 int err;
2386
Eric Biggers40153b12019-04-11 21:57:41 -07002387 if (!generic_driver) { /* Use default naming convention? */
2388 err = build_generic_driver_name(algname, _generic_driver);
2389 if (err)
2390 return err;
2391 generic_driver = _generic_driver;
2392 }
2393
2394 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2395 return 0;
2396
2397 generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
2398 if (IS_ERR(generic_tfm)) {
2399 err = PTR_ERR(generic_tfm);
2400 if (err == -ENOENT) {
2401 pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable\n",
2402 driver, generic_driver);
2403 return 0;
2404 }
2405 pr_err("alg: aead: error allocating %s (generic impl of %s): %d\n",
2406 generic_driver, algname, err);
2407 return err;
2408 }
2409
2410 generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
2411 if (!generic_req) {
2412 err = -ENOMEM;
2413 goto out;
2414 }
2415
2416 /* Check the algorithm properties for consistency. */
2417
Eric Biggers2ea91502019-12-01 13:53:29 -08002418 if (crypto_aead_maxauthsize(tfm) !=
2419 crypto_aead_maxauthsize(generic_tfm)) {
Eric Biggers40153b12019-04-11 21:57:41 -07002420 pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers2ea91502019-12-01 13:53:29 -08002421 driver, crypto_aead_maxauthsize(tfm),
2422 crypto_aead_maxauthsize(generic_tfm));
Eric Biggers40153b12019-04-11 21:57:41 -07002423 err = -EINVAL;
2424 goto out;
2425 }
2426
Eric Biggers2ea91502019-12-01 13:53:29 -08002427 if (crypto_aead_ivsize(tfm) != crypto_aead_ivsize(generic_tfm)) {
Eric Biggers40153b12019-04-11 21:57:41 -07002428 pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers2ea91502019-12-01 13:53:29 -08002429 driver, crypto_aead_ivsize(tfm),
2430 crypto_aead_ivsize(generic_tfm));
Eric Biggers40153b12019-04-11 21:57:41 -07002431 err = -EINVAL;
2432 goto out;
2433 }
2434
Eric Biggers2ea91502019-12-01 13:53:29 -08002435 if (crypto_aead_blocksize(tfm) != crypto_aead_blocksize(generic_tfm)) {
Eric Biggers40153b12019-04-11 21:57:41 -07002436 pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers2ea91502019-12-01 13:53:29 -08002437 driver, crypto_aead_blocksize(tfm),
2438 crypto_aead_blocksize(generic_tfm));
Eric Biggers40153b12019-04-11 21:57:41 -07002439 err = -EINVAL;
2440 goto out;
2441 }
2442
2443 /*
2444 * Now generate test vectors using the generic implementation, and test
2445 * the other implementation against them.
2446 */
Eric Biggers40153b12019-04-11 21:57:41 -07002447 for (i = 0; i < fuzz_iterations * 8; i++) {
Eric Biggers2ea91502019-12-01 13:53:29 -08002448 generate_random_aead_testvec(generic_req, &ctx->vec,
Eric Biggers49763fc2019-12-01 13:53:30 -08002449 &ctx->test_desc->suite.aead,
Eric Biggers2ea91502019-12-01 13:53:29 -08002450 ctx->maxkeysize, ctx->maxdatasize,
2451 ctx->vec_name,
Eric Biggers49763fc2019-12-01 13:53:30 -08002452 sizeof(ctx->vec_name), false);
Eric Biggers2ea91502019-12-01 13:53:29 -08002453 generate_random_testvec_config(&ctx->cfg, ctx->cfgname,
2454 sizeof(ctx->cfgname));
Eric Biggers49763fc2019-12-01 13:53:30 -08002455 if (!ctx->vec.novrfy) {
2456 err = test_aead_vec_cfg(driver, ENCRYPT, &ctx->vec,
2457 ctx->vec_name, &ctx->cfg,
2458 ctx->req, ctx->tsgls);
2459 if (err)
2460 goto out;
2461 }
2462 if (ctx->vec.crypt_error == 0 || ctx->vec.novrfy) {
Eric Biggers2ea91502019-12-01 13:53:29 -08002463 err = test_aead_vec_cfg(driver, DECRYPT, &ctx->vec,
2464 ctx->vec_name, &ctx->cfg,
2465 ctx->req, ctx->tsgls);
Eric Biggerseb455db2019-12-01 13:53:26 -08002466 if (err)
2467 goto out;
2468 }
Eric Biggers40153b12019-04-11 21:57:41 -07002469 cond_resched();
2470 }
2471 err = 0;
2472out:
Eric Biggers40153b12019-04-11 21:57:41 -07002473 crypto_free_aead(generic_tfm);
2474 aead_request_free(generic_req);
2475 return err;
2476}
Eric Biggers2ea91502019-12-01 13:53:29 -08002477
2478static int test_aead_extra(const char *driver,
2479 const struct alg_test_desc *test_desc,
2480 struct aead_request *req,
2481 struct cipher_test_sglists *tsgls)
2482{
2483 struct aead_extra_tests_ctx *ctx;
2484 unsigned int i;
2485 int err;
2486
2487 if (noextratests)
2488 return 0;
2489
2490 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2491 if (!ctx)
2492 return -ENOMEM;
2493 ctx->req = req;
2494 ctx->tfm = crypto_aead_reqtfm(req);
2495 ctx->driver = driver;
2496 ctx->test_desc = test_desc;
2497 ctx->tsgls = tsgls;
2498 ctx->maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2499 ctx->maxkeysize = 0;
2500 for (i = 0; i < test_desc->suite.aead.count; i++)
2501 ctx->maxkeysize = max_t(unsigned int, ctx->maxkeysize,
2502 test_desc->suite.aead.vecs[i].klen);
2503
2504 ctx->vec.key = kmalloc(ctx->maxkeysize, GFP_KERNEL);
2505 ctx->vec.iv = kmalloc(crypto_aead_ivsize(ctx->tfm), GFP_KERNEL);
2506 ctx->vec.assoc = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2507 ctx->vec.ptext = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2508 ctx->vec.ctext = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2509 if (!ctx->vec.key || !ctx->vec.iv || !ctx->vec.assoc ||
2510 !ctx->vec.ptext || !ctx->vec.ctext) {
2511 err = -ENOMEM;
2512 goto out;
2513 }
2514
Eric Biggers49763fc2019-12-01 13:53:30 -08002515 err = test_aead_inauthentic_inputs(ctx);
2516 if (err)
2517 goto out;
2518
Eric Biggers2ea91502019-12-01 13:53:29 -08002519 err = test_aead_vs_generic_impl(ctx);
2520out:
2521 kfree(ctx->vec.key);
2522 kfree(ctx->vec.iv);
2523 kfree(ctx->vec.assoc);
2524 kfree(ctx->vec.ptext);
2525 kfree(ctx->vec.ctext);
2526 kfree(ctx);
2527 return err;
2528}
Eric Biggers40153b12019-04-11 21:57:41 -07002529#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
Eric Biggers2ea91502019-12-01 13:53:29 -08002530static int test_aead_extra(const char *driver,
2531 const struct alg_test_desc *test_desc,
2532 struct aead_request *req,
2533 struct cipher_test_sglists *tsgls)
Eric Biggers40153b12019-04-11 21:57:41 -07002534{
2535 return 0;
2536}
2537#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2538
Eric Biggersed968042019-01-31 23:51:47 -08002539static int test_aead(const char *driver, int enc,
2540 const struct aead_test_suite *suite,
2541 struct aead_request *req,
2542 struct cipher_test_sglists *tsgls)
2543{
2544 unsigned int i;
2545 int err;
2546
2547 for (i = 0; i < suite->count; i++) {
2548 err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
2549 tsgls);
2550 if (err)
2551 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002552 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002553 }
2554 return 0;
2555}
2556
2557static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
2558 u32 type, u32 mask)
2559{
2560 const struct aead_test_suite *suite = &desc->suite.aead;
2561 struct crypto_aead *tfm;
2562 struct aead_request *req = NULL;
2563 struct cipher_test_sglists *tsgls = NULL;
2564 int err;
2565
2566 if (suite->count <= 0) {
2567 pr_err("alg: aead: empty test suite for %s\n", driver);
2568 return -EINVAL;
2569 }
2570
2571 tfm = crypto_alloc_aead(driver, type, mask);
2572 if (IS_ERR(tfm)) {
2573 pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
2574 driver, PTR_ERR(tfm));
2575 return PTR_ERR(tfm);
2576 }
2577
2578 req = aead_request_alloc(tfm, GFP_KERNEL);
2579 if (!req) {
2580 pr_err("alg: aead: failed to allocate request for %s\n",
2581 driver);
2582 err = -ENOMEM;
2583 goto out;
2584 }
2585
2586 tsgls = alloc_cipher_test_sglists();
2587 if (!tsgls) {
2588 pr_err("alg: aead: failed to allocate test buffers for %s\n",
2589 driver);
2590 err = -ENOMEM;
2591 goto out;
2592 }
2593
2594 err = test_aead(driver, ENCRYPT, suite, req, tsgls);
2595 if (err)
2596 goto out;
2597
2598 err = test_aead(driver, DECRYPT, suite, req, tsgls);
Eric Biggers40153b12019-04-11 21:57:41 -07002599 if (err)
2600 goto out;
2601
Eric Biggers2ea91502019-12-01 13:53:29 -08002602 err = test_aead_extra(driver, desc, req, tsgls);
Eric Biggersed968042019-01-31 23:51:47 -08002603out:
2604 free_cipher_test_sglists(tsgls);
2605 aead_request_free(req);
2606 crypto_free_aead(tfm);
2607 return err;
2608}
2609
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002610static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002611 const struct cipher_testvec *template,
2612 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002613{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002614 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
2615 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002616 char *q;
2617 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002618 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002619 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002620 char *xbuf[XBUFSIZE];
2621 int ret = -ENOMEM;
2622
2623 if (testmgr_alloc_buf(xbuf))
2624 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002625
2626 if (enc == ENCRYPT)
2627 e = "encryption";
2628 else
2629 e = "decryption";
2630
2631 j = 0;
2632 for (i = 0; i < tcount; i++) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002633
Stephan Mueller10faa8c2016-08-25 15:15:01 +02002634 if (fips_enabled && template[i].fips_skip)
2635 continue;
2636
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002637 input = enc ? template[i].ptext : template[i].ctext;
2638 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002639 j++;
2640
Herbert Xufd57f222009-05-29 16:05:42 +10002641 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002642 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10002643 goto out;
2644
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002645 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002646 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002647
2648 crypto_cipher_clear_flags(tfm, ~0);
2649 if (template[i].wk)
Eric Biggers231baec2019-01-18 22:48:00 -08002650 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002651
2652 ret = crypto_cipher_setkey(tfm, template[i].key,
2653 template[i].klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002654 if (ret) {
2655 if (ret == template[i].setkey_error)
2656 continue;
2657 pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x\n",
2658 algo, j, template[i].setkey_error, ret,
2659 crypto_cipher_get_flags(tfm));
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002660 goto out;
Eric Biggers5283a8e2019-04-11 21:57:36 -07002661 }
2662 if (template[i].setkey_error) {
2663 pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d\n",
2664 algo, j, template[i].setkey_error);
2665 ret = -EINVAL;
2666 goto out;
2667 }
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002668
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002669 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002670 k += crypto_cipher_blocksize(tfm)) {
2671 if (enc)
2672 crypto_cipher_encrypt_one(tfm, data + k,
2673 data + k);
2674 else
2675 crypto_cipher_decrypt_one(tfm, data + k,
2676 data + k);
2677 }
2678
2679 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002680 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002681 printk(KERN_ERR "alg: cipher: Test %d failed "
2682 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002683 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002684 ret = -EINVAL;
2685 goto out;
2686 }
2687 }
2688
2689 ret = 0;
2690
2691out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002692 testmgr_free_buf(xbuf);
2693out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002694 return ret;
2695}
2696
Eric Biggers4e7babba2019-01-31 23:51:46 -08002697static int test_skcipher_vec_cfg(const char *driver, int enc,
2698 const struct cipher_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07002699 const char *vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002700 const struct testvec_config *cfg,
2701 struct skcipher_request *req,
2702 struct cipher_test_sglists *tsgls)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002703{
Eric Biggers4e7babba2019-01-31 23:51:46 -08002704 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2705 const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
2706 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2707 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2708 const char *op = enc ? "encryption" : "decryption";
2709 DECLARE_CRYPTO_WAIT(wait);
2710 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2711 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2712 cfg->iv_offset +
2713 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2714 struct kvec input;
2715 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002716
Eric Biggers4e7babba2019-01-31 23:51:46 -08002717 /* Set the key */
2718 if (vec->wk)
2719 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002720 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002721 crypto_skcipher_clear_flags(tfm,
2722 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Eric Biggersfd8c37c2019-12-01 13:53:28 -08002723 err = do_setkey(crypto_skcipher_setkey, tfm, vec->key, vec->klen,
2724 cfg, alignmask);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002725 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07002726 if (err == vec->setkey_error)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002727 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002728 pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2729 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07002730 crypto_skcipher_get_flags(tfm));
Eric Biggers4e7babba2019-01-31 23:51:46 -08002731 return err;
2732 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07002733 if (vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002734 pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2735 driver, vec_name, vec->setkey_error);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002736 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002737 }
2738
Eric Biggers4e7babba2019-01-31 23:51:46 -08002739 /* The IV must be copied to a buffer, as the algorithm may modify it */
2740 if (ivsize) {
2741 if (WARN_ON(ivsize > MAX_IVLEN))
2742 return -EINVAL;
Eric Biggers8efd9722019-02-14 00:03:51 -08002743 if (vec->generates_iv && !enc)
2744 memcpy(iv, vec->iv_out, ivsize);
2745 else if (vec->iv)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002746 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08002747 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002748 memset(iv, 0, ivsize);
2749 } else {
2750 if (vec->generates_iv) {
Eric Biggers951d1332019-04-11 21:57:37 -07002751 pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!\n",
2752 driver, vec_name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002753 return -EINVAL;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03002754 }
Eric Biggers4e7babba2019-01-31 23:51:46 -08002755 iv = NULL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002756 }
2757
Eric Biggers4e7babba2019-01-31 23:51:46 -08002758 /* Build the src/dst scatterlists */
2759 input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2760 input.iov_len = vec->len;
2761 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2762 vec->len, vec->len, &input, 1);
2763 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002764 pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2765 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002766 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002767 }
2768
Eric Biggers4e7babba2019-01-31 23:51:46 -08002769 /* Do the actual encryption or decryption */
2770 testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
2771 skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
2772 skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2773 vec->len, iv);
Eric Biggers65707372019-03-12 22:12:52 -07002774 if (cfg->nosimd)
2775 crypto_disable_simd_for_test();
2776 err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
2777 if (cfg->nosimd)
2778 crypto_reenable_simd_for_test();
2779 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08002780
Eric Biggersfa353c92019-01-31 23:51:49 -08002781 /* Check that the algorithm didn't overwrite things it shouldn't have */
2782 if (req->cryptlen != vec->len ||
2783 req->iv != iv ||
2784 req->src != tsgls->src.sgl_ptr ||
2785 req->dst != tsgls->dst.sgl_ptr ||
2786 crypto_skcipher_reqtfm(req) != tfm ||
2787 req->base.complete != crypto_req_done ||
2788 req->base.flags != req_flags ||
2789 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07002790 pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2791 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002792 if (req->cryptlen != vec->len)
2793 pr_err("alg: skcipher: changed 'req->cryptlen'\n");
2794 if (req->iv != iv)
2795 pr_err("alg: skcipher: changed 'req->iv'\n");
2796 if (req->src != tsgls->src.sgl_ptr)
2797 pr_err("alg: skcipher: changed 'req->src'\n");
2798 if (req->dst != tsgls->dst.sgl_ptr)
2799 pr_err("alg: skcipher: changed 'req->dst'\n");
2800 if (crypto_skcipher_reqtfm(req) != tfm)
2801 pr_err("alg: skcipher: changed 'req->base.tfm'\n");
2802 if (req->base.complete != crypto_req_done)
2803 pr_err("alg: skcipher: changed 'req->base.complete'\n");
2804 if (req->base.flags != req_flags)
2805 pr_err("alg: skcipher: changed 'req->base.flags'\n");
2806 if (req->base.data != &wait)
2807 pr_err("alg: skcipher: changed 'req->base.data'\n");
2808 return -EINVAL;
2809 }
2810 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002811 pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2812 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002813 return -EINVAL;
2814 }
2815 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2816 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002817 pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2818 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002819 return -EINVAL;
2820 }
2821
Eric Biggers5283a8e2019-04-11 21:57:36 -07002822 /* Check for success or failure */
2823 if (err) {
2824 if (err == vec->crypt_error)
2825 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002826 pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
2827 driver, op, vec_name, vec->crypt_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002828 return err;
2829 }
2830 if (vec->crypt_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002831 pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
2832 driver, op, vec_name, vec->crypt_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002833 return -EINVAL;
2834 }
2835
Eric Biggers4e7babba2019-01-31 23:51:46 -08002836 /* Check for the correct output (ciphertext or plaintext) */
2837 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2838 vec->len, 0, true);
2839 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07002840 pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2841 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002842 return err;
2843 }
2844 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002845 pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2846 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002847 return err;
2848 }
Herbert Xuda7f0332008-07-31 17:08:25 +08002849
Eric Biggers4e7babba2019-01-31 23:51:46 -08002850 /* If applicable, check that the algorithm generated the correct IV */
Eric Biggers8efd9722019-02-14 00:03:51 -08002851 if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
Eric Biggers951d1332019-04-11 21:57:37 -07002852 pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"\n",
2853 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002854 hexdump(iv, ivsize);
2855 return -EINVAL;
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03002856 }
2857
2858 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002859}
2860
Eric Biggers4e7babba2019-01-31 23:51:46 -08002861static int test_skcipher_vec(const char *driver, int enc,
2862 const struct cipher_testvec *vec,
2863 unsigned int vec_num,
2864 struct skcipher_request *req,
2865 struct cipher_test_sglists *tsgls)
2866{
Eric Biggers951d1332019-04-11 21:57:37 -07002867 char vec_name[16];
Eric Biggers4e7babba2019-01-31 23:51:46 -08002868 unsigned int i;
2869 int err;
2870
2871 if (fips_enabled && vec->fips_skip)
2872 return 0;
2873
Eric Biggers951d1332019-04-11 21:57:37 -07002874 sprintf(vec_name, "%u", vec_num);
2875
Eric Biggers4e7babba2019-01-31 23:51:46 -08002876 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002877 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002878 &default_cipher_testvec_configs[i],
2879 req, tsgls);
2880 if (err)
2881 return err;
2882 }
2883
2884#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2885 if (!noextratests) {
2886 struct testvec_config cfg;
2887 char cfgname[TESTVEC_CONFIG_NAMELEN];
2888
2889 for (i = 0; i < fuzz_iterations; i++) {
2890 generate_random_testvec_config(&cfg, cfgname,
2891 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002892 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002893 &cfg, req, tsgls);
2894 if (err)
2895 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002896 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002897 }
2898 }
2899#endif
2900 return 0;
2901}
2902
Eric Biggersd435e102019-04-11 21:57:40 -07002903#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2904/*
2905 * Generate a symmetric cipher test vector from the given implementation.
2906 * Assumes the buffers in 'vec' were already allocated.
2907 */
2908static void generate_random_cipher_testvec(struct skcipher_request *req,
2909 struct cipher_testvec *vec,
2910 unsigned int maxdatasize,
2911 char *name, size_t max_namelen)
2912{
2913 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
Eric Biggers9ac0d132019-11-29 10:23:04 -08002914 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
Eric Biggersd435e102019-04-11 21:57:40 -07002915 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2916 struct scatterlist src, dst;
2917 u8 iv[MAX_IVLEN];
2918 DECLARE_CRYPTO_WAIT(wait);
2919
2920 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2921 vec->klen = maxkeysize;
2922 if (prandom_u32() % 4 == 0)
2923 vec->klen = prandom_u32() % (maxkeysize + 1);
2924 generate_random_bytes((u8 *)vec->key, vec->klen);
2925 vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2926
2927 /* IV */
2928 generate_random_bytes((u8 *)vec->iv, ivsize);
2929
2930 /* Plaintext */
2931 vec->len = generate_random_length(maxdatasize);
2932 generate_random_bytes((u8 *)vec->ptext, vec->len);
2933
2934 /* If the key couldn't be set, no need to continue to encrypt. */
2935 if (vec->setkey_error)
2936 goto done;
2937
2938 /* Ciphertext */
2939 sg_init_one(&src, vec->ptext, vec->len);
2940 sg_init_one(&dst, vec->ctext, vec->len);
2941 memcpy(iv, vec->iv, ivsize);
2942 skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
2943 skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
2944 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
Eric Biggerseb455db2019-12-01 13:53:26 -08002945 if (vec->crypt_error != 0) {
2946 /*
2947 * The only acceptable error here is for an invalid length, so
2948 * skcipher decryption should fail with the same error too.
2949 * We'll test for this. But to keep the API usage well-defined,
2950 * explicitly initialize the ciphertext buffer too.
2951 */
2952 memset((u8 *)vec->ctext, 0, vec->len);
2953 }
Eric Biggersd435e102019-04-11 21:57:40 -07002954done:
2955 snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
2956 vec->len, vec->klen);
2957}
2958
2959/*
2960 * Test the skcipher algorithm represented by @req against the corresponding
2961 * generic implementation, if one is available.
2962 */
2963static int test_skcipher_vs_generic_impl(const char *driver,
2964 const char *generic_driver,
2965 struct skcipher_request *req,
2966 struct cipher_test_sglists *tsgls)
2967{
2968 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
Eric Biggers9ac0d132019-11-29 10:23:04 -08002969 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
Eric Biggersd435e102019-04-11 21:57:40 -07002970 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2971 const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
2972 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2973 const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
2974 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2975 struct crypto_skcipher *generic_tfm = NULL;
2976 struct skcipher_request *generic_req = NULL;
2977 unsigned int i;
2978 struct cipher_testvec vec = { 0 };
2979 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002980 struct testvec_config *cfg;
Eric Biggersd435e102019-04-11 21:57:40 -07002981 char cfgname[TESTVEC_CONFIG_NAMELEN];
2982 int err;
2983
2984 if (noextratests)
2985 return 0;
2986
2987 /* Keywrap isn't supported here yet as it handles its IV differently. */
2988 if (strncmp(algname, "kw(", 3) == 0)
2989 return 0;
2990
2991 if (!generic_driver) { /* Use default naming convention? */
2992 err = build_generic_driver_name(algname, _generic_driver);
2993 if (err)
2994 return err;
2995 generic_driver = _generic_driver;
2996 }
2997
2998 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2999 return 0;
3000
3001 generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
3002 if (IS_ERR(generic_tfm)) {
3003 err = PTR_ERR(generic_tfm);
3004 if (err == -ENOENT) {
3005 pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable\n",
3006 driver, generic_driver);
3007 return 0;
3008 }
3009 pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d\n",
3010 generic_driver, algname, err);
3011 return err;
3012 }
3013
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02003014 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
3015 if (!cfg) {
3016 err = -ENOMEM;
3017 goto out;
3018 }
3019
Eric Biggersd435e102019-04-11 21:57:40 -07003020 generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
3021 if (!generic_req) {
3022 err = -ENOMEM;
3023 goto out;
3024 }
3025
3026 /* Check the algorithm properties for consistency. */
3027
Eric Biggersfd60f722019-12-01 13:53:27 -08003028 if (crypto_skcipher_min_keysize(tfm) !=
3029 crypto_skcipher_min_keysize(generic_tfm)) {
3030 pr_err("alg: skcipher: min keysize for %s (%u) doesn't match generic impl (%u)\n",
3031 driver, crypto_skcipher_min_keysize(tfm),
3032 crypto_skcipher_min_keysize(generic_tfm));
3033 err = -EINVAL;
3034 goto out;
3035 }
3036
Eric Biggers9ac0d132019-11-29 10:23:04 -08003037 if (maxkeysize != crypto_skcipher_max_keysize(generic_tfm)) {
Eric Biggersd435e102019-04-11 21:57:40 -07003038 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers9ac0d132019-11-29 10:23:04 -08003039 driver, maxkeysize,
3040 crypto_skcipher_max_keysize(generic_tfm));
Eric Biggersd435e102019-04-11 21:57:40 -07003041 err = -EINVAL;
3042 goto out;
3043 }
3044
3045 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
3046 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
3047 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
3048 err = -EINVAL;
3049 goto out;
3050 }
3051
3052 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
3053 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
3054 driver, blocksize,
3055 crypto_skcipher_blocksize(generic_tfm));
3056 err = -EINVAL;
3057 goto out;
3058 }
3059
3060 /*
3061 * Now generate test vectors using the generic implementation, and test
3062 * the other implementation against them.
3063 */
3064
Eric Biggers9ac0d132019-11-29 10:23:04 -08003065 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
Eric Biggersd435e102019-04-11 21:57:40 -07003066 vec.iv = kmalloc(ivsize, GFP_KERNEL);
3067 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
3068 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
3069 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
3070 err = -ENOMEM;
3071 goto out;
3072 }
3073
3074 for (i = 0; i < fuzz_iterations * 8; i++) {
3075 generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
3076 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02003077 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggersd435e102019-04-11 21:57:40 -07003078
3079 err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02003080 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07003081 if (err)
3082 goto out;
3083 err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02003084 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07003085 if (err)
3086 goto out;
3087 cond_resched();
3088 }
3089 err = 0;
3090out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02003091 kfree(cfg);
Eric Biggersd435e102019-04-11 21:57:40 -07003092 kfree(vec.key);
3093 kfree(vec.iv);
3094 kfree(vec.ptext);
3095 kfree(vec.ctext);
3096 crypto_free_skcipher(generic_tfm);
3097 skcipher_request_free(generic_req);
3098 return err;
3099}
3100#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
3101static int test_skcipher_vs_generic_impl(const char *driver,
3102 const char *generic_driver,
3103 struct skcipher_request *req,
3104 struct cipher_test_sglists *tsgls)
3105{
3106 return 0;
3107}
3108#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
3109
Eric Biggers4e7babba2019-01-31 23:51:46 -08003110static int test_skcipher(const char *driver, int enc,
3111 const struct cipher_test_suite *suite,
3112 struct skcipher_request *req,
3113 struct cipher_test_sglists *tsgls)
3114{
3115 unsigned int i;
3116 int err;
3117
3118 for (i = 0; i < suite->count; i++) {
3119 err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
3120 tsgls);
3121 if (err)
3122 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07003123 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08003124 }
3125 return 0;
3126}
3127
3128static int alg_test_skcipher(const struct alg_test_desc *desc,
3129 const char *driver, u32 type, u32 mask)
3130{
3131 const struct cipher_test_suite *suite = &desc->suite.cipher;
3132 struct crypto_skcipher *tfm;
3133 struct skcipher_request *req = NULL;
3134 struct cipher_test_sglists *tsgls = NULL;
3135 int err;
3136
3137 if (suite->count <= 0) {
3138 pr_err("alg: skcipher: empty test suite for %s\n", driver);
3139 return -EINVAL;
3140 }
3141
3142 tfm = crypto_alloc_skcipher(driver, type, mask);
3143 if (IS_ERR(tfm)) {
3144 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
3145 driver, PTR_ERR(tfm));
3146 return PTR_ERR(tfm);
3147 }
3148
3149 req = skcipher_request_alloc(tfm, GFP_KERNEL);
3150 if (!req) {
3151 pr_err("alg: skcipher: failed to allocate request for %s\n",
3152 driver);
3153 err = -ENOMEM;
3154 goto out;
3155 }
3156
3157 tsgls = alloc_cipher_test_sglists();
3158 if (!tsgls) {
3159 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
3160 driver);
3161 err = -ENOMEM;
3162 goto out;
3163 }
3164
3165 err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
3166 if (err)
3167 goto out;
3168
3169 err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07003170 if (err)
3171 goto out;
3172
3173 err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
3174 tsgls);
Eric Biggers4e7babba2019-01-31 23:51:46 -08003175out:
3176 free_cipher_test_sglists(tsgls);
3177 skcipher_request_free(req);
3178 crypto_free_skcipher(tfm);
3179 return err;
3180}
3181
Eric Biggersb13b1e02017-02-24 15:46:59 -08003182static int test_comp(struct crypto_comp *tfm,
3183 const struct comp_testvec *ctemplate,
3184 const struct comp_testvec *dtemplate,
3185 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08003186{
3187 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02003188 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08003189 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003190 int ret;
3191
Mahipal Challa33607382018-04-11 20:28:32 +02003192 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3193 if (!output)
3194 return -ENOMEM;
3195
3196 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3197 if (!decomp_output) {
3198 kfree(output);
3199 return -ENOMEM;
3200 }
3201
Herbert Xuda7f0332008-07-31 17:08:25 +08003202 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08003203 int ilen;
3204 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08003205
Michael Schupikov22a81182018-10-07 13:58:10 +02003206 memset(output, 0, COMP_BUF_SIZE);
3207 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08003208
3209 ilen = ctemplate[i].inlen;
3210 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02003211 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003212 if (ret) {
3213 printk(KERN_ERR "alg: comp: compression failed "
3214 "on test %d for %s: ret=%d\n", i + 1, algo,
3215 -ret);
3216 goto out;
3217 }
3218
Mahipal Challa33607382018-04-11 20:28:32 +02003219 ilen = dlen;
3220 dlen = COMP_BUF_SIZE;
3221 ret = crypto_comp_decompress(tfm, output,
3222 ilen, decomp_output, &dlen);
3223 if (ret) {
3224 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
3225 i + 1, algo, -ret);
3226 goto out;
3227 }
3228
3229 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08003230 printk(KERN_ERR "alg: comp: Compression test %d "
3231 "failed for %s: output len = %d\n", i + 1, algo,
3232 dlen);
3233 ret = -EINVAL;
3234 goto out;
3235 }
3236
Mahipal Challa33607382018-04-11 20:28:32 +02003237 if (memcmp(decomp_output, ctemplate[i].input,
3238 ctemplate[i].inlen)) {
3239 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
3240 i + 1, algo);
3241 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003242 ret = -EINVAL;
3243 goto out;
3244 }
3245 }
3246
3247 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08003248 int ilen;
3249 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08003250
Michael Schupikov22a81182018-10-07 13:58:10 +02003251 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08003252
3253 ilen = dtemplate[i].inlen;
3254 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02003255 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003256 if (ret) {
3257 printk(KERN_ERR "alg: comp: decompression failed "
3258 "on test %d for %s: ret=%d\n", i + 1, algo,
3259 -ret);
3260 goto out;
3261 }
3262
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08003263 if (dlen != dtemplate[i].outlen) {
3264 printk(KERN_ERR "alg: comp: Decompression test %d "
3265 "failed for %s: output len = %d\n", i + 1, algo,
3266 dlen);
3267 ret = -EINVAL;
3268 goto out;
3269 }
3270
Mahipal Challa33607382018-04-11 20:28:32 +02003271 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08003272 printk(KERN_ERR "alg: comp: Decompression test %d "
3273 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02003274 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003275 ret = -EINVAL;
3276 goto out;
3277 }
3278 }
3279
3280 ret = 0;
3281
3282out:
Mahipal Challa33607382018-04-11 20:28:32 +02003283 kfree(decomp_output);
3284 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08003285 return ret;
3286}
3287
Eric Biggersb13b1e02017-02-24 15:46:59 -08003288static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02003289 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003290 const struct comp_testvec *dtemplate,
3291 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003292{
3293 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
3294 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003295 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003296 int ret;
3297 struct scatterlist src, dst;
3298 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003299 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003300
Eric Biggerseb095592016-11-23 10:24:35 -08003301 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3302 if (!output)
3303 return -ENOMEM;
3304
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003305 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3306 if (!decomp_out) {
3307 kfree(output);
3308 return -ENOMEM;
3309 }
3310
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003311 for (i = 0; i < ctcount; i++) {
3312 unsigned int dlen = COMP_BUF_SIZE;
3313 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003314 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003315
Eric Biggersd2110222016-12-30 14:12:00 -06003316 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003317 if (!input_vec) {
3318 ret = -ENOMEM;
3319 goto out;
3320 }
3321
Eric Biggerseb095592016-11-23 10:24:35 -08003322 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003323 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003324 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003325 sg_init_one(&dst, output, dlen);
3326
3327 req = acomp_request_alloc(tfm);
3328 if (!req) {
3329 pr_err("alg: acomp: request alloc failed for %s\n",
3330 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003331 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003332 ret = -ENOMEM;
3333 goto out;
3334 }
3335
3336 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3337 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003338 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003339
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003340 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003341 if (ret) {
3342 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3343 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003344 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003345 acomp_request_free(req);
3346 goto out;
3347 }
3348
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003349 ilen = req->dlen;
3350 dlen = COMP_BUF_SIZE;
3351 sg_init_one(&src, output, ilen);
3352 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003353 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003354 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3355
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003356 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003357 if (ret) {
3358 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3359 i + 1, algo, -ret);
3360 kfree(input_vec);
3361 acomp_request_free(req);
3362 goto out;
3363 }
3364
3365 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003366 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3367 i + 1, algo, req->dlen);
3368 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003369 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003370 acomp_request_free(req);
3371 goto out;
3372 }
3373
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003374 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003375 pr_err("alg: acomp: Compression test %d failed for %s\n",
3376 i + 1, algo);
3377 hexdump(output, req->dlen);
3378 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003379 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003380 acomp_request_free(req);
3381 goto out;
3382 }
3383
Laura Abbott02608e02016-12-21 12:32:54 -08003384 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003385 acomp_request_free(req);
3386 }
3387
3388 for (i = 0; i < dtcount; i++) {
3389 unsigned int dlen = COMP_BUF_SIZE;
3390 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003391 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003392
Eric Biggersd2110222016-12-30 14:12:00 -06003393 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003394 if (!input_vec) {
3395 ret = -ENOMEM;
3396 goto out;
3397 }
3398
Eric Biggerseb095592016-11-23 10:24:35 -08003399 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003400 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003401 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003402 sg_init_one(&dst, output, dlen);
3403
3404 req = acomp_request_alloc(tfm);
3405 if (!req) {
3406 pr_err("alg: acomp: request alloc failed for %s\n",
3407 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003408 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003409 ret = -ENOMEM;
3410 goto out;
3411 }
3412
3413 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3414 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003415 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003416
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003417 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003418 if (ret) {
3419 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3420 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003421 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003422 acomp_request_free(req);
3423 goto out;
3424 }
3425
3426 if (req->dlen != dtemplate[i].outlen) {
3427 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3428 i + 1, algo, req->dlen);
3429 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003430 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003431 acomp_request_free(req);
3432 goto out;
3433 }
3434
3435 if (memcmp(output, dtemplate[i].output, req->dlen)) {
3436 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3437 i + 1, algo);
3438 hexdump(output, req->dlen);
3439 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003440 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003441 acomp_request_free(req);
3442 goto out;
3443 }
3444
Laura Abbott02608e02016-12-21 12:32:54 -08003445 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003446 acomp_request_free(req);
3447 }
3448
3449 ret = 0;
3450
3451out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003452 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08003453 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003454 return ret;
3455}
3456
Eric Biggersb13b1e02017-02-24 15:46:59 -08003457static int test_cprng(struct crypto_rng *tfm,
3458 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003459 unsigned int tcount)
3460{
3461 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08003462 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003463 u8 *seed;
3464 char result[32];
3465
3466 seedsize = crypto_rng_seedsize(tfm);
3467
3468 seed = kmalloc(seedsize, GFP_KERNEL);
3469 if (!seed) {
3470 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3471 "for %s\n", algo);
3472 return -ENOMEM;
3473 }
3474
3475 for (i = 0; i < tcount; i++) {
3476 memset(result, 0, 32);
3477
3478 memcpy(seed, template[i].v, template[i].vlen);
3479 memcpy(seed + template[i].vlen, template[i].key,
3480 template[i].klen);
3481 memcpy(seed + template[i].vlen + template[i].klen,
3482 template[i].dt, template[i].dtlen);
3483
3484 err = crypto_rng_reset(tfm, seed, seedsize);
3485 if (err) {
3486 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3487 "for %s\n", algo);
3488 goto out;
3489 }
3490
3491 for (j = 0; j < template[i].loops; j++) {
3492 err = crypto_rng_get_bytes(tfm, result,
3493 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01003494 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003495 printk(KERN_ERR "alg: cprng: Failed to obtain "
3496 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01003497 "%s (requested %d)\n", algo,
3498 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003499 goto out;
3500 }
3501 }
3502
3503 err = memcmp(result, template[i].result,
3504 template[i].rlen);
3505 if (err) {
3506 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3507 i, algo);
3508 hexdump(result, template[i].rlen);
3509 err = -EINVAL;
3510 goto out;
3511 }
3512 }
3513
3514out:
3515 kfree(seed);
3516 return err;
3517}
3518
Herbert Xuda7f0332008-07-31 17:08:25 +08003519static int alg_test_cipher(const struct alg_test_desc *desc,
3520 const char *driver, u32 type, u32 mask)
3521{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003522 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003523 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003524 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08003525
Herbert Xueed93e02016-11-22 20:08:31 +08003526 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08003527 if (IS_ERR(tfm)) {
3528 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3529 "%s: %ld\n", driver, PTR_ERR(tfm));
3530 return PTR_ERR(tfm);
3531 }
3532
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003533 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3534 if (!err)
3535 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08003536
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003537 crypto_free_cipher(tfm);
3538 return err;
3539}
3540
Herbert Xuda7f0332008-07-31 17:08:25 +08003541static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3542 u32 type, u32 mask)
3543{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003544 struct crypto_comp *comp;
3545 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08003546 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003547 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08003548
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003549 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3550 acomp = crypto_alloc_acomp(driver, type, mask);
3551 if (IS_ERR(acomp)) {
3552 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3553 driver, PTR_ERR(acomp));
3554 return PTR_ERR(acomp);
3555 }
3556 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3557 desc->suite.comp.decomp.vecs,
3558 desc->suite.comp.comp.count,
3559 desc->suite.comp.decomp.count);
3560 crypto_free_acomp(acomp);
3561 } else {
3562 comp = crypto_alloc_comp(driver, type, mask);
3563 if (IS_ERR(comp)) {
3564 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3565 driver, PTR_ERR(comp));
3566 return PTR_ERR(comp);
3567 }
3568
3569 err = test_comp(comp, desc->suite.comp.comp.vecs,
3570 desc->suite.comp.decomp.vecs,
3571 desc->suite.comp.comp.count,
3572 desc->suite.comp.decomp.count);
3573
3574 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08003575 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003576 return err;
3577}
3578
Herbert Xu8e3ee852008-11-07 14:58:52 +08003579static int alg_test_crc32c(const struct alg_test_desc *desc,
3580 const char *driver, u32 type, u32 mask)
3581{
3582 struct crypto_shash *tfm;
Eric Biggerscb9dde82019-01-10 12:17:55 -08003583 __le32 val;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003584 int err;
3585
3586 err = alg_test_hash(desc, driver, type, mask);
3587 if (err)
Eric Biggerseb5e6732019-01-23 20:57:35 -08003588 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003589
Herbert Xueed93e02016-11-22 20:08:31 +08003590 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003591 if (IS_ERR(tfm)) {
Eric Biggerseb5e6732019-01-23 20:57:35 -08003592 if (PTR_ERR(tfm) == -ENOENT) {
3593 /*
3594 * This crc32c implementation is only available through
3595 * ahash API, not the shash API, so the remaining part
3596 * of the test is not applicable to it.
3597 */
3598 return 0;
3599 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08003600 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3601 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggerseb5e6732019-01-23 20:57:35 -08003602 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003603 }
3604
3605 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003606 SHASH_DESC_ON_STACK(shash, tfm);
3607 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003608
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003609 shash->tfm = tfm;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003610
Eric Biggerscb9dde82019-01-10 12:17:55 -08003611 *ctx = 420553207;
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003612 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003613 if (err) {
3614 printk(KERN_ERR "alg: crc32c: Operation failed for "
3615 "%s: %d\n", driver, err);
3616 break;
3617 }
3618
Eric Biggerscb9dde82019-01-10 12:17:55 -08003619 if (val != cpu_to_le32(~420553207)) {
3620 pr_err("alg: crc32c: Test failed for %s: %u\n",
3621 driver, le32_to_cpu(val));
Herbert Xu8e3ee852008-11-07 14:58:52 +08003622 err = -EINVAL;
3623 }
3624 } while (0);
3625
3626 crypto_free_shash(tfm);
3627
Herbert Xu8e3ee852008-11-07 14:58:52 +08003628 return err;
3629}
3630
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003631static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3632 u32 type, u32 mask)
3633{
3634 struct crypto_rng *rng;
3635 int err;
3636
Herbert Xueed93e02016-11-22 20:08:31 +08003637 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003638 if (IS_ERR(rng)) {
3639 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3640 "%ld\n", driver, PTR_ERR(rng));
3641 return PTR_ERR(rng);
3642 }
3643
3644 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3645
3646 crypto_free_rng(rng);
3647
3648 return err;
3649}
3650
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003651
Eric Biggersb13b1e02017-02-24 15:46:59 -08003652static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003653 const char *driver, u32 type, u32 mask)
3654{
3655 int ret = -EAGAIN;
3656 struct crypto_rng *drng;
3657 struct drbg_test_data test_data;
3658 struct drbg_string addtl, pers, testentropy;
3659 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3660
3661 if (!buf)
3662 return -ENOMEM;
3663
Herbert Xueed93e02016-11-22 20:08:31 +08003664 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003665 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003666 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003667 "%s\n", driver);
3668 kzfree(buf);
3669 return -ENOMEM;
3670 }
3671
3672 test_data.testentropy = &testentropy;
3673 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3674 drbg_string_fill(&pers, test->pers, test->perslen);
3675 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3676 if (ret) {
3677 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3678 goto outbuf;
3679 }
3680
3681 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3682 if (pr) {
3683 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3684 ret = crypto_drbg_get_bytes_addtl_test(drng,
3685 buf, test->expectedlen, &addtl, &test_data);
3686 } else {
3687 ret = crypto_drbg_get_bytes_addtl(drng,
3688 buf, test->expectedlen, &addtl);
3689 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003690 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003691 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003692 "driver %s\n", driver);
3693 goto outbuf;
3694 }
3695
3696 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3697 if (pr) {
3698 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3699 ret = crypto_drbg_get_bytes_addtl_test(drng,
3700 buf, test->expectedlen, &addtl, &test_data);
3701 } else {
3702 ret = crypto_drbg_get_bytes_addtl(drng,
3703 buf, test->expectedlen, &addtl);
3704 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003705 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003706 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003707 "driver %s\n", driver);
3708 goto outbuf;
3709 }
3710
3711 ret = memcmp(test->expected, buf, test->expectedlen);
3712
3713outbuf:
3714 crypto_free_rng(drng);
3715 kzfree(buf);
3716 return ret;
3717}
3718
3719
3720static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3721 u32 type, u32 mask)
3722{
3723 int err = 0;
3724 int pr = 0;
3725 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08003726 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003727 unsigned int tcount = desc->suite.drbg.count;
3728
3729 if (0 == memcmp(driver, "drbg_pr_", 8))
3730 pr = 1;
3731
3732 for (i = 0; i < tcount; i++) {
3733 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3734 if (err) {
3735 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3736 i, driver);
3737 err = -EINVAL;
3738 break;
3739 }
3740 }
3741 return err;
3742
3743}
3744
Eric Biggersb13b1e02017-02-24 15:46:59 -08003745static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003746 const char *alg)
3747{
3748 struct kpp_request *req;
3749 void *input_buf = NULL;
3750 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003751 void *a_public = NULL;
3752 void *a_ss = NULL;
3753 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003754 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003755 unsigned int out_len_max;
3756 int err = -ENOMEM;
3757 struct scatterlist src, dst;
3758
3759 req = kpp_request_alloc(tfm, GFP_KERNEL);
3760 if (!req)
3761 return err;
3762
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003763 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003764
3765 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3766 if (err < 0)
3767 goto free_req;
3768
3769 out_len_max = crypto_kpp_maxsize(tfm);
3770 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3771 if (!output_buf) {
3772 err = -ENOMEM;
3773 goto free_req;
3774 }
3775
3776 /* Use appropriate parameter as base */
3777 kpp_request_set_input(req, NULL, 0);
3778 sg_init_one(&dst, output_buf, out_len_max);
3779 kpp_request_set_output(req, &dst, out_len_max);
3780 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003781 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003782
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003783 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003784 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003785 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003786 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003787 alg, err);
3788 goto free_output;
3789 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003790
3791 if (vec->genkey) {
3792 /* Save party A's public key */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003793 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003794 if (!a_public) {
3795 err = -ENOMEM;
3796 goto free_output;
3797 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003798 } else {
3799 /* Verify calculated public key */
3800 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3801 vec->expected_a_public_size)) {
3802 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3803 alg);
3804 err = -EINVAL;
3805 goto free_output;
3806 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003807 }
3808
3809 /* Calculate shared secret key by using counter part (b) public key. */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003810 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003811 if (!input_buf) {
3812 err = -ENOMEM;
3813 goto free_output;
3814 }
3815
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003816 sg_init_one(&src, input_buf, vec->b_public_size);
3817 sg_init_one(&dst, output_buf, out_len_max);
3818 kpp_request_set_input(req, &src, vec->b_public_size);
3819 kpp_request_set_output(req, &dst, out_len_max);
3820 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003821 crypto_req_done, &wait);
3822 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003823 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003824 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003825 alg, err);
3826 goto free_all;
3827 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003828
3829 if (vec->genkey) {
3830 /* Save the shared secret obtained by party A */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003831 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003832 if (!a_ss) {
3833 err = -ENOMEM;
3834 goto free_all;
3835 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003836
3837 /*
3838 * Calculate party B's shared secret by using party A's
3839 * public key.
3840 */
3841 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3842 vec->b_secret_size);
3843 if (err < 0)
3844 goto free_all;
3845
3846 sg_init_one(&src, a_public, vec->expected_a_public_size);
3847 sg_init_one(&dst, output_buf, out_len_max);
3848 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3849 kpp_request_set_output(req, &dst, out_len_max);
3850 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003851 crypto_req_done, &wait);
3852 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3853 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003854 if (err) {
3855 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3856 alg, err);
3857 goto free_all;
3858 }
3859
3860 shared_secret = a_ss;
3861 } else {
3862 shared_secret = (void *)vec->expected_ss;
3863 }
3864
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003865 /*
3866 * verify shared secret from which the user will derive
3867 * secret key by executing whatever hash it has chosen
3868 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003869 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003870 vec->expected_ss_size)) {
3871 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
3872 alg);
3873 err = -EINVAL;
3874 }
3875
3876free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003877 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003878 kfree(input_buf);
3879free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003880 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003881 kfree(output_buf);
3882free_req:
3883 kpp_request_free(req);
3884 return err;
3885}
3886
3887static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003888 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003889{
3890 int ret, i;
3891
3892 for (i = 0; i < tcount; i++) {
3893 ret = do_test_kpp(tfm, vecs++, alg);
3894 if (ret) {
3895 pr_err("alg: %s: test failed on vector %d, err=%d\n",
3896 alg, i + 1, ret);
3897 return ret;
3898 }
3899 }
3900 return 0;
3901}
3902
3903static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
3904 u32 type, u32 mask)
3905{
3906 struct crypto_kpp *tfm;
3907 int err = 0;
3908
Herbert Xueed93e02016-11-22 20:08:31 +08003909 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003910 if (IS_ERR(tfm)) {
3911 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
3912 driver, PTR_ERR(tfm));
3913 return PTR_ERR(tfm);
3914 }
3915 if (desc->suite.kpp.vecs)
3916 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
3917 desc->suite.kpp.count);
3918
3919 crypto_free_kpp(tfm);
3920 return err;
3921}
3922
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003923static u8 *test_pack_u32(u8 *dst, u32 val)
3924{
3925 memcpy(dst, &val, sizeof(val));
3926 return dst + sizeof(val);
3927}
3928
Herbert Xu50d2b6432016-06-29 19:32:20 +08003929static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003930 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003931{
Herbert Xudf27b262016-05-05 16:42:49 +08003932 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07003933 struct akcipher_request *req;
3934 void *outbuf_enc = NULL;
3935 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003936 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003937 unsigned int out_len_max, out_len = 0;
3938 int err = -ENOMEM;
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003939 struct scatterlist src, dst, src_tab[3];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003940 const char *m, *c;
3941 unsigned int m_size, c_size;
3942 const char *op;
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003943 u8 *key, *ptr;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003944
Herbert Xudf27b262016-05-05 16:42:49 +08003945 if (testmgr_alloc_buf(xbuf))
3946 return err;
3947
Tadeusz Struk946cc462015-06-16 10:31:06 -07003948 req = akcipher_request_alloc(tfm, GFP_KERNEL);
3949 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08003950 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003951
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003952 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003953
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003954 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
3955 GFP_KERNEL);
3956 if (!key)
3957 goto free_xbuf;
3958 memcpy(key, vecs->key, vecs->key_len);
3959 ptr = key + vecs->key_len;
3960 ptr = test_pack_u32(ptr, vecs->algo);
3961 ptr = test_pack_u32(ptr, vecs->param_len);
3962 memcpy(ptr, vecs->params, vecs->param_len);
3963
Tadeusz Struk22287b02015-10-08 09:26:55 -07003964 if (vecs->public_key_vec)
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003965 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003966 else
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003967 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003968 if (err)
3969 goto free_req;
3970
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003971 /*
3972 * First run test which do not require a private key, such as
3973 * encrypt or verify.
3974 */
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003975 err = -ENOMEM;
3976 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003977 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3978 if (!outbuf_enc)
3979 goto free_req;
3980
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003981 if (!vecs->siggen_sigver_test) {
3982 m = vecs->m;
3983 m_size = vecs->m_size;
3984 c = vecs->c;
3985 c_size = vecs->c_size;
3986 op = "encrypt";
3987 } else {
3988 /* Swap args so we could keep plaintext (digest)
3989 * in vecs->m, and cooked signature in vecs->c.
3990 */
3991 m = vecs->c; /* signature */
3992 m_size = vecs->c_size;
3993 c = vecs->m; /* digest */
3994 c_size = vecs->m_size;
3995 op = "verify";
3996 }
Herbert Xudf27b262016-05-05 16:42:49 +08003997
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003998 if (WARN_ON(m_size > PAGE_SIZE))
3999 goto free_all;
4000 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08004001
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03004002 sg_init_table(src_tab, 3);
Herbert Xudf27b262016-05-05 16:42:49 +08004003 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004004 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03004005 if (vecs->siggen_sigver_test) {
4006 if (WARN_ON(c_size > PAGE_SIZE))
4007 goto free_all;
4008 memcpy(xbuf[1], c, c_size);
4009 sg_set_buf(&src_tab[2], xbuf[1], c_size);
4010 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
4011 } else {
4012 sg_init_one(&dst, outbuf_enc, out_len_max);
4013 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
4014 out_len_max);
4015 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07004016 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004017 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004018
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004019 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004020 /* Run asymmetric signature verification */
4021 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004022 /* Run asymmetric encrypt */
4023 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004024 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004025 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004026 goto free_all;
4027 }
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03004028 if (!vecs->siggen_sigver_test) {
4029 if (req->dst_len != c_size) {
4030 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
4031 op);
4032 err = -EINVAL;
4033 goto free_all;
4034 }
4035 /* verify that encrypted message is equal to expected */
4036 if (memcmp(c, outbuf_enc, c_size) != 0) {
4037 pr_err("alg: akcipher: %s test failed. Invalid output\n",
4038 op);
4039 hexdump(outbuf_enc, c_size);
4040 err = -EINVAL;
4041 goto free_all;
4042 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07004043 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004044
4045 /*
4046 * Don't invoke (decrypt or sign) test which require a private key
4047 * for vectors with only a public key.
4048 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07004049 if (vecs->public_key_vec) {
4050 err = 0;
4051 goto free_all;
4052 }
4053 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
4054 if (!outbuf_dec) {
4055 err = -ENOMEM;
4056 goto free_all;
4057 }
Herbert Xudf27b262016-05-05 16:42:49 +08004058
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004059 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
4060 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08004061 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004062 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08004063
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004064 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07004065 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004066 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004067 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004068
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004069 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004070 /* Run asymmetric signature generation */
4071 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01004072 /* Run asymmetric decrypt */
4073 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004074 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004075 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004076 goto free_all;
4077 }
4078 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004079 if (out_len < m_size) {
4080 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
4081 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004082 err = -EINVAL;
4083 goto free_all;
4084 }
4085 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03004086 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
4087 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
4088 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08004089 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004090 err = -EINVAL;
4091 }
4092free_all:
4093 kfree(outbuf_dec);
4094 kfree(outbuf_enc);
4095free_req:
4096 akcipher_request_free(req);
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03004097 kfree(key);
Herbert Xudf27b262016-05-05 16:42:49 +08004098free_xbuf:
4099 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004100 return err;
4101}
4102
Herbert Xu50d2b6432016-06-29 19:32:20 +08004103static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08004104 const struct akcipher_testvec *vecs,
4105 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07004106{
Herbert Xu15226e42016-07-18 18:20:10 +08004107 const char *algo =
4108 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07004109 int ret, i;
4110
4111 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08004112 ret = test_akcipher_one(tfm, vecs++);
4113 if (!ret)
4114 continue;
4115
Herbert Xu15226e42016-07-18 18:20:10 +08004116 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
4117 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08004118 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07004119 }
4120 return 0;
4121}
4122
Tadeusz Struk946cc462015-06-16 10:31:06 -07004123static int alg_test_akcipher(const struct alg_test_desc *desc,
4124 const char *driver, u32 type, u32 mask)
4125{
4126 struct crypto_akcipher *tfm;
4127 int err = 0;
4128
Herbert Xueed93e02016-11-22 20:08:31 +08004129 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07004130 if (IS_ERR(tfm)) {
4131 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
4132 driver, PTR_ERR(tfm));
4133 return PTR_ERR(tfm);
4134 }
4135 if (desc->suite.akcipher.vecs)
4136 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
4137 desc->suite.akcipher.count);
4138
4139 crypto_free_akcipher(tfm);
4140 return err;
4141}
4142
Youquan, Song863b5572009-12-23 19:45:20 +08004143static int alg_test_null(const struct alg_test_desc *desc,
4144 const char *driver, u32 type, u32 mask)
4145{
4146 return 0;
4147}
4148
Eric Biggers49763fc2019-12-01 13:53:30 -08004149#define ____VECS(tv) .vecs = tv, .count = ARRAY_SIZE(tv)
4150#define __VECS(tv) { ____VECS(tv) }
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004151
Herbert Xuda7f0332008-07-31 17:08:25 +08004152/* Please keep this list sorted by algorithm name. */
4153static const struct alg_test_desc alg_test_descs[] = {
4154 {
Eric Biggers059c2a42018-11-16 17:26:31 -08004155 .alg = "adiantum(xchacha12,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004156 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08004157 .test = alg_test_skcipher,
4158 .suite = {
4159 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
4160 },
4161 }, {
4162 .alg = "adiantum(xchacha20,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004163 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08004164 .test = alg_test_skcipher,
4165 .suite = {
4166 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
4167 },
4168 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02004169 .alg = "aegis128",
4170 .test = alg_test_aead,
4171 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004172 .aead = __VECS(aegis128_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02004173 }
4174 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08004175 .alg = "ansi_cprng",
4176 .test = alg_test_cprng,
4177 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004178 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08004179 }
4180 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02004181 .alg = "authenc(hmac(md5),ecb(cipher_null))",
4182 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02004183 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004184 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02004185 }
4186 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004187 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03004188 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08004189 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004190 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004191 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304192 }
4193 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004194 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304195 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304196 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004197 .aead = __VECS(hmac_sha1_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304198 }
4199 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004200 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304201 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004202 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304203 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004204 .aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004205 }
4206 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004207 .alg = "authenc(hmac(sha1),ctr(aes))",
4208 .test = alg_test_null,
4209 .fips_allowed = 1,
4210 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02004211 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
4212 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02004213 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004214 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304215 }
4216 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004217 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
4218 .test = alg_test_null,
4219 .fips_allowed = 1,
4220 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004221 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304222 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304223 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004224 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304225 }
4226 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004227 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304228 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004229 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304230 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004231 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02004232 }
4233 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004234 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03004235 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004236 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004237 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004238 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304239 }
4240 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004241 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304242 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304243 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004244 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304245 }
4246 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004247 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304248 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004249 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304250 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004251 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304252 }
4253 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004254 .alg = "authenc(hmac(sha256),ctr(aes))",
4255 .test = alg_test_null,
4256 .fips_allowed = 1,
4257 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004258 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
4259 .test = alg_test_null,
4260 .fips_allowed = 1,
4261 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004262 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304263 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304264 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004265 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304266 }
4267 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004268 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304269 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004270 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304271 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004272 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004273 }
4274 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004275 .alg = "authenc(hmac(sha384),ctr(aes))",
4276 .test = alg_test_null,
4277 .fips_allowed = 1,
4278 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004279 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
4280 .test = alg_test_null,
4281 .fips_allowed = 1,
4282 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004283 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01004284 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004285 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03004286 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004287 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304288 }
4289 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004290 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304291 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304292 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004293 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304294 }
4295 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004296 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304297 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004298 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304299 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004300 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004301 }
4302 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004303 .alg = "authenc(hmac(sha512),ctr(aes))",
4304 .test = alg_test_null,
4305 .fips_allowed = 1,
4306 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004307 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4308 .test = alg_test_null,
4309 .fips_allowed = 1,
4310 }, {
David Sterbaa1afe272019-10-24 18:28:32 +02004311 .alg = "blake2b-160",
4312 .test = alg_test_hash,
4313 .fips_allowed = 0,
4314 .suite = {
4315 .hash = __VECS(blake2b_160_tv_template)
4316 }
4317 }, {
4318 .alg = "blake2b-256",
4319 .test = alg_test_hash,
4320 .fips_allowed = 0,
4321 .suite = {
4322 .hash = __VECS(blake2b_256_tv_template)
4323 }
4324 }, {
4325 .alg = "blake2b-384",
4326 .test = alg_test_hash,
4327 .fips_allowed = 0,
4328 .suite = {
4329 .hash = __VECS(blake2b_384_tv_template)
4330 }
4331 }, {
4332 .alg = "blake2b-512",
4333 .test = alg_test_hash,
4334 .fips_allowed = 0,
4335 .suite = {
4336 .hash = __VECS(blake2b_512_tv_template)
4337 }
4338 }, {
Ard Biesheuvel17e1df62019-11-08 13:22:29 +01004339 .alg = "blake2s-128",
4340 .test = alg_test_hash,
4341 .suite = {
4342 .hash = __VECS(blakes2s_128_tv_template)
4343 }
4344 }, {
4345 .alg = "blake2s-160",
4346 .test = alg_test_hash,
4347 .suite = {
4348 .hash = __VECS(blakes2s_160_tv_template)
4349 }
4350 }, {
4351 .alg = "blake2s-224",
4352 .test = alg_test_hash,
4353 .suite = {
4354 .hash = __VECS(blakes2s_224_tv_template)
4355 }
4356 }, {
4357 .alg = "blake2s-256",
4358 .test = alg_test_hash,
4359 .suite = {
4360 .hash = __VECS(blakes2s_256_tv_template)
4361 }
4362 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004363 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004364 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004365 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004366 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004367 .cipher = __VECS(aes_cbc_tv_template)
4368 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004369 }, {
4370 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004371 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004372 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004373 .cipher = __VECS(anubis_cbc_tv_template)
4374 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004375 }, {
4376 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004377 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004378 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004379 .cipher = __VECS(bf_cbc_tv_template)
4380 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004381 }, {
4382 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004383 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004384 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004385 .cipher = __VECS(camellia_cbc_tv_template)
4386 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004387 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004388 .alg = "cbc(cast5)",
4389 .test = alg_test_skcipher,
4390 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004391 .cipher = __VECS(cast5_cbc_tv_template)
4392 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004393 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004394 .alg = "cbc(cast6)",
4395 .test = alg_test_skcipher,
4396 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004397 .cipher = __VECS(cast6_cbc_tv_template)
4398 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004399 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004400 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004401 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004402 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004403 .cipher = __VECS(des_cbc_tv_template)
4404 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004405 }, {
4406 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004407 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004408 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004409 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004410 .cipher = __VECS(des3_ede_cbc_tv_template)
4411 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004412 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004413 /* Same as cbc(aes) except the key is stored in
4414 * hardware secure memory which we reference by index
4415 */
4416 .alg = "cbc(paes)",
4417 .test = alg_test_null,
4418 .fips_allowed = 1,
4419 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004420 /* Same as cbc(sm4) except the key is stored in
4421 * hardware secure memory which we reference by index
4422 */
4423 .alg = "cbc(psm4)",
4424 .test = alg_test_null,
4425 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004426 .alg = "cbc(serpent)",
4427 .test = alg_test_skcipher,
4428 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004429 .cipher = __VECS(serpent_cbc_tv_template)
4430 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004431 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004432 .alg = "cbc(sm4)",
4433 .test = alg_test_skcipher,
4434 .suite = {
4435 .cipher = __VECS(sm4_cbc_tv_template)
4436 }
4437 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004438 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004439 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004440 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004441 .cipher = __VECS(tf_cbc_tv_template)
4442 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004443 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00004444 .alg = "cbcmac(aes)",
4445 .fips_allowed = 1,
4446 .test = alg_test_hash,
4447 .suite = {
4448 .hash = __VECS(aes_cbcmac_tv_template)
4449 }
4450 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004451 .alg = "ccm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004452 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
Herbert Xuda7f0332008-07-31 17:08:25 +08004453 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004454 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004455 .suite = {
Eric Biggers49763fc2019-12-01 13:53:30 -08004456 .aead = {
4457 ____VECS(aes_ccm_tv_template),
4458 .einval_allowed = 1,
4459 }
Herbert Xuda7f0332008-07-31 17:08:25 +08004460 }
4461 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03004462 .alg = "cfb(aes)",
4463 .test = alg_test_skcipher,
4464 .fips_allowed = 1,
4465 .suite = {
4466 .cipher = __VECS(aes_cfb_tv_template)
4467 },
4468 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02004469 .alg = "cfb(sm4)",
4470 .test = alg_test_skcipher,
4471 .suite = {
4472 .cipher = __VECS(sm4_cfb_tv_template)
4473 }
4474 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02004475 .alg = "chacha20",
4476 .test = alg_test_skcipher,
4477 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004478 .cipher = __VECS(chacha20_tv_template)
4479 },
Martin Willi3590ebf2015-06-01 13:43:57 +02004480 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004481 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004482 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004483 .test = alg_test_hash,
4484 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004485 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004486 }
4487 }, {
4488 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004489 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004490 .test = alg_test_hash,
4491 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004492 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004493 }
4494 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004495 .alg = "compress_null",
4496 .test = alg_test_null,
4497 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004498 .alg = "crc32",
4499 .test = alg_test_hash,
Milan Broza8a34412019-01-25 10:31:47 +01004500 .fips_allowed = 1,
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004501 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004502 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004503 }
4504 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004505 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08004506 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004507 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004508 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004509 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004510 }
4511 }, {
Herbert Xu684115212013-09-07 12:56:26 +10004512 .alg = "crct10dif",
4513 .test = alg_test_hash,
4514 .fips_allowed = 1,
4515 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004516 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10004517 }
4518 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004519 .alg = "ctr(aes)",
4520 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004521 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004522 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004523 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004524 }
4525 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004526 .alg = "ctr(blowfish)",
4527 .test = alg_test_skcipher,
4528 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004529 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004530 }
4531 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004532 .alg = "ctr(camellia)",
4533 .test = alg_test_skcipher,
4534 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004535 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004536 }
4537 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004538 .alg = "ctr(cast5)",
4539 .test = alg_test_skcipher,
4540 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004541 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004542 }
4543 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004544 .alg = "ctr(cast6)",
4545 .test = alg_test_skcipher,
4546 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004547 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004548 }
4549 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004550 .alg = "ctr(des)",
4551 .test = alg_test_skcipher,
4552 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004553 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004554 }
4555 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004556 .alg = "ctr(des3_ede)",
4557 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03004558 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004559 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004560 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004561 }
4562 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004563 /* Same as ctr(aes) except the key is stored in
4564 * hardware secure memory which we reference by index
4565 */
4566 .alg = "ctr(paes)",
4567 .test = alg_test_null,
4568 .fips_allowed = 1,
4569 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004570
4571 /* Same as ctr(sm4) except the key is stored in
4572 * hardware secure memory which we reference by index
4573 */
4574 .alg = "ctr(psm4)",
4575 .test = alg_test_null,
4576 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004577 .alg = "ctr(serpent)",
4578 .test = alg_test_skcipher,
4579 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004580 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004581 }
4582 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004583 .alg = "ctr(sm4)",
4584 .test = alg_test_skcipher,
4585 .suite = {
4586 .cipher = __VECS(sm4_ctr_tv_template)
4587 }
4588 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03004589 .alg = "ctr(twofish)",
4590 .test = alg_test_skcipher,
4591 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004592 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03004593 }
4594 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004595 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004596 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00004597 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004598 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004599 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004600 }
4601 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004602 /* Same as cts(cbc((aes)) except the key is stored in
4603 * hardware secure memory which we reference by index
4604 */
4605 .alg = "cts(cbc(paes))",
4606 .test = alg_test_null,
4607 .fips_allowed = 1,
4608 }, {
Ard Biesheuvelf6134572019-11-08 13:22:33 +01004609 .alg = "curve25519",
4610 .test = alg_test_kpp,
4611 .suite = {
4612 .kpp = __VECS(curve25519_tv_template)
4613 }
4614 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004615 .alg = "deflate",
4616 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004617 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004618 .suite = {
4619 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004620 .comp = __VECS(deflate_comp_tv_template),
4621 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004622 }
4623 }
4624 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004625 .alg = "dh",
4626 .test = alg_test_kpp,
4627 .fips_allowed = 1,
4628 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004629 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004630 }
4631 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004632 .alg = "digest_null",
4633 .test = alg_test_null,
4634 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004635 .alg = "drbg_nopr_ctr_aes128",
4636 .test = alg_test_drbg,
4637 .fips_allowed = 1,
4638 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004639 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004640 }
4641 }, {
4642 .alg = "drbg_nopr_ctr_aes192",
4643 .test = alg_test_drbg,
4644 .fips_allowed = 1,
4645 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004646 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004647 }
4648 }, {
4649 .alg = "drbg_nopr_ctr_aes256",
4650 .test = alg_test_drbg,
4651 .fips_allowed = 1,
4652 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004653 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004654 }
4655 }, {
4656 /*
4657 * There is no need to specifically test the DRBG with every
4658 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4659 */
4660 .alg = "drbg_nopr_hmac_sha1",
4661 .fips_allowed = 1,
4662 .test = alg_test_null,
4663 }, {
4664 .alg = "drbg_nopr_hmac_sha256",
4665 .test = alg_test_drbg,
4666 .fips_allowed = 1,
4667 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004668 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004669 }
4670 }, {
4671 /* covered by drbg_nopr_hmac_sha256 test */
4672 .alg = "drbg_nopr_hmac_sha384",
4673 .fips_allowed = 1,
4674 .test = alg_test_null,
4675 }, {
4676 .alg = "drbg_nopr_hmac_sha512",
4677 .test = alg_test_null,
4678 .fips_allowed = 1,
4679 }, {
4680 .alg = "drbg_nopr_sha1",
4681 .fips_allowed = 1,
4682 .test = alg_test_null,
4683 }, {
4684 .alg = "drbg_nopr_sha256",
4685 .test = alg_test_drbg,
4686 .fips_allowed = 1,
4687 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004688 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004689 }
4690 }, {
4691 /* covered by drbg_nopr_sha256 test */
4692 .alg = "drbg_nopr_sha384",
4693 .fips_allowed = 1,
4694 .test = alg_test_null,
4695 }, {
4696 .alg = "drbg_nopr_sha512",
4697 .fips_allowed = 1,
4698 .test = alg_test_null,
4699 }, {
4700 .alg = "drbg_pr_ctr_aes128",
4701 .test = alg_test_drbg,
4702 .fips_allowed = 1,
4703 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004704 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004705 }
4706 }, {
4707 /* covered by drbg_pr_ctr_aes128 test */
4708 .alg = "drbg_pr_ctr_aes192",
4709 .fips_allowed = 1,
4710 .test = alg_test_null,
4711 }, {
4712 .alg = "drbg_pr_ctr_aes256",
4713 .fips_allowed = 1,
4714 .test = alg_test_null,
4715 }, {
4716 .alg = "drbg_pr_hmac_sha1",
4717 .fips_allowed = 1,
4718 .test = alg_test_null,
4719 }, {
4720 .alg = "drbg_pr_hmac_sha256",
4721 .test = alg_test_drbg,
4722 .fips_allowed = 1,
4723 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004724 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004725 }
4726 }, {
4727 /* covered by drbg_pr_hmac_sha256 test */
4728 .alg = "drbg_pr_hmac_sha384",
4729 .fips_allowed = 1,
4730 .test = alg_test_null,
4731 }, {
4732 .alg = "drbg_pr_hmac_sha512",
4733 .test = alg_test_null,
4734 .fips_allowed = 1,
4735 }, {
4736 .alg = "drbg_pr_sha1",
4737 .fips_allowed = 1,
4738 .test = alg_test_null,
4739 }, {
4740 .alg = "drbg_pr_sha256",
4741 .test = alg_test_drbg,
4742 .fips_allowed = 1,
4743 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004744 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004745 }
4746 }, {
4747 /* covered by drbg_pr_sha256 test */
4748 .alg = "drbg_pr_sha384",
4749 .fips_allowed = 1,
4750 .test = alg_test_null,
4751 }, {
4752 .alg = "drbg_pr_sha512",
4753 .fips_allowed = 1,
4754 .test = alg_test_null,
4755 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004756 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004757 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004758 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004759 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004760 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004761 }
4762 }, {
4763 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004764 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004765 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004766 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004767 }
4768 }, {
4769 .alg = "ecb(arc4)",
Ard Biesheuvel611a23c2019-06-12 18:19:57 +02004770 .generic_driver = "ecb(arc4)-generic",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004771 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004772 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004773 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004774 }
4775 }, {
4776 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004777 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004778 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004779 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004780 }
4781 }, {
4782 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004783 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004784 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004785 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004786 }
4787 }, {
4788 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004789 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004790 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004791 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004792 }
4793 }, {
4794 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004795 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004796 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004797 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004798 }
4799 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004800 .alg = "ecb(cipher_null)",
4801 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02004802 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004803 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004804 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004805 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004806 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004807 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004808 }
4809 }, {
4810 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004811 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004812 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004813 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004814 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004815 }
4816 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004817 .alg = "ecb(fcrypt)",
4818 .test = alg_test_skcipher,
4819 .suite = {
4820 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004821 .vecs = fcrypt_pcbc_tv_template,
4822 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004823 }
4824 }
4825 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004826 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004827 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004828 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004829 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004830 }
4831 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01004832 /* Same as ecb(aes) except the key is stored in
4833 * hardware secure memory which we reference by index
4834 */
4835 .alg = "ecb(paes)",
4836 .test = alg_test_null,
4837 .fips_allowed = 1,
4838 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004839 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004840 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004841 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004842 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004843 }
4844 }, {
4845 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004846 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004847 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004848 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004849 }
4850 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004851 .alg = "ecb(sm4)",
4852 .test = alg_test_skcipher,
4853 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004854 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004855 }
4856 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004857 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004858 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004859 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004860 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004861 }
4862 }, {
4863 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004864 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004865 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004866 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004867 }
4868 }, {
4869 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004870 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004871 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004872 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004873 }
4874 }, {
4875 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004876 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004877 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004878 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004879 }
4880 }, {
4881 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004882 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004883 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004884 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004885 }
4886 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004887 .alg = "ecdh",
4888 .test = alg_test_kpp,
4889 .fips_allowed = 1,
4890 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004891 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004892 }
4893 }, {
Vitaly Chikunov32fbdbd2019-04-11 18:51:21 +03004894 .alg = "ecrdsa",
4895 .test = alg_test_akcipher,
4896 .suite = {
4897 .akcipher = __VECS(ecrdsa_tv_template)
4898 }
4899 }, {
Ard Biesheuvelf975abb2019-08-19 17:17:34 +03004900 .alg = "essiv(authenc(hmac(sha256),cbc(aes)),sha256)",
4901 .test = alg_test_aead,
4902 .fips_allowed = 1,
4903 .suite = {
4904 .aead = __VECS(essiv_hmac_sha256_aes_cbc_tv_temp)
4905 }
4906 }, {
4907 .alg = "essiv(cbc(aes),sha256)",
4908 .test = alg_test_skcipher,
4909 .fips_allowed = 1,
4910 .suite = {
4911 .cipher = __VECS(essiv_aes_cbc_tv_template)
4912 }
4913 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004914 .alg = "gcm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004915 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
Herbert Xuda7f0332008-07-31 17:08:25 +08004916 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004917 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004918 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004919 .aead = __VECS(aes_gcm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004920 }
4921 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08004922 .alg = "ghash",
4923 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11004924 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08004925 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004926 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08004927 }
4928 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004929 .alg = "hmac(md5)",
4930 .test = alg_test_hash,
4931 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004932 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004933 }
4934 }, {
4935 .alg = "hmac(rmd128)",
4936 .test = alg_test_hash,
4937 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004938 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004939 }
4940 }, {
4941 .alg = "hmac(rmd160)",
4942 .test = alg_test_hash,
4943 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004944 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004945 }
4946 }, {
4947 .alg = "hmac(sha1)",
4948 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004949 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004950 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004951 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004952 }
4953 }, {
4954 .alg = "hmac(sha224)",
4955 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004956 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004957 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004958 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004959 }
4960 }, {
4961 .alg = "hmac(sha256)",
4962 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004963 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004964 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004965 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004966 }
4967 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05304968 .alg = "hmac(sha3-224)",
4969 .test = alg_test_hash,
4970 .fips_allowed = 1,
4971 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004972 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304973 }
4974 }, {
4975 .alg = "hmac(sha3-256)",
4976 .test = alg_test_hash,
4977 .fips_allowed = 1,
4978 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004979 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304980 }
4981 }, {
4982 .alg = "hmac(sha3-384)",
4983 .test = alg_test_hash,
4984 .fips_allowed = 1,
4985 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004986 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304987 }
4988 }, {
4989 .alg = "hmac(sha3-512)",
4990 .test = alg_test_hash,
4991 .fips_allowed = 1,
4992 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004993 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304994 }
4995 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004996 .alg = "hmac(sha384)",
4997 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004998 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004999 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005000 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005001 }
5002 }, {
5003 .alg = "hmac(sha512)",
5004 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005005 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005006 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005007 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005008 }
5009 }, {
Pascal van Leeuwen8194fd12019-09-13 17:20:38 +02005010 .alg = "hmac(sm3)",
5011 .test = alg_test_hash,
5012 .suite = {
5013 .hash = __VECS(hmac_sm3_tv_template)
5014 }
5015 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03005016 .alg = "hmac(streebog256)",
5017 .test = alg_test_hash,
5018 .suite = {
5019 .hash = __VECS(hmac_streebog256_tv_template)
5020 }
5021 }, {
5022 .alg = "hmac(streebog512)",
5023 .test = alg_test_hash,
5024 .suite = {
5025 .hash = __VECS(hmac_streebog512_tv_template)
5026 }
5027 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02005028 .alg = "jitterentropy_rng",
5029 .fips_allowed = 1,
5030 .test = alg_test_null,
5031 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02005032 .alg = "kw(aes)",
5033 .test = alg_test_skcipher,
5034 .fips_allowed = 1,
5035 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005036 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02005037 }
5038 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005039 .alg = "lrw(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005040 .generic_driver = "lrw(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005041 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08005042 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005043 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005044 }
5045 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005046 .alg = "lrw(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005047 .generic_driver = "lrw(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005048 .test = alg_test_skcipher,
5049 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005050 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005051 }
5052 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005053 .alg = "lrw(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005054 .generic_driver = "lrw(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005055 .test = alg_test_skcipher,
5056 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005057 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005058 }
5059 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03005060 .alg = "lrw(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005061 .generic_driver = "lrw(ecb(serpent-generic))",
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03005062 .test = alg_test_skcipher,
5063 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005064 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03005065 }
5066 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03005067 .alg = "lrw(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005068 .generic_driver = "lrw(ecb(twofish-generic))",
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03005069 .test = alg_test_skcipher,
5070 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005071 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03005072 }
5073 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02005074 .alg = "lz4",
5075 .test = alg_test_comp,
5076 .fips_allowed = 1,
5077 .suite = {
5078 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005079 .comp = __VECS(lz4_comp_tv_template),
5080 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02005081 }
5082 }
5083 }, {
5084 .alg = "lz4hc",
5085 .test = alg_test_comp,
5086 .fips_allowed = 1,
5087 .suite = {
5088 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005089 .comp = __VECS(lz4hc_comp_tv_template),
5090 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02005091 }
5092 }
5093 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005094 .alg = "lzo",
5095 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08005096 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005097 .suite = {
5098 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005099 .comp = __VECS(lzo_comp_tv_template),
5100 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005101 }
5102 }
5103 }, {
Hannah Panf248caf2019-07-02 15:16:02 -07005104 .alg = "lzo-rle",
5105 .test = alg_test_comp,
5106 .fips_allowed = 1,
5107 .suite = {
5108 .comp = {
5109 .comp = __VECS(lzorle_comp_tv_template),
5110 .decomp = __VECS(lzorle_decomp_tv_template)
5111 }
5112 }
5113 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005114 .alg = "md4",
5115 .test = alg_test_hash,
5116 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005117 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005118 }
5119 }, {
5120 .alg = "md5",
5121 .test = alg_test_hash,
5122 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005123 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005124 }
5125 }, {
5126 .alg = "michael_mic",
5127 .test = alg_test_hash,
5128 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005129 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005130 }
5131 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08005132 .alg = "nhpoly1305",
5133 .test = alg_test_hash,
5134 .suite = {
5135 .hash = __VECS(nhpoly1305_tv_template)
5136 }
5137 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10005138 .alg = "ofb(aes)",
5139 .test = alg_test_skcipher,
5140 .fips_allowed = 1,
5141 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005142 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10005143 }
5144 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01005145 /* Same as ofb(aes) except the key is stored in
5146 * hardware secure memory which we reference by index
5147 */
5148 .alg = "ofb(paes)",
5149 .test = alg_test_null,
5150 .fips_allowed = 1,
5151 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02005152 .alg = "ofb(sm4)",
5153 .test = alg_test_skcipher,
5154 .suite = {
5155 .cipher = __VECS(sm4_ofb_tv_template)
5156 }
5157 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005158 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005159 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08005160 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005161 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005162 }
5163 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02005164 .alg = "pkcs1pad(rsa,sha224)",
5165 .test = alg_test_null,
5166 .fips_allowed = 1,
5167 }, {
5168 .alg = "pkcs1pad(rsa,sha256)",
5169 .test = alg_test_akcipher,
5170 .fips_allowed = 1,
5171 .suite = {
5172 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
5173 }
5174 }, {
5175 .alg = "pkcs1pad(rsa,sha384)",
5176 .test = alg_test_null,
5177 .fips_allowed = 1,
5178 }, {
5179 .alg = "pkcs1pad(rsa,sha512)",
5180 .test = alg_test_null,
5181 .fips_allowed = 1,
5182 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02005183 .alg = "poly1305",
5184 .test = alg_test_hash,
5185 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005186 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02005187 }
5188 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005189 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005190 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005191 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005192 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005193 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005194 }
5195 }, {
Pascal van Leeuwene4886212019-09-13 11:10:42 +02005196 .alg = "rfc3686(ctr(sm4))",
5197 .test = alg_test_skcipher,
5198 .suite = {
5199 .cipher = __VECS(sm4_ctr_rfc3686_tv_template)
5200 }
5201 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08005202 .alg = "rfc4106(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07005203 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
Adrian Hoban69435b92010-11-04 15:02:04 -04005204 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05005205 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04005206 .suite = {
Eric Biggers49763fc2019-12-01 13:53:30 -08005207 .aead = {
5208 ____VECS(aes_gcm_rfc4106_tv_template),
5209 .einval_allowed = 1,
Eric Biggers6f3a06d2020-03-04 14:44:03 -08005210 .aad_iv = 1,
Eric Biggers49763fc2019-12-01 13:53:30 -08005211 }
Adrian Hoban69435b92010-11-04 15:02:04 -04005212 }
5213 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08005214 .alg = "rfc4309(ccm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07005215 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
Jarod Wilson5d667322009-05-04 19:23:40 +08005216 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005217 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08005218 .suite = {
Eric Biggers49763fc2019-12-01 13:53:30 -08005219 .aead = {
5220 ____VECS(aes_ccm_rfc4309_tv_template),
5221 .einval_allowed = 1,
Eric Biggers6f3a06d2020-03-04 14:44:03 -08005222 .aad_iv = 1,
Eric Biggers49763fc2019-12-01 13:53:30 -08005223 }
Jarod Wilson5d667322009-05-04 19:23:40 +08005224 }
5225 }, {
Herbert Xubb687452015-06-16 13:54:24 +08005226 .alg = "rfc4543(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07005227 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03005228 .test = alg_test_aead,
5229 .suite = {
Eric Biggers49763fc2019-12-01 13:53:30 -08005230 .aead = {
5231 ____VECS(aes_gcm_rfc4543_tv_template),
5232 .einval_allowed = 1,
Eric Biggers6f3a06d2020-03-04 14:44:03 -08005233 .aad_iv = 1,
Eric Biggers49763fc2019-12-01 13:53:30 -08005234 }
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03005235 }
5236 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02005237 .alg = "rfc7539(chacha20,poly1305)",
5238 .test = alg_test_aead,
5239 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08005240 .aead = __VECS(rfc7539_tv_template)
Martin Williaf2b76b2015-06-01 13:44:01 +02005241 }
5242 }, {
Martin Willi59007582015-06-01 13:44:03 +02005243 .alg = "rfc7539esp(chacha20,poly1305)",
5244 .test = alg_test_aead,
5245 .suite = {
Eric Biggers49763fc2019-12-01 13:53:30 -08005246 .aead = {
5247 ____VECS(rfc7539esp_tv_template),
5248 .einval_allowed = 1,
Eric Biggers6f3a06d2020-03-04 14:44:03 -08005249 .aad_iv = 1,
Eric Biggers49763fc2019-12-01 13:53:30 -08005250 }
Martin Willi59007582015-06-01 13:44:03 +02005251 }
5252 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005253 .alg = "rmd128",
5254 .test = alg_test_hash,
5255 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005256 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005257 }
5258 }, {
5259 .alg = "rmd160",
5260 .test = alg_test_hash,
5261 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005262 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005263 }
5264 }, {
5265 .alg = "rmd256",
5266 .test = alg_test_hash,
5267 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005268 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005269 }
5270 }, {
5271 .alg = "rmd320",
5272 .test = alg_test_hash,
5273 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005274 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005275 }
5276 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07005277 .alg = "rsa",
5278 .test = alg_test_akcipher,
5279 .fips_allowed = 1,
5280 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005281 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07005282 }
5283 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005284 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005285 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08005286 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005287 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005288 }
5289 }, {
5290 .alg = "sha1",
5291 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005292 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005293 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005294 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005295 }
5296 }, {
5297 .alg = "sha224",
5298 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005299 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005300 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005301 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005302 }
5303 }, {
5304 .alg = "sha256",
5305 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005306 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005307 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005308 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005309 }
5310 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305311 .alg = "sha3-224",
5312 .test = alg_test_hash,
5313 .fips_allowed = 1,
5314 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005315 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305316 }
5317 }, {
5318 .alg = "sha3-256",
5319 .test = alg_test_hash,
5320 .fips_allowed = 1,
5321 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005322 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305323 }
5324 }, {
5325 .alg = "sha3-384",
5326 .test = alg_test_hash,
5327 .fips_allowed = 1,
5328 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005329 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305330 }
5331 }, {
5332 .alg = "sha3-512",
5333 .test = alg_test_hash,
5334 .fips_allowed = 1,
5335 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005336 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305337 }
5338 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005339 .alg = "sha384",
5340 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005341 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005342 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005343 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005344 }
5345 }, {
5346 .alg = "sha512",
5347 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005348 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005349 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005350 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005351 }
5352 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03005353 .alg = "sm3",
5354 .test = alg_test_hash,
5355 .suite = {
5356 .hash = __VECS(sm3_tv_template)
5357 }
5358 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03005359 .alg = "streebog256",
5360 .test = alg_test_hash,
5361 .suite = {
5362 .hash = __VECS(streebog256_tv_template)
5363 }
5364 }, {
5365 .alg = "streebog512",
5366 .test = alg_test_hash,
5367 .suite = {
5368 .hash = __VECS(streebog512_tv_template)
5369 }
5370 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005371 .alg = "tgr128",
5372 .test = alg_test_hash,
5373 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005374 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005375 }
5376 }, {
5377 .alg = "tgr160",
5378 .test = alg_test_hash,
5379 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005380 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005381 }
5382 }, {
5383 .alg = "tgr192",
5384 .test = alg_test_hash,
5385 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005386 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005387 }
5388 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07005389 .alg = "vmac64(aes)",
5390 .test = alg_test_hash,
5391 .suite = {
5392 .hash = __VECS(vmac64_aes_tv_template)
5393 }
5394 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005395 .alg = "wp256",
5396 .test = alg_test_hash,
5397 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005398 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005399 }
5400 }, {
5401 .alg = "wp384",
5402 .test = alg_test_hash,
5403 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005404 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005405 }
5406 }, {
5407 .alg = "wp512",
5408 .test = alg_test_hash,
5409 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005410 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005411 }
5412 }, {
5413 .alg = "xcbc(aes)",
5414 .test = alg_test_hash,
5415 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005416 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005417 }
5418 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08005419 .alg = "xchacha12",
5420 .test = alg_test_skcipher,
5421 .suite = {
5422 .cipher = __VECS(xchacha12_tv_template)
5423 },
5424 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08005425 .alg = "xchacha20",
5426 .test = alg_test_skcipher,
5427 .suite = {
5428 .cipher = __VECS(xchacha20_tv_template)
5429 },
5430 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005431 .alg = "xts(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005432 .generic_driver = "xts(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005433 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11005434 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005435 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005436 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005437 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08005438 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005439 .alg = "xts(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005440 .generic_driver = "xts(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005441 .test = alg_test_skcipher,
5442 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005443 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005444 }
5445 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005446 .alg = "xts(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005447 .generic_driver = "xts(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005448 .test = alg_test_skcipher,
5449 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005450 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005451 }
5452 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005453 /* Same as xts(aes) except the key is stored in
5454 * hardware secure memory which we reference by index
5455 */
5456 .alg = "xts(paes)",
5457 .test = alg_test_null,
5458 .fips_allowed = 1,
5459 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005460 .alg = "xts(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005461 .generic_driver = "xts(ecb(serpent-generic))",
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005462 .test = alg_test_skcipher,
5463 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005464 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005465 }
5466 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005467 .alg = "xts(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005468 .generic_driver = "xts(ecb(twofish-generic))",
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005469 .test = alg_test_skcipher,
5470 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005471 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005472 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005473 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005474 .alg = "xts4096(paes)",
5475 .test = alg_test_null,
5476 .fips_allowed = 1,
5477 }, {
5478 .alg = "xts512(paes)",
5479 .test = alg_test_null,
5480 .fips_allowed = 1,
5481 }, {
Nikolay Borisov67882e72019-05-30 09:52:57 +03005482 .alg = "xxhash64",
5483 .test = alg_test_hash,
5484 .fips_allowed = 1,
5485 .suite = {
5486 .hash = __VECS(xxhash64_tv_template)
5487 }
5488 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005489 .alg = "zlib-deflate",
5490 .test = alg_test_comp,
5491 .fips_allowed = 1,
5492 .suite = {
5493 .comp = {
5494 .comp = __VECS(zlib_deflate_comp_tv_template),
5495 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5496 }
5497 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07005498 }, {
5499 .alg = "zstd",
5500 .test = alg_test_comp,
5501 .fips_allowed = 1,
5502 .suite = {
5503 .comp = {
5504 .comp = __VECS(zstd_comp_tv_template),
5505 .decomp = __VECS(zstd_decomp_tv_template)
5506 }
5507 }
Herbert Xuda7f0332008-07-31 17:08:25 +08005508 }
5509};
5510
Eric Biggers3f47a032019-01-31 23:51:43 -08005511static void alg_check_test_descs_order(void)
Jussi Kivilinna57147582013-06-13 17:37:40 +03005512{
5513 int i;
5514
Jussi Kivilinna57147582013-06-13 17:37:40 +03005515 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5516 int diff = strcmp(alg_test_descs[i - 1].alg,
5517 alg_test_descs[i].alg);
5518
5519 if (WARN_ON(diff > 0)) {
5520 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5521 alg_test_descs[i - 1].alg,
5522 alg_test_descs[i].alg);
5523 }
5524
5525 if (WARN_ON(diff == 0)) {
5526 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5527 alg_test_descs[i].alg);
5528 }
5529 }
5530}
5531
Eric Biggers3f47a032019-01-31 23:51:43 -08005532static void alg_check_testvec_configs(void)
5533{
Eric Biggers4e7babba2019-01-31 23:51:46 -08005534 int i;
5535
5536 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5537 WARN_ON(!valid_testvec_config(
5538 &default_cipher_testvec_configs[i]));
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08005539
5540 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5541 WARN_ON(!valid_testvec_config(
5542 &default_hash_testvec_configs[i]));
Eric Biggers3f47a032019-01-31 23:51:43 -08005543}
5544
5545static void testmgr_onetime_init(void)
5546{
5547 alg_check_test_descs_order();
5548 alg_check_testvec_configs();
Eric Biggers5b2706a2019-01-31 23:51:44 -08005549
5550#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5551 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5552#endif
Eric Biggers3f47a032019-01-31 23:51:43 -08005553}
5554
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005555static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08005556{
5557 int start = 0;
5558 int end = ARRAY_SIZE(alg_test_descs);
5559
5560 while (start < end) {
5561 int i = (start + end) / 2;
5562 int diff = strcmp(alg_test_descs[i].alg, alg);
5563
5564 if (diff > 0) {
5565 end = i;
5566 continue;
5567 }
5568
5569 if (diff < 0) {
5570 start = i + 1;
5571 continue;
5572 }
5573
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005574 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08005575 }
5576
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005577 return -1;
5578}
5579
5580int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5581{
5582 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08005583 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08005584 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005585
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01005586 if (!fips_enabled && notests) {
5587 printk_once(KERN_INFO "alg: self-tests disabled\n");
5588 return 0;
5589 }
5590
Eric Biggers3f47a032019-01-31 23:51:43 -08005591 DO_ONCE(testmgr_onetime_init);
Jussi Kivilinna57147582013-06-13 17:37:40 +03005592
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005593 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5594 char nalg[CRYPTO_MAX_ALG_NAME];
5595
5596 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5597 sizeof(nalg))
5598 return -ENAMETOOLONG;
5599
5600 i = alg_find_test(nalg);
5601 if (i < 0)
5602 goto notest;
5603
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005604 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5605 goto non_fips_alg;
5606
Jarod Wilson941fb322009-05-04 19:49:23 +08005607 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5608 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005609 }
5610
5611 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08005612 j = alg_find_test(driver);
5613 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005614 goto notest;
5615
Herbert Xua68f6612009-07-02 16:32:12 +08005616 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
5617 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005618 goto non_fips_alg;
5619
Herbert Xua68f6612009-07-02 16:32:12 +08005620 rc = 0;
5621 if (i >= 0)
5622 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5623 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03005624 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08005625 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5626 type, mask);
5627
Jarod Wilson941fb322009-05-04 19:49:23 +08005628test_done:
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005629 if (rc && (fips_enabled || panic_on_fail)) {
5630 fips_fail_notify();
Eric Biggerseda69b02019-03-31 13:09:14 -07005631 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5632 driver, alg, fips_enabled ? "fips" : "panic_on_fail");
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005633 }
Neil Hormand12d6b62008-10-12 20:36:51 +08005634
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005635 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09005636 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005637
Neil Hormand12d6b62008-10-12 20:36:51 +08005638 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005639
5640notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08005641 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5642 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005643non_fips_alg:
5644 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08005645}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005646
Herbert Xu326a6342010-08-06 09:40:28 +08005647#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005648
Herbert Xuda7f0332008-07-31 17:08:25 +08005649EXPORT_SYMBOL_GPL(alg_test);