blob: 3d7c1c1529cf5ab51574e6e66789eeb0c651008f [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;
Herbert Xuda7f0332008-07-31 17:08:25 +080085};
86
87struct cipher_test_suite {
Eric Biggers92a4c9f2018-05-20 22:50:29 -070088 const struct cipher_testvec *vecs;
89 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +080090};
91
92struct comp_test_suite {
93 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080094 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080095 unsigned int count;
96 } comp, decomp;
97};
98
99struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800100 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800101 unsigned int count;
102};
103
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800104struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800105 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800106 unsigned int count;
107};
108
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200109struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800110 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200111 unsigned int count;
112};
113
Tadeusz Struk946cc462015-06-16 10:31:06 -0700114struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800115 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700116 unsigned int count;
117};
118
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100119struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800120 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100121 unsigned int count;
122};
123
Herbert Xuda7f0332008-07-31 17:08:25 +0800124struct alg_test_desc {
125 const char *alg;
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700126 const char *generic_driver;
Herbert Xuda7f0332008-07-31 17:08:25 +0800127 int (*test)(const struct alg_test_desc *desc, const char *driver,
128 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000129 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800130
131 union {
132 struct aead_test_suite aead;
133 struct cipher_test_suite cipher;
134 struct comp_test_suite comp;
135 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800136 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200137 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700138 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100139 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800140 } suite;
141};
142
Herbert Xuda7f0332008-07-31 17:08:25 +0800143static void hexdump(unsigned char *buf, unsigned int len)
144{
145 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
146 16, 1,
147 buf, len, false);
148}
149
Eric Biggers3f47a032019-01-31 23:51:43 -0800150static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800151{
152 int i;
153
154 for (i = 0; i < XBUFSIZE; i++) {
Eric Biggers3f47a032019-01-31 23:51:43 -0800155 buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800156 if (!buf[i])
157 goto err_free_buf;
158 }
159
160 return 0;
161
162err_free_buf:
163 while (i-- > 0)
Eric Biggers3f47a032019-01-31 23:51:43 -0800164 free_pages((unsigned long)buf[i], order);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800165
166 return -ENOMEM;
167}
168
Eric Biggers3f47a032019-01-31 23:51:43 -0800169static int testmgr_alloc_buf(char *buf[XBUFSIZE])
170{
171 return __testmgr_alloc_buf(buf, 0);
172}
173
174static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800175{
176 int i;
177
178 for (i = 0; i < XBUFSIZE; i++)
Eric Biggers3f47a032019-01-31 23:51:43 -0800179 free_pages((unsigned long)buf[i], order);
180}
181
182static void testmgr_free_buf(char *buf[XBUFSIZE])
183{
184 __testmgr_free_buf(buf, 0);
185}
186
187#define TESTMGR_POISON_BYTE 0xfe
188#define TESTMGR_POISON_LEN 16
189
190static inline void testmgr_poison(void *addr, size_t len)
191{
192 memset(addr, TESTMGR_POISON_BYTE, len);
193}
194
195/* Is the memory region still fully poisoned? */
196static inline bool testmgr_is_poison(const void *addr, size_t len)
197{
198 return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
199}
200
201/* flush type for hash algorithms */
202enum flush_type {
203 /* merge with update of previous buffer(s) */
204 FLUSH_TYPE_NONE = 0,
205
206 /* update with previous buffer(s) before doing this one */
207 FLUSH_TYPE_FLUSH,
208
209 /* likewise, but also export and re-import the intermediate state */
210 FLUSH_TYPE_REIMPORT,
211};
212
213/* finalization function for hash algorithms */
214enum finalization_type {
215 FINALIZATION_TYPE_FINAL, /* use final() */
216 FINALIZATION_TYPE_FINUP, /* use finup() */
217 FINALIZATION_TYPE_DIGEST, /* use digest() */
218};
219
220#define TEST_SG_TOTAL 10000
221
222/**
223 * struct test_sg_division - description of a scatterlist entry
224 *
225 * This struct describes one entry of a scatterlist being constructed to check a
226 * crypto test vector.
227 *
228 * @proportion_of_total: length of this chunk relative to the total length,
229 * given as a proportion out of TEST_SG_TOTAL so that it
230 * scales to fit any test vector
231 * @offset: byte offset into a 2-page buffer at which this chunk will start
232 * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
233 * @offset
234 * @flush_type: for hashes, whether an update() should be done now vs.
235 * continuing to accumulate data
Eric Biggers65707372019-03-12 22:12:52 -0700236 * @nosimd: if doing the pending update(), do it with SIMD disabled?
Eric Biggers3f47a032019-01-31 23:51:43 -0800237 */
238struct test_sg_division {
239 unsigned int proportion_of_total;
240 unsigned int offset;
241 bool offset_relative_to_alignmask;
242 enum flush_type flush_type;
Eric Biggers65707372019-03-12 22:12:52 -0700243 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800244};
245
246/**
247 * struct testvec_config - configuration for testing a crypto test vector
248 *
249 * This struct describes the data layout and other parameters with which each
250 * crypto test vector can be tested.
251 *
252 * @name: name of this config, logged for debugging purposes if a test fails
253 * @inplace: operate on the data in-place, if applicable for the algorithm type?
254 * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
255 * @src_divs: description of how to arrange the source scatterlist
256 * @dst_divs: description of how to arrange the dst scatterlist, if applicable
257 * for the algorithm type. Defaults to @src_divs if unset.
258 * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
259 * where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
260 * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
261 * the @iv_offset
262 * @finalization_type: what finalization function to use for hashes
Eric Biggers65707372019-03-12 22:12:52 -0700263 * @nosimd: execute with SIMD disabled? Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
Eric Biggers3f47a032019-01-31 23:51:43 -0800264 */
265struct testvec_config {
266 const char *name;
267 bool inplace;
268 u32 req_flags;
269 struct test_sg_division src_divs[XBUFSIZE];
270 struct test_sg_division dst_divs[XBUFSIZE];
271 unsigned int iv_offset;
272 bool iv_offset_relative_to_alignmask;
273 enum finalization_type finalization_type;
Eric Biggers65707372019-03-12 22:12:52 -0700274 bool nosimd;
Eric Biggers3f47a032019-01-31 23:51:43 -0800275};
276
277#define TESTVEC_CONFIG_NAMELEN 192
278
Eric Biggers4e7babba2019-01-31 23:51:46 -0800279/*
280 * The following are the lists of testvec_configs to test for each algorithm
281 * type when the basic crypto self-tests are enabled, i.e. when
282 * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset. They aim to provide good test
283 * coverage, while keeping the test time much shorter than the full fuzz tests
284 * so that the basic tests can be enabled in a wider range of circumstances.
285 */
286
287/* Configs for skciphers and aeads */
288static const struct testvec_config default_cipher_testvec_configs[] = {
289 {
290 .name = "in-place",
291 .inplace = true,
292 .src_divs = { { .proportion_of_total = 10000 } },
293 }, {
294 .name = "out-of-place",
295 .src_divs = { { .proportion_of_total = 10000 } },
296 }, {
297 .name = "unaligned buffer, offset=1",
298 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
299 .iv_offset = 1,
300 }, {
301 .name = "buffer aligned only to alignmask",
302 .src_divs = {
303 {
304 .proportion_of_total = 10000,
305 .offset = 1,
306 .offset_relative_to_alignmask = true,
307 },
308 },
309 .iv_offset = 1,
310 .iv_offset_relative_to_alignmask = true,
311 }, {
312 .name = "two even aligned splits",
313 .src_divs = {
314 { .proportion_of_total = 5000 },
315 { .proportion_of_total = 5000 },
316 },
317 }, {
318 .name = "uneven misaligned splits, may sleep",
319 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
320 .src_divs = {
321 { .proportion_of_total = 1900, .offset = 33 },
322 { .proportion_of_total = 3300, .offset = 7 },
323 { .proportion_of_total = 4800, .offset = 18 },
324 },
325 .iv_offset = 3,
326 }, {
327 .name = "misaligned splits crossing pages, inplace",
328 .inplace = true,
329 .src_divs = {
330 {
331 .proportion_of_total = 7500,
332 .offset = PAGE_SIZE - 32
333 }, {
334 .proportion_of_total = 2500,
335 .offset = PAGE_SIZE - 7
336 },
337 },
338 }
339};
340
Eric Biggers4cc2dcf2019-01-31 23:51:48 -0800341static const struct testvec_config default_hash_testvec_configs[] = {
342 {
343 .name = "init+update+final aligned buffer",
344 .src_divs = { { .proportion_of_total = 10000 } },
345 .finalization_type = FINALIZATION_TYPE_FINAL,
346 }, {
347 .name = "init+finup aligned buffer",
348 .src_divs = { { .proportion_of_total = 10000 } },
349 .finalization_type = FINALIZATION_TYPE_FINUP,
350 }, {
351 .name = "digest aligned buffer",
352 .src_divs = { { .proportion_of_total = 10000 } },
353 .finalization_type = FINALIZATION_TYPE_DIGEST,
354 }, {
355 .name = "init+update+final misaligned buffer",
356 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
357 .finalization_type = FINALIZATION_TYPE_FINAL,
358 }, {
359 .name = "digest buffer aligned only to alignmask",
360 .src_divs = {
361 {
362 .proportion_of_total = 10000,
363 .offset = 1,
364 .offset_relative_to_alignmask = true,
365 },
366 },
367 .finalization_type = FINALIZATION_TYPE_DIGEST,
368 }, {
369 .name = "init+update+update+final two even splits",
370 .src_divs = {
371 { .proportion_of_total = 5000 },
372 {
373 .proportion_of_total = 5000,
374 .flush_type = FLUSH_TYPE_FLUSH,
375 },
376 },
377 .finalization_type = FINALIZATION_TYPE_FINAL,
378 }, {
379 .name = "digest uneven misaligned splits, may sleep",
380 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
381 .src_divs = {
382 { .proportion_of_total = 1900, .offset = 33 },
383 { .proportion_of_total = 3300, .offset = 7 },
384 { .proportion_of_total = 4800, .offset = 18 },
385 },
386 .finalization_type = FINALIZATION_TYPE_DIGEST,
387 }, {
388 .name = "digest misaligned splits crossing pages",
389 .src_divs = {
390 {
391 .proportion_of_total = 7500,
392 .offset = PAGE_SIZE - 32,
393 }, {
394 .proportion_of_total = 2500,
395 .offset = PAGE_SIZE - 7,
396 },
397 },
398 .finalization_type = FINALIZATION_TYPE_DIGEST,
399 }, {
400 .name = "import/export",
401 .src_divs = {
402 {
403 .proportion_of_total = 6500,
404 .flush_type = FLUSH_TYPE_REIMPORT,
405 }, {
406 .proportion_of_total = 3500,
407 .flush_type = FLUSH_TYPE_REIMPORT,
408 },
409 },
410 .finalization_type = FINALIZATION_TYPE_FINAL,
411 }
412};
413
Eric Biggers3f47a032019-01-31 23:51:43 -0800414static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
415{
416 unsigned int remaining = TEST_SG_TOTAL;
417 unsigned int ndivs = 0;
418
419 do {
420 remaining -= divs[ndivs++].proportion_of_total;
421 } while (remaining);
422
423 return ndivs;
424}
425
Eric Biggers65707372019-03-12 22:12:52 -0700426#define SGDIVS_HAVE_FLUSHES BIT(0)
427#define SGDIVS_HAVE_NOSIMD BIT(1)
428
Eric Biggers3f47a032019-01-31 23:51:43 -0800429static bool valid_sg_divisions(const struct test_sg_division *divs,
Eric Biggers65707372019-03-12 22:12:52 -0700430 unsigned int count, int *flags_ret)
Eric Biggers3f47a032019-01-31 23:51:43 -0800431{
432 unsigned int total = 0;
433 unsigned int i;
434
435 for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
436 if (divs[i].proportion_of_total <= 0 ||
437 divs[i].proportion_of_total > TEST_SG_TOTAL - total)
438 return false;
439 total += divs[i].proportion_of_total;
440 if (divs[i].flush_type != FLUSH_TYPE_NONE)
Eric Biggers65707372019-03-12 22:12:52 -0700441 *flags_ret |= SGDIVS_HAVE_FLUSHES;
442 if (divs[i].nosimd)
443 *flags_ret |= SGDIVS_HAVE_NOSIMD;
Eric Biggers3f47a032019-01-31 23:51:43 -0800444 }
445 return total == TEST_SG_TOTAL &&
446 memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
447}
448
449/*
450 * Check whether the given testvec_config is valid. This isn't strictly needed
451 * since every testvec_config should be valid, but check anyway so that people
452 * don't unknowingly add broken configs that don't do what they wanted.
453 */
454static bool valid_testvec_config(const struct testvec_config *cfg)
455{
Eric Biggers65707372019-03-12 22:12:52 -0700456 int flags = 0;
Eric Biggers3f47a032019-01-31 23:51:43 -0800457
458 if (cfg->name == NULL)
459 return false;
460
461 if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
Eric Biggers65707372019-03-12 22:12:52 -0700462 &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800463 return false;
464
465 if (cfg->dst_divs[0].proportion_of_total) {
466 if (!valid_sg_divisions(cfg->dst_divs,
Eric Biggers65707372019-03-12 22:12:52 -0700467 ARRAY_SIZE(cfg->dst_divs), &flags))
Eric Biggers3f47a032019-01-31 23:51:43 -0800468 return false;
469 } else {
470 if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
471 return false;
472 /* defaults to dst_divs=src_divs */
473 }
474
475 if (cfg->iv_offset +
476 (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
477 MAX_ALGAPI_ALIGNMASK + 1)
478 return false;
479
Eric Biggers65707372019-03-12 22:12:52 -0700480 if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
481 cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
482 return false;
483
484 if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
485 (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
Eric Biggers3f47a032019-01-31 23:51:43 -0800486 return false;
487
488 return true;
489}
490
491struct test_sglist {
492 char *bufs[XBUFSIZE];
493 struct scatterlist sgl[XBUFSIZE];
494 struct scatterlist sgl_saved[XBUFSIZE];
495 struct scatterlist *sgl_ptr;
496 unsigned int nents;
497};
498
499static int init_test_sglist(struct test_sglist *tsgl)
500{
501 return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
502}
503
504static void destroy_test_sglist(struct test_sglist *tsgl)
505{
506 return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
507}
508
509/**
510 * build_test_sglist() - build a scatterlist for a crypto test
511 *
512 * @tsgl: the scatterlist to build. @tsgl->bufs[] contains an array of 2-page
513 * buffers which the scatterlist @tsgl->sgl[] will be made to point into.
514 * @divs: the layout specification on which the scatterlist will be based
515 * @alignmask: the algorithm's alignmask
516 * @total_len: the total length of the scatterlist to build in bytes
517 * @data: if non-NULL, the buffers will be filled with this data until it ends.
518 * Otherwise the buffers will be poisoned. In both cases, some bytes
519 * past the end of each buffer will be poisoned to help detect overruns.
520 * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
521 * corresponds will be returned here. This will match @divs except
522 * that divisions resolving to a length of 0 are omitted as they are
523 * not included in the scatterlist.
524 *
525 * Return: 0 or a -errno value
526 */
527static int build_test_sglist(struct test_sglist *tsgl,
528 const struct test_sg_division *divs,
529 const unsigned int alignmask,
530 const unsigned int total_len,
531 struct iov_iter *data,
532 const struct test_sg_division *out_divs[XBUFSIZE])
533{
534 struct {
535 const struct test_sg_division *div;
536 size_t length;
537 } partitions[XBUFSIZE];
538 const unsigned int ndivs = count_test_sg_divisions(divs);
539 unsigned int len_remaining = total_len;
540 unsigned int i;
541
542 BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
543 if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
544 return -EINVAL;
545
546 /* Calculate the (div, length) pairs */
547 tsgl->nents = 0;
548 for (i = 0; i < ndivs; i++) {
549 unsigned int len_this_sg =
550 min(len_remaining,
551 (total_len * divs[i].proportion_of_total +
552 TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);
553
554 if (len_this_sg != 0) {
555 partitions[tsgl->nents].div = &divs[i];
556 partitions[tsgl->nents].length = len_this_sg;
557 tsgl->nents++;
558 len_remaining -= len_this_sg;
559 }
560 }
561 if (tsgl->nents == 0) {
562 partitions[tsgl->nents].div = &divs[0];
563 partitions[tsgl->nents].length = 0;
564 tsgl->nents++;
565 }
566 partitions[tsgl->nents - 1].length += len_remaining;
567
568 /* Set up the sgl entries and fill the data or poison */
569 sg_init_table(tsgl->sgl, tsgl->nents);
570 for (i = 0; i < tsgl->nents; i++) {
571 unsigned int offset = partitions[i].div->offset;
572 void *addr;
573
574 if (partitions[i].div->offset_relative_to_alignmask)
575 offset += alignmask;
576
577 while (offset + partitions[i].length + TESTMGR_POISON_LEN >
578 2 * PAGE_SIZE) {
579 if (WARN_ON(offset <= 0))
580 return -EINVAL;
581 offset /= 2;
582 }
583
584 addr = &tsgl->bufs[i][offset];
585 sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);
586
587 if (out_divs)
588 out_divs[i] = partitions[i].div;
589
590 if (data) {
591 size_t copy_len, copied;
592
593 copy_len = min(partitions[i].length, data->count);
594 copied = copy_from_iter(addr, copy_len, data);
595 if (WARN_ON(copied != copy_len))
596 return -EINVAL;
597 testmgr_poison(addr + copy_len, partitions[i].length +
598 TESTMGR_POISON_LEN - copy_len);
599 } else {
600 testmgr_poison(addr, partitions[i].length +
601 TESTMGR_POISON_LEN);
602 }
603 }
604
605 sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
606 tsgl->sgl_ptr = tsgl->sgl;
607 memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
608 return 0;
609}
610
611/*
612 * Verify that a scatterlist crypto operation produced the correct output.
613 *
614 * @tsgl: scatterlist containing the actual output
615 * @expected_output: buffer containing the expected output
616 * @len_to_check: length of @expected_output in bytes
617 * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
618 * @check_poison: verify that the poison bytes after each chunk are intact?
619 *
620 * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
621 */
622static int verify_correct_output(const struct test_sglist *tsgl,
623 const char *expected_output,
624 unsigned int len_to_check,
625 unsigned int unchecked_prefix_len,
626 bool check_poison)
627{
628 unsigned int i;
629
630 for (i = 0; i < tsgl->nents; i++) {
631 struct scatterlist *sg = &tsgl->sgl_ptr[i];
632 unsigned int len = sg->length;
633 unsigned int offset = sg->offset;
634 const char *actual_output;
635
636 if (unchecked_prefix_len) {
637 if (unchecked_prefix_len >= len) {
638 unchecked_prefix_len -= len;
639 continue;
640 }
641 offset += unchecked_prefix_len;
642 len -= unchecked_prefix_len;
643 unchecked_prefix_len = 0;
644 }
645 len = min(len, len_to_check);
646 actual_output = page_address(sg_page(sg)) + offset;
647 if (memcmp(expected_output, actual_output, len) != 0)
648 return -EINVAL;
649 if (check_poison &&
650 !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
651 return -EOVERFLOW;
652 len_to_check -= len;
653 expected_output += len;
654 }
655 if (WARN_ON(len_to_check != 0))
656 return -EINVAL;
657 return 0;
658}
659
660static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
661{
662 unsigned int i;
663
664 for (i = 0; i < tsgl->nents; i++) {
665 if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
666 return true;
667 if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
668 return true;
669 if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
670 return true;
671 }
672 return false;
673}
674
675struct cipher_test_sglists {
676 struct test_sglist src;
677 struct test_sglist dst;
678};
679
680static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
681{
682 struct cipher_test_sglists *tsgls;
683
684 tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
685 if (!tsgls)
686 return NULL;
687
688 if (init_test_sglist(&tsgls->src) != 0)
689 goto fail_kfree;
690 if (init_test_sglist(&tsgls->dst) != 0)
691 goto fail_destroy_src;
692
693 return tsgls;
694
695fail_destroy_src:
696 destroy_test_sglist(&tsgls->src);
697fail_kfree:
698 kfree(tsgls);
699 return NULL;
700}
701
702static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
703{
704 if (tsgls) {
705 destroy_test_sglist(&tsgls->src);
706 destroy_test_sglist(&tsgls->dst);
707 kfree(tsgls);
708 }
709}
710
711/* Build the src and dst scatterlists for an skcipher or AEAD test */
712static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
713 const struct testvec_config *cfg,
714 unsigned int alignmask,
715 unsigned int src_total_len,
716 unsigned int dst_total_len,
717 const struct kvec *inputs,
718 unsigned int nr_inputs)
719{
720 struct iov_iter input;
721 int err;
722
723 iov_iter_kvec(&input, WRITE, inputs, nr_inputs, src_total_len);
724 err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
725 cfg->inplace ?
726 max(dst_total_len, src_total_len) :
727 src_total_len,
728 &input, NULL);
729 if (err)
730 return err;
731
732 if (cfg->inplace) {
733 tsgls->dst.sgl_ptr = tsgls->src.sgl;
734 tsgls->dst.nents = tsgls->src.nents;
735 return 0;
736 }
737 return build_test_sglist(&tsgls->dst,
738 cfg->dst_divs[0].proportion_of_total ?
739 cfg->dst_divs : cfg->src_divs,
740 alignmask, dst_total_len, NULL, NULL);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800741}
742
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800743#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700744
745/* Generate a random length in range [0, max_len], but prefer smaller values */
746static unsigned int generate_random_length(unsigned int max_len)
747{
748 unsigned int len = prandom_u32() % (max_len + 1);
749
750 switch (prandom_u32() % 4) {
751 case 0:
752 return len % 64;
753 case 1:
754 return len % 256;
755 case 2:
756 return len % 1024;
757 default:
758 return len;
759 }
760}
761
762/* Sometimes make some random changes to the given data buffer */
763static void mutate_buffer(u8 *buf, size_t count)
764{
765 size_t num_flips;
766 size_t i;
767 size_t pos;
768
769 /* Sometimes flip some bits */
770 if (prandom_u32() % 4 == 0) {
771 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count * 8);
772 for (i = 0; i < num_flips; i++) {
773 pos = prandom_u32() % (count * 8);
774 buf[pos / 8] ^= 1 << (pos % 8);
775 }
776 }
777
778 /* Sometimes flip some bytes */
779 if (prandom_u32() % 4 == 0) {
780 num_flips = min_t(size_t, 1 << (prandom_u32() % 8), count);
781 for (i = 0; i < num_flips; i++)
782 buf[prandom_u32() % count] ^= 0xff;
783 }
784}
785
786/* Randomly generate 'count' bytes, but sometimes make them "interesting" */
787static void generate_random_bytes(u8 *buf, size_t count)
788{
789 u8 b;
790 u8 increment;
791 size_t i;
792
793 if (count == 0)
794 return;
795
796 switch (prandom_u32() % 8) { /* Choose a generation strategy */
797 case 0:
798 case 1:
799 /* All the same byte, plus optional mutations */
800 switch (prandom_u32() % 4) {
801 case 0:
802 b = 0x00;
803 break;
804 case 1:
805 b = 0xff;
806 break;
807 default:
808 b = (u8)prandom_u32();
809 break;
810 }
811 memset(buf, b, count);
812 mutate_buffer(buf, count);
813 break;
814 case 2:
815 /* Ascending or descending bytes, plus optional mutations */
816 increment = (u8)prandom_u32();
817 b = (u8)prandom_u32();
818 for (i = 0; i < count; i++, b += increment)
819 buf[i] = b;
820 mutate_buffer(buf, count);
821 break;
822 default:
823 /* Fully random bytes */
824 for (i = 0; i < count; i++)
825 buf[i] = (u8)prandom_u32();
826 }
827}
828
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800829static char *generate_random_sgl_divisions(struct test_sg_division *divs,
830 size_t max_divs, char *p, char *end,
Eric Biggers65707372019-03-12 22:12:52 -0700831 bool gen_flushes, u32 req_flags)
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800832{
833 struct test_sg_division *div = divs;
834 unsigned int remaining = TEST_SG_TOTAL;
835
836 do {
837 unsigned int this_len;
Eric Biggers65707372019-03-12 22:12:52 -0700838 const char *flushtype_str;
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800839
840 if (div == &divs[max_divs - 1] || prandom_u32() % 2 == 0)
841 this_len = remaining;
842 else
843 this_len = 1 + (prandom_u32() % remaining);
844 div->proportion_of_total = this_len;
845
846 if (prandom_u32() % 4 == 0)
847 div->offset = (PAGE_SIZE - 128) + (prandom_u32() % 128);
848 else if (prandom_u32() % 2 == 0)
849 div->offset = prandom_u32() % 32;
850 else
851 div->offset = prandom_u32() % PAGE_SIZE;
852 if (prandom_u32() % 8 == 0)
853 div->offset_relative_to_alignmask = true;
854
855 div->flush_type = FLUSH_TYPE_NONE;
856 if (gen_flushes) {
857 switch (prandom_u32() % 4) {
858 case 0:
859 div->flush_type = FLUSH_TYPE_REIMPORT;
860 break;
861 case 1:
862 div->flush_type = FLUSH_TYPE_FLUSH;
863 break;
864 }
865 }
866
Eric Biggers65707372019-03-12 22:12:52 -0700867 if (div->flush_type != FLUSH_TYPE_NONE &&
868 !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
869 prandom_u32() % 2 == 0)
870 div->nosimd = true;
871
872 switch (div->flush_type) {
873 case FLUSH_TYPE_FLUSH:
874 if (div->nosimd)
875 flushtype_str = "<flush,nosimd>";
876 else
877 flushtype_str = "<flush>";
878 break;
879 case FLUSH_TYPE_REIMPORT:
880 if (div->nosimd)
881 flushtype_str = "<reimport,nosimd>";
882 else
883 flushtype_str = "<reimport>";
884 break;
885 default:
886 flushtype_str = "";
887 break;
888 }
889
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800890 BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
Eric Biggers65707372019-03-12 22:12:52 -0700891 p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800892 this_len / 100, this_len % 100,
893 div->offset_relative_to_alignmask ?
894 "alignmask" : "",
895 div->offset, this_len == remaining ? "" : ", ");
896 remaining -= this_len;
897 div++;
898 } while (remaining);
899
900 return p;
901}
902
903/* Generate a random testvec_config for fuzz testing */
904static void generate_random_testvec_config(struct testvec_config *cfg,
905 char *name, size_t max_namelen)
906{
907 char *p = name;
908 char * const end = name + max_namelen;
909
910 memset(cfg, 0, sizeof(*cfg));
911
912 cfg->name = name;
913
914 p += scnprintf(p, end - p, "random:");
915
916 if (prandom_u32() % 2 == 0) {
917 cfg->inplace = true;
918 p += scnprintf(p, end - p, " inplace");
919 }
920
921 if (prandom_u32() % 2 == 0) {
922 cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
923 p += scnprintf(p, end - p, " may_sleep");
924 }
925
926 switch (prandom_u32() % 4) {
927 case 0:
928 cfg->finalization_type = FINALIZATION_TYPE_FINAL;
929 p += scnprintf(p, end - p, " use_final");
930 break;
931 case 1:
932 cfg->finalization_type = FINALIZATION_TYPE_FINUP;
933 p += scnprintf(p, end - p, " use_finup");
934 break;
935 default:
936 cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
937 p += scnprintf(p, end - p, " use_digest");
938 break;
939 }
940
Eric Biggers65707372019-03-12 22:12:52 -0700941 if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
942 prandom_u32() % 2 == 0) {
943 cfg->nosimd = true;
944 p += scnprintf(p, end - p, " nosimd");
945 }
946
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800947 p += scnprintf(p, end - p, " src_divs=[");
948 p = generate_random_sgl_divisions(cfg->src_divs,
949 ARRAY_SIZE(cfg->src_divs), p, end,
950 (cfg->finalization_type !=
Eric Biggers65707372019-03-12 22:12:52 -0700951 FINALIZATION_TYPE_DIGEST),
952 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800953 p += scnprintf(p, end - p, "]");
954
955 if (!cfg->inplace && prandom_u32() % 2 == 0) {
956 p += scnprintf(p, end - p, " dst_divs=[");
957 p = generate_random_sgl_divisions(cfg->dst_divs,
958 ARRAY_SIZE(cfg->dst_divs),
Eric Biggers65707372019-03-12 22:12:52 -0700959 p, end, false,
960 cfg->req_flags);
Eric Biggers25f9ddd2019-01-31 23:51:45 -0800961 p += scnprintf(p, end - p, "]");
962 }
963
964 if (prandom_u32() % 2 == 0) {
965 cfg->iv_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
966 p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
967 }
968
969 WARN_ON_ONCE(!valid_testvec_config(cfg));
970}
Eric Biggersb55e1a32019-03-12 22:12:47 -0700971
972static void crypto_disable_simd_for_test(void)
973{
974 preempt_disable();
975 __this_cpu_write(crypto_simd_disabled_for_test, true);
976}
977
978static void crypto_reenable_simd_for_test(void)
979{
980 __this_cpu_write(crypto_simd_disabled_for_test, false);
981 preempt_enable();
982}
Eric Biggersf2bb770a2019-04-11 21:57:38 -0700983
984/*
985 * Given an algorithm name, build the name of the generic implementation of that
986 * algorithm, assuming the usual naming convention. Specifically, this appends
987 * "-generic" to every part of the name that is not a template name. Examples:
988 *
989 * aes => aes-generic
990 * cbc(aes) => cbc(aes-generic)
991 * cts(cbc(aes)) => cts(cbc(aes-generic))
992 * rfc7539(chacha20,poly1305) => rfc7539(chacha20-generic,poly1305-generic)
993 *
994 * Return: 0 on success, or -ENAMETOOLONG if the generic name would be too long
995 */
996static int build_generic_driver_name(const char *algname,
997 char driver_name[CRYPTO_MAX_ALG_NAME])
998{
999 const char *in = algname;
1000 char *out = driver_name;
1001 size_t len = strlen(algname);
1002
1003 if (len >= CRYPTO_MAX_ALG_NAME)
1004 goto too_long;
1005 do {
1006 const char *in_saved = in;
1007
1008 while (*in && *in != '(' && *in != ')' && *in != ',')
1009 *out++ = *in++;
1010 if (*in != '(' && in > in_saved) {
1011 len += 8;
1012 if (len >= CRYPTO_MAX_ALG_NAME)
1013 goto too_long;
1014 memcpy(out, "-generic", 8);
1015 out += 8;
1016 }
1017 } while ((*out++ = *in++) != '\0');
1018 return 0;
1019
1020too_long:
1021 pr_err("alg: generic driver name for \"%s\" would be too long\n",
1022 algname);
1023 return -ENAMETOOLONG;
1024}
Eric Biggersb55e1a32019-03-12 22:12:47 -07001025#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1026static void crypto_disable_simd_for_test(void)
1027{
1028}
1029
1030static void crypto_reenable_simd_for_test(void)
1031{
1032}
1033#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
Eric Biggers25f9ddd2019-01-31 23:51:45 -08001034
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001035static int build_hash_sglist(struct test_sglist *tsgl,
1036 const struct hash_testvec *vec,
1037 const struct testvec_config *cfg,
1038 unsigned int alignmask,
1039 const struct test_sg_division *divs[XBUFSIZE])
1040{
1041 struct kvec kv;
1042 struct iov_iter input;
1043
1044 kv.iov_base = (void *)vec->plaintext;
1045 kv.iov_len = vec->psize;
1046 iov_iter_kvec(&input, WRITE, &kv, 1, vec->psize);
1047 return build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
1048 &input, divs);
1049}
1050
1051static int check_hash_result(const char *type,
1052 const u8 *result, unsigned int digestsize,
1053 const struct hash_testvec *vec,
1054 const char *vec_name,
1055 const char *driver,
1056 const struct testvec_config *cfg)
1057{
1058 if (memcmp(result, vec->digest, digestsize) != 0) {
1059 pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1060 type, driver, vec_name, cfg->name);
1061 return -EINVAL;
1062 }
1063 if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
1064 pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"\n",
1065 type, driver, vec_name, cfg->name);
1066 return -EOVERFLOW;
1067 }
1068 return 0;
1069}
1070
1071static inline int check_shash_op(const char *op, int err,
1072 const char *driver, const char *vec_name,
1073 const struct testvec_config *cfg)
1074{
1075 if (err)
1076 pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
1077 driver, op, err, vec_name, cfg->name);
1078 return err;
1079}
1080
1081static inline const void *sg_data(struct scatterlist *sg)
1082{
1083 return page_address(sg_page(sg)) + sg->offset;
1084}
1085
1086/* Test one hash test vector in one configuration, using the shash API */
1087static int test_shash_vec_cfg(const char *driver,
1088 const struct hash_testvec *vec,
1089 const char *vec_name,
1090 const struct testvec_config *cfg,
1091 struct shash_desc *desc,
1092 struct test_sglist *tsgl,
1093 u8 *hashstate)
1094{
1095 struct crypto_shash *tfm = desc->tfm;
1096 const unsigned int alignmask = crypto_shash_alignmask(tfm);
1097 const unsigned int digestsize = crypto_shash_digestsize(tfm);
1098 const unsigned int statesize = crypto_shash_statesize(tfm);
1099 const struct test_sg_division *divs[XBUFSIZE];
1100 unsigned int i;
1101 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1102 int err;
1103
1104 /* Set the key, if specified */
1105 if (vec->ksize) {
1106 err = crypto_shash_setkey(tfm, vec->key, vec->ksize);
1107 if (err) {
1108 if (err == vec->setkey_error)
1109 return 0;
1110 pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1111 driver, vec_name, vec->setkey_error, err,
1112 crypto_shash_get_flags(tfm));
1113 return err;
1114 }
1115 if (vec->setkey_error) {
1116 pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1117 driver, vec_name, vec->setkey_error);
1118 return -EINVAL;
1119 }
1120 }
1121
1122 /* Build the scatterlist for the source data */
1123 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
1124 if (err) {
1125 pr_err("alg: shash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
1126 driver, vec_name, cfg->name);
1127 return err;
1128 }
1129
1130 /* Do the actual hashing */
1131
1132 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1133 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1134
1135 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1136 vec->digest_error) {
1137 /* Just using digest() */
1138 if (tsgl->nents != 1)
1139 return 0;
1140 if (cfg->nosimd)
1141 crypto_disable_simd_for_test();
1142 err = crypto_shash_digest(desc, sg_data(&tsgl->sgl[0]),
1143 tsgl->sgl[0].length, result);
1144 if (cfg->nosimd)
1145 crypto_reenable_simd_for_test();
1146 if (err) {
1147 if (err == vec->digest_error)
1148 return 0;
1149 pr_err("alg: shash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1150 driver, vec_name, vec->digest_error, err,
1151 cfg->name);
1152 return err;
1153 }
1154 if (vec->digest_error) {
1155 pr_err("alg: shash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1156 driver, vec_name, vec->digest_error, cfg->name);
1157 return -EINVAL;
1158 }
1159 goto result_ready;
1160 }
1161
1162 /* Using init(), zero or more update(), then final() or finup() */
1163
1164 if (cfg->nosimd)
1165 crypto_disable_simd_for_test();
1166 err = crypto_shash_init(desc);
1167 if (cfg->nosimd)
1168 crypto_reenable_simd_for_test();
1169 err = check_shash_op("init", err, driver, vec_name, cfg);
1170 if (err)
1171 return err;
1172
1173 for (i = 0; i < tsgl->nents; i++) {
1174 if (i + 1 == tsgl->nents &&
1175 cfg->finalization_type == FINALIZATION_TYPE_FINUP) {
1176 if (divs[i]->nosimd)
1177 crypto_disable_simd_for_test();
1178 err = crypto_shash_finup(desc, sg_data(&tsgl->sgl[i]),
1179 tsgl->sgl[i].length, result);
1180 if (divs[i]->nosimd)
1181 crypto_reenable_simd_for_test();
1182 err = check_shash_op("finup", err, driver, vec_name,
1183 cfg);
1184 if (err)
1185 return err;
1186 goto result_ready;
1187 }
1188 if (divs[i]->nosimd)
1189 crypto_disable_simd_for_test();
1190 err = crypto_shash_update(desc, sg_data(&tsgl->sgl[i]),
1191 tsgl->sgl[i].length);
1192 if (divs[i]->nosimd)
1193 crypto_reenable_simd_for_test();
1194 err = check_shash_op("update", err, driver, vec_name, cfg);
1195 if (err)
1196 return err;
1197 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1198 /* Test ->export() and ->import() */
1199 testmgr_poison(hashstate + statesize,
1200 TESTMGR_POISON_LEN);
1201 err = crypto_shash_export(desc, hashstate);
1202 err = check_shash_op("export", err, driver, vec_name,
1203 cfg);
1204 if (err)
1205 return err;
1206 if (!testmgr_is_poison(hashstate + statesize,
1207 TESTMGR_POISON_LEN)) {
1208 pr_err("alg: shash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
1209 driver, vec_name, cfg->name);
1210 return -EOVERFLOW;
1211 }
1212 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1213 err = crypto_shash_import(desc, hashstate);
1214 err = check_shash_op("import", err, driver, vec_name,
1215 cfg);
1216 if (err)
1217 return err;
1218 }
1219 }
1220
1221 if (cfg->nosimd)
1222 crypto_disable_simd_for_test();
1223 err = crypto_shash_final(desc, result);
1224 if (cfg->nosimd)
1225 crypto_reenable_simd_for_test();
1226 err = check_shash_op("final", err, driver, vec_name, cfg);
1227 if (err)
1228 return err;
1229result_ready:
1230 return check_hash_result("shash", result, digestsize, vec, vec_name,
1231 driver, cfg);
1232}
1233
Eric Biggers65707372019-03-12 22:12:52 -07001234static int do_ahash_op(int (*op)(struct ahash_request *req),
1235 struct ahash_request *req,
1236 struct crypto_wait *wait, bool nosimd)
1237{
1238 int err;
1239
1240 if (nosimd)
1241 crypto_disable_simd_for_test();
1242
1243 err = op(req);
1244
1245 if (nosimd)
1246 crypto_reenable_simd_for_test();
1247
1248 return crypto_wait_req(err, wait);
1249}
1250
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001251static int check_nonfinal_ahash_op(const char *op, int err,
1252 u8 *result, unsigned int digestsize,
1253 const char *driver, const char *vec_name,
1254 const struct testvec_config *cfg)
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001255{
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001256 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001257 pr_err("alg: ahash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001258 driver, op, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001259 return err;
1260 }
1261 if (!testmgr_is_poison(result, digestsize)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001262 pr_err("alg: ahash: %s %s() used result buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001263 driver, op, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001264 return -EINVAL;
1265 }
1266 return 0;
1267}
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001268
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001269/* Test one hash test vector in one configuration, using the ahash API */
1270static int test_ahash_vec_cfg(const char *driver,
1271 const struct hash_testvec *vec,
1272 const char *vec_name,
1273 const struct testvec_config *cfg,
1274 struct ahash_request *req,
1275 struct test_sglist *tsgl,
1276 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001277{
1278 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1279 const unsigned int alignmask = crypto_ahash_alignmask(tfm);
1280 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1281 const unsigned int statesize = crypto_ahash_statesize(tfm);
1282 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1283 const struct test_sg_division *divs[XBUFSIZE];
1284 DECLARE_CRYPTO_WAIT(wait);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001285 unsigned int i;
1286 struct scatterlist *pending_sgl;
1287 unsigned int pending_len;
1288 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1289 int err;
1290
1291 /* Set the key, if specified */
1292 if (vec->ksize) {
1293 err = crypto_ahash_setkey(tfm, vec->key, vec->ksize);
1294 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001295 if (err == vec->setkey_error)
1296 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001297 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 -07001298 driver, vec_name, vec->setkey_error, err,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001299 crypto_ahash_get_flags(tfm));
1300 return err;
1301 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001302 if (vec->setkey_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001303 pr_err("alg: ahash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001304 driver, vec_name, vec->setkey_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001305 return -EINVAL;
1306 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001307 }
1308
1309 /* Build the scatterlist for the source data */
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001310 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001311 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001312 pr_err("alg: ahash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001313 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001314 return err;
1315 }
1316
1317 /* Do the actual hashing */
1318
1319 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1320 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1321
Eric Biggers5283a8e2019-04-11 21:57:36 -07001322 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1323 vec->digest_error) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001324 /* Just using digest() */
1325 ahash_request_set_callback(req, req_flags, crypto_req_done,
1326 &wait);
1327 ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
Eric Biggers65707372019-03-12 22:12:52 -07001328 err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001329 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07001330 if (err == vec->digest_error)
1331 return 0;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001332 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 -07001333 driver, vec_name, vec->digest_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001334 cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001335 return err;
1336 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001337 if (vec->digest_error) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001338 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 -07001339 driver, vec_name, vec->digest_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001340 return -EINVAL;
1341 }
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001342 goto result_ready;
1343 }
1344
1345 /* Using init(), zero or more update(), then final() or finup() */
1346
1347 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1348 ahash_request_set_crypt(req, NULL, result, 0);
Eric Biggers65707372019-03-12 22:12:52 -07001349 err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001350 err = check_nonfinal_ahash_op("init", err, result, digestsize,
1351 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001352 if (err)
1353 return err;
1354
1355 pending_sgl = NULL;
1356 pending_len = 0;
1357 for (i = 0; i < tsgl->nents; i++) {
1358 if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
1359 pending_sgl != NULL) {
1360 /* update() with the pending data */
1361 ahash_request_set_callback(req, req_flags,
1362 crypto_req_done, &wait);
1363 ahash_request_set_crypt(req, pending_sgl, result,
1364 pending_len);
Eric Biggers65707372019-03-12 22:12:52 -07001365 err = do_ahash_op(crypto_ahash_update, req, &wait,
1366 divs[i]->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001367 err = check_nonfinal_ahash_op("update", err,
1368 result, digestsize,
1369 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001370 if (err)
1371 return err;
1372 pending_sgl = NULL;
1373 pending_len = 0;
1374 }
1375 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1376 /* Test ->export() and ->import() */
1377 testmgr_poison(hashstate + statesize,
1378 TESTMGR_POISON_LEN);
1379 err = crypto_ahash_export(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001380 err = check_nonfinal_ahash_op("export", err,
1381 result, digestsize,
1382 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001383 if (err)
1384 return err;
1385 if (!testmgr_is_poison(hashstate + statesize,
1386 TESTMGR_POISON_LEN)) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001387 pr_err("alg: ahash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001388 driver, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001389 return -EOVERFLOW;
1390 }
1391
1392 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1393 err = crypto_ahash_import(req, hashstate);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001394 err = check_nonfinal_ahash_op("import", err,
1395 result, digestsize,
1396 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001397 if (err)
1398 return err;
1399 }
1400 if (pending_sgl == NULL)
1401 pending_sgl = &tsgl->sgl[i];
1402 pending_len += tsgl->sgl[i].length;
1403 }
1404
1405 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1406 ahash_request_set_crypt(req, pending_sgl, result, pending_len);
1407 if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
1408 /* finish with update() and final() */
Eric Biggers65707372019-03-12 22:12:52 -07001409 err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001410 err = check_nonfinal_ahash_op("update", err, result, digestsize,
1411 driver, vec_name, cfg);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001412 if (err)
1413 return err;
Eric Biggers65707372019-03-12 22:12:52 -07001414 err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001415 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001416 pr_err("alg: ahash: %s final() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001417 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001418 return err;
1419 }
1420 } else {
1421 /* finish with finup() */
Eric Biggers65707372019-03-12 22:12:52 -07001422 err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001423 if (err) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001424 pr_err("alg: ahash: %s finup() failed with err %d on test vector %s, cfg=\"%s\"\n",
Eric Biggers951d1332019-04-11 21:57:37 -07001425 driver, err, vec_name, cfg->name);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001426 return err;
1427 }
1428 }
1429
1430result_ready:
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001431 return check_hash_result("ahash", result, digestsize, vec, vec_name,
1432 driver, cfg);
1433}
1434
1435static int test_hash_vec_cfg(const char *driver,
1436 const struct hash_testvec *vec,
1437 const char *vec_name,
1438 const struct testvec_config *cfg,
1439 struct ahash_request *req,
1440 struct shash_desc *desc,
1441 struct test_sglist *tsgl,
1442 u8 *hashstate)
1443{
1444 int err;
1445
1446 /*
1447 * For algorithms implemented as "shash", most bugs will be detected by
1448 * both the shash and ahash tests. Test the shash API first so that the
1449 * failures involve less indirection, so are easier to debug.
1450 */
1451
1452 if (desc) {
1453 err = test_shash_vec_cfg(driver, vec, vec_name, cfg, desc, tsgl,
1454 hashstate);
1455 if (err)
1456 return err;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001457 }
1458
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001459 return test_ahash_vec_cfg(driver, vec, vec_name, cfg, req, tsgl,
1460 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001461}
1462
1463static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
1464 unsigned int vec_num, struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001465 struct shash_desc *desc, struct test_sglist *tsgl,
1466 u8 *hashstate)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001467{
Eric Biggers951d1332019-04-11 21:57:37 -07001468 char vec_name[16];
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001469 unsigned int i;
1470 int err;
1471
Eric Biggers951d1332019-04-11 21:57:37 -07001472 sprintf(vec_name, "%u", vec_num);
1473
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001474 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07001475 err = test_hash_vec_cfg(driver, vec, vec_name,
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001476 &default_hash_testvec_configs[i],
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001477 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001478 if (err)
1479 return err;
1480 }
1481
1482#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1483 if (!noextratests) {
1484 struct testvec_config cfg;
1485 char cfgname[TESTVEC_CONFIG_NAMELEN];
1486
1487 for (i = 0; i < fuzz_iterations; i++) {
1488 generate_random_testvec_config(&cfg, cfgname,
1489 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07001490 err = test_hash_vec_cfg(driver, vec, vec_name, &cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001491 req, desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001492 if (err)
1493 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001494 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001495 }
1496 }
1497#endif
1498 return 0;
1499}
1500
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001501#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1502/*
1503 * Generate a hash test vector from the given implementation.
1504 * Assumes the buffers in 'vec' were already allocated.
1505 */
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001506static void generate_random_hash_testvec(struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001507 struct hash_testvec *vec,
1508 unsigned int maxkeysize,
1509 unsigned int maxdatasize,
1510 char *name, size_t max_namelen)
1511{
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001512 /* Data */
1513 vec->psize = generate_random_length(maxdatasize);
1514 generate_random_bytes((u8 *)vec->plaintext, vec->psize);
1515
1516 /*
1517 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
1518 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
1519 */
1520 vec->setkey_error = 0;
1521 vec->ksize = 0;
1522 if (maxkeysize) {
1523 vec->ksize = maxkeysize;
1524 if (prandom_u32() % 4 == 0)
1525 vec->ksize = 1 + (prandom_u32() % maxkeysize);
1526 generate_random_bytes((u8 *)vec->key, vec->ksize);
1527
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001528 vec->setkey_error = crypto_shash_setkey(desc->tfm, vec->key,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001529 vec->ksize);
1530 /* If the key couldn't be set, no need to continue to digest. */
1531 if (vec->setkey_error)
1532 goto done;
1533 }
1534
1535 /* Digest */
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001536 vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
1537 vec->psize, (u8 *)vec->digest);
1538done:
1539 snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
1540 vec->psize, vec->ksize);
1541}
1542
1543/*
1544 * Test the hash algorithm represented by @req against the corresponding generic
1545 * implementation, if one is available.
1546 */
1547static int test_hash_vs_generic_impl(const char *driver,
1548 const char *generic_driver,
1549 unsigned int maxkeysize,
1550 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001551 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001552 struct test_sglist *tsgl,
1553 u8 *hashstate)
1554{
1555 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1556 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1557 const unsigned int blocksize = crypto_ahash_blocksize(tfm);
1558 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
1559 const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
1560 char _generic_driver[CRYPTO_MAX_ALG_NAME];
1561 struct crypto_shash *generic_tfm = NULL;
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001562 struct shash_desc *generic_desc = NULL;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001563 unsigned int i;
1564 struct hash_testvec vec = { 0 };
1565 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001566 struct testvec_config *cfg;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001567 char cfgname[TESTVEC_CONFIG_NAMELEN];
1568 int err;
1569
1570 if (noextratests)
1571 return 0;
1572
1573 if (!generic_driver) { /* Use default naming convention? */
1574 err = build_generic_driver_name(algname, _generic_driver);
1575 if (err)
1576 return err;
1577 generic_driver = _generic_driver;
1578 }
1579
1580 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
1581 return 0;
1582
1583 generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
1584 if (IS_ERR(generic_tfm)) {
1585 err = PTR_ERR(generic_tfm);
1586 if (err == -ENOENT) {
1587 pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable\n",
1588 driver, generic_driver);
1589 return 0;
1590 }
1591 pr_err("alg: hash: error allocating %s (generic impl of %s): %d\n",
1592 generic_driver, algname, err);
1593 return err;
1594 }
1595
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001596 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1597 if (!cfg) {
1598 err = -ENOMEM;
1599 goto out;
1600 }
1601
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001602 generic_desc = kzalloc(sizeof(*desc) +
1603 crypto_shash_descsize(generic_tfm), GFP_KERNEL);
1604 if (!generic_desc) {
1605 err = -ENOMEM;
1606 goto out;
1607 }
1608 generic_desc->tfm = generic_tfm;
1609
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001610 /* Check the algorithm properties for consistency. */
1611
1612 if (digestsize != crypto_shash_digestsize(generic_tfm)) {
1613 pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)\n",
1614 driver, digestsize,
1615 crypto_shash_digestsize(generic_tfm));
1616 err = -EINVAL;
1617 goto out;
1618 }
1619
1620 if (blocksize != crypto_shash_blocksize(generic_tfm)) {
1621 pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)\n",
1622 driver, blocksize, crypto_shash_blocksize(generic_tfm));
1623 err = -EINVAL;
1624 goto out;
1625 }
1626
1627 /*
1628 * Now generate test vectors using the generic implementation, and test
1629 * the other implementation against them.
1630 */
1631
1632 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
1633 vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
1634 vec.digest = kmalloc(digestsize, GFP_KERNEL);
1635 if (!vec.key || !vec.plaintext || !vec.digest) {
1636 err = -ENOMEM;
1637 goto out;
1638 }
1639
1640 for (i = 0; i < fuzz_iterations * 8; i++) {
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001641 generate_random_hash_testvec(generic_desc, &vec,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001642 maxkeysize, maxdatasize,
1643 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001644 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001645
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001646 err = test_hash_vec_cfg(driver, &vec, vec_name, cfg,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001647 req, desc, tsgl, hashstate);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001648 if (err)
1649 goto out;
1650 cond_resched();
1651 }
1652 err = 0;
1653out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02001654 kfree(cfg);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001655 kfree(vec.key);
1656 kfree(vec.plaintext);
1657 kfree(vec.digest);
1658 crypto_free_shash(generic_tfm);
Arnd Bergmann149c4e62019-06-18 11:21:53 +02001659 kzfree(generic_desc);
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001660 return err;
1661}
1662#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1663static int test_hash_vs_generic_impl(const char *driver,
1664 const char *generic_driver,
1665 unsigned int maxkeysize,
1666 struct ahash_request *req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001667 struct shash_desc *desc,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001668 struct test_sglist *tsgl,
1669 u8 *hashstate)
1670{
1671 return 0;
1672}
1673#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1674
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001675static int alloc_shash(const char *driver, u32 type, u32 mask,
1676 struct crypto_shash **tfm_ret,
1677 struct shash_desc **desc_ret)
1678{
1679 struct crypto_shash *tfm;
1680 struct shash_desc *desc;
1681
1682 tfm = crypto_alloc_shash(driver, type, mask);
1683 if (IS_ERR(tfm)) {
1684 if (PTR_ERR(tfm) == -ENOENT) {
1685 /*
1686 * This algorithm is only available through the ahash
1687 * API, not the shash API, so skip the shash tests.
1688 */
1689 return 0;
1690 }
1691 pr_err("alg: hash: failed to allocate shash transform for %s: %ld\n",
1692 driver, PTR_ERR(tfm));
1693 return PTR_ERR(tfm);
1694 }
1695
1696 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1697 if (!desc) {
1698 crypto_free_shash(tfm);
1699 return -ENOMEM;
1700 }
1701 desc->tfm = tfm;
1702
1703 *tfm_ret = tfm;
1704 *desc_ret = desc;
1705 return 0;
1706}
1707
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001708static int __alg_test_hash(const struct hash_testvec *vecs,
1709 unsigned int num_vecs, const char *driver,
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001710 u32 type, u32 mask,
1711 const char *generic_driver, unsigned int maxkeysize)
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001712{
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001713 struct crypto_ahash *atfm = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001714 struct ahash_request *req = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001715 struct crypto_shash *stfm = NULL;
1716 struct shash_desc *desc = NULL;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001717 struct test_sglist *tsgl = NULL;
1718 u8 *hashstate = NULL;
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001719 unsigned int statesize;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001720 unsigned int i;
1721 int err;
1722
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001723 /*
1724 * Always test the ahash API. This works regardless of whether the
1725 * algorithm is implemented as ahash or shash.
1726 */
1727
1728 atfm = crypto_alloc_ahash(driver, type, mask);
1729 if (IS_ERR(atfm)) {
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001730 pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001731 driver, PTR_ERR(atfm));
1732 return PTR_ERR(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001733 }
1734
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001735 req = ahash_request_alloc(atfm, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001736 if (!req) {
1737 pr_err("alg: hash: failed to allocate request for %s\n",
1738 driver);
1739 err = -ENOMEM;
1740 goto out;
1741 }
1742
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001743 /*
1744 * If available also test the shash API, to cover corner cases that may
1745 * be missed by testing the ahash API only.
1746 */
1747 err = alloc_shash(driver, type, mask, &stfm, &desc);
1748 if (err)
1749 goto out;
1750
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001751 tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
1752 if (!tsgl || init_test_sglist(tsgl) != 0) {
1753 pr_err("alg: hash: failed to allocate test buffers for %s\n",
1754 driver);
1755 kfree(tsgl);
1756 tsgl = NULL;
1757 err = -ENOMEM;
1758 goto out;
1759 }
1760
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001761 statesize = crypto_ahash_statesize(atfm);
1762 if (stfm)
1763 statesize = max(statesize, crypto_shash_statesize(stfm));
1764 hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001765 if (!hashstate) {
1766 pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
1767 driver);
1768 err = -ENOMEM;
1769 goto out;
1770 }
1771
1772 for (i = 0; i < num_vecs; i++) {
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001773 err = test_hash_vec(driver, &vecs[i], i, req, desc, tsgl,
1774 hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001775 if (err)
1776 goto out;
Eric Biggerse63e1b02019-06-02 22:42:33 -07001777 cond_resched();
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001778 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001779 err = test_hash_vs_generic_impl(driver, generic_driver, maxkeysize, req,
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001780 desc, tsgl, hashstate);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001781out:
1782 kfree(hashstate);
1783 if (tsgl) {
1784 destroy_test_sglist(tsgl);
1785 kfree(tsgl);
1786 }
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001787 kfree(desc);
1788 crypto_free_shash(stfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001789 ahash_request_free(req);
Eric Biggersd8ea98a2019-05-28 09:40:55 -07001790 crypto_free_ahash(atfm);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001791 return err;
1792}
1793
1794static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1795 u32 type, u32 mask)
1796{
1797 const struct hash_testvec *template = desc->suite.hash.vecs;
1798 unsigned int tcount = desc->suite.hash.count;
1799 unsigned int nr_unkeyed, nr_keyed;
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001800 unsigned int maxkeysize = 0;
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001801 int err;
1802
1803 /*
1804 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1805 * first, before setting a key on the tfm. To make this easier, we
1806 * require that the unkeyed test vectors (if any) are listed first.
1807 */
1808
1809 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1810 if (template[nr_unkeyed].ksize)
1811 break;
1812 }
1813 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1814 if (!template[nr_unkeyed + nr_keyed].ksize) {
1815 pr_err("alg: hash: test vectors for %s out of order, "
1816 "unkeyed ones must come first\n", desc->alg);
Kamil Konieczny466d7b92018-01-16 15:26:13 +01001817 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08001818 }
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001819 maxkeysize = max_t(unsigned int, maxkeysize,
1820 template[nr_unkeyed + nr_keyed].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001821 }
1822
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001823 err = 0;
1824 if (nr_unkeyed) {
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001825 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
1826 desc->generic_driver, maxkeysize);
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001827 template += nr_unkeyed;
Herbert Xuda7f0332008-07-31 17:08:25 +08001828 }
1829
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001830 if (!err && nr_keyed)
Eric Biggers9a8a6b32019-04-11 21:57:39 -07001831 err = __alg_test_hash(template, nr_keyed, driver, type, mask,
1832 desc->generic_driver, maxkeysize);
Wang, Rui Y018ba952016-02-03 18:26:57 +08001833
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08001834 return err;
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +03001835}
1836
Eric Biggersed968042019-01-31 23:51:47 -08001837static int test_aead_vec_cfg(const char *driver, int enc,
1838 const struct aead_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07001839 const char *vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08001840 const struct testvec_config *cfg,
1841 struct aead_request *req,
1842 struct cipher_test_sglists *tsgls)
Herbert Xuda7f0332008-07-31 17:08:25 +08001843{
Eric Biggersed968042019-01-31 23:51:47 -08001844 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1845 const unsigned int alignmask = crypto_aead_alignmask(tfm);
1846 const unsigned int ivsize = crypto_aead_ivsize(tfm);
1847 const unsigned int authsize = vec->clen - vec->plen;
1848 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1849 const char *op = enc ? "encryption" : "decryption";
1850 DECLARE_CRYPTO_WAIT(wait);
1851 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
1852 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
1853 cfg->iv_offset +
1854 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
1855 struct kvec input[2];
Eric Biggers5283a8e2019-04-11 21:57:36 -07001856 int expected_error;
Eric Biggersed968042019-01-31 23:51:47 -08001857 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001858
Eric Biggersed968042019-01-31 23:51:47 -08001859 /* Set the key */
1860 if (vec->wk)
1861 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001862 else
Eric Biggersed968042019-01-31 23:51:47 -08001863 crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1864 err = crypto_aead_setkey(tfm, vec->key, vec->klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001865 if (err && err != vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001866 pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1867 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07001868 crypto_aead_get_flags(tfm));
Eric Biggersed968042019-01-31 23:51:47 -08001869 return err;
1870 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001871 if (!err && vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001872 pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1873 driver, vec_name, vec->setkey_error);
Eric Biggersed968042019-01-31 23:51:47 -08001874 return -EINVAL;
1875 }
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001876
Eric Biggersed968042019-01-31 23:51:47 -08001877 /* Set the authentication tag size */
1878 err = crypto_aead_setauthsize(tfm, authsize);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001879 if (err && err != vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001880 pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d\n",
1881 driver, vec_name, vec->setauthsize_error, err);
Eric Biggersed968042019-01-31 23:51:47 -08001882 return err;
1883 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07001884 if (!err && vec->setauthsize_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001885 pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d\n",
1886 driver, vec_name, vec->setauthsize_error);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001887 return -EINVAL;
1888 }
1889
1890 if (vec->setkey_error || vec->setauthsize_error)
1891 return 0;
Eric Biggersed968042019-01-31 23:51:47 -08001892
1893 /* The IV must be copied to a buffer, as the algorithm may modify it */
1894 if (WARN_ON(ivsize > MAX_IVLEN))
1895 return -EINVAL;
1896 if (vec->iv)
1897 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001898 else
Eric Biggersed968042019-01-31 23:51:47 -08001899 memset(iv, 0, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001900
Eric Biggersed968042019-01-31 23:51:47 -08001901 /* Build the src/dst scatterlists */
1902 input[0].iov_base = (void *)vec->assoc;
1903 input[0].iov_len = vec->alen;
1904 input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
1905 input[1].iov_len = enc ? vec->plen : vec->clen;
1906 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
1907 vec->alen + (enc ? vec->plen :
1908 vec->clen),
1909 vec->alen + (enc ? vec->clen :
1910 vec->plen),
1911 input, 2);
1912 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07001913 pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
1914 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001915 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001916 }
1917
Eric Biggersed968042019-01-31 23:51:47 -08001918 /* Do the actual encryption or decryption */
1919 testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
1920 aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
1921 aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
1922 enc ? vec->plen : vec->clen, iv);
1923 aead_request_set_ad(req, vec->alen);
Eric Biggers65707372019-03-12 22:12:52 -07001924 if (cfg->nosimd)
1925 crypto_disable_simd_for_test();
1926 err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
1927 if (cfg->nosimd)
1928 crypto_reenable_simd_for_test();
1929 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001930
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001931 /* Check that the algorithm didn't overwrite things it shouldn't have */
1932 if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
1933 req->assoclen != vec->alen ||
1934 req->iv != iv ||
1935 req->src != tsgls->src.sgl_ptr ||
1936 req->dst != tsgls->dst.sgl_ptr ||
1937 crypto_aead_reqtfm(req) != tfm ||
1938 req->base.complete != crypto_req_done ||
1939 req->base.flags != req_flags ||
1940 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07001941 pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
1942 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001943 if (req->cryptlen != (enc ? vec->plen : vec->clen))
1944 pr_err("alg: aead: changed 'req->cryptlen'\n");
1945 if (req->assoclen != vec->alen)
1946 pr_err("alg: aead: changed 'req->assoclen'\n");
1947 if (req->iv != iv)
1948 pr_err("alg: aead: changed 'req->iv'\n");
1949 if (req->src != tsgls->src.sgl_ptr)
1950 pr_err("alg: aead: changed 'req->src'\n");
1951 if (req->dst != tsgls->dst.sgl_ptr)
1952 pr_err("alg: aead: changed 'req->dst'\n");
1953 if (crypto_aead_reqtfm(req) != tfm)
1954 pr_err("alg: aead: changed 'req->base.tfm'\n");
1955 if (req->base.complete != crypto_req_done)
1956 pr_err("alg: aead: changed 'req->base.complete'\n");
1957 if (req->base.flags != req_flags)
1958 pr_err("alg: aead: changed 'req->base.flags'\n");
1959 if (req->base.data != &wait)
1960 pr_err("alg: aead: changed 'req->base.data'\n");
1961 return -EINVAL;
1962 }
1963 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001964 pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
1965 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001966 return -EINVAL;
1967 }
1968 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
1969 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07001970 pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
1971 driver, op, vec_name, cfg->name);
Eric Biggersa6e5ef92019-01-31 23:51:50 -08001972 return -EINVAL;
1973 }
1974
Eric Biggers5283a8e2019-04-11 21:57:36 -07001975 /* Check for success or failure */
1976 expected_error = vec->novrfy ? -EBADMSG : vec->crypt_error;
1977 if (err) {
1978 if (err == expected_error)
1979 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07001980 pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1981 driver, op, vec_name, expected_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001982 return err;
1983 }
1984 if (expected_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07001985 pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1986 driver, op, vec_name, expected_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07001987 return -EINVAL;
1988 }
1989
Eric Biggersed968042019-01-31 23:51:47 -08001990 /* Check for the correct output (ciphertext or plaintext) */
1991 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
1992 enc ? vec->clen : vec->plen,
1993 vec->alen, enc || !cfg->inplace);
1994 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07001995 pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
1996 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08001997 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001998 }
Eric Biggersed968042019-01-31 23:51:47 -08001999 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002000 pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2001 driver, op, vec_name, cfg->name);
Eric Biggersed968042019-01-31 23:51:47 -08002002 return err;
Jussi Kivilinna58dcf542013-06-13 17:37:50 +03002003 }
2004
2005 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03002006}
2007
Eric Biggersed968042019-01-31 23:51:47 -08002008static int test_aead_vec(const char *driver, int enc,
2009 const struct aead_testvec *vec, unsigned int vec_num,
2010 struct aead_request *req,
2011 struct cipher_test_sglists *tsgls)
2012{
Eric Biggers951d1332019-04-11 21:57:37 -07002013 char vec_name[16];
Eric Biggersed968042019-01-31 23:51:47 -08002014 unsigned int i;
2015 int err;
2016
2017 if (enc && vec->novrfy)
2018 return 0;
2019
Eric Biggers951d1332019-04-11 21:57:37 -07002020 sprintf(vec_name, "%u", vec_num);
2021
Eric Biggersed968042019-01-31 23:51:47 -08002022 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002023 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002024 &default_cipher_testvec_configs[i],
2025 req, tsgls);
2026 if (err)
2027 return err;
2028 }
2029
2030#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2031 if (!noextratests) {
2032 struct testvec_config cfg;
2033 char cfgname[TESTVEC_CONFIG_NAMELEN];
2034
2035 for (i = 0; i < fuzz_iterations; i++) {
2036 generate_random_testvec_config(&cfg, cfgname,
2037 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002038 err = test_aead_vec_cfg(driver, enc, vec, vec_name,
Eric Biggersed968042019-01-31 23:51:47 -08002039 &cfg, req, tsgls);
2040 if (err)
2041 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002042 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002043 }
2044 }
2045#endif
2046 return 0;
2047}
2048
Eric Biggers40153b12019-04-11 21:57:41 -07002049#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2050/*
2051 * Generate an AEAD test vector from the given implementation.
2052 * Assumes the buffers in 'vec' were already allocated.
2053 */
2054static void generate_random_aead_testvec(struct aead_request *req,
2055 struct aead_testvec *vec,
2056 unsigned int maxkeysize,
2057 unsigned int maxdatasize,
2058 char *name, size_t max_namelen)
2059{
2060 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2061 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2062 unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2063 unsigned int authsize;
2064 unsigned int total_len;
2065 int i;
2066 struct scatterlist src[2], dst;
2067 u8 iv[MAX_IVLEN];
2068 DECLARE_CRYPTO_WAIT(wait);
2069
2070 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2071 vec->klen = maxkeysize;
2072 if (prandom_u32() % 4 == 0)
2073 vec->klen = prandom_u32() % (maxkeysize + 1);
2074 generate_random_bytes((u8 *)vec->key, vec->klen);
2075 vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
2076
2077 /* IV */
2078 generate_random_bytes((u8 *)vec->iv, ivsize);
2079
2080 /* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
2081 authsize = maxauthsize;
2082 if (prandom_u32() % 4 == 0)
2083 authsize = prandom_u32() % (maxauthsize + 1);
2084 if (WARN_ON(authsize > maxdatasize))
2085 authsize = maxdatasize;
2086 maxdatasize -= authsize;
2087 vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
2088
2089 /* Plaintext and associated data */
2090 total_len = generate_random_length(maxdatasize);
2091 if (prandom_u32() % 4 == 0)
2092 vec->alen = 0;
2093 else
2094 vec->alen = generate_random_length(total_len);
2095 vec->plen = total_len - vec->alen;
2096 generate_random_bytes((u8 *)vec->assoc, vec->alen);
2097 generate_random_bytes((u8 *)vec->ptext, vec->plen);
2098
2099 vec->clen = vec->plen + authsize;
2100
2101 /*
2102 * If the key or authentication tag size couldn't be set, no need to
2103 * continue to encrypt.
2104 */
Eric Biggerseb455db2019-12-01 13:53:26 -08002105 vec->crypt_error = 0;
Eric Biggers40153b12019-04-11 21:57:41 -07002106 if (vec->setkey_error || vec->setauthsize_error)
2107 goto done;
2108
2109 /* Ciphertext */
2110 sg_init_table(src, 2);
2111 i = 0;
2112 if (vec->alen)
2113 sg_set_buf(&src[i++], vec->assoc, vec->alen);
2114 if (vec->plen)
2115 sg_set_buf(&src[i++], vec->ptext, vec->plen);
2116 sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
2117 memcpy(iv, vec->iv, ivsize);
2118 aead_request_set_callback(req, 0, crypto_req_done, &wait);
2119 aead_request_set_crypt(req, src, &dst, vec->plen, iv);
2120 aead_request_set_ad(req, vec->alen);
2121 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req), &wait);
2122 if (vec->crypt_error == 0)
2123 memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
2124done:
2125 snprintf(name, max_namelen,
2126 "\"random: alen=%u plen=%u authsize=%u klen=%u\"",
2127 vec->alen, vec->plen, authsize, vec->klen);
2128}
2129
2130/*
2131 * Test the AEAD algorithm represented by @req against the corresponding generic
2132 * implementation, if one is available.
2133 */
2134static int test_aead_vs_generic_impl(const char *driver,
2135 const struct alg_test_desc *test_desc,
2136 struct aead_request *req,
2137 struct cipher_test_sglists *tsgls)
2138{
2139 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2140 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2141 const unsigned int maxauthsize = crypto_aead_alg(tfm)->maxauthsize;
2142 const unsigned int blocksize = crypto_aead_blocksize(tfm);
2143 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2144 const char *algname = crypto_aead_alg(tfm)->base.cra_name;
2145 const char *generic_driver = test_desc->generic_driver;
2146 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2147 struct crypto_aead *generic_tfm = NULL;
2148 struct aead_request *generic_req = NULL;
2149 unsigned int maxkeysize;
2150 unsigned int i;
2151 struct aead_testvec vec = { 0 };
2152 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002153 struct testvec_config *cfg;
Eric Biggers40153b12019-04-11 21:57:41 -07002154 char cfgname[TESTVEC_CONFIG_NAMELEN];
2155 int err;
2156
2157 if (noextratests)
2158 return 0;
2159
2160 if (!generic_driver) { /* Use default naming convention? */
2161 err = build_generic_driver_name(algname, _generic_driver);
2162 if (err)
2163 return err;
2164 generic_driver = _generic_driver;
2165 }
2166
2167 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2168 return 0;
2169
2170 generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
2171 if (IS_ERR(generic_tfm)) {
2172 err = PTR_ERR(generic_tfm);
2173 if (err == -ENOENT) {
2174 pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable\n",
2175 driver, generic_driver);
2176 return 0;
2177 }
2178 pr_err("alg: aead: error allocating %s (generic impl of %s): %d\n",
2179 generic_driver, algname, err);
2180 return err;
2181 }
2182
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002183 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
2184 if (!cfg) {
2185 err = -ENOMEM;
2186 goto out;
2187 }
2188
Eric Biggers40153b12019-04-11 21:57:41 -07002189 generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
2190 if (!generic_req) {
2191 err = -ENOMEM;
2192 goto out;
2193 }
2194
2195 /* Check the algorithm properties for consistency. */
2196
2197 if (maxauthsize != crypto_aead_alg(generic_tfm)->maxauthsize) {
2198 pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)\n",
2199 driver, maxauthsize,
2200 crypto_aead_alg(generic_tfm)->maxauthsize);
2201 err = -EINVAL;
2202 goto out;
2203 }
2204
2205 if (ivsize != crypto_aead_ivsize(generic_tfm)) {
2206 pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2207 driver, ivsize, crypto_aead_ivsize(generic_tfm));
2208 err = -EINVAL;
2209 goto out;
2210 }
2211
2212 if (blocksize != crypto_aead_blocksize(generic_tfm)) {
2213 pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2214 driver, blocksize, crypto_aead_blocksize(generic_tfm));
2215 err = -EINVAL;
2216 goto out;
2217 }
2218
2219 /*
2220 * Now generate test vectors using the generic implementation, and test
2221 * the other implementation against them.
2222 */
2223
2224 maxkeysize = 0;
2225 for (i = 0; i < test_desc->suite.aead.count; i++)
2226 maxkeysize = max_t(unsigned int, maxkeysize,
2227 test_desc->suite.aead.vecs[i].klen);
2228
2229 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
2230 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2231 vec.assoc = kmalloc(maxdatasize, GFP_KERNEL);
2232 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2233 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2234 if (!vec.key || !vec.iv || !vec.assoc || !vec.ptext || !vec.ctext) {
2235 err = -ENOMEM;
2236 goto out;
2237 }
2238
2239 for (i = 0; i < fuzz_iterations * 8; i++) {
2240 generate_random_aead_testvec(generic_req, &vec,
2241 maxkeysize, maxdatasize,
2242 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002243 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggers40153b12019-04-11 21:57:41 -07002244
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002245 err = test_aead_vec_cfg(driver, ENCRYPT, &vec, vec_name, cfg,
Eric Biggers40153b12019-04-11 21:57:41 -07002246 req, tsgls);
2247 if (err)
2248 goto out;
Eric Biggerseb455db2019-12-01 13:53:26 -08002249 if (vec.crypt_error == 0) {
2250 err = test_aead_vec_cfg(driver, DECRYPT, &vec, vec_name,
2251 cfg, req, tsgls);
2252 if (err)
2253 goto out;
2254 }
Eric Biggers40153b12019-04-11 21:57:41 -07002255 cond_resched();
2256 }
2257 err = 0;
2258out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002259 kfree(cfg);
Eric Biggers40153b12019-04-11 21:57:41 -07002260 kfree(vec.key);
2261 kfree(vec.iv);
2262 kfree(vec.assoc);
2263 kfree(vec.ptext);
2264 kfree(vec.ctext);
2265 crypto_free_aead(generic_tfm);
2266 aead_request_free(generic_req);
2267 return err;
2268}
2269#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2270static int test_aead_vs_generic_impl(const char *driver,
2271 const struct alg_test_desc *test_desc,
2272 struct aead_request *req,
2273 struct cipher_test_sglists *tsgls)
2274{
2275 return 0;
2276}
2277#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2278
Eric Biggersed968042019-01-31 23:51:47 -08002279static int test_aead(const char *driver, int enc,
2280 const struct aead_test_suite *suite,
2281 struct aead_request *req,
2282 struct cipher_test_sglists *tsgls)
2283{
2284 unsigned int i;
2285 int err;
2286
2287 for (i = 0; i < suite->count; i++) {
2288 err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
2289 tsgls);
2290 if (err)
2291 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002292 cond_resched();
Eric Biggersed968042019-01-31 23:51:47 -08002293 }
2294 return 0;
2295}
2296
2297static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
2298 u32 type, u32 mask)
2299{
2300 const struct aead_test_suite *suite = &desc->suite.aead;
2301 struct crypto_aead *tfm;
2302 struct aead_request *req = NULL;
2303 struct cipher_test_sglists *tsgls = NULL;
2304 int err;
2305
2306 if (suite->count <= 0) {
2307 pr_err("alg: aead: empty test suite for %s\n", driver);
2308 return -EINVAL;
2309 }
2310
2311 tfm = crypto_alloc_aead(driver, type, mask);
2312 if (IS_ERR(tfm)) {
2313 pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
2314 driver, PTR_ERR(tfm));
2315 return PTR_ERR(tfm);
2316 }
2317
2318 req = aead_request_alloc(tfm, GFP_KERNEL);
2319 if (!req) {
2320 pr_err("alg: aead: failed to allocate request for %s\n",
2321 driver);
2322 err = -ENOMEM;
2323 goto out;
2324 }
2325
2326 tsgls = alloc_cipher_test_sglists();
2327 if (!tsgls) {
2328 pr_err("alg: aead: failed to allocate test buffers for %s\n",
2329 driver);
2330 err = -ENOMEM;
2331 goto out;
2332 }
2333
2334 err = test_aead(driver, ENCRYPT, suite, req, tsgls);
2335 if (err)
2336 goto out;
2337
2338 err = test_aead(driver, DECRYPT, suite, req, tsgls);
Eric Biggers40153b12019-04-11 21:57:41 -07002339 if (err)
2340 goto out;
2341
2342 err = test_aead_vs_generic_impl(driver, desc, req, tsgls);
Eric Biggersed968042019-01-31 23:51:47 -08002343out:
2344 free_cipher_test_sglists(tsgls);
2345 aead_request_free(req);
2346 crypto_free_aead(tfm);
2347 return err;
2348}
2349
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002350static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002351 const struct cipher_testvec *template,
2352 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002353{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002354 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
2355 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002356 char *q;
2357 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002358 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002359 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002360 char *xbuf[XBUFSIZE];
2361 int ret = -ENOMEM;
2362
2363 if (testmgr_alloc_buf(xbuf))
2364 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002365
2366 if (enc == ENCRYPT)
2367 e = "encryption";
2368 else
2369 e = "decryption";
2370
2371 j = 0;
2372 for (i = 0; i < tcount; i++) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002373
Stephan Mueller10faa8c2016-08-25 15:15:01 +02002374 if (fips_enabled && template[i].fips_skip)
2375 continue;
2376
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002377 input = enc ? template[i].ptext : template[i].ctext;
2378 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002379 j++;
2380
Herbert Xufd57f222009-05-29 16:05:42 +10002381 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002382 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10002383 goto out;
2384
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002385 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002386 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002387
2388 crypto_cipher_clear_flags(tfm, ~0);
2389 if (template[i].wk)
Eric Biggers231baec2019-01-18 22:48:00 -08002390 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002391
2392 ret = crypto_cipher_setkey(tfm, template[i].key,
2393 template[i].klen);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002394 if (ret) {
2395 if (ret == template[i].setkey_error)
2396 continue;
2397 pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x\n",
2398 algo, j, template[i].setkey_error, ret,
2399 crypto_cipher_get_flags(tfm));
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002400 goto out;
Eric Biggers5283a8e2019-04-11 21:57:36 -07002401 }
2402 if (template[i].setkey_error) {
2403 pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d\n",
2404 algo, j, template[i].setkey_error);
2405 ret = -EINVAL;
2406 goto out;
2407 }
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002408
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002409 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002410 k += crypto_cipher_blocksize(tfm)) {
2411 if (enc)
2412 crypto_cipher_encrypt_one(tfm, data + k,
2413 data + k);
2414 else
2415 crypto_cipher_decrypt_one(tfm, data + k,
2416 data + k);
2417 }
2418
2419 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002420 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002421 printk(KERN_ERR "alg: cipher: Test %d failed "
2422 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002423 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002424 ret = -EINVAL;
2425 goto out;
2426 }
2427 }
2428
2429 ret = 0;
2430
2431out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002432 testmgr_free_buf(xbuf);
2433out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002434 return ret;
2435}
2436
Eric Biggers4e7babba2019-01-31 23:51:46 -08002437static int test_skcipher_vec_cfg(const char *driver, int enc,
2438 const struct cipher_testvec *vec,
Eric Biggers951d1332019-04-11 21:57:37 -07002439 const char *vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002440 const struct testvec_config *cfg,
2441 struct skcipher_request *req,
2442 struct cipher_test_sglists *tsgls)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002443{
Eric Biggers4e7babba2019-01-31 23:51:46 -08002444 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2445 const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
2446 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2447 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2448 const char *op = enc ? "encryption" : "decryption";
2449 DECLARE_CRYPTO_WAIT(wait);
2450 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2451 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2452 cfg->iv_offset +
2453 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2454 struct kvec input;
2455 int err;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08002456
Eric Biggers4e7babba2019-01-31 23:51:46 -08002457 /* Set the key */
2458 if (vec->wk)
2459 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002460 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002461 crypto_skcipher_clear_flags(tfm,
2462 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2463 err = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2464 if (err) {
Eric Biggers5283a8e2019-04-11 21:57:36 -07002465 if (err == vec->setkey_error)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002466 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002467 pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2468 driver, vec_name, vec->setkey_error, err,
Eric Biggers5283a8e2019-04-11 21:57:36 -07002469 crypto_skcipher_get_flags(tfm));
Eric Biggers4e7babba2019-01-31 23:51:46 -08002470 return err;
2471 }
Eric Biggers5283a8e2019-04-11 21:57:36 -07002472 if (vec->setkey_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002473 pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2474 driver, vec_name, vec->setkey_error);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002475 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002476 }
2477
Eric Biggers4e7babba2019-01-31 23:51:46 -08002478 /* The IV must be copied to a buffer, as the algorithm may modify it */
2479 if (ivsize) {
2480 if (WARN_ON(ivsize > MAX_IVLEN))
2481 return -EINVAL;
Eric Biggers8efd9722019-02-14 00:03:51 -08002482 if (vec->generates_iv && !enc)
2483 memcpy(iv, vec->iv_out, ivsize);
2484 else if (vec->iv)
Eric Biggers4e7babba2019-01-31 23:51:46 -08002485 memcpy(iv, vec->iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08002486 else
Eric Biggers4e7babba2019-01-31 23:51:46 -08002487 memset(iv, 0, ivsize);
2488 } else {
2489 if (vec->generates_iv) {
Eric Biggers951d1332019-04-11 21:57:37 -07002490 pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!\n",
2491 driver, vec_name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002492 return -EINVAL;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03002493 }
Eric Biggers4e7babba2019-01-31 23:51:46 -08002494 iv = NULL;
Herbert Xuda7f0332008-07-31 17:08:25 +08002495 }
2496
Eric Biggers4e7babba2019-01-31 23:51:46 -08002497 /* Build the src/dst scatterlists */
2498 input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2499 input.iov_len = vec->len;
2500 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2501 vec->len, vec->len, &input, 1);
2502 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002503 pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2504 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002505 return err;
Herbert Xuda7f0332008-07-31 17:08:25 +08002506 }
2507
Eric Biggers4e7babba2019-01-31 23:51:46 -08002508 /* Do the actual encryption or decryption */
2509 testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
2510 skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
2511 skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2512 vec->len, iv);
Eric Biggers65707372019-03-12 22:12:52 -07002513 if (cfg->nosimd)
2514 crypto_disable_simd_for_test();
2515 err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
2516 if (cfg->nosimd)
2517 crypto_reenable_simd_for_test();
2518 err = crypto_wait_req(err, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08002519
Eric Biggersfa353c92019-01-31 23:51:49 -08002520 /* Check that the algorithm didn't overwrite things it shouldn't have */
2521 if (req->cryptlen != vec->len ||
2522 req->iv != iv ||
2523 req->src != tsgls->src.sgl_ptr ||
2524 req->dst != tsgls->dst.sgl_ptr ||
2525 crypto_skcipher_reqtfm(req) != tfm ||
2526 req->base.complete != crypto_req_done ||
2527 req->base.flags != req_flags ||
2528 req->base.data != &wait) {
Eric Biggers951d1332019-04-11 21:57:37 -07002529 pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2530 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002531 if (req->cryptlen != vec->len)
2532 pr_err("alg: skcipher: changed 'req->cryptlen'\n");
2533 if (req->iv != iv)
2534 pr_err("alg: skcipher: changed 'req->iv'\n");
2535 if (req->src != tsgls->src.sgl_ptr)
2536 pr_err("alg: skcipher: changed 'req->src'\n");
2537 if (req->dst != tsgls->dst.sgl_ptr)
2538 pr_err("alg: skcipher: changed 'req->dst'\n");
2539 if (crypto_skcipher_reqtfm(req) != tfm)
2540 pr_err("alg: skcipher: changed 'req->base.tfm'\n");
2541 if (req->base.complete != crypto_req_done)
2542 pr_err("alg: skcipher: changed 'req->base.complete'\n");
2543 if (req->base.flags != req_flags)
2544 pr_err("alg: skcipher: changed 'req->base.flags'\n");
2545 if (req->base.data != &wait)
2546 pr_err("alg: skcipher: changed 'req->base.data'\n");
2547 return -EINVAL;
2548 }
2549 if (is_test_sglist_corrupted(&tsgls->src)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002550 pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2551 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002552 return -EINVAL;
2553 }
2554 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2555 is_test_sglist_corrupted(&tsgls->dst)) {
Eric Biggers951d1332019-04-11 21:57:37 -07002556 pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2557 driver, op, vec_name, cfg->name);
Eric Biggersfa353c92019-01-31 23:51:49 -08002558 return -EINVAL;
2559 }
2560
Eric Biggers5283a8e2019-04-11 21:57:36 -07002561 /* Check for success or failure */
2562 if (err) {
2563 if (err == vec->crypt_error)
2564 return 0;
Eric Biggers951d1332019-04-11 21:57:37 -07002565 pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
2566 driver, op, vec_name, vec->crypt_error, err, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002567 return err;
2568 }
2569 if (vec->crypt_error) {
Eric Biggers951d1332019-04-11 21:57:37 -07002570 pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
2571 driver, op, vec_name, vec->crypt_error, cfg->name);
Eric Biggers5283a8e2019-04-11 21:57:36 -07002572 return -EINVAL;
2573 }
2574
Eric Biggers4e7babba2019-01-31 23:51:46 -08002575 /* Check for the correct output (ciphertext or plaintext) */
2576 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2577 vec->len, 0, true);
2578 if (err == -EOVERFLOW) {
Eric Biggers951d1332019-04-11 21:57:37 -07002579 pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2580 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002581 return err;
2582 }
2583 if (err) {
Eric Biggers951d1332019-04-11 21:57:37 -07002584 pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2585 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002586 return err;
2587 }
Herbert Xuda7f0332008-07-31 17:08:25 +08002588
Eric Biggers4e7babba2019-01-31 23:51:46 -08002589 /* If applicable, check that the algorithm generated the correct IV */
Eric Biggers8efd9722019-02-14 00:03:51 -08002590 if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
Eric Biggers951d1332019-04-11 21:57:37 -07002591 pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"\n",
2592 driver, op, vec_name, cfg->name);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002593 hexdump(iv, ivsize);
2594 return -EINVAL;
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03002595 }
2596
2597 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03002598}
2599
Eric Biggers4e7babba2019-01-31 23:51:46 -08002600static int test_skcipher_vec(const char *driver, int enc,
2601 const struct cipher_testvec *vec,
2602 unsigned int vec_num,
2603 struct skcipher_request *req,
2604 struct cipher_test_sglists *tsgls)
2605{
Eric Biggers951d1332019-04-11 21:57:37 -07002606 char vec_name[16];
Eric Biggers4e7babba2019-01-31 23:51:46 -08002607 unsigned int i;
2608 int err;
2609
2610 if (fips_enabled && vec->fips_skip)
2611 return 0;
2612
Eric Biggers951d1332019-04-11 21:57:37 -07002613 sprintf(vec_name, "%u", vec_num);
2614
Eric Biggers4e7babba2019-01-31 23:51:46 -08002615 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
Eric Biggers951d1332019-04-11 21:57:37 -07002616 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002617 &default_cipher_testvec_configs[i],
2618 req, tsgls);
2619 if (err)
2620 return err;
2621 }
2622
2623#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2624 if (!noextratests) {
2625 struct testvec_config cfg;
2626 char cfgname[TESTVEC_CONFIG_NAMELEN];
2627
2628 for (i = 0; i < fuzz_iterations; i++) {
2629 generate_random_testvec_config(&cfg, cfgname,
2630 sizeof(cfgname));
Eric Biggers951d1332019-04-11 21:57:37 -07002631 err = test_skcipher_vec_cfg(driver, enc, vec, vec_name,
Eric Biggers4e7babba2019-01-31 23:51:46 -08002632 &cfg, req, tsgls);
2633 if (err)
2634 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002635 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002636 }
2637 }
2638#endif
2639 return 0;
2640}
2641
Eric Biggersd435e102019-04-11 21:57:40 -07002642#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2643/*
2644 * Generate a symmetric cipher test vector from the given implementation.
2645 * Assumes the buffers in 'vec' were already allocated.
2646 */
2647static void generate_random_cipher_testvec(struct skcipher_request *req,
2648 struct cipher_testvec *vec,
2649 unsigned int maxdatasize,
2650 char *name, size_t max_namelen)
2651{
2652 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
Eric Biggers9ac0d132019-11-29 10:23:04 -08002653 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
Eric Biggersd435e102019-04-11 21:57:40 -07002654 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2655 struct scatterlist src, dst;
2656 u8 iv[MAX_IVLEN];
2657 DECLARE_CRYPTO_WAIT(wait);
2658
2659 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2660 vec->klen = maxkeysize;
2661 if (prandom_u32() % 4 == 0)
2662 vec->klen = prandom_u32() % (maxkeysize + 1);
2663 generate_random_bytes((u8 *)vec->key, vec->klen);
2664 vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
2665
2666 /* IV */
2667 generate_random_bytes((u8 *)vec->iv, ivsize);
2668
2669 /* Plaintext */
2670 vec->len = generate_random_length(maxdatasize);
2671 generate_random_bytes((u8 *)vec->ptext, vec->len);
2672
2673 /* If the key couldn't be set, no need to continue to encrypt. */
2674 if (vec->setkey_error)
2675 goto done;
2676
2677 /* Ciphertext */
2678 sg_init_one(&src, vec->ptext, vec->len);
2679 sg_init_one(&dst, vec->ctext, vec->len);
2680 memcpy(iv, vec->iv, ivsize);
2681 skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
2682 skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
2683 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
Eric Biggerseb455db2019-12-01 13:53:26 -08002684 if (vec->crypt_error != 0) {
2685 /*
2686 * The only acceptable error here is for an invalid length, so
2687 * skcipher decryption should fail with the same error too.
2688 * We'll test for this. But to keep the API usage well-defined,
2689 * explicitly initialize the ciphertext buffer too.
2690 */
2691 memset((u8 *)vec->ctext, 0, vec->len);
2692 }
Eric Biggersd435e102019-04-11 21:57:40 -07002693done:
2694 snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
2695 vec->len, vec->klen);
2696}
2697
2698/*
2699 * Test the skcipher algorithm represented by @req against the corresponding
2700 * generic implementation, if one is available.
2701 */
2702static int test_skcipher_vs_generic_impl(const char *driver,
2703 const char *generic_driver,
2704 struct skcipher_request *req,
2705 struct cipher_test_sglists *tsgls)
2706{
2707 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
Eric Biggers9ac0d132019-11-29 10:23:04 -08002708 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
Eric Biggersd435e102019-04-11 21:57:40 -07002709 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2710 const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
2711 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2712 const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
2713 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2714 struct crypto_skcipher *generic_tfm = NULL;
2715 struct skcipher_request *generic_req = NULL;
2716 unsigned int i;
2717 struct cipher_testvec vec = { 0 };
2718 char vec_name[64];
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002719 struct testvec_config *cfg;
Eric Biggersd435e102019-04-11 21:57:40 -07002720 char cfgname[TESTVEC_CONFIG_NAMELEN];
2721 int err;
2722
2723 if (noextratests)
2724 return 0;
2725
2726 /* Keywrap isn't supported here yet as it handles its IV differently. */
2727 if (strncmp(algname, "kw(", 3) == 0)
2728 return 0;
2729
2730 if (!generic_driver) { /* Use default naming convention? */
2731 err = build_generic_driver_name(algname, _generic_driver);
2732 if (err)
2733 return err;
2734 generic_driver = _generic_driver;
2735 }
2736
2737 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2738 return 0;
2739
2740 generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
2741 if (IS_ERR(generic_tfm)) {
2742 err = PTR_ERR(generic_tfm);
2743 if (err == -ENOENT) {
2744 pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable\n",
2745 driver, generic_driver);
2746 return 0;
2747 }
2748 pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d\n",
2749 generic_driver, algname, err);
2750 return err;
2751 }
2752
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002753 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
2754 if (!cfg) {
2755 err = -ENOMEM;
2756 goto out;
2757 }
2758
Eric Biggersd435e102019-04-11 21:57:40 -07002759 generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
2760 if (!generic_req) {
2761 err = -ENOMEM;
2762 goto out;
2763 }
2764
2765 /* Check the algorithm properties for consistency. */
2766
Eric Biggersfd60f722019-12-01 13:53:27 -08002767 if (crypto_skcipher_min_keysize(tfm) !=
2768 crypto_skcipher_min_keysize(generic_tfm)) {
2769 pr_err("alg: skcipher: min keysize for %s (%u) doesn't match generic impl (%u)\n",
2770 driver, crypto_skcipher_min_keysize(tfm),
2771 crypto_skcipher_min_keysize(generic_tfm));
2772 err = -EINVAL;
2773 goto out;
2774 }
2775
Eric Biggers9ac0d132019-11-29 10:23:04 -08002776 if (maxkeysize != crypto_skcipher_max_keysize(generic_tfm)) {
Eric Biggersd435e102019-04-11 21:57:40 -07002777 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers9ac0d132019-11-29 10:23:04 -08002778 driver, maxkeysize,
2779 crypto_skcipher_max_keysize(generic_tfm));
Eric Biggersd435e102019-04-11 21:57:40 -07002780 err = -EINVAL;
2781 goto out;
2782 }
2783
2784 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
2785 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2786 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
2787 err = -EINVAL;
2788 goto out;
2789 }
2790
2791 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
2792 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2793 driver, blocksize,
2794 crypto_skcipher_blocksize(generic_tfm));
2795 err = -EINVAL;
2796 goto out;
2797 }
2798
2799 /*
2800 * Now generate test vectors using the generic implementation, and test
2801 * the other implementation against them.
2802 */
2803
Eric Biggers9ac0d132019-11-29 10:23:04 -08002804 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
Eric Biggersd435e102019-04-11 21:57:40 -07002805 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2806 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2807 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2808 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
2809 err = -ENOMEM;
2810 goto out;
2811 }
2812
2813 for (i = 0; i < fuzz_iterations * 8; i++) {
2814 generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
2815 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002816 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggersd435e102019-04-11 21:57:40 -07002817
2818 err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002819 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002820 if (err)
2821 goto out;
2822 err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002823 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002824 if (err)
2825 goto out;
2826 cond_resched();
2827 }
2828 err = 0;
2829out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002830 kfree(cfg);
Eric Biggersd435e102019-04-11 21:57:40 -07002831 kfree(vec.key);
2832 kfree(vec.iv);
2833 kfree(vec.ptext);
2834 kfree(vec.ctext);
2835 crypto_free_skcipher(generic_tfm);
2836 skcipher_request_free(generic_req);
2837 return err;
2838}
2839#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2840static int test_skcipher_vs_generic_impl(const char *driver,
2841 const char *generic_driver,
2842 struct skcipher_request *req,
2843 struct cipher_test_sglists *tsgls)
2844{
2845 return 0;
2846}
2847#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2848
Eric Biggers4e7babba2019-01-31 23:51:46 -08002849static int test_skcipher(const char *driver, int enc,
2850 const struct cipher_test_suite *suite,
2851 struct skcipher_request *req,
2852 struct cipher_test_sglists *tsgls)
2853{
2854 unsigned int i;
2855 int err;
2856
2857 for (i = 0; i < suite->count; i++) {
2858 err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
2859 tsgls);
2860 if (err)
2861 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002862 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002863 }
2864 return 0;
2865}
2866
2867static int alg_test_skcipher(const struct alg_test_desc *desc,
2868 const char *driver, u32 type, u32 mask)
2869{
2870 const struct cipher_test_suite *suite = &desc->suite.cipher;
2871 struct crypto_skcipher *tfm;
2872 struct skcipher_request *req = NULL;
2873 struct cipher_test_sglists *tsgls = NULL;
2874 int err;
2875
2876 if (suite->count <= 0) {
2877 pr_err("alg: skcipher: empty test suite for %s\n", driver);
2878 return -EINVAL;
2879 }
2880
2881 tfm = crypto_alloc_skcipher(driver, type, mask);
2882 if (IS_ERR(tfm)) {
2883 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
2884 driver, PTR_ERR(tfm));
2885 return PTR_ERR(tfm);
2886 }
2887
2888 req = skcipher_request_alloc(tfm, GFP_KERNEL);
2889 if (!req) {
2890 pr_err("alg: skcipher: failed to allocate request for %s\n",
2891 driver);
2892 err = -ENOMEM;
2893 goto out;
2894 }
2895
2896 tsgls = alloc_cipher_test_sglists();
2897 if (!tsgls) {
2898 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
2899 driver);
2900 err = -ENOMEM;
2901 goto out;
2902 }
2903
2904 err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
2905 if (err)
2906 goto out;
2907
2908 err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002909 if (err)
2910 goto out;
2911
2912 err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
2913 tsgls);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002914out:
2915 free_cipher_test_sglists(tsgls);
2916 skcipher_request_free(req);
2917 crypto_free_skcipher(tfm);
2918 return err;
2919}
2920
Eric Biggersb13b1e02017-02-24 15:46:59 -08002921static int test_comp(struct crypto_comp *tfm,
2922 const struct comp_testvec *ctemplate,
2923 const struct comp_testvec *dtemplate,
2924 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002925{
2926 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02002927 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08002928 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08002929 int ret;
2930
Mahipal Challa33607382018-04-11 20:28:32 +02002931 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2932 if (!output)
2933 return -ENOMEM;
2934
2935 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2936 if (!decomp_output) {
2937 kfree(output);
2938 return -ENOMEM;
2939 }
2940
Herbert Xuda7f0332008-07-31 17:08:25 +08002941 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002942 int ilen;
2943 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002944
Michael Schupikov22a81182018-10-07 13:58:10 +02002945 memset(output, 0, COMP_BUF_SIZE);
2946 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002947
2948 ilen = ctemplate[i].inlen;
2949 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002950 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002951 if (ret) {
2952 printk(KERN_ERR "alg: comp: compression failed "
2953 "on test %d for %s: ret=%d\n", i + 1, algo,
2954 -ret);
2955 goto out;
2956 }
2957
Mahipal Challa33607382018-04-11 20:28:32 +02002958 ilen = dlen;
2959 dlen = COMP_BUF_SIZE;
2960 ret = crypto_comp_decompress(tfm, output,
2961 ilen, decomp_output, &dlen);
2962 if (ret) {
2963 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
2964 i + 1, algo, -ret);
2965 goto out;
2966 }
2967
2968 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002969 printk(KERN_ERR "alg: comp: Compression test %d "
2970 "failed for %s: output len = %d\n", i + 1, algo,
2971 dlen);
2972 ret = -EINVAL;
2973 goto out;
2974 }
2975
Mahipal Challa33607382018-04-11 20:28:32 +02002976 if (memcmp(decomp_output, ctemplate[i].input,
2977 ctemplate[i].inlen)) {
2978 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
2979 i + 1, algo);
2980 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002981 ret = -EINVAL;
2982 goto out;
2983 }
2984 }
2985
2986 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002987 int ilen;
2988 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002989
Michael Schupikov22a81182018-10-07 13:58:10 +02002990 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002991
2992 ilen = dtemplate[i].inlen;
2993 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002994 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002995 if (ret) {
2996 printk(KERN_ERR "alg: comp: decompression failed "
2997 "on test %d for %s: ret=%d\n", i + 1, algo,
2998 -ret);
2999 goto out;
3000 }
3001
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08003002 if (dlen != dtemplate[i].outlen) {
3003 printk(KERN_ERR "alg: comp: Decompression test %d "
3004 "failed for %s: output len = %d\n", i + 1, algo,
3005 dlen);
3006 ret = -EINVAL;
3007 goto out;
3008 }
3009
Mahipal Challa33607382018-04-11 20:28:32 +02003010 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08003011 printk(KERN_ERR "alg: comp: Decompression test %d "
3012 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02003013 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003014 ret = -EINVAL;
3015 goto out;
3016 }
3017 }
3018
3019 ret = 0;
3020
3021out:
Mahipal Challa33607382018-04-11 20:28:32 +02003022 kfree(decomp_output);
3023 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08003024 return ret;
3025}
3026
Eric Biggersb13b1e02017-02-24 15:46:59 -08003027static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02003028 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003029 const struct comp_testvec *dtemplate,
3030 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003031{
3032 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
3033 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003034 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003035 int ret;
3036 struct scatterlist src, dst;
3037 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003038 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003039
Eric Biggerseb095592016-11-23 10:24:35 -08003040 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3041 if (!output)
3042 return -ENOMEM;
3043
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003044 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3045 if (!decomp_out) {
3046 kfree(output);
3047 return -ENOMEM;
3048 }
3049
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003050 for (i = 0; i < ctcount; i++) {
3051 unsigned int dlen = COMP_BUF_SIZE;
3052 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003053 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003054
Eric Biggersd2110222016-12-30 14:12:00 -06003055 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003056 if (!input_vec) {
3057 ret = -ENOMEM;
3058 goto out;
3059 }
3060
Eric Biggerseb095592016-11-23 10:24:35 -08003061 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003062 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003063 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003064 sg_init_one(&dst, output, dlen);
3065
3066 req = acomp_request_alloc(tfm);
3067 if (!req) {
3068 pr_err("alg: acomp: request alloc failed for %s\n",
3069 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003070 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003071 ret = -ENOMEM;
3072 goto out;
3073 }
3074
3075 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3076 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003077 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003078
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003079 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003080 if (ret) {
3081 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3082 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003083 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003084 acomp_request_free(req);
3085 goto out;
3086 }
3087
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003088 ilen = req->dlen;
3089 dlen = COMP_BUF_SIZE;
3090 sg_init_one(&src, output, ilen);
3091 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003092 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003093 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3094
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003095 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003096 if (ret) {
3097 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3098 i + 1, algo, -ret);
3099 kfree(input_vec);
3100 acomp_request_free(req);
3101 goto out;
3102 }
3103
3104 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003105 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3106 i + 1, algo, req->dlen);
3107 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003108 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003109 acomp_request_free(req);
3110 goto out;
3111 }
3112
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003113 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003114 pr_err("alg: acomp: Compression test %d failed for %s\n",
3115 i + 1, algo);
3116 hexdump(output, req->dlen);
3117 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003118 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003119 acomp_request_free(req);
3120 goto out;
3121 }
3122
Laura Abbott02608e02016-12-21 12:32:54 -08003123 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003124 acomp_request_free(req);
3125 }
3126
3127 for (i = 0; i < dtcount; i++) {
3128 unsigned int dlen = COMP_BUF_SIZE;
3129 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003130 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003131
Eric Biggersd2110222016-12-30 14:12:00 -06003132 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003133 if (!input_vec) {
3134 ret = -ENOMEM;
3135 goto out;
3136 }
3137
Eric Biggerseb095592016-11-23 10:24:35 -08003138 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003139 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003140 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003141 sg_init_one(&dst, output, dlen);
3142
3143 req = acomp_request_alloc(tfm);
3144 if (!req) {
3145 pr_err("alg: acomp: request alloc failed for %s\n",
3146 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003147 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003148 ret = -ENOMEM;
3149 goto out;
3150 }
3151
3152 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3153 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003154 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003155
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003156 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003157 if (ret) {
3158 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3159 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003160 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003161 acomp_request_free(req);
3162 goto out;
3163 }
3164
3165 if (req->dlen != dtemplate[i].outlen) {
3166 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3167 i + 1, algo, req->dlen);
3168 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003169 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003170 acomp_request_free(req);
3171 goto out;
3172 }
3173
3174 if (memcmp(output, dtemplate[i].output, req->dlen)) {
3175 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3176 i + 1, algo);
3177 hexdump(output, req->dlen);
3178 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003179 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003180 acomp_request_free(req);
3181 goto out;
3182 }
3183
Laura Abbott02608e02016-12-21 12:32:54 -08003184 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003185 acomp_request_free(req);
3186 }
3187
3188 ret = 0;
3189
3190out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003191 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08003192 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003193 return ret;
3194}
3195
Eric Biggersb13b1e02017-02-24 15:46:59 -08003196static int test_cprng(struct crypto_rng *tfm,
3197 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003198 unsigned int tcount)
3199{
3200 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08003201 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003202 u8 *seed;
3203 char result[32];
3204
3205 seedsize = crypto_rng_seedsize(tfm);
3206
3207 seed = kmalloc(seedsize, GFP_KERNEL);
3208 if (!seed) {
3209 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3210 "for %s\n", algo);
3211 return -ENOMEM;
3212 }
3213
3214 for (i = 0; i < tcount; i++) {
3215 memset(result, 0, 32);
3216
3217 memcpy(seed, template[i].v, template[i].vlen);
3218 memcpy(seed + template[i].vlen, template[i].key,
3219 template[i].klen);
3220 memcpy(seed + template[i].vlen + template[i].klen,
3221 template[i].dt, template[i].dtlen);
3222
3223 err = crypto_rng_reset(tfm, seed, seedsize);
3224 if (err) {
3225 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3226 "for %s\n", algo);
3227 goto out;
3228 }
3229
3230 for (j = 0; j < template[i].loops; j++) {
3231 err = crypto_rng_get_bytes(tfm, result,
3232 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01003233 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003234 printk(KERN_ERR "alg: cprng: Failed to obtain "
3235 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01003236 "%s (requested %d)\n", algo,
3237 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003238 goto out;
3239 }
3240 }
3241
3242 err = memcmp(result, template[i].result,
3243 template[i].rlen);
3244 if (err) {
3245 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3246 i, algo);
3247 hexdump(result, template[i].rlen);
3248 err = -EINVAL;
3249 goto out;
3250 }
3251 }
3252
3253out:
3254 kfree(seed);
3255 return err;
3256}
3257
Herbert Xuda7f0332008-07-31 17:08:25 +08003258static int alg_test_cipher(const struct alg_test_desc *desc,
3259 const char *driver, u32 type, u32 mask)
3260{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003261 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003262 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003263 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08003264
Herbert Xueed93e02016-11-22 20:08:31 +08003265 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08003266 if (IS_ERR(tfm)) {
3267 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3268 "%s: %ld\n", driver, PTR_ERR(tfm));
3269 return PTR_ERR(tfm);
3270 }
3271
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003272 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3273 if (!err)
3274 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08003275
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003276 crypto_free_cipher(tfm);
3277 return err;
3278}
3279
Herbert Xuda7f0332008-07-31 17:08:25 +08003280static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3281 u32 type, u32 mask)
3282{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003283 struct crypto_comp *comp;
3284 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08003285 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003286 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08003287
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003288 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3289 acomp = crypto_alloc_acomp(driver, type, mask);
3290 if (IS_ERR(acomp)) {
3291 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3292 driver, PTR_ERR(acomp));
3293 return PTR_ERR(acomp);
3294 }
3295 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3296 desc->suite.comp.decomp.vecs,
3297 desc->suite.comp.comp.count,
3298 desc->suite.comp.decomp.count);
3299 crypto_free_acomp(acomp);
3300 } else {
3301 comp = crypto_alloc_comp(driver, type, mask);
3302 if (IS_ERR(comp)) {
3303 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3304 driver, PTR_ERR(comp));
3305 return PTR_ERR(comp);
3306 }
3307
3308 err = test_comp(comp, desc->suite.comp.comp.vecs,
3309 desc->suite.comp.decomp.vecs,
3310 desc->suite.comp.comp.count,
3311 desc->suite.comp.decomp.count);
3312
3313 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08003314 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003315 return err;
3316}
3317
Herbert Xu8e3ee852008-11-07 14:58:52 +08003318static int alg_test_crc32c(const struct alg_test_desc *desc,
3319 const char *driver, u32 type, u32 mask)
3320{
3321 struct crypto_shash *tfm;
Eric Biggerscb9dde82019-01-10 12:17:55 -08003322 __le32 val;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003323 int err;
3324
3325 err = alg_test_hash(desc, driver, type, mask);
3326 if (err)
Eric Biggerseb5e6732019-01-23 20:57:35 -08003327 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003328
Herbert Xueed93e02016-11-22 20:08:31 +08003329 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003330 if (IS_ERR(tfm)) {
Eric Biggerseb5e6732019-01-23 20:57:35 -08003331 if (PTR_ERR(tfm) == -ENOENT) {
3332 /*
3333 * This crc32c implementation is only available through
3334 * ahash API, not the shash API, so the remaining part
3335 * of the test is not applicable to it.
3336 */
3337 return 0;
3338 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08003339 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3340 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggerseb5e6732019-01-23 20:57:35 -08003341 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003342 }
3343
3344 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003345 SHASH_DESC_ON_STACK(shash, tfm);
3346 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003347
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003348 shash->tfm = tfm;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003349
Eric Biggerscb9dde82019-01-10 12:17:55 -08003350 *ctx = 420553207;
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003351 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003352 if (err) {
3353 printk(KERN_ERR "alg: crc32c: Operation failed for "
3354 "%s: %d\n", driver, err);
3355 break;
3356 }
3357
Eric Biggerscb9dde82019-01-10 12:17:55 -08003358 if (val != cpu_to_le32(~420553207)) {
3359 pr_err("alg: crc32c: Test failed for %s: %u\n",
3360 driver, le32_to_cpu(val));
Herbert Xu8e3ee852008-11-07 14:58:52 +08003361 err = -EINVAL;
3362 }
3363 } while (0);
3364
3365 crypto_free_shash(tfm);
3366
Herbert Xu8e3ee852008-11-07 14:58:52 +08003367 return err;
3368}
3369
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003370static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3371 u32 type, u32 mask)
3372{
3373 struct crypto_rng *rng;
3374 int err;
3375
Herbert Xueed93e02016-11-22 20:08:31 +08003376 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003377 if (IS_ERR(rng)) {
3378 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3379 "%ld\n", driver, PTR_ERR(rng));
3380 return PTR_ERR(rng);
3381 }
3382
3383 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3384
3385 crypto_free_rng(rng);
3386
3387 return err;
3388}
3389
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003390
Eric Biggersb13b1e02017-02-24 15:46:59 -08003391static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003392 const char *driver, u32 type, u32 mask)
3393{
3394 int ret = -EAGAIN;
3395 struct crypto_rng *drng;
3396 struct drbg_test_data test_data;
3397 struct drbg_string addtl, pers, testentropy;
3398 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3399
3400 if (!buf)
3401 return -ENOMEM;
3402
Herbert Xueed93e02016-11-22 20:08:31 +08003403 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003404 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003405 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003406 "%s\n", driver);
3407 kzfree(buf);
3408 return -ENOMEM;
3409 }
3410
3411 test_data.testentropy = &testentropy;
3412 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3413 drbg_string_fill(&pers, test->pers, test->perslen);
3414 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3415 if (ret) {
3416 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3417 goto outbuf;
3418 }
3419
3420 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3421 if (pr) {
3422 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3423 ret = crypto_drbg_get_bytes_addtl_test(drng,
3424 buf, test->expectedlen, &addtl, &test_data);
3425 } else {
3426 ret = crypto_drbg_get_bytes_addtl(drng,
3427 buf, test->expectedlen, &addtl);
3428 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003429 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003430 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003431 "driver %s\n", driver);
3432 goto outbuf;
3433 }
3434
3435 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3436 if (pr) {
3437 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3438 ret = crypto_drbg_get_bytes_addtl_test(drng,
3439 buf, test->expectedlen, &addtl, &test_data);
3440 } else {
3441 ret = crypto_drbg_get_bytes_addtl(drng,
3442 buf, test->expectedlen, &addtl);
3443 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003444 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003445 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003446 "driver %s\n", driver);
3447 goto outbuf;
3448 }
3449
3450 ret = memcmp(test->expected, buf, test->expectedlen);
3451
3452outbuf:
3453 crypto_free_rng(drng);
3454 kzfree(buf);
3455 return ret;
3456}
3457
3458
3459static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3460 u32 type, u32 mask)
3461{
3462 int err = 0;
3463 int pr = 0;
3464 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08003465 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003466 unsigned int tcount = desc->suite.drbg.count;
3467
3468 if (0 == memcmp(driver, "drbg_pr_", 8))
3469 pr = 1;
3470
3471 for (i = 0; i < tcount; i++) {
3472 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3473 if (err) {
3474 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3475 i, driver);
3476 err = -EINVAL;
3477 break;
3478 }
3479 }
3480 return err;
3481
3482}
3483
Eric Biggersb13b1e02017-02-24 15:46:59 -08003484static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003485 const char *alg)
3486{
3487 struct kpp_request *req;
3488 void *input_buf = NULL;
3489 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003490 void *a_public = NULL;
3491 void *a_ss = NULL;
3492 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003493 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003494 unsigned int out_len_max;
3495 int err = -ENOMEM;
3496 struct scatterlist src, dst;
3497
3498 req = kpp_request_alloc(tfm, GFP_KERNEL);
3499 if (!req)
3500 return err;
3501
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003502 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003503
3504 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3505 if (err < 0)
3506 goto free_req;
3507
3508 out_len_max = crypto_kpp_maxsize(tfm);
3509 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3510 if (!output_buf) {
3511 err = -ENOMEM;
3512 goto free_req;
3513 }
3514
3515 /* Use appropriate parameter as base */
3516 kpp_request_set_input(req, NULL, 0);
3517 sg_init_one(&dst, output_buf, out_len_max);
3518 kpp_request_set_output(req, &dst, out_len_max);
3519 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003520 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003521
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003522 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003523 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003524 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003525 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003526 alg, err);
3527 goto free_output;
3528 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003529
3530 if (vec->genkey) {
3531 /* Save party A's public key */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003532 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003533 if (!a_public) {
3534 err = -ENOMEM;
3535 goto free_output;
3536 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003537 } else {
3538 /* Verify calculated public key */
3539 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3540 vec->expected_a_public_size)) {
3541 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3542 alg);
3543 err = -EINVAL;
3544 goto free_output;
3545 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003546 }
3547
3548 /* Calculate shared secret key by using counter part (b) public key. */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003549 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003550 if (!input_buf) {
3551 err = -ENOMEM;
3552 goto free_output;
3553 }
3554
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003555 sg_init_one(&src, input_buf, vec->b_public_size);
3556 sg_init_one(&dst, output_buf, out_len_max);
3557 kpp_request_set_input(req, &src, vec->b_public_size);
3558 kpp_request_set_output(req, &dst, out_len_max);
3559 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003560 crypto_req_done, &wait);
3561 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003562 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003563 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003564 alg, err);
3565 goto free_all;
3566 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003567
3568 if (vec->genkey) {
3569 /* Save the shared secret obtained by party A */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003570 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003571 if (!a_ss) {
3572 err = -ENOMEM;
3573 goto free_all;
3574 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003575
3576 /*
3577 * Calculate party B's shared secret by using party A's
3578 * public key.
3579 */
3580 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3581 vec->b_secret_size);
3582 if (err < 0)
3583 goto free_all;
3584
3585 sg_init_one(&src, a_public, vec->expected_a_public_size);
3586 sg_init_one(&dst, output_buf, out_len_max);
3587 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3588 kpp_request_set_output(req, &dst, out_len_max);
3589 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003590 crypto_req_done, &wait);
3591 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3592 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003593 if (err) {
3594 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3595 alg, err);
3596 goto free_all;
3597 }
3598
3599 shared_secret = a_ss;
3600 } else {
3601 shared_secret = (void *)vec->expected_ss;
3602 }
3603
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003604 /*
3605 * verify shared secret from which the user will derive
3606 * secret key by executing whatever hash it has chosen
3607 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003608 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003609 vec->expected_ss_size)) {
3610 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
3611 alg);
3612 err = -EINVAL;
3613 }
3614
3615free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003616 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003617 kfree(input_buf);
3618free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003619 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003620 kfree(output_buf);
3621free_req:
3622 kpp_request_free(req);
3623 return err;
3624}
3625
3626static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003627 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003628{
3629 int ret, i;
3630
3631 for (i = 0; i < tcount; i++) {
3632 ret = do_test_kpp(tfm, vecs++, alg);
3633 if (ret) {
3634 pr_err("alg: %s: test failed on vector %d, err=%d\n",
3635 alg, i + 1, ret);
3636 return ret;
3637 }
3638 }
3639 return 0;
3640}
3641
3642static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
3643 u32 type, u32 mask)
3644{
3645 struct crypto_kpp *tfm;
3646 int err = 0;
3647
Herbert Xueed93e02016-11-22 20:08:31 +08003648 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003649 if (IS_ERR(tfm)) {
3650 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
3651 driver, PTR_ERR(tfm));
3652 return PTR_ERR(tfm);
3653 }
3654 if (desc->suite.kpp.vecs)
3655 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
3656 desc->suite.kpp.count);
3657
3658 crypto_free_kpp(tfm);
3659 return err;
3660}
3661
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003662static u8 *test_pack_u32(u8 *dst, u32 val)
3663{
3664 memcpy(dst, &val, sizeof(val));
3665 return dst + sizeof(val);
3666}
3667
Herbert Xu50d2b6432016-06-29 19:32:20 +08003668static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003669 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003670{
Herbert Xudf27b262016-05-05 16:42:49 +08003671 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07003672 struct akcipher_request *req;
3673 void *outbuf_enc = NULL;
3674 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003675 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003676 unsigned int out_len_max, out_len = 0;
3677 int err = -ENOMEM;
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003678 struct scatterlist src, dst, src_tab[3];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003679 const char *m, *c;
3680 unsigned int m_size, c_size;
3681 const char *op;
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003682 u8 *key, *ptr;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003683
Herbert Xudf27b262016-05-05 16:42:49 +08003684 if (testmgr_alloc_buf(xbuf))
3685 return err;
3686
Tadeusz Struk946cc462015-06-16 10:31:06 -07003687 req = akcipher_request_alloc(tfm, GFP_KERNEL);
3688 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08003689 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003690
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003691 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003692
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003693 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
3694 GFP_KERNEL);
3695 if (!key)
3696 goto free_xbuf;
3697 memcpy(key, vecs->key, vecs->key_len);
3698 ptr = key + vecs->key_len;
3699 ptr = test_pack_u32(ptr, vecs->algo);
3700 ptr = test_pack_u32(ptr, vecs->param_len);
3701 memcpy(ptr, vecs->params, vecs->param_len);
3702
Tadeusz Struk22287b02015-10-08 09:26:55 -07003703 if (vecs->public_key_vec)
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003704 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003705 else
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003706 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003707 if (err)
3708 goto free_req;
3709
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003710 /*
3711 * First run test which do not require a private key, such as
3712 * encrypt or verify.
3713 */
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003714 err = -ENOMEM;
3715 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003716 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3717 if (!outbuf_enc)
3718 goto free_req;
3719
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003720 if (!vecs->siggen_sigver_test) {
3721 m = vecs->m;
3722 m_size = vecs->m_size;
3723 c = vecs->c;
3724 c_size = vecs->c_size;
3725 op = "encrypt";
3726 } else {
3727 /* Swap args so we could keep plaintext (digest)
3728 * in vecs->m, and cooked signature in vecs->c.
3729 */
3730 m = vecs->c; /* signature */
3731 m_size = vecs->c_size;
3732 c = vecs->m; /* digest */
3733 c_size = vecs->m_size;
3734 op = "verify";
3735 }
Herbert Xudf27b262016-05-05 16:42:49 +08003736
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003737 if (WARN_ON(m_size > PAGE_SIZE))
3738 goto free_all;
3739 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003740
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003741 sg_init_table(src_tab, 3);
Herbert Xudf27b262016-05-05 16:42:49 +08003742 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003743 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003744 if (vecs->siggen_sigver_test) {
3745 if (WARN_ON(c_size > PAGE_SIZE))
3746 goto free_all;
3747 memcpy(xbuf[1], c, c_size);
3748 sg_set_buf(&src_tab[2], xbuf[1], c_size);
3749 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
3750 } else {
3751 sg_init_one(&dst, outbuf_enc, out_len_max);
3752 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
3753 out_len_max);
3754 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003755 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003756 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003757
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003758 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003759 /* Run asymmetric signature verification */
3760 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003761 /* Run asymmetric encrypt */
3762 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003763 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003764 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003765 goto free_all;
3766 }
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003767 if (!vecs->siggen_sigver_test) {
3768 if (req->dst_len != c_size) {
3769 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
3770 op);
3771 err = -EINVAL;
3772 goto free_all;
3773 }
3774 /* verify that encrypted message is equal to expected */
3775 if (memcmp(c, outbuf_enc, c_size) != 0) {
3776 pr_err("alg: akcipher: %s test failed. Invalid output\n",
3777 op);
3778 hexdump(outbuf_enc, c_size);
3779 err = -EINVAL;
3780 goto free_all;
3781 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003782 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003783
3784 /*
3785 * Don't invoke (decrypt or sign) test which require a private key
3786 * for vectors with only a public key.
3787 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07003788 if (vecs->public_key_vec) {
3789 err = 0;
3790 goto free_all;
3791 }
3792 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
3793 if (!outbuf_dec) {
3794 err = -ENOMEM;
3795 goto free_all;
3796 }
Herbert Xudf27b262016-05-05 16:42:49 +08003797
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003798 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
3799 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08003800 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003801 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003802
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003803 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003804 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003805 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003806 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003807
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003808 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003809 /* Run asymmetric signature generation */
3810 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003811 /* Run asymmetric decrypt */
3812 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003813 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003814 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003815 goto free_all;
3816 }
3817 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003818 if (out_len < m_size) {
3819 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
3820 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003821 err = -EINVAL;
3822 goto free_all;
3823 }
3824 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003825 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
3826 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
3827 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003828 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003829 err = -EINVAL;
3830 }
3831free_all:
3832 kfree(outbuf_dec);
3833 kfree(outbuf_enc);
3834free_req:
3835 akcipher_request_free(req);
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003836 kfree(key);
Herbert Xudf27b262016-05-05 16:42:49 +08003837free_xbuf:
3838 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003839 return err;
3840}
3841
Herbert Xu50d2b6432016-06-29 19:32:20 +08003842static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003843 const struct akcipher_testvec *vecs,
3844 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003845{
Herbert Xu15226e42016-07-18 18:20:10 +08003846 const char *algo =
3847 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07003848 int ret, i;
3849
3850 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08003851 ret = test_akcipher_one(tfm, vecs++);
3852 if (!ret)
3853 continue;
3854
Herbert Xu15226e42016-07-18 18:20:10 +08003855 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
3856 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003857 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003858 }
3859 return 0;
3860}
3861
Tadeusz Struk946cc462015-06-16 10:31:06 -07003862static int alg_test_akcipher(const struct alg_test_desc *desc,
3863 const char *driver, u32 type, u32 mask)
3864{
3865 struct crypto_akcipher *tfm;
3866 int err = 0;
3867
Herbert Xueed93e02016-11-22 20:08:31 +08003868 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003869 if (IS_ERR(tfm)) {
3870 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
3871 driver, PTR_ERR(tfm));
3872 return PTR_ERR(tfm);
3873 }
3874 if (desc->suite.akcipher.vecs)
3875 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
3876 desc->suite.akcipher.count);
3877
3878 crypto_free_akcipher(tfm);
3879 return err;
3880}
3881
Youquan, Song863b5572009-12-23 19:45:20 +08003882static int alg_test_null(const struct alg_test_desc *desc,
3883 const char *driver, u32 type, u32 mask)
3884{
3885 return 0;
3886}
3887
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003888#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
3889
Herbert Xuda7f0332008-07-31 17:08:25 +08003890/* Please keep this list sorted by algorithm name. */
3891static const struct alg_test_desc alg_test_descs[] = {
3892 {
Eric Biggers059c2a42018-11-16 17:26:31 -08003893 .alg = "adiantum(xchacha12,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003894 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003895 .test = alg_test_skcipher,
3896 .suite = {
3897 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
3898 },
3899 }, {
3900 .alg = "adiantum(xchacha20,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003901 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003902 .test = alg_test_skcipher,
3903 .suite = {
3904 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
3905 },
3906 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003907 .alg = "aegis128",
3908 .test = alg_test_aead,
3909 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003910 .aead = __VECS(aegis128_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003911 }
3912 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003913 .alg = "ansi_cprng",
3914 .test = alg_test_cprng,
3915 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003916 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003917 }
3918 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003919 .alg = "authenc(hmac(md5),ecb(cipher_null))",
3920 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003921 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003922 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02003923 }
3924 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003925 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003926 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08003927 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003928 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003929 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303930 }
3931 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003932 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303933 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303934 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003935 .aead = __VECS(hmac_sha1_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303936 }
3937 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003938 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303939 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003940 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303941 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003942 .aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003943 }
3944 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003945 .alg = "authenc(hmac(sha1),ctr(aes))",
3946 .test = alg_test_null,
3947 .fips_allowed = 1,
3948 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003949 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
3950 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003951 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003952 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303953 }
3954 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003955 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
3956 .test = alg_test_null,
3957 .fips_allowed = 1,
3958 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003959 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303960 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303961 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003962 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303963 }
3964 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003965 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303966 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003967 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303968 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003969 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02003970 }
3971 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003972 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003973 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003974 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003975 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003976 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303977 }
3978 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003979 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303980 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303981 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003982 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303983 }
3984 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003985 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303986 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003987 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303988 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003989 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303990 }
3991 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003992 .alg = "authenc(hmac(sha256),ctr(aes))",
3993 .test = alg_test_null,
3994 .fips_allowed = 1,
3995 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003996 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
3997 .test = alg_test_null,
3998 .fips_allowed = 1,
3999 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004000 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304001 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304002 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004003 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304004 }
4005 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004006 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304007 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004008 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304009 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004010 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004011 }
4012 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004013 .alg = "authenc(hmac(sha384),ctr(aes))",
4014 .test = alg_test_null,
4015 .fips_allowed = 1,
4016 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004017 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
4018 .test = alg_test_null,
4019 .fips_allowed = 1,
4020 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004021 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01004022 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004023 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03004024 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004025 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304026 }
4027 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004028 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304029 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304030 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004031 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304032 }
4033 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004034 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304035 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004036 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304037 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004038 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004039 }
4040 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004041 .alg = "authenc(hmac(sha512),ctr(aes))",
4042 .test = alg_test_null,
4043 .fips_allowed = 1,
4044 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004045 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4046 .test = alg_test_null,
4047 .fips_allowed = 1,
4048 }, {
David Sterbaa1afe272019-10-24 18:28:32 +02004049 .alg = "blake2b-160",
4050 .test = alg_test_hash,
4051 .fips_allowed = 0,
4052 .suite = {
4053 .hash = __VECS(blake2b_160_tv_template)
4054 }
4055 }, {
4056 .alg = "blake2b-256",
4057 .test = alg_test_hash,
4058 .fips_allowed = 0,
4059 .suite = {
4060 .hash = __VECS(blake2b_256_tv_template)
4061 }
4062 }, {
4063 .alg = "blake2b-384",
4064 .test = alg_test_hash,
4065 .fips_allowed = 0,
4066 .suite = {
4067 .hash = __VECS(blake2b_384_tv_template)
4068 }
4069 }, {
4070 .alg = "blake2b-512",
4071 .test = alg_test_hash,
4072 .fips_allowed = 0,
4073 .suite = {
4074 .hash = __VECS(blake2b_512_tv_template)
4075 }
4076 }, {
Ard Biesheuvel17e1df62019-11-08 13:22:29 +01004077 .alg = "blake2s-128",
4078 .test = alg_test_hash,
4079 .suite = {
4080 .hash = __VECS(blakes2s_128_tv_template)
4081 }
4082 }, {
4083 .alg = "blake2s-160",
4084 .test = alg_test_hash,
4085 .suite = {
4086 .hash = __VECS(blakes2s_160_tv_template)
4087 }
4088 }, {
4089 .alg = "blake2s-224",
4090 .test = alg_test_hash,
4091 .suite = {
4092 .hash = __VECS(blakes2s_224_tv_template)
4093 }
4094 }, {
4095 .alg = "blake2s-256",
4096 .test = alg_test_hash,
4097 .suite = {
4098 .hash = __VECS(blakes2s_256_tv_template)
4099 }
4100 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004101 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004102 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004103 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004104 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004105 .cipher = __VECS(aes_cbc_tv_template)
4106 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004107 }, {
4108 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004109 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004110 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004111 .cipher = __VECS(anubis_cbc_tv_template)
4112 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004113 }, {
4114 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004115 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004116 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004117 .cipher = __VECS(bf_cbc_tv_template)
4118 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004119 }, {
4120 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004121 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004122 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004123 .cipher = __VECS(camellia_cbc_tv_template)
4124 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004125 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004126 .alg = "cbc(cast5)",
4127 .test = alg_test_skcipher,
4128 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004129 .cipher = __VECS(cast5_cbc_tv_template)
4130 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004131 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004132 .alg = "cbc(cast6)",
4133 .test = alg_test_skcipher,
4134 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004135 .cipher = __VECS(cast6_cbc_tv_template)
4136 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004137 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004138 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004139 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004140 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004141 .cipher = __VECS(des_cbc_tv_template)
4142 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004143 }, {
4144 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004145 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004146 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004147 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004148 .cipher = __VECS(des3_ede_cbc_tv_template)
4149 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004150 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004151 /* Same as cbc(aes) except the key is stored in
4152 * hardware secure memory which we reference by index
4153 */
4154 .alg = "cbc(paes)",
4155 .test = alg_test_null,
4156 .fips_allowed = 1,
4157 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004158 /* Same as cbc(sm4) except the key is stored in
4159 * hardware secure memory which we reference by index
4160 */
4161 .alg = "cbc(psm4)",
4162 .test = alg_test_null,
4163 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004164 .alg = "cbc(serpent)",
4165 .test = alg_test_skcipher,
4166 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004167 .cipher = __VECS(serpent_cbc_tv_template)
4168 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004169 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004170 .alg = "cbc(sm4)",
4171 .test = alg_test_skcipher,
4172 .suite = {
4173 .cipher = __VECS(sm4_cbc_tv_template)
4174 }
4175 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004176 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004177 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004178 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004179 .cipher = __VECS(tf_cbc_tv_template)
4180 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004181 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00004182 .alg = "cbcmac(aes)",
4183 .fips_allowed = 1,
4184 .test = alg_test_hash,
4185 .suite = {
4186 .hash = __VECS(aes_cbcmac_tv_template)
4187 }
4188 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004189 .alg = "ccm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004190 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
Herbert Xuda7f0332008-07-31 17:08:25 +08004191 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004192 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004193 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004194 .aead = __VECS(aes_ccm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004195 }
4196 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03004197 .alg = "cfb(aes)",
4198 .test = alg_test_skcipher,
4199 .fips_allowed = 1,
4200 .suite = {
4201 .cipher = __VECS(aes_cfb_tv_template)
4202 },
4203 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02004204 .alg = "cfb(sm4)",
4205 .test = alg_test_skcipher,
4206 .suite = {
4207 .cipher = __VECS(sm4_cfb_tv_template)
4208 }
4209 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02004210 .alg = "chacha20",
4211 .test = alg_test_skcipher,
4212 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004213 .cipher = __VECS(chacha20_tv_template)
4214 },
Martin Willi3590ebf2015-06-01 13:43:57 +02004215 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004216 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004217 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004218 .test = alg_test_hash,
4219 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004220 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004221 }
4222 }, {
4223 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004224 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004225 .test = alg_test_hash,
4226 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004227 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004228 }
4229 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004230 .alg = "compress_null",
4231 .test = alg_test_null,
4232 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004233 .alg = "crc32",
4234 .test = alg_test_hash,
Milan Broza8a34412019-01-25 10:31:47 +01004235 .fips_allowed = 1,
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004236 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004237 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004238 }
4239 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004240 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08004241 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004242 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004243 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004244 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004245 }
4246 }, {
Herbert Xu684115212013-09-07 12:56:26 +10004247 .alg = "crct10dif",
4248 .test = alg_test_hash,
4249 .fips_allowed = 1,
4250 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004251 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10004252 }
4253 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004254 .alg = "ctr(aes)",
4255 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004256 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004257 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004258 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004259 }
4260 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004261 .alg = "ctr(blowfish)",
4262 .test = alg_test_skcipher,
4263 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004264 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004265 }
4266 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004267 .alg = "ctr(camellia)",
4268 .test = alg_test_skcipher,
4269 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004270 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004271 }
4272 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004273 .alg = "ctr(cast5)",
4274 .test = alg_test_skcipher,
4275 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004276 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004277 }
4278 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004279 .alg = "ctr(cast6)",
4280 .test = alg_test_skcipher,
4281 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004282 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004283 }
4284 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004285 .alg = "ctr(des)",
4286 .test = alg_test_skcipher,
4287 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004288 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004289 }
4290 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004291 .alg = "ctr(des3_ede)",
4292 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03004293 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004294 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004295 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004296 }
4297 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004298 /* Same as ctr(aes) except the key is stored in
4299 * hardware secure memory which we reference by index
4300 */
4301 .alg = "ctr(paes)",
4302 .test = alg_test_null,
4303 .fips_allowed = 1,
4304 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004305
4306 /* Same as ctr(sm4) except the key is stored in
4307 * hardware secure memory which we reference by index
4308 */
4309 .alg = "ctr(psm4)",
4310 .test = alg_test_null,
4311 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004312 .alg = "ctr(serpent)",
4313 .test = alg_test_skcipher,
4314 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004315 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004316 }
4317 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004318 .alg = "ctr(sm4)",
4319 .test = alg_test_skcipher,
4320 .suite = {
4321 .cipher = __VECS(sm4_ctr_tv_template)
4322 }
4323 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03004324 .alg = "ctr(twofish)",
4325 .test = alg_test_skcipher,
4326 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004327 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03004328 }
4329 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004330 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004331 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00004332 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004333 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004334 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004335 }
4336 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004337 /* Same as cts(cbc((aes)) except the key is stored in
4338 * hardware secure memory which we reference by index
4339 */
4340 .alg = "cts(cbc(paes))",
4341 .test = alg_test_null,
4342 .fips_allowed = 1,
4343 }, {
Ard Biesheuvelf6134572019-11-08 13:22:33 +01004344 .alg = "curve25519",
4345 .test = alg_test_kpp,
4346 .suite = {
4347 .kpp = __VECS(curve25519_tv_template)
4348 }
4349 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004350 .alg = "deflate",
4351 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004352 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004353 .suite = {
4354 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004355 .comp = __VECS(deflate_comp_tv_template),
4356 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004357 }
4358 }
4359 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004360 .alg = "dh",
4361 .test = alg_test_kpp,
4362 .fips_allowed = 1,
4363 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004364 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004365 }
4366 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004367 .alg = "digest_null",
4368 .test = alg_test_null,
4369 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004370 .alg = "drbg_nopr_ctr_aes128",
4371 .test = alg_test_drbg,
4372 .fips_allowed = 1,
4373 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004374 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004375 }
4376 }, {
4377 .alg = "drbg_nopr_ctr_aes192",
4378 .test = alg_test_drbg,
4379 .fips_allowed = 1,
4380 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004381 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004382 }
4383 }, {
4384 .alg = "drbg_nopr_ctr_aes256",
4385 .test = alg_test_drbg,
4386 .fips_allowed = 1,
4387 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004388 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004389 }
4390 }, {
4391 /*
4392 * There is no need to specifically test the DRBG with every
4393 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4394 */
4395 .alg = "drbg_nopr_hmac_sha1",
4396 .fips_allowed = 1,
4397 .test = alg_test_null,
4398 }, {
4399 .alg = "drbg_nopr_hmac_sha256",
4400 .test = alg_test_drbg,
4401 .fips_allowed = 1,
4402 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004403 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004404 }
4405 }, {
4406 /* covered by drbg_nopr_hmac_sha256 test */
4407 .alg = "drbg_nopr_hmac_sha384",
4408 .fips_allowed = 1,
4409 .test = alg_test_null,
4410 }, {
4411 .alg = "drbg_nopr_hmac_sha512",
4412 .test = alg_test_null,
4413 .fips_allowed = 1,
4414 }, {
4415 .alg = "drbg_nopr_sha1",
4416 .fips_allowed = 1,
4417 .test = alg_test_null,
4418 }, {
4419 .alg = "drbg_nopr_sha256",
4420 .test = alg_test_drbg,
4421 .fips_allowed = 1,
4422 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004423 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004424 }
4425 }, {
4426 /* covered by drbg_nopr_sha256 test */
4427 .alg = "drbg_nopr_sha384",
4428 .fips_allowed = 1,
4429 .test = alg_test_null,
4430 }, {
4431 .alg = "drbg_nopr_sha512",
4432 .fips_allowed = 1,
4433 .test = alg_test_null,
4434 }, {
4435 .alg = "drbg_pr_ctr_aes128",
4436 .test = alg_test_drbg,
4437 .fips_allowed = 1,
4438 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004439 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004440 }
4441 }, {
4442 /* covered by drbg_pr_ctr_aes128 test */
4443 .alg = "drbg_pr_ctr_aes192",
4444 .fips_allowed = 1,
4445 .test = alg_test_null,
4446 }, {
4447 .alg = "drbg_pr_ctr_aes256",
4448 .fips_allowed = 1,
4449 .test = alg_test_null,
4450 }, {
4451 .alg = "drbg_pr_hmac_sha1",
4452 .fips_allowed = 1,
4453 .test = alg_test_null,
4454 }, {
4455 .alg = "drbg_pr_hmac_sha256",
4456 .test = alg_test_drbg,
4457 .fips_allowed = 1,
4458 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004459 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004460 }
4461 }, {
4462 /* covered by drbg_pr_hmac_sha256 test */
4463 .alg = "drbg_pr_hmac_sha384",
4464 .fips_allowed = 1,
4465 .test = alg_test_null,
4466 }, {
4467 .alg = "drbg_pr_hmac_sha512",
4468 .test = alg_test_null,
4469 .fips_allowed = 1,
4470 }, {
4471 .alg = "drbg_pr_sha1",
4472 .fips_allowed = 1,
4473 .test = alg_test_null,
4474 }, {
4475 .alg = "drbg_pr_sha256",
4476 .test = alg_test_drbg,
4477 .fips_allowed = 1,
4478 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004479 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004480 }
4481 }, {
4482 /* covered by drbg_pr_sha256 test */
4483 .alg = "drbg_pr_sha384",
4484 .fips_allowed = 1,
4485 .test = alg_test_null,
4486 }, {
4487 .alg = "drbg_pr_sha512",
4488 .fips_allowed = 1,
4489 .test = alg_test_null,
4490 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004491 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004492 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004493 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004494 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004495 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004496 }
4497 }, {
4498 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004499 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004500 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004501 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004502 }
4503 }, {
4504 .alg = "ecb(arc4)",
Ard Biesheuvel611a23c2019-06-12 18:19:57 +02004505 .generic_driver = "ecb(arc4)-generic",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004506 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004507 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004508 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004509 }
4510 }, {
4511 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004512 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004513 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004514 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004515 }
4516 }, {
4517 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004518 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004519 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004520 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004521 }
4522 }, {
4523 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004524 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004525 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004526 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004527 }
4528 }, {
4529 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004530 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004531 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004532 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004533 }
4534 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004535 .alg = "ecb(cipher_null)",
4536 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02004537 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004538 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004539 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004540 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004541 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004542 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004543 }
4544 }, {
4545 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004546 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004547 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004548 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004549 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004550 }
4551 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004552 .alg = "ecb(fcrypt)",
4553 .test = alg_test_skcipher,
4554 .suite = {
4555 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004556 .vecs = fcrypt_pcbc_tv_template,
4557 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004558 }
4559 }
4560 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004561 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004562 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004563 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004564 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004565 }
4566 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01004567 /* Same as ecb(aes) except the key is stored in
4568 * hardware secure memory which we reference by index
4569 */
4570 .alg = "ecb(paes)",
4571 .test = alg_test_null,
4572 .fips_allowed = 1,
4573 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004574 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004575 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004576 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004577 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004578 }
4579 }, {
4580 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004581 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004582 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004583 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004584 }
4585 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004586 .alg = "ecb(sm4)",
4587 .test = alg_test_skcipher,
4588 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004589 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004590 }
4591 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004592 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004593 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004594 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004595 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004596 }
4597 }, {
4598 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004599 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004600 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004601 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004602 }
4603 }, {
4604 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004605 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004606 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004607 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004608 }
4609 }, {
4610 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004611 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004612 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004613 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004614 }
4615 }, {
4616 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004617 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004618 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004619 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004620 }
4621 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004622 .alg = "ecdh",
4623 .test = alg_test_kpp,
4624 .fips_allowed = 1,
4625 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004626 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004627 }
4628 }, {
Vitaly Chikunov32fbdbd2019-04-11 18:51:21 +03004629 .alg = "ecrdsa",
4630 .test = alg_test_akcipher,
4631 .suite = {
4632 .akcipher = __VECS(ecrdsa_tv_template)
4633 }
4634 }, {
Ard Biesheuvelf975abb2019-08-19 17:17:34 +03004635 .alg = "essiv(authenc(hmac(sha256),cbc(aes)),sha256)",
4636 .test = alg_test_aead,
4637 .fips_allowed = 1,
4638 .suite = {
4639 .aead = __VECS(essiv_hmac_sha256_aes_cbc_tv_temp)
4640 }
4641 }, {
4642 .alg = "essiv(cbc(aes),sha256)",
4643 .test = alg_test_skcipher,
4644 .fips_allowed = 1,
4645 .suite = {
4646 .cipher = __VECS(essiv_aes_cbc_tv_template)
4647 }
4648 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004649 .alg = "gcm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004650 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
Herbert Xuda7f0332008-07-31 17:08:25 +08004651 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004652 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004653 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004654 .aead = __VECS(aes_gcm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004655 }
4656 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08004657 .alg = "ghash",
4658 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11004659 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08004660 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004661 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08004662 }
4663 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004664 .alg = "hmac(md5)",
4665 .test = alg_test_hash,
4666 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004667 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004668 }
4669 }, {
4670 .alg = "hmac(rmd128)",
4671 .test = alg_test_hash,
4672 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004673 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004674 }
4675 }, {
4676 .alg = "hmac(rmd160)",
4677 .test = alg_test_hash,
4678 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004679 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004680 }
4681 }, {
4682 .alg = "hmac(sha1)",
4683 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004684 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004685 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004686 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004687 }
4688 }, {
4689 .alg = "hmac(sha224)",
4690 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004691 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004692 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004693 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004694 }
4695 }, {
4696 .alg = "hmac(sha256)",
4697 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004698 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004699 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004700 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004701 }
4702 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05304703 .alg = "hmac(sha3-224)",
4704 .test = alg_test_hash,
4705 .fips_allowed = 1,
4706 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004707 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304708 }
4709 }, {
4710 .alg = "hmac(sha3-256)",
4711 .test = alg_test_hash,
4712 .fips_allowed = 1,
4713 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004714 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304715 }
4716 }, {
4717 .alg = "hmac(sha3-384)",
4718 .test = alg_test_hash,
4719 .fips_allowed = 1,
4720 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004721 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304722 }
4723 }, {
4724 .alg = "hmac(sha3-512)",
4725 .test = alg_test_hash,
4726 .fips_allowed = 1,
4727 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004728 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304729 }
4730 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004731 .alg = "hmac(sha384)",
4732 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004733 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004734 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004735 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004736 }
4737 }, {
4738 .alg = "hmac(sha512)",
4739 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004740 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004741 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004742 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004743 }
4744 }, {
Pascal van Leeuwen8194fd12019-09-13 17:20:38 +02004745 .alg = "hmac(sm3)",
4746 .test = alg_test_hash,
4747 .suite = {
4748 .hash = __VECS(hmac_sm3_tv_template)
4749 }
4750 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004751 .alg = "hmac(streebog256)",
4752 .test = alg_test_hash,
4753 .suite = {
4754 .hash = __VECS(hmac_streebog256_tv_template)
4755 }
4756 }, {
4757 .alg = "hmac(streebog512)",
4758 .test = alg_test_hash,
4759 .suite = {
4760 .hash = __VECS(hmac_streebog512_tv_template)
4761 }
4762 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02004763 .alg = "jitterentropy_rng",
4764 .fips_allowed = 1,
4765 .test = alg_test_null,
4766 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02004767 .alg = "kw(aes)",
4768 .test = alg_test_skcipher,
4769 .fips_allowed = 1,
4770 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004771 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02004772 }
4773 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004774 .alg = "lrw(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004775 .generic_driver = "lrw(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004776 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004777 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004778 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004779 }
4780 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004781 .alg = "lrw(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07004782 .generic_driver = "lrw(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02004783 .test = alg_test_skcipher,
4784 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004785 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004786 }
4787 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004788 .alg = "lrw(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07004789 .generic_driver = "lrw(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004790 .test = alg_test_skcipher,
4791 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004792 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004793 }
4794 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004795 .alg = "lrw(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07004796 .generic_driver = "lrw(ecb(serpent-generic))",
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004797 .test = alg_test_skcipher,
4798 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004799 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004800 }
4801 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004802 .alg = "lrw(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07004803 .generic_driver = "lrw(ecb(twofish-generic))",
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004804 .test = alg_test_skcipher,
4805 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004806 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004807 }
4808 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004809 .alg = "lz4",
4810 .test = alg_test_comp,
4811 .fips_allowed = 1,
4812 .suite = {
4813 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004814 .comp = __VECS(lz4_comp_tv_template),
4815 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004816 }
4817 }
4818 }, {
4819 .alg = "lz4hc",
4820 .test = alg_test_comp,
4821 .fips_allowed = 1,
4822 .suite = {
4823 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004824 .comp = __VECS(lz4hc_comp_tv_template),
4825 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004826 }
4827 }
4828 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004829 .alg = "lzo",
4830 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004831 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004832 .suite = {
4833 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004834 .comp = __VECS(lzo_comp_tv_template),
4835 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004836 }
4837 }
4838 }, {
Hannah Panf248caf2019-07-02 15:16:02 -07004839 .alg = "lzo-rle",
4840 .test = alg_test_comp,
4841 .fips_allowed = 1,
4842 .suite = {
4843 .comp = {
4844 .comp = __VECS(lzorle_comp_tv_template),
4845 .decomp = __VECS(lzorle_decomp_tv_template)
4846 }
4847 }
4848 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004849 .alg = "md4",
4850 .test = alg_test_hash,
4851 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004852 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004853 }
4854 }, {
4855 .alg = "md5",
4856 .test = alg_test_hash,
4857 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004858 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004859 }
4860 }, {
4861 .alg = "michael_mic",
4862 .test = alg_test_hash,
4863 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004864 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004865 }
4866 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08004867 .alg = "nhpoly1305",
4868 .test = alg_test_hash,
4869 .suite = {
4870 .hash = __VECS(nhpoly1305_tv_template)
4871 }
4872 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004873 .alg = "ofb(aes)",
4874 .test = alg_test_skcipher,
4875 .fips_allowed = 1,
4876 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004877 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004878 }
4879 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004880 /* Same as ofb(aes) except the key is stored in
4881 * hardware secure memory which we reference by index
4882 */
4883 .alg = "ofb(paes)",
4884 .test = alg_test_null,
4885 .fips_allowed = 1,
4886 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02004887 .alg = "ofb(sm4)",
4888 .test = alg_test_skcipher,
4889 .suite = {
4890 .cipher = __VECS(sm4_ofb_tv_template)
4891 }
4892 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004893 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004894 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004895 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004896 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004897 }
4898 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02004899 .alg = "pkcs1pad(rsa,sha224)",
4900 .test = alg_test_null,
4901 .fips_allowed = 1,
4902 }, {
4903 .alg = "pkcs1pad(rsa,sha256)",
4904 .test = alg_test_akcipher,
4905 .fips_allowed = 1,
4906 .suite = {
4907 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
4908 }
4909 }, {
4910 .alg = "pkcs1pad(rsa,sha384)",
4911 .test = alg_test_null,
4912 .fips_allowed = 1,
4913 }, {
4914 .alg = "pkcs1pad(rsa,sha512)",
4915 .test = alg_test_null,
4916 .fips_allowed = 1,
4917 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02004918 .alg = "poly1305",
4919 .test = alg_test_hash,
4920 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004921 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02004922 }
4923 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004924 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004925 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004926 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004927 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004928 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004929 }
4930 }, {
Pascal van Leeuwene4886212019-09-13 11:10:42 +02004931 .alg = "rfc3686(ctr(sm4))",
4932 .test = alg_test_skcipher,
4933 .suite = {
4934 .cipher = __VECS(sm4_ctr_rfc3686_tv_template)
4935 }
4936 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08004937 .alg = "rfc4106(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004938 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
Adrian Hoban69435b92010-11-04 15:02:04 -04004939 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05004940 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04004941 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004942 .aead = __VECS(aes_gcm_rfc4106_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04004943 }
4944 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08004945 .alg = "rfc4309(ccm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004946 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
Jarod Wilson5d667322009-05-04 19:23:40 +08004947 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004948 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08004949 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004950 .aead = __VECS(aes_ccm_rfc4309_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08004951 }
4952 }, {
Herbert Xubb687452015-06-16 13:54:24 +08004953 .alg = "rfc4543(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004954 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004955 .test = alg_test_aead,
4956 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004957 .aead = __VECS(aes_gcm_rfc4543_tv_template)
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004958 }
4959 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02004960 .alg = "rfc7539(chacha20,poly1305)",
4961 .test = alg_test_aead,
4962 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004963 .aead = __VECS(rfc7539_tv_template)
Martin Williaf2b76b2015-06-01 13:44:01 +02004964 }
4965 }, {
Martin Willi59007582015-06-01 13:44:03 +02004966 .alg = "rfc7539esp(chacha20,poly1305)",
4967 .test = alg_test_aead,
4968 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004969 .aead = __VECS(rfc7539esp_tv_template)
Martin Willi59007582015-06-01 13:44:03 +02004970 }
4971 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004972 .alg = "rmd128",
4973 .test = alg_test_hash,
4974 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004975 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004976 }
4977 }, {
4978 .alg = "rmd160",
4979 .test = alg_test_hash,
4980 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004981 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004982 }
4983 }, {
4984 .alg = "rmd256",
4985 .test = alg_test_hash,
4986 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004987 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004988 }
4989 }, {
4990 .alg = "rmd320",
4991 .test = alg_test_hash,
4992 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004993 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004994 }
4995 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07004996 .alg = "rsa",
4997 .test = alg_test_akcipher,
4998 .fips_allowed = 1,
4999 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005000 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07005001 }
5002 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005003 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005004 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08005005 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005006 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005007 }
5008 }, {
5009 .alg = "sha1",
5010 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005011 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005012 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005013 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005014 }
5015 }, {
5016 .alg = "sha224",
5017 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005018 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005019 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005020 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005021 }
5022 }, {
5023 .alg = "sha256",
5024 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005025 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005026 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005027 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005028 }
5029 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305030 .alg = "sha3-224",
5031 .test = alg_test_hash,
5032 .fips_allowed = 1,
5033 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005034 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305035 }
5036 }, {
5037 .alg = "sha3-256",
5038 .test = alg_test_hash,
5039 .fips_allowed = 1,
5040 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005041 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305042 }
5043 }, {
5044 .alg = "sha3-384",
5045 .test = alg_test_hash,
5046 .fips_allowed = 1,
5047 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005048 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305049 }
5050 }, {
5051 .alg = "sha3-512",
5052 .test = alg_test_hash,
5053 .fips_allowed = 1,
5054 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005055 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305056 }
5057 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005058 .alg = "sha384",
5059 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005060 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005061 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005062 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005063 }
5064 }, {
5065 .alg = "sha512",
5066 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005067 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005068 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005069 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005070 }
5071 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03005072 .alg = "sm3",
5073 .test = alg_test_hash,
5074 .suite = {
5075 .hash = __VECS(sm3_tv_template)
5076 }
5077 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03005078 .alg = "streebog256",
5079 .test = alg_test_hash,
5080 .suite = {
5081 .hash = __VECS(streebog256_tv_template)
5082 }
5083 }, {
5084 .alg = "streebog512",
5085 .test = alg_test_hash,
5086 .suite = {
5087 .hash = __VECS(streebog512_tv_template)
5088 }
5089 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005090 .alg = "tgr128",
5091 .test = alg_test_hash,
5092 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005093 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005094 }
5095 }, {
5096 .alg = "tgr160",
5097 .test = alg_test_hash,
5098 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005099 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005100 }
5101 }, {
5102 .alg = "tgr192",
5103 .test = alg_test_hash,
5104 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005105 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005106 }
5107 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07005108 .alg = "vmac64(aes)",
5109 .test = alg_test_hash,
5110 .suite = {
5111 .hash = __VECS(vmac64_aes_tv_template)
5112 }
5113 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005114 .alg = "wp256",
5115 .test = alg_test_hash,
5116 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005117 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005118 }
5119 }, {
5120 .alg = "wp384",
5121 .test = alg_test_hash,
5122 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005123 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005124 }
5125 }, {
5126 .alg = "wp512",
5127 .test = alg_test_hash,
5128 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005129 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005130 }
5131 }, {
5132 .alg = "xcbc(aes)",
5133 .test = alg_test_hash,
5134 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005135 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005136 }
5137 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08005138 .alg = "xchacha12",
5139 .test = alg_test_skcipher,
5140 .suite = {
5141 .cipher = __VECS(xchacha12_tv_template)
5142 },
5143 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08005144 .alg = "xchacha20",
5145 .test = alg_test_skcipher,
5146 .suite = {
5147 .cipher = __VECS(xchacha20_tv_template)
5148 },
5149 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005150 .alg = "xts(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005151 .generic_driver = "xts(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005152 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11005153 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005154 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005155 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005156 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08005157 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005158 .alg = "xts(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005159 .generic_driver = "xts(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005160 .test = alg_test_skcipher,
5161 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005162 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005163 }
5164 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005165 .alg = "xts(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005166 .generic_driver = "xts(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005167 .test = alg_test_skcipher,
5168 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005169 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005170 }
5171 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005172 /* Same as xts(aes) except the key is stored in
5173 * hardware secure memory which we reference by index
5174 */
5175 .alg = "xts(paes)",
5176 .test = alg_test_null,
5177 .fips_allowed = 1,
5178 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005179 .alg = "xts(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005180 .generic_driver = "xts(ecb(serpent-generic))",
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005181 .test = alg_test_skcipher,
5182 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005183 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005184 }
5185 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005186 .alg = "xts(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005187 .generic_driver = "xts(ecb(twofish-generic))",
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005188 .test = alg_test_skcipher,
5189 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005190 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005191 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005192 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005193 .alg = "xts4096(paes)",
5194 .test = alg_test_null,
5195 .fips_allowed = 1,
5196 }, {
5197 .alg = "xts512(paes)",
5198 .test = alg_test_null,
5199 .fips_allowed = 1,
5200 }, {
Nikolay Borisov67882e72019-05-30 09:52:57 +03005201 .alg = "xxhash64",
5202 .test = alg_test_hash,
5203 .fips_allowed = 1,
5204 .suite = {
5205 .hash = __VECS(xxhash64_tv_template)
5206 }
5207 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005208 .alg = "zlib-deflate",
5209 .test = alg_test_comp,
5210 .fips_allowed = 1,
5211 .suite = {
5212 .comp = {
5213 .comp = __VECS(zlib_deflate_comp_tv_template),
5214 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5215 }
5216 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07005217 }, {
5218 .alg = "zstd",
5219 .test = alg_test_comp,
5220 .fips_allowed = 1,
5221 .suite = {
5222 .comp = {
5223 .comp = __VECS(zstd_comp_tv_template),
5224 .decomp = __VECS(zstd_decomp_tv_template)
5225 }
5226 }
Herbert Xuda7f0332008-07-31 17:08:25 +08005227 }
5228};
5229
Eric Biggers3f47a032019-01-31 23:51:43 -08005230static void alg_check_test_descs_order(void)
Jussi Kivilinna57147582013-06-13 17:37:40 +03005231{
5232 int i;
5233
Jussi Kivilinna57147582013-06-13 17:37:40 +03005234 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5235 int diff = strcmp(alg_test_descs[i - 1].alg,
5236 alg_test_descs[i].alg);
5237
5238 if (WARN_ON(diff > 0)) {
5239 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5240 alg_test_descs[i - 1].alg,
5241 alg_test_descs[i].alg);
5242 }
5243
5244 if (WARN_ON(diff == 0)) {
5245 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5246 alg_test_descs[i].alg);
5247 }
5248 }
5249}
5250
Eric Biggers3f47a032019-01-31 23:51:43 -08005251static void alg_check_testvec_configs(void)
5252{
Eric Biggers4e7babba2019-01-31 23:51:46 -08005253 int i;
5254
5255 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5256 WARN_ON(!valid_testvec_config(
5257 &default_cipher_testvec_configs[i]));
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08005258
5259 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5260 WARN_ON(!valid_testvec_config(
5261 &default_hash_testvec_configs[i]));
Eric Biggers3f47a032019-01-31 23:51:43 -08005262}
5263
5264static void testmgr_onetime_init(void)
5265{
5266 alg_check_test_descs_order();
5267 alg_check_testvec_configs();
Eric Biggers5b2706a2019-01-31 23:51:44 -08005268
5269#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5270 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5271#endif
Eric Biggers3f47a032019-01-31 23:51:43 -08005272}
5273
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005274static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08005275{
5276 int start = 0;
5277 int end = ARRAY_SIZE(alg_test_descs);
5278
5279 while (start < end) {
5280 int i = (start + end) / 2;
5281 int diff = strcmp(alg_test_descs[i].alg, alg);
5282
5283 if (diff > 0) {
5284 end = i;
5285 continue;
5286 }
5287
5288 if (diff < 0) {
5289 start = i + 1;
5290 continue;
5291 }
5292
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005293 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08005294 }
5295
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005296 return -1;
5297}
5298
5299int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5300{
5301 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08005302 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08005303 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005304
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01005305 if (!fips_enabled && notests) {
5306 printk_once(KERN_INFO "alg: self-tests disabled\n");
5307 return 0;
5308 }
5309
Eric Biggers3f47a032019-01-31 23:51:43 -08005310 DO_ONCE(testmgr_onetime_init);
Jussi Kivilinna57147582013-06-13 17:37:40 +03005311
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005312 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5313 char nalg[CRYPTO_MAX_ALG_NAME];
5314
5315 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5316 sizeof(nalg))
5317 return -ENAMETOOLONG;
5318
5319 i = alg_find_test(nalg);
5320 if (i < 0)
5321 goto notest;
5322
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005323 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5324 goto non_fips_alg;
5325
Jarod Wilson941fb322009-05-04 19:49:23 +08005326 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5327 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005328 }
5329
5330 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08005331 j = alg_find_test(driver);
5332 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005333 goto notest;
5334
Herbert Xua68f6612009-07-02 16:32:12 +08005335 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
5336 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005337 goto non_fips_alg;
5338
Herbert Xua68f6612009-07-02 16:32:12 +08005339 rc = 0;
5340 if (i >= 0)
5341 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5342 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03005343 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08005344 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5345 type, mask);
5346
Jarod Wilson941fb322009-05-04 19:49:23 +08005347test_done:
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005348 if (rc && (fips_enabled || panic_on_fail)) {
5349 fips_fail_notify();
Eric Biggerseda69b02019-03-31 13:09:14 -07005350 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5351 driver, alg, fips_enabled ? "fips" : "panic_on_fail");
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005352 }
Neil Hormand12d6b62008-10-12 20:36:51 +08005353
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005354 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09005355 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005356
Neil Hormand12d6b62008-10-12 20:36:51 +08005357 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005358
5359notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08005360 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5361 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005362non_fips_alg:
5363 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08005364}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005365
Herbert Xu326a6342010-08-06 09:40:28 +08005366#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005367
Herbert Xuda7f0332008-07-31 17:08:25 +08005368EXPORT_SYMBOL_GPL(alg_test);