blob: a8940415512fbce12ca80e6845188630718a0ee9 [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 Biggers9ac0d132019-11-29 10:23:04 -08002767 if (maxkeysize != crypto_skcipher_max_keysize(generic_tfm)) {
Eric Biggersd435e102019-04-11 21:57:40 -07002768 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
Eric Biggers9ac0d132019-11-29 10:23:04 -08002769 driver, maxkeysize,
2770 crypto_skcipher_max_keysize(generic_tfm));
Eric Biggersd435e102019-04-11 21:57:40 -07002771 err = -EINVAL;
2772 goto out;
2773 }
2774
2775 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
2776 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2777 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
2778 err = -EINVAL;
2779 goto out;
2780 }
2781
2782 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
2783 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2784 driver, blocksize,
2785 crypto_skcipher_blocksize(generic_tfm));
2786 err = -EINVAL;
2787 goto out;
2788 }
2789
2790 /*
2791 * Now generate test vectors using the generic implementation, and test
2792 * the other implementation against them.
2793 */
2794
Eric Biggers9ac0d132019-11-29 10:23:04 -08002795 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
Eric Biggersd435e102019-04-11 21:57:40 -07002796 vec.iv = kmalloc(ivsize, GFP_KERNEL);
2797 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
2798 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
2799 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
2800 err = -ENOMEM;
2801 goto out;
2802 }
2803
2804 for (i = 0; i < fuzz_iterations * 8; i++) {
2805 generate_random_cipher_testvec(generic_req, &vec, maxdatasize,
2806 vec_name, sizeof(vec_name));
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002807 generate_random_testvec_config(cfg, cfgname, sizeof(cfgname));
Eric Biggersd435e102019-04-11 21:57:40 -07002808
2809 err = test_skcipher_vec_cfg(driver, ENCRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002810 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002811 if (err)
2812 goto out;
2813 err = test_skcipher_vec_cfg(driver, DECRYPT, &vec, vec_name,
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002814 cfg, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002815 if (err)
2816 goto out;
2817 cond_resched();
2818 }
2819 err = 0;
2820out:
Arnd Bergmann6b5ca642019-06-18 11:21:52 +02002821 kfree(cfg);
Eric Biggersd435e102019-04-11 21:57:40 -07002822 kfree(vec.key);
2823 kfree(vec.iv);
2824 kfree(vec.ptext);
2825 kfree(vec.ctext);
2826 crypto_free_skcipher(generic_tfm);
2827 skcipher_request_free(generic_req);
2828 return err;
2829}
2830#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2831static int test_skcipher_vs_generic_impl(const char *driver,
2832 const char *generic_driver,
2833 struct skcipher_request *req,
2834 struct cipher_test_sglists *tsgls)
2835{
2836 return 0;
2837}
2838#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2839
Eric Biggers4e7babba2019-01-31 23:51:46 -08002840static int test_skcipher(const char *driver, int enc,
2841 const struct cipher_test_suite *suite,
2842 struct skcipher_request *req,
2843 struct cipher_test_sglists *tsgls)
2844{
2845 unsigned int i;
2846 int err;
2847
2848 for (i = 0; i < suite->count; i++) {
2849 err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
2850 tsgls);
2851 if (err)
2852 return err;
Eric Biggerse63e1b02019-06-02 22:42:33 -07002853 cond_resched();
Eric Biggers4e7babba2019-01-31 23:51:46 -08002854 }
2855 return 0;
2856}
2857
2858static int alg_test_skcipher(const struct alg_test_desc *desc,
2859 const char *driver, u32 type, u32 mask)
2860{
2861 const struct cipher_test_suite *suite = &desc->suite.cipher;
2862 struct crypto_skcipher *tfm;
2863 struct skcipher_request *req = NULL;
2864 struct cipher_test_sglists *tsgls = NULL;
2865 int err;
2866
2867 if (suite->count <= 0) {
2868 pr_err("alg: skcipher: empty test suite for %s\n", driver);
2869 return -EINVAL;
2870 }
2871
2872 tfm = crypto_alloc_skcipher(driver, type, mask);
2873 if (IS_ERR(tfm)) {
2874 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
2875 driver, PTR_ERR(tfm));
2876 return PTR_ERR(tfm);
2877 }
2878
2879 req = skcipher_request_alloc(tfm, GFP_KERNEL);
2880 if (!req) {
2881 pr_err("alg: skcipher: failed to allocate request for %s\n",
2882 driver);
2883 err = -ENOMEM;
2884 goto out;
2885 }
2886
2887 tsgls = alloc_cipher_test_sglists();
2888 if (!tsgls) {
2889 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
2890 driver);
2891 err = -ENOMEM;
2892 goto out;
2893 }
2894
2895 err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
2896 if (err)
2897 goto out;
2898
2899 err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
Eric Biggersd435e102019-04-11 21:57:40 -07002900 if (err)
2901 goto out;
2902
2903 err = test_skcipher_vs_generic_impl(driver, desc->generic_driver, req,
2904 tsgls);
Eric Biggers4e7babba2019-01-31 23:51:46 -08002905out:
2906 free_cipher_test_sglists(tsgls);
2907 skcipher_request_free(req);
2908 crypto_free_skcipher(tfm);
2909 return err;
2910}
2911
Eric Biggersb13b1e02017-02-24 15:46:59 -08002912static int test_comp(struct crypto_comp *tfm,
2913 const struct comp_testvec *ctemplate,
2914 const struct comp_testvec *dtemplate,
2915 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08002916{
2917 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02002918 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08002919 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08002920 int ret;
2921
Mahipal Challa33607382018-04-11 20:28:32 +02002922 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2923 if (!output)
2924 return -ENOMEM;
2925
2926 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
2927 if (!decomp_output) {
2928 kfree(output);
2929 return -ENOMEM;
2930 }
2931
Herbert Xuda7f0332008-07-31 17:08:25 +08002932 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002933 int ilen;
2934 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002935
Michael Schupikov22a81182018-10-07 13:58:10 +02002936 memset(output, 0, COMP_BUF_SIZE);
2937 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002938
2939 ilen = ctemplate[i].inlen;
2940 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002941 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002942 if (ret) {
2943 printk(KERN_ERR "alg: comp: compression failed "
2944 "on test %d for %s: ret=%d\n", i + 1, algo,
2945 -ret);
2946 goto out;
2947 }
2948
Mahipal Challa33607382018-04-11 20:28:32 +02002949 ilen = dlen;
2950 dlen = COMP_BUF_SIZE;
2951 ret = crypto_comp_decompress(tfm, output,
2952 ilen, decomp_output, &dlen);
2953 if (ret) {
2954 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
2955 i + 1, algo, -ret);
2956 goto out;
2957 }
2958
2959 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002960 printk(KERN_ERR "alg: comp: Compression test %d "
2961 "failed for %s: output len = %d\n", i + 1, algo,
2962 dlen);
2963 ret = -EINVAL;
2964 goto out;
2965 }
2966
Mahipal Challa33607382018-04-11 20:28:32 +02002967 if (memcmp(decomp_output, ctemplate[i].input,
2968 ctemplate[i].inlen)) {
2969 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
2970 i + 1, algo);
2971 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002972 ret = -EINVAL;
2973 goto out;
2974 }
2975 }
2976
2977 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08002978 int ilen;
2979 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08002980
Michael Schupikov22a81182018-10-07 13:58:10 +02002981 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08002982
2983 ilen = dtemplate[i].inlen;
2984 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02002985 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08002986 if (ret) {
2987 printk(KERN_ERR "alg: comp: decompression failed "
2988 "on test %d for %s: ret=%d\n", i + 1, algo,
2989 -ret);
2990 goto out;
2991 }
2992
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08002993 if (dlen != dtemplate[i].outlen) {
2994 printk(KERN_ERR "alg: comp: Decompression test %d "
2995 "failed for %s: output len = %d\n", i + 1, algo,
2996 dlen);
2997 ret = -EINVAL;
2998 goto out;
2999 }
3000
Mahipal Challa33607382018-04-11 20:28:32 +02003001 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08003002 printk(KERN_ERR "alg: comp: Decompression test %d "
3003 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02003004 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08003005 ret = -EINVAL;
3006 goto out;
3007 }
3008 }
3009
3010 ret = 0;
3011
3012out:
Mahipal Challa33607382018-04-11 20:28:32 +02003013 kfree(decomp_output);
3014 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08003015 return ret;
3016}
3017
Eric Biggersb13b1e02017-02-24 15:46:59 -08003018static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02003019 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003020 const struct comp_testvec *dtemplate,
3021 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003022{
3023 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
3024 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003025 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003026 int ret;
3027 struct scatterlist src, dst;
3028 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003029 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003030
Eric Biggerseb095592016-11-23 10:24:35 -08003031 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3032 if (!output)
3033 return -ENOMEM;
3034
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003035 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3036 if (!decomp_out) {
3037 kfree(output);
3038 return -ENOMEM;
3039 }
3040
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003041 for (i = 0; i < ctcount; i++) {
3042 unsigned int dlen = COMP_BUF_SIZE;
3043 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003044 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003045
Eric Biggersd2110222016-12-30 14:12:00 -06003046 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003047 if (!input_vec) {
3048 ret = -ENOMEM;
3049 goto out;
3050 }
3051
Eric Biggerseb095592016-11-23 10:24:35 -08003052 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003053 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003054 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003055 sg_init_one(&dst, output, dlen);
3056
3057 req = acomp_request_alloc(tfm);
3058 if (!req) {
3059 pr_err("alg: acomp: request alloc failed for %s\n",
3060 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003061 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003062 ret = -ENOMEM;
3063 goto out;
3064 }
3065
3066 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3067 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003068 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003069
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003070 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003071 if (ret) {
3072 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3073 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003074 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003075 acomp_request_free(req);
3076 goto out;
3077 }
3078
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003079 ilen = req->dlen;
3080 dlen = COMP_BUF_SIZE;
3081 sg_init_one(&src, output, ilen);
3082 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003083 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003084 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3085
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003086 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003087 if (ret) {
3088 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3089 i + 1, algo, -ret);
3090 kfree(input_vec);
3091 acomp_request_free(req);
3092 goto out;
3093 }
3094
3095 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003096 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3097 i + 1, algo, req->dlen);
3098 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003099 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003100 acomp_request_free(req);
3101 goto out;
3102 }
3103
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003104 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003105 pr_err("alg: acomp: Compression test %d failed for %s\n",
3106 i + 1, algo);
3107 hexdump(output, req->dlen);
3108 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003109 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003110 acomp_request_free(req);
3111 goto out;
3112 }
3113
Laura Abbott02608e02016-12-21 12:32:54 -08003114 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003115 acomp_request_free(req);
3116 }
3117
3118 for (i = 0; i < dtcount; i++) {
3119 unsigned int dlen = COMP_BUF_SIZE;
3120 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08003121 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003122
Eric Biggersd2110222016-12-30 14:12:00 -06003123 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08003124 if (!input_vec) {
3125 ret = -ENOMEM;
3126 goto out;
3127 }
3128
Eric Biggerseb095592016-11-23 10:24:35 -08003129 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003130 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08003131 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003132 sg_init_one(&dst, output, dlen);
3133
3134 req = acomp_request_alloc(tfm);
3135 if (!req) {
3136 pr_err("alg: acomp: request alloc failed for %s\n",
3137 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08003138 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003139 ret = -ENOMEM;
3140 goto out;
3141 }
3142
3143 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3144 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003145 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003146
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003147 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003148 if (ret) {
3149 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3150 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08003151 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003152 acomp_request_free(req);
3153 goto out;
3154 }
3155
3156 if (req->dlen != dtemplate[i].outlen) {
3157 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3158 i + 1, algo, req->dlen);
3159 ret = -EINVAL;
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 (memcmp(output, dtemplate[i].output, req->dlen)) {
3166 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3167 i + 1, algo);
3168 hexdump(output, req->dlen);
3169 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08003170 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003171 acomp_request_free(req);
3172 goto out;
3173 }
3174
Laura Abbott02608e02016-12-21 12:32:54 -08003175 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003176 acomp_request_free(req);
3177 }
3178
3179 ret = 0;
3180
3181out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01003182 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08003183 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003184 return ret;
3185}
3186
Eric Biggersb13b1e02017-02-24 15:46:59 -08003187static int test_cprng(struct crypto_rng *tfm,
3188 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003189 unsigned int tcount)
3190{
3191 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08003192 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003193 u8 *seed;
3194 char result[32];
3195
3196 seedsize = crypto_rng_seedsize(tfm);
3197
3198 seed = kmalloc(seedsize, GFP_KERNEL);
3199 if (!seed) {
3200 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3201 "for %s\n", algo);
3202 return -ENOMEM;
3203 }
3204
3205 for (i = 0; i < tcount; i++) {
3206 memset(result, 0, 32);
3207
3208 memcpy(seed, template[i].v, template[i].vlen);
3209 memcpy(seed + template[i].vlen, template[i].key,
3210 template[i].klen);
3211 memcpy(seed + template[i].vlen + template[i].klen,
3212 template[i].dt, template[i].dtlen);
3213
3214 err = crypto_rng_reset(tfm, seed, seedsize);
3215 if (err) {
3216 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3217 "for %s\n", algo);
3218 goto out;
3219 }
3220
3221 for (j = 0; j < template[i].loops; j++) {
3222 err = crypto_rng_get_bytes(tfm, result,
3223 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01003224 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003225 printk(KERN_ERR "alg: cprng: Failed to obtain "
3226 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01003227 "%s (requested %d)\n", algo,
3228 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003229 goto out;
3230 }
3231 }
3232
3233 err = memcmp(result, template[i].result,
3234 template[i].rlen);
3235 if (err) {
3236 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3237 i, algo);
3238 hexdump(result, template[i].rlen);
3239 err = -EINVAL;
3240 goto out;
3241 }
3242 }
3243
3244out:
3245 kfree(seed);
3246 return err;
3247}
3248
Herbert Xuda7f0332008-07-31 17:08:25 +08003249static int alg_test_cipher(const struct alg_test_desc *desc,
3250 const char *driver, u32 type, u32 mask)
3251{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003252 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003253 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003254 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08003255
Herbert Xueed93e02016-11-22 20:08:31 +08003256 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08003257 if (IS_ERR(tfm)) {
3258 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3259 "%s: %ld\n", driver, PTR_ERR(tfm));
3260 return PTR_ERR(tfm);
3261 }
3262
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003263 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3264 if (!err)
3265 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08003266
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003267 crypto_free_cipher(tfm);
3268 return err;
3269}
3270
Herbert Xuda7f0332008-07-31 17:08:25 +08003271static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3272 u32 type, u32 mask)
3273{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003274 struct crypto_comp *comp;
3275 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08003276 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003277 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08003278
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01003279 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3280 acomp = crypto_alloc_acomp(driver, type, mask);
3281 if (IS_ERR(acomp)) {
3282 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3283 driver, PTR_ERR(acomp));
3284 return PTR_ERR(acomp);
3285 }
3286 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3287 desc->suite.comp.decomp.vecs,
3288 desc->suite.comp.comp.count,
3289 desc->suite.comp.decomp.count);
3290 crypto_free_acomp(acomp);
3291 } else {
3292 comp = crypto_alloc_comp(driver, type, mask);
3293 if (IS_ERR(comp)) {
3294 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3295 driver, PTR_ERR(comp));
3296 return PTR_ERR(comp);
3297 }
3298
3299 err = test_comp(comp, desc->suite.comp.comp.vecs,
3300 desc->suite.comp.decomp.vecs,
3301 desc->suite.comp.comp.count,
3302 desc->suite.comp.decomp.count);
3303
3304 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08003305 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003306 return err;
3307}
3308
Herbert Xu8e3ee852008-11-07 14:58:52 +08003309static int alg_test_crc32c(const struct alg_test_desc *desc,
3310 const char *driver, u32 type, u32 mask)
3311{
3312 struct crypto_shash *tfm;
Eric Biggerscb9dde82019-01-10 12:17:55 -08003313 __le32 val;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003314 int err;
3315
3316 err = alg_test_hash(desc, driver, type, mask);
3317 if (err)
Eric Biggerseb5e6732019-01-23 20:57:35 -08003318 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003319
Herbert Xueed93e02016-11-22 20:08:31 +08003320 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003321 if (IS_ERR(tfm)) {
Eric Biggerseb5e6732019-01-23 20:57:35 -08003322 if (PTR_ERR(tfm) == -ENOENT) {
3323 /*
3324 * This crc32c implementation is only available through
3325 * ahash API, not the shash API, so the remaining part
3326 * of the test is not applicable to it.
3327 */
3328 return 0;
3329 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08003330 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3331 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggerseb5e6732019-01-23 20:57:35 -08003332 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003333 }
3334
3335 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003336 SHASH_DESC_ON_STACK(shash, tfm);
3337 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003338
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003339 shash->tfm = tfm;
Herbert Xu8e3ee852008-11-07 14:58:52 +08003340
Eric Biggerscb9dde82019-01-10 12:17:55 -08003341 *ctx = 420553207;
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02003342 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08003343 if (err) {
3344 printk(KERN_ERR "alg: crc32c: Operation failed for "
3345 "%s: %d\n", driver, err);
3346 break;
3347 }
3348
Eric Biggerscb9dde82019-01-10 12:17:55 -08003349 if (val != cpu_to_le32(~420553207)) {
3350 pr_err("alg: crc32c: Test failed for %s: %u\n",
3351 driver, le32_to_cpu(val));
Herbert Xu8e3ee852008-11-07 14:58:52 +08003352 err = -EINVAL;
3353 }
3354 } while (0);
3355
3356 crypto_free_shash(tfm);
3357
Herbert Xu8e3ee852008-11-07 14:58:52 +08003358 return err;
3359}
3360
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003361static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3362 u32 type, u32 mask)
3363{
3364 struct crypto_rng *rng;
3365 int err;
3366
Herbert Xueed93e02016-11-22 20:08:31 +08003367 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08003368 if (IS_ERR(rng)) {
3369 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3370 "%ld\n", driver, PTR_ERR(rng));
3371 return PTR_ERR(rng);
3372 }
3373
3374 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3375
3376 crypto_free_rng(rng);
3377
3378 return err;
3379}
3380
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003381
Eric Biggersb13b1e02017-02-24 15:46:59 -08003382static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003383 const char *driver, u32 type, u32 mask)
3384{
3385 int ret = -EAGAIN;
3386 struct crypto_rng *drng;
3387 struct drbg_test_data test_data;
3388 struct drbg_string addtl, pers, testentropy;
3389 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3390
3391 if (!buf)
3392 return -ENOMEM;
3393
Herbert Xueed93e02016-11-22 20:08:31 +08003394 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003395 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003396 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003397 "%s\n", driver);
3398 kzfree(buf);
3399 return -ENOMEM;
3400 }
3401
3402 test_data.testentropy = &testentropy;
3403 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3404 drbg_string_fill(&pers, test->pers, test->perslen);
3405 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3406 if (ret) {
3407 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3408 goto outbuf;
3409 }
3410
3411 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3412 if (pr) {
3413 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3414 ret = crypto_drbg_get_bytes_addtl_test(drng,
3415 buf, test->expectedlen, &addtl, &test_data);
3416 } else {
3417 ret = crypto_drbg_get_bytes_addtl(drng,
3418 buf, test->expectedlen, &addtl);
3419 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003420 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003421 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003422 "driver %s\n", driver);
3423 goto outbuf;
3424 }
3425
3426 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3427 if (pr) {
3428 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3429 ret = crypto_drbg_get_bytes_addtl_test(drng,
3430 buf, test->expectedlen, &addtl, &test_data);
3431 } else {
3432 ret = crypto_drbg_get_bytes_addtl(drng,
3433 buf, test->expectedlen, &addtl);
3434 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01003435 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04003436 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003437 "driver %s\n", driver);
3438 goto outbuf;
3439 }
3440
3441 ret = memcmp(test->expected, buf, test->expectedlen);
3442
3443outbuf:
3444 crypto_free_rng(drng);
3445 kzfree(buf);
3446 return ret;
3447}
3448
3449
3450static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3451 u32 type, u32 mask)
3452{
3453 int err = 0;
3454 int pr = 0;
3455 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08003456 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02003457 unsigned int tcount = desc->suite.drbg.count;
3458
3459 if (0 == memcmp(driver, "drbg_pr_", 8))
3460 pr = 1;
3461
3462 for (i = 0; i < tcount; i++) {
3463 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3464 if (err) {
3465 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3466 i, driver);
3467 err = -EINVAL;
3468 break;
3469 }
3470 }
3471 return err;
3472
3473}
3474
Eric Biggersb13b1e02017-02-24 15:46:59 -08003475static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003476 const char *alg)
3477{
3478 struct kpp_request *req;
3479 void *input_buf = NULL;
3480 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003481 void *a_public = NULL;
3482 void *a_ss = NULL;
3483 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003484 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003485 unsigned int out_len_max;
3486 int err = -ENOMEM;
3487 struct scatterlist src, dst;
3488
3489 req = kpp_request_alloc(tfm, GFP_KERNEL);
3490 if (!req)
3491 return err;
3492
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003493 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003494
3495 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3496 if (err < 0)
3497 goto free_req;
3498
3499 out_len_max = crypto_kpp_maxsize(tfm);
3500 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3501 if (!output_buf) {
3502 err = -ENOMEM;
3503 goto free_req;
3504 }
3505
3506 /* Use appropriate parameter as base */
3507 kpp_request_set_input(req, NULL, 0);
3508 sg_init_one(&dst, output_buf, out_len_max);
3509 kpp_request_set_output(req, &dst, out_len_max);
3510 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003511 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003512
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003513 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003514 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003515 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003516 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003517 alg, err);
3518 goto free_output;
3519 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003520
3521 if (vec->genkey) {
3522 /* Save party A's public key */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003523 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003524 if (!a_public) {
3525 err = -ENOMEM;
3526 goto free_output;
3527 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003528 } else {
3529 /* Verify calculated public key */
3530 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3531 vec->expected_a_public_size)) {
3532 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3533 alg);
3534 err = -EINVAL;
3535 goto free_output;
3536 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003537 }
3538
3539 /* Calculate shared secret key by using counter part (b) public key. */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003540 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003541 if (!input_buf) {
3542 err = -ENOMEM;
3543 goto free_output;
3544 }
3545
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003546 sg_init_one(&src, input_buf, vec->b_public_size);
3547 sg_init_one(&dst, output_buf, out_len_max);
3548 kpp_request_set_input(req, &src, vec->b_public_size);
3549 kpp_request_set_output(req, &dst, out_len_max);
3550 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003551 crypto_req_done, &wait);
3552 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003553 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003554 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003555 alg, err);
3556 goto free_all;
3557 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003558
3559 if (vec->genkey) {
3560 /* Save the shared secret obtained by party A */
Christopher Diaz Riverose3d90e522019-01-28 19:01:18 -05003561 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003562 if (!a_ss) {
3563 err = -ENOMEM;
3564 goto free_all;
3565 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003566
3567 /*
3568 * Calculate party B's shared secret by using party A's
3569 * public key.
3570 */
3571 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3572 vec->b_secret_size);
3573 if (err < 0)
3574 goto free_all;
3575
3576 sg_init_one(&src, a_public, vec->expected_a_public_size);
3577 sg_init_one(&dst, output_buf, out_len_max);
3578 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3579 kpp_request_set_output(req, &dst, out_len_max);
3580 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003581 crypto_req_done, &wait);
3582 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3583 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003584 if (err) {
3585 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3586 alg, err);
3587 goto free_all;
3588 }
3589
3590 shared_secret = a_ss;
3591 } else {
3592 shared_secret = (void *)vec->expected_ss;
3593 }
3594
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003595 /*
3596 * verify shared secret from which the user will derive
3597 * secret key by executing whatever hash it has chosen
3598 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003599 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003600 vec->expected_ss_size)) {
3601 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
3602 alg);
3603 err = -EINVAL;
3604 }
3605
3606free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003607 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003608 kfree(input_buf);
3609free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03003610 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003611 kfree(output_buf);
3612free_req:
3613 kpp_request_free(req);
3614 return err;
3615}
3616
3617static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003618 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003619{
3620 int ret, i;
3621
3622 for (i = 0; i < tcount; i++) {
3623 ret = do_test_kpp(tfm, vecs++, alg);
3624 if (ret) {
3625 pr_err("alg: %s: test failed on vector %d, err=%d\n",
3626 alg, i + 1, ret);
3627 return ret;
3628 }
3629 }
3630 return 0;
3631}
3632
3633static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
3634 u32 type, u32 mask)
3635{
3636 struct crypto_kpp *tfm;
3637 int err = 0;
3638
Herbert Xueed93e02016-11-22 20:08:31 +08003639 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01003640 if (IS_ERR(tfm)) {
3641 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
3642 driver, PTR_ERR(tfm));
3643 return PTR_ERR(tfm);
3644 }
3645 if (desc->suite.kpp.vecs)
3646 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
3647 desc->suite.kpp.count);
3648
3649 crypto_free_kpp(tfm);
3650 return err;
3651}
3652
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003653static u8 *test_pack_u32(u8 *dst, u32 val)
3654{
3655 memcpy(dst, &val, sizeof(val));
3656 return dst + sizeof(val);
3657}
3658
Herbert Xu50d2b6432016-06-29 19:32:20 +08003659static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003660 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003661{
Herbert Xudf27b262016-05-05 16:42:49 +08003662 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07003663 struct akcipher_request *req;
3664 void *outbuf_enc = NULL;
3665 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003666 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003667 unsigned int out_len_max, out_len = 0;
3668 int err = -ENOMEM;
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003669 struct scatterlist src, dst, src_tab[3];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003670 const char *m, *c;
3671 unsigned int m_size, c_size;
3672 const char *op;
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003673 u8 *key, *ptr;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003674
Herbert Xudf27b262016-05-05 16:42:49 +08003675 if (testmgr_alloc_buf(xbuf))
3676 return err;
3677
Tadeusz Struk946cc462015-06-16 10:31:06 -07003678 req = akcipher_request_alloc(tfm, GFP_KERNEL);
3679 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08003680 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003681
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003682 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003683
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003684 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
3685 GFP_KERNEL);
3686 if (!key)
3687 goto free_xbuf;
3688 memcpy(key, vecs->key, vecs->key_len);
3689 ptr = key + vecs->key_len;
3690 ptr = test_pack_u32(ptr, vecs->algo);
3691 ptr = test_pack_u32(ptr, vecs->param_len);
3692 memcpy(ptr, vecs->params, vecs->param_len);
3693
Tadeusz Struk22287b02015-10-08 09:26:55 -07003694 if (vecs->public_key_vec)
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003695 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003696 else
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003697 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003698 if (err)
3699 goto free_req;
3700
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003701 /*
3702 * First run test which do not require a private key, such as
3703 * encrypt or verify.
3704 */
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003705 err = -ENOMEM;
3706 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003707 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3708 if (!outbuf_enc)
3709 goto free_req;
3710
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003711 if (!vecs->siggen_sigver_test) {
3712 m = vecs->m;
3713 m_size = vecs->m_size;
3714 c = vecs->c;
3715 c_size = vecs->c_size;
3716 op = "encrypt";
3717 } else {
3718 /* Swap args so we could keep plaintext (digest)
3719 * in vecs->m, and cooked signature in vecs->c.
3720 */
3721 m = vecs->c; /* signature */
3722 m_size = vecs->c_size;
3723 c = vecs->m; /* digest */
3724 c_size = vecs->m_size;
3725 op = "verify";
3726 }
Herbert Xudf27b262016-05-05 16:42:49 +08003727
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003728 if (WARN_ON(m_size > PAGE_SIZE))
3729 goto free_all;
3730 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003731
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003732 sg_init_table(src_tab, 3);
Herbert Xudf27b262016-05-05 16:42:49 +08003733 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003734 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003735 if (vecs->siggen_sigver_test) {
3736 if (WARN_ON(c_size > PAGE_SIZE))
3737 goto free_all;
3738 memcpy(xbuf[1], c, c_size);
3739 sg_set_buf(&src_tab[2], xbuf[1], c_size);
3740 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
3741 } else {
3742 sg_init_one(&dst, outbuf_enc, out_len_max);
3743 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
3744 out_len_max);
3745 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003746 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003747 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003748
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003749 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003750 /* Run asymmetric signature verification */
3751 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003752 /* Run asymmetric encrypt */
3753 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003754 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003755 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003756 goto free_all;
3757 }
Vitaly Chikunovc7381b02019-04-11 18:51:15 +03003758 if (!vecs->siggen_sigver_test) {
3759 if (req->dst_len != c_size) {
3760 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
3761 op);
3762 err = -EINVAL;
3763 goto free_all;
3764 }
3765 /* verify that encrypted message is equal to expected */
3766 if (memcmp(c, outbuf_enc, c_size) != 0) {
3767 pr_err("alg: akcipher: %s test failed. Invalid output\n",
3768 op);
3769 hexdump(outbuf_enc, c_size);
3770 err = -EINVAL;
3771 goto free_all;
3772 }
Tadeusz Struk946cc462015-06-16 10:31:06 -07003773 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003774
3775 /*
3776 * Don't invoke (decrypt or sign) test which require a private key
3777 * for vectors with only a public key.
3778 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07003779 if (vecs->public_key_vec) {
3780 err = 0;
3781 goto free_all;
3782 }
3783 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
3784 if (!outbuf_dec) {
3785 err = -ENOMEM;
3786 goto free_all;
3787 }
Herbert Xudf27b262016-05-05 16:42:49 +08003788
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003789 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
3790 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08003791 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003792 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08003793
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003794 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07003795 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003796 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003797 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003798
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003799 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003800 /* Run asymmetric signature generation */
3801 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01003802 /* Run asymmetric decrypt */
3803 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003804 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003805 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003806 goto free_all;
3807 }
3808 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003809 if (out_len < m_size) {
3810 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
3811 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003812 err = -EINVAL;
3813 goto free_all;
3814 }
3815 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03003816 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
3817 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
3818 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003819 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003820 err = -EINVAL;
3821 }
3822free_all:
3823 kfree(outbuf_dec);
3824 kfree(outbuf_enc);
3825free_req:
3826 akcipher_request_free(req);
Vitaly Chikunovf1774cb2019-04-11 18:51:17 +03003827 kfree(key);
Herbert Xudf27b262016-05-05 16:42:49 +08003828free_xbuf:
3829 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003830 return err;
3831}
3832
Herbert Xu50d2b6432016-06-29 19:32:20 +08003833static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08003834 const struct akcipher_testvec *vecs,
3835 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003836{
Herbert Xu15226e42016-07-18 18:20:10 +08003837 const char *algo =
3838 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07003839 int ret, i;
3840
3841 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08003842 ret = test_akcipher_one(tfm, vecs++);
3843 if (!ret)
3844 continue;
3845
Herbert Xu15226e42016-07-18 18:20:10 +08003846 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
3847 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08003848 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07003849 }
3850 return 0;
3851}
3852
Tadeusz Struk946cc462015-06-16 10:31:06 -07003853static int alg_test_akcipher(const struct alg_test_desc *desc,
3854 const char *driver, u32 type, u32 mask)
3855{
3856 struct crypto_akcipher *tfm;
3857 int err = 0;
3858
Herbert Xueed93e02016-11-22 20:08:31 +08003859 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07003860 if (IS_ERR(tfm)) {
3861 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
3862 driver, PTR_ERR(tfm));
3863 return PTR_ERR(tfm);
3864 }
3865 if (desc->suite.akcipher.vecs)
3866 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
3867 desc->suite.akcipher.count);
3868
3869 crypto_free_akcipher(tfm);
3870 return err;
3871}
3872
Youquan, Song863b5572009-12-23 19:45:20 +08003873static int alg_test_null(const struct alg_test_desc *desc,
3874 const char *driver, u32 type, u32 mask)
3875{
3876 return 0;
3877}
3878
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003879#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
3880
Herbert Xuda7f0332008-07-31 17:08:25 +08003881/* Please keep this list sorted by algorithm name. */
3882static const struct alg_test_desc alg_test_descs[] = {
3883 {
Eric Biggers059c2a42018-11-16 17:26:31 -08003884 .alg = "adiantum(xchacha12,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003885 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003886 .test = alg_test_skcipher,
3887 .suite = {
3888 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
3889 },
3890 }, {
3891 .alg = "adiantum(xchacha20,aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07003892 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
Eric Biggers059c2a42018-11-16 17:26:31 -08003893 .test = alg_test_skcipher,
3894 .suite = {
3895 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
3896 },
3897 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003898 .alg = "aegis128",
3899 .test = alg_test_aead,
3900 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003901 .aead = __VECS(aegis128_tv_template)
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02003902 }
3903 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003904 .alg = "ansi_cprng",
3905 .test = alg_test_cprng,
3906 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003907 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08003908 }
3909 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003910 .alg = "authenc(hmac(md5),ecb(cipher_null))",
3911 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003912 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003913 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02003914 }
3915 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003916 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003917 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08003918 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003919 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003920 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303921 }
3922 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003923 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303924 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303925 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003926 .aead = __VECS(hmac_sha1_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303927 }
3928 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003929 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303930 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003931 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303932 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003933 .aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03003934 }
3935 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003936 .alg = "authenc(hmac(sha1),ctr(aes))",
3937 .test = alg_test_null,
3938 .fips_allowed = 1,
3939 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02003940 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
3941 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02003942 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003943 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303944 }
3945 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003946 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
3947 .test = alg_test_null,
3948 .fips_allowed = 1,
3949 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003950 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303951 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303952 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003953 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303954 }
3955 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003956 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303957 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003958 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303959 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003960 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02003961 }
3962 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003963 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03003964 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003965 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03003966 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003967 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303968 }
3969 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003970 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303971 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303972 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003973 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303974 }
3975 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003976 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303977 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003978 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303979 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003980 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303981 }
3982 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01003983 .alg = "authenc(hmac(sha256),ctr(aes))",
3984 .test = alg_test_null,
3985 .fips_allowed = 1,
3986 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01003987 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
3988 .test = alg_test_null,
3989 .fips_allowed = 1,
3990 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003991 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303992 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05303993 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08003994 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05303995 }
3996 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08003997 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05303998 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01003999 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304000 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004001 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004002 }
4003 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004004 .alg = "authenc(hmac(sha384),ctr(aes))",
4005 .test = alg_test_null,
4006 .fips_allowed = 1,
4007 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004008 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
4009 .test = alg_test_null,
4010 .fips_allowed = 1,
4011 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004012 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01004013 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03004014 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03004015 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004016 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304017 }
4018 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004019 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304020 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304021 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004022 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05304023 }
4024 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08004025 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05304026 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01004027 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05304028 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004029 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03004030 }
4031 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01004032 .alg = "authenc(hmac(sha512),ctr(aes))",
4033 .test = alg_test_null,
4034 .fips_allowed = 1,
4035 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01004036 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4037 .test = alg_test_null,
4038 .fips_allowed = 1,
4039 }, {
David Sterbaa1afe272019-10-24 18:28:32 +02004040 .alg = "blake2b-160",
4041 .test = alg_test_hash,
4042 .fips_allowed = 0,
4043 .suite = {
4044 .hash = __VECS(blake2b_160_tv_template)
4045 }
4046 }, {
4047 .alg = "blake2b-256",
4048 .test = alg_test_hash,
4049 .fips_allowed = 0,
4050 .suite = {
4051 .hash = __VECS(blake2b_256_tv_template)
4052 }
4053 }, {
4054 .alg = "blake2b-384",
4055 .test = alg_test_hash,
4056 .fips_allowed = 0,
4057 .suite = {
4058 .hash = __VECS(blake2b_384_tv_template)
4059 }
4060 }, {
4061 .alg = "blake2b-512",
4062 .test = alg_test_hash,
4063 .fips_allowed = 0,
4064 .suite = {
4065 .hash = __VECS(blake2b_512_tv_template)
4066 }
4067 }, {
Ard Biesheuvel17e1df62019-11-08 13:22:29 +01004068 .alg = "blake2s-128",
4069 .test = alg_test_hash,
4070 .suite = {
4071 .hash = __VECS(blakes2s_128_tv_template)
4072 }
4073 }, {
4074 .alg = "blake2s-160",
4075 .test = alg_test_hash,
4076 .suite = {
4077 .hash = __VECS(blakes2s_160_tv_template)
4078 }
4079 }, {
4080 .alg = "blake2s-224",
4081 .test = alg_test_hash,
4082 .suite = {
4083 .hash = __VECS(blakes2s_224_tv_template)
4084 }
4085 }, {
4086 .alg = "blake2s-256",
4087 .test = alg_test_hash,
4088 .suite = {
4089 .hash = __VECS(blakes2s_256_tv_template)
4090 }
4091 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004092 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004093 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004094 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004095 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004096 .cipher = __VECS(aes_cbc_tv_template)
4097 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004098 }, {
4099 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004100 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004101 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004102 .cipher = __VECS(anubis_cbc_tv_template)
4103 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004104 }, {
4105 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004106 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004107 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004108 .cipher = __VECS(bf_cbc_tv_template)
4109 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004110 }, {
4111 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004112 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004113 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004114 .cipher = __VECS(camellia_cbc_tv_template)
4115 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004116 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004117 .alg = "cbc(cast5)",
4118 .test = alg_test_skcipher,
4119 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004120 .cipher = __VECS(cast5_cbc_tv_template)
4121 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004122 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004123 .alg = "cbc(cast6)",
4124 .test = alg_test_skcipher,
4125 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004126 .cipher = __VECS(cast6_cbc_tv_template)
4127 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004128 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004129 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004130 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004131 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004132 .cipher = __VECS(des_cbc_tv_template)
4133 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004134 }, {
4135 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004136 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004137 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004138 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004139 .cipher = __VECS(des3_ede_cbc_tv_template)
4140 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004141 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004142 /* Same as cbc(aes) except the key is stored in
4143 * hardware secure memory which we reference by index
4144 */
4145 .alg = "cbc(paes)",
4146 .test = alg_test_null,
4147 .fips_allowed = 1,
4148 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004149 /* Same as cbc(sm4) except the key is stored in
4150 * hardware secure memory which we reference by index
4151 */
4152 .alg = "cbc(psm4)",
4153 .test = alg_test_null,
4154 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004155 .alg = "cbc(serpent)",
4156 .test = alg_test_skcipher,
4157 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004158 .cipher = __VECS(serpent_cbc_tv_template)
4159 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004160 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004161 .alg = "cbc(sm4)",
4162 .test = alg_test_skcipher,
4163 .suite = {
4164 .cipher = __VECS(sm4_cbc_tv_template)
4165 }
4166 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004167 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004168 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004169 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004170 .cipher = __VECS(tf_cbc_tv_template)
4171 },
Herbert Xuda7f0332008-07-31 17:08:25 +08004172 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00004173 .alg = "cbcmac(aes)",
4174 .fips_allowed = 1,
4175 .test = alg_test_hash,
4176 .suite = {
4177 .hash = __VECS(aes_cbcmac_tv_template)
4178 }
4179 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004180 .alg = "ccm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004181 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
Herbert Xuda7f0332008-07-31 17:08:25 +08004182 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004183 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004184 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004185 .aead = __VECS(aes_ccm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004186 }
4187 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03004188 .alg = "cfb(aes)",
4189 .test = alg_test_skcipher,
4190 .fips_allowed = 1,
4191 .suite = {
4192 .cipher = __VECS(aes_cfb_tv_template)
4193 },
4194 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02004195 .alg = "cfb(sm4)",
4196 .test = alg_test_skcipher,
4197 .suite = {
4198 .cipher = __VECS(sm4_cfb_tv_template)
4199 }
4200 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02004201 .alg = "chacha20",
4202 .test = alg_test_skcipher,
4203 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004204 .cipher = __VECS(chacha20_tv_template)
4205 },
Martin Willi3590ebf2015-06-01 13:43:57 +02004206 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004207 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004208 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004209 .test = alg_test_hash,
4210 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004211 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004212 }
4213 }, {
4214 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02004215 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004216 .test = alg_test_hash,
4217 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004218 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03004219 }
4220 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004221 .alg = "compress_null",
4222 .test = alg_test_null,
4223 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004224 .alg = "crc32",
4225 .test = alg_test_hash,
Milan Broza8a34412019-01-25 10:31:47 +01004226 .fips_allowed = 1,
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004227 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004228 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02004229 }
4230 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004231 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08004232 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004233 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004234 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004235 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004236 }
4237 }, {
Herbert Xu684115212013-09-07 12:56:26 +10004238 .alg = "crct10dif",
4239 .test = alg_test_hash,
4240 .fips_allowed = 1,
4241 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004242 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10004243 }
4244 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004245 .alg = "ctr(aes)",
4246 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004247 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004248 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004249 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08004250 }
4251 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004252 .alg = "ctr(blowfish)",
4253 .test = alg_test_skcipher,
4254 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004255 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03004256 }
4257 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004258 .alg = "ctr(camellia)",
4259 .test = alg_test_skcipher,
4260 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004261 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004262 }
4263 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004264 .alg = "ctr(cast5)",
4265 .test = alg_test_skcipher,
4266 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004267 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02004268 }
4269 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004270 .alg = "ctr(cast6)",
4271 .test = alg_test_skcipher,
4272 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004273 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004274 }
4275 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004276 .alg = "ctr(des)",
4277 .test = alg_test_skcipher,
4278 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004279 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03004280 }
4281 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004282 .alg = "ctr(des3_ede)",
4283 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03004284 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004285 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004286 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03004287 }
4288 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004289 /* Same as ctr(aes) except the key is stored in
4290 * hardware secure memory which we reference by index
4291 */
4292 .alg = "ctr(paes)",
4293 .test = alg_test_null,
4294 .fips_allowed = 1,
4295 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004296
4297 /* Same as ctr(sm4) except the key is stored in
4298 * hardware secure memory which we reference by index
4299 */
4300 .alg = "ctr(psm4)",
4301 .test = alg_test_null,
4302 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004303 .alg = "ctr(serpent)",
4304 .test = alg_test_skcipher,
4305 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004306 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03004307 }
4308 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01004309 .alg = "ctr(sm4)",
4310 .test = alg_test_skcipher,
4311 .suite = {
4312 .cipher = __VECS(sm4_ctr_tv_template)
4313 }
4314 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03004315 .alg = "ctr(twofish)",
4316 .test = alg_test_skcipher,
4317 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004318 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03004319 }
4320 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004321 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004322 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00004323 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004324 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004325 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004326 }
4327 }, {
Gilad Ben-Yosseff0372c02019-04-18 16:38:36 +03004328 /* Same as cts(cbc((aes)) except the key is stored in
4329 * hardware secure memory which we reference by index
4330 */
4331 .alg = "cts(cbc(paes))",
4332 .test = alg_test_null,
4333 .fips_allowed = 1,
4334 }, {
Ard Biesheuvelf6134572019-11-08 13:22:33 +01004335 .alg = "curve25519",
4336 .test = alg_test_kpp,
4337 .suite = {
4338 .kpp = __VECS(curve25519_tv_template)
4339 }
4340 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004341 .alg = "deflate",
4342 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004343 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004344 .suite = {
4345 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004346 .comp = __VECS(deflate_comp_tv_template),
4347 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004348 }
4349 }
4350 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004351 .alg = "dh",
4352 .test = alg_test_kpp,
4353 .fips_allowed = 1,
4354 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004355 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01004356 }
4357 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004358 .alg = "digest_null",
4359 .test = alg_test_null,
4360 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004361 .alg = "drbg_nopr_ctr_aes128",
4362 .test = alg_test_drbg,
4363 .fips_allowed = 1,
4364 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004365 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004366 }
4367 }, {
4368 .alg = "drbg_nopr_ctr_aes192",
4369 .test = alg_test_drbg,
4370 .fips_allowed = 1,
4371 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004372 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004373 }
4374 }, {
4375 .alg = "drbg_nopr_ctr_aes256",
4376 .test = alg_test_drbg,
4377 .fips_allowed = 1,
4378 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004379 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004380 }
4381 }, {
4382 /*
4383 * There is no need to specifically test the DRBG with every
4384 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4385 */
4386 .alg = "drbg_nopr_hmac_sha1",
4387 .fips_allowed = 1,
4388 .test = alg_test_null,
4389 }, {
4390 .alg = "drbg_nopr_hmac_sha256",
4391 .test = alg_test_drbg,
4392 .fips_allowed = 1,
4393 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004394 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004395 }
4396 }, {
4397 /* covered by drbg_nopr_hmac_sha256 test */
4398 .alg = "drbg_nopr_hmac_sha384",
4399 .fips_allowed = 1,
4400 .test = alg_test_null,
4401 }, {
4402 .alg = "drbg_nopr_hmac_sha512",
4403 .test = alg_test_null,
4404 .fips_allowed = 1,
4405 }, {
4406 .alg = "drbg_nopr_sha1",
4407 .fips_allowed = 1,
4408 .test = alg_test_null,
4409 }, {
4410 .alg = "drbg_nopr_sha256",
4411 .test = alg_test_drbg,
4412 .fips_allowed = 1,
4413 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004414 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004415 }
4416 }, {
4417 /* covered by drbg_nopr_sha256 test */
4418 .alg = "drbg_nopr_sha384",
4419 .fips_allowed = 1,
4420 .test = alg_test_null,
4421 }, {
4422 .alg = "drbg_nopr_sha512",
4423 .fips_allowed = 1,
4424 .test = alg_test_null,
4425 }, {
4426 .alg = "drbg_pr_ctr_aes128",
4427 .test = alg_test_drbg,
4428 .fips_allowed = 1,
4429 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004430 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004431 }
4432 }, {
4433 /* covered by drbg_pr_ctr_aes128 test */
4434 .alg = "drbg_pr_ctr_aes192",
4435 .fips_allowed = 1,
4436 .test = alg_test_null,
4437 }, {
4438 .alg = "drbg_pr_ctr_aes256",
4439 .fips_allowed = 1,
4440 .test = alg_test_null,
4441 }, {
4442 .alg = "drbg_pr_hmac_sha1",
4443 .fips_allowed = 1,
4444 .test = alg_test_null,
4445 }, {
4446 .alg = "drbg_pr_hmac_sha256",
4447 .test = alg_test_drbg,
4448 .fips_allowed = 1,
4449 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004450 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004451 }
4452 }, {
4453 /* covered by drbg_pr_hmac_sha256 test */
4454 .alg = "drbg_pr_hmac_sha384",
4455 .fips_allowed = 1,
4456 .test = alg_test_null,
4457 }, {
4458 .alg = "drbg_pr_hmac_sha512",
4459 .test = alg_test_null,
4460 .fips_allowed = 1,
4461 }, {
4462 .alg = "drbg_pr_sha1",
4463 .fips_allowed = 1,
4464 .test = alg_test_null,
4465 }, {
4466 .alg = "drbg_pr_sha256",
4467 .test = alg_test_drbg,
4468 .fips_allowed = 1,
4469 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004470 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02004471 }
4472 }, {
4473 /* covered by drbg_pr_sha256 test */
4474 .alg = "drbg_pr_sha384",
4475 .fips_allowed = 1,
4476 .test = alg_test_null,
4477 }, {
4478 .alg = "drbg_pr_sha512",
4479 .fips_allowed = 1,
4480 .test = alg_test_null,
4481 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004482 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004483 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004484 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004485 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004486 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004487 }
4488 }, {
4489 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004490 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004491 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004492 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004493 }
4494 }, {
4495 .alg = "ecb(arc4)",
Ard Biesheuvel611a23c2019-06-12 18:19:57 +02004496 .generic_driver = "ecb(arc4)-generic",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004497 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004498 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004499 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004500 }
4501 }, {
4502 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004503 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004504 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004505 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004506 }
4507 }, {
4508 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004509 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004510 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004511 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004512 }
4513 }, {
4514 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004515 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004516 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004517 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004518 }
4519 }, {
4520 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004521 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004522 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004523 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004524 }
4525 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004526 .alg = "ecb(cipher_null)",
4527 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02004528 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03004529 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004530 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004531 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004532 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004533 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004534 }
4535 }, {
4536 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004537 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004538 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004539 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004540 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004541 }
4542 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004543 .alg = "ecb(fcrypt)",
4544 .test = alg_test_skcipher,
4545 .suite = {
4546 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004547 .vecs = fcrypt_pcbc_tv_template,
4548 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02004549 }
4550 }
4551 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004552 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004553 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004554 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004555 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004556 }
4557 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01004558 /* Same as ecb(aes) except the key is stored in
4559 * hardware secure memory which we reference by index
4560 */
4561 .alg = "ecb(paes)",
4562 .test = alg_test_null,
4563 .fips_allowed = 1,
4564 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004565 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004566 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004567 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004568 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004569 }
4570 }, {
4571 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004572 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004573 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004574 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004575 }
4576 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004577 .alg = "ecb(sm4)",
4578 .test = alg_test_skcipher,
4579 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004580 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00004581 }
4582 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004583 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004584 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004585 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004586 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004587 }
4588 }, {
4589 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004590 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004591 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004592 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004593 }
4594 }, {
4595 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004596 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004597 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004598 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004599 }
4600 }, {
4601 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004602 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004603 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004604 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004605 }
4606 }, {
4607 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004608 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004609 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004610 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004611 }
4612 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004613 .alg = "ecdh",
4614 .test = alg_test_kpp,
4615 .fips_allowed = 1,
4616 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004617 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01004618 }
4619 }, {
Vitaly Chikunov32fbdbd2019-04-11 18:51:21 +03004620 .alg = "ecrdsa",
4621 .test = alg_test_akcipher,
4622 .suite = {
4623 .akcipher = __VECS(ecrdsa_tv_template)
4624 }
4625 }, {
Ard Biesheuvelf975abb2019-08-19 17:17:34 +03004626 .alg = "essiv(authenc(hmac(sha256),cbc(aes)),sha256)",
4627 .test = alg_test_aead,
4628 .fips_allowed = 1,
4629 .suite = {
4630 .aead = __VECS(essiv_hmac_sha256_aes_cbc_tv_temp)
4631 }
4632 }, {
4633 .alg = "essiv(cbc(aes),sha256)",
4634 .test = alg_test_skcipher,
4635 .fips_allowed = 1,
4636 .suite = {
4637 .cipher = __VECS(essiv_aes_cbc_tv_template)
4638 }
4639 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004640 .alg = "gcm(aes)",
Eric Biggers40153b12019-04-11 21:57:41 -07004641 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
Herbert Xuda7f0332008-07-31 17:08:25 +08004642 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004643 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004644 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004645 .aead = __VECS(aes_gcm_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004646 }
4647 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08004648 .alg = "ghash",
4649 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11004650 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08004651 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004652 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08004653 }
4654 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004655 .alg = "hmac(md5)",
4656 .test = alg_test_hash,
4657 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004658 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004659 }
4660 }, {
4661 .alg = "hmac(rmd128)",
4662 .test = alg_test_hash,
4663 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004664 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004665 }
4666 }, {
4667 .alg = "hmac(rmd160)",
4668 .test = alg_test_hash,
4669 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004670 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004671 }
4672 }, {
4673 .alg = "hmac(sha1)",
4674 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004675 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004676 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004677 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004678 }
4679 }, {
4680 .alg = "hmac(sha224)",
4681 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004682 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004683 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004684 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004685 }
4686 }, {
4687 .alg = "hmac(sha256)",
4688 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004689 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004690 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004691 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004692 }
4693 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05304694 .alg = "hmac(sha3-224)",
4695 .test = alg_test_hash,
4696 .fips_allowed = 1,
4697 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004698 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304699 }
4700 }, {
4701 .alg = "hmac(sha3-256)",
4702 .test = alg_test_hash,
4703 .fips_allowed = 1,
4704 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004705 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304706 }
4707 }, {
4708 .alg = "hmac(sha3-384)",
4709 .test = alg_test_hash,
4710 .fips_allowed = 1,
4711 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004712 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304713 }
4714 }, {
4715 .alg = "hmac(sha3-512)",
4716 .test = alg_test_hash,
4717 .fips_allowed = 1,
4718 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004719 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05304720 }
4721 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004722 .alg = "hmac(sha384)",
4723 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004724 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004725 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004726 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004727 }
4728 }, {
4729 .alg = "hmac(sha512)",
4730 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004731 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004732 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004733 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004734 }
4735 }, {
Pascal van Leeuwen8194fd12019-09-13 17:20:38 +02004736 .alg = "hmac(sm3)",
4737 .test = alg_test_hash,
4738 .suite = {
4739 .hash = __VECS(hmac_sm3_tv_template)
4740 }
4741 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03004742 .alg = "hmac(streebog256)",
4743 .test = alg_test_hash,
4744 .suite = {
4745 .hash = __VECS(hmac_streebog256_tv_template)
4746 }
4747 }, {
4748 .alg = "hmac(streebog512)",
4749 .test = alg_test_hash,
4750 .suite = {
4751 .hash = __VECS(hmac_streebog512_tv_template)
4752 }
4753 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02004754 .alg = "jitterentropy_rng",
4755 .fips_allowed = 1,
4756 .test = alg_test_null,
4757 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02004758 .alg = "kw(aes)",
4759 .test = alg_test_skcipher,
4760 .fips_allowed = 1,
4761 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004762 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02004763 }
4764 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004765 .alg = "lrw(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07004766 .generic_driver = "lrw(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004767 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004768 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004769 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004770 }
4771 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02004772 .alg = "lrw(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07004773 .generic_driver = "lrw(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02004774 .test = alg_test_skcipher,
4775 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004776 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02004777 }
4778 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004779 .alg = "lrw(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07004780 .generic_driver = "lrw(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004781 .test = alg_test_skcipher,
4782 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004783 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02004784 }
4785 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004786 .alg = "lrw(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07004787 .generic_driver = "lrw(ecb(serpent-generic))",
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004788 .test = alg_test_skcipher,
4789 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004790 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03004791 }
4792 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004793 .alg = "lrw(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07004794 .generic_driver = "lrw(ecb(twofish-generic))",
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004795 .test = alg_test_skcipher,
4796 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004797 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03004798 }
4799 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004800 .alg = "lz4",
4801 .test = alg_test_comp,
4802 .fips_allowed = 1,
4803 .suite = {
4804 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004805 .comp = __VECS(lz4_comp_tv_template),
4806 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004807 }
4808 }
4809 }, {
4810 .alg = "lz4hc",
4811 .test = alg_test_comp,
4812 .fips_allowed = 1,
4813 .suite = {
4814 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004815 .comp = __VECS(lz4hc_comp_tv_template),
4816 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02004817 }
4818 }
4819 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004820 .alg = "lzo",
4821 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08004822 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004823 .suite = {
4824 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004825 .comp = __VECS(lzo_comp_tv_template),
4826 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004827 }
4828 }
4829 }, {
Hannah Panf248caf2019-07-02 15:16:02 -07004830 .alg = "lzo-rle",
4831 .test = alg_test_comp,
4832 .fips_allowed = 1,
4833 .suite = {
4834 .comp = {
4835 .comp = __VECS(lzorle_comp_tv_template),
4836 .decomp = __VECS(lzorle_decomp_tv_template)
4837 }
4838 }
4839 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004840 .alg = "md4",
4841 .test = alg_test_hash,
4842 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004843 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004844 }
4845 }, {
4846 .alg = "md5",
4847 .test = alg_test_hash,
4848 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004849 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004850 }
4851 }, {
4852 .alg = "michael_mic",
4853 .test = alg_test_hash,
4854 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004855 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004856 }
4857 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08004858 .alg = "nhpoly1305",
4859 .test = alg_test_hash,
4860 .suite = {
4861 .hash = __VECS(nhpoly1305_tv_template)
4862 }
4863 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004864 .alg = "ofb(aes)",
4865 .test = alg_test_skcipher,
4866 .fips_allowed = 1,
4867 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004868 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10004869 }
4870 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01004871 /* Same as ofb(aes) except the key is stored in
4872 * hardware secure memory which we reference by index
4873 */
4874 .alg = "ofb(paes)",
4875 .test = alg_test_null,
4876 .fips_allowed = 1,
4877 }, {
Pascal van Leeuwena06b15b2019-09-13 11:10:39 +02004878 .alg = "ofb(sm4)",
4879 .test = alg_test_skcipher,
4880 .suite = {
4881 .cipher = __VECS(sm4_ofb_tv_template)
4882 }
4883 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004884 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004885 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004886 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004887 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004888 }
4889 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02004890 .alg = "pkcs1pad(rsa,sha224)",
4891 .test = alg_test_null,
4892 .fips_allowed = 1,
4893 }, {
4894 .alg = "pkcs1pad(rsa,sha256)",
4895 .test = alg_test_akcipher,
4896 .fips_allowed = 1,
4897 .suite = {
4898 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
4899 }
4900 }, {
4901 .alg = "pkcs1pad(rsa,sha384)",
4902 .test = alg_test_null,
4903 .fips_allowed = 1,
4904 }, {
4905 .alg = "pkcs1pad(rsa,sha512)",
4906 .test = alg_test_null,
4907 .fips_allowed = 1,
4908 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02004909 .alg = "poly1305",
4910 .test = alg_test_hash,
4911 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004912 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02004913 }
4914 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004915 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004916 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004917 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08004918 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004919 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004920 }
4921 }, {
Pascal van Leeuwene4886212019-09-13 11:10:42 +02004922 .alg = "rfc3686(ctr(sm4))",
4923 .test = alg_test_skcipher,
4924 .suite = {
4925 .cipher = __VECS(sm4_ctr_rfc3686_tv_template)
4926 }
4927 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08004928 .alg = "rfc4106(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004929 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
Adrian Hoban69435b92010-11-04 15:02:04 -04004930 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05004931 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04004932 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004933 .aead = __VECS(aes_gcm_rfc4106_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04004934 }
4935 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08004936 .alg = "rfc4309(ccm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004937 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
Jarod Wilson5d667322009-05-04 19:23:40 +08004938 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10004939 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08004940 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004941 .aead = __VECS(aes_ccm_rfc4309_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08004942 }
4943 }, {
Herbert Xubb687452015-06-16 13:54:24 +08004944 .alg = "rfc4543(gcm(aes))",
Eric Biggers40153b12019-04-11 21:57:41 -07004945 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004946 .test = alg_test_aead,
4947 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004948 .aead = __VECS(aes_gcm_rfc4543_tv_template)
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03004949 }
4950 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02004951 .alg = "rfc7539(chacha20,poly1305)",
4952 .test = alg_test_aead,
4953 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004954 .aead = __VECS(rfc7539_tv_template)
Martin Williaf2b76b2015-06-01 13:44:01 +02004955 }
4956 }, {
Martin Willi59007582015-06-01 13:44:03 +02004957 .alg = "rfc7539esp(chacha20,poly1305)",
4958 .test = alg_test_aead,
4959 .suite = {
Eric Biggersa0d608ee2019-01-13 15:32:28 -08004960 .aead = __VECS(rfc7539esp_tv_template)
Martin Willi59007582015-06-01 13:44:03 +02004961 }
4962 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004963 .alg = "rmd128",
4964 .test = alg_test_hash,
4965 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004966 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004967 }
4968 }, {
4969 .alg = "rmd160",
4970 .test = alg_test_hash,
4971 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004972 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004973 }
4974 }, {
4975 .alg = "rmd256",
4976 .test = alg_test_hash,
4977 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004978 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004979 }
4980 }, {
4981 .alg = "rmd320",
4982 .test = alg_test_hash,
4983 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004984 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004985 }
4986 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07004987 .alg = "rsa",
4988 .test = alg_test_akcipher,
4989 .fips_allowed = 1,
4990 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00004991 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07004992 }
4993 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08004994 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10004995 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08004996 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07004997 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08004998 }
4999 }, {
5000 .alg = "sha1",
5001 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005002 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005003 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005004 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005005 }
5006 }, {
5007 .alg = "sha224",
5008 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005009 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005010 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005011 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005012 }
5013 }, {
5014 .alg = "sha256",
5015 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005016 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005017 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005018 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005019 }
5020 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305021 .alg = "sha3-224",
5022 .test = alg_test_hash,
5023 .fips_allowed = 1,
5024 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005025 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305026 }
5027 }, {
5028 .alg = "sha3-256",
5029 .test = alg_test_hash,
5030 .fips_allowed = 1,
5031 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005032 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305033 }
5034 }, {
5035 .alg = "sha3-384",
5036 .test = alg_test_hash,
5037 .fips_allowed = 1,
5038 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005039 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305040 }
5041 }, {
5042 .alg = "sha3-512",
5043 .test = alg_test_hash,
5044 .fips_allowed = 1,
5045 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005046 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05305047 }
5048 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005049 .alg = "sha384",
5050 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005051 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005052 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005053 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005054 }
5055 }, {
5056 .alg = "sha512",
5057 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10005058 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005059 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005060 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005061 }
5062 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03005063 .alg = "sm3",
5064 .test = alg_test_hash,
5065 .suite = {
5066 .hash = __VECS(sm3_tv_template)
5067 }
5068 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03005069 .alg = "streebog256",
5070 .test = alg_test_hash,
5071 .suite = {
5072 .hash = __VECS(streebog256_tv_template)
5073 }
5074 }, {
5075 .alg = "streebog512",
5076 .test = alg_test_hash,
5077 .suite = {
5078 .hash = __VECS(streebog512_tv_template)
5079 }
5080 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005081 .alg = "tgr128",
5082 .test = alg_test_hash,
5083 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005084 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005085 }
5086 }, {
5087 .alg = "tgr160",
5088 .test = alg_test_hash,
5089 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005090 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005091 }
5092 }, {
5093 .alg = "tgr192",
5094 .test = alg_test_hash,
5095 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005096 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005097 }
5098 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07005099 .alg = "vmac64(aes)",
5100 .test = alg_test_hash,
5101 .suite = {
5102 .hash = __VECS(vmac64_aes_tv_template)
5103 }
5104 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005105 .alg = "wp256",
5106 .test = alg_test_hash,
5107 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005108 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005109 }
5110 }, {
5111 .alg = "wp384",
5112 .test = alg_test_hash,
5113 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005114 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005115 }
5116 }, {
5117 .alg = "wp512",
5118 .test = alg_test_hash,
5119 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005120 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005121 }
5122 }, {
5123 .alg = "xcbc(aes)",
5124 .test = alg_test_hash,
5125 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00005126 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005127 }
5128 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08005129 .alg = "xchacha12",
5130 .test = alg_test_skcipher,
5131 .suite = {
5132 .cipher = __VECS(xchacha12_tv_template)
5133 },
5134 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08005135 .alg = "xchacha20",
5136 .test = alg_test_skcipher,
5137 .suite = {
5138 .cipher = __VECS(xchacha20_tv_template)
5139 },
5140 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08005141 .alg = "xts(aes)",
Eric Biggersd435e102019-04-11 21:57:40 -07005142 .generic_driver = "xts(ecb(aes-generic))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005143 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11005144 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08005145 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005146 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08005147 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08005148 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02005149 .alg = "xts(camellia)",
Eric Biggersd435e102019-04-11 21:57:40 -07005150 .generic_driver = "xts(ecb(camellia-generic))",
Jussi Kivilinna08406052012-03-05 20:26:21 +02005151 .test = alg_test_skcipher,
5152 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005153 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02005154 }
5155 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005156 .alg = "xts(cast6)",
Eric Biggersd435e102019-04-11 21:57:40 -07005157 .generic_driver = "xts(ecb(cast6-generic))",
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005158 .test = alg_test_skcipher,
5159 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005160 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02005161 }
5162 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005163 /* Same as xts(aes) except the key is stored in
5164 * hardware secure memory which we reference by index
5165 */
5166 .alg = "xts(paes)",
5167 .test = alg_test_null,
5168 .fips_allowed = 1,
5169 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005170 .alg = "xts(serpent)",
Eric Biggersd435e102019-04-11 21:57:40 -07005171 .generic_driver = "xts(ecb(serpent-generic))",
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005172 .test = alg_test_skcipher,
5173 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005174 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03005175 }
5176 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005177 .alg = "xts(twofish)",
Eric Biggersd435e102019-04-11 21:57:40 -07005178 .generic_driver = "xts(ecb(twofish-generic))",
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005179 .test = alg_test_skcipher,
5180 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07005181 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03005182 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005183 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01005184 .alg = "xts4096(paes)",
5185 .test = alg_test_null,
5186 .fips_allowed = 1,
5187 }, {
5188 .alg = "xts512(paes)",
5189 .test = alg_test_null,
5190 .fips_allowed = 1,
5191 }, {
Nikolay Borisov67882e72019-05-30 09:52:57 +03005192 .alg = "xxhash64",
5193 .test = alg_test_hash,
5194 .fips_allowed = 1,
5195 .suite = {
5196 .hash = __VECS(xxhash64_tv_template)
5197 }
5198 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01005199 .alg = "zlib-deflate",
5200 .test = alg_test_comp,
5201 .fips_allowed = 1,
5202 .suite = {
5203 .comp = {
5204 .comp = __VECS(zlib_deflate_comp_tv_template),
5205 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5206 }
5207 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07005208 }, {
5209 .alg = "zstd",
5210 .test = alg_test_comp,
5211 .fips_allowed = 1,
5212 .suite = {
5213 .comp = {
5214 .comp = __VECS(zstd_comp_tv_template),
5215 .decomp = __VECS(zstd_decomp_tv_template)
5216 }
5217 }
Herbert Xuda7f0332008-07-31 17:08:25 +08005218 }
5219};
5220
Eric Biggers3f47a032019-01-31 23:51:43 -08005221static void alg_check_test_descs_order(void)
Jussi Kivilinna57147582013-06-13 17:37:40 +03005222{
5223 int i;
5224
Jussi Kivilinna57147582013-06-13 17:37:40 +03005225 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5226 int diff = strcmp(alg_test_descs[i - 1].alg,
5227 alg_test_descs[i].alg);
5228
5229 if (WARN_ON(diff > 0)) {
5230 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5231 alg_test_descs[i - 1].alg,
5232 alg_test_descs[i].alg);
5233 }
5234
5235 if (WARN_ON(diff == 0)) {
5236 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5237 alg_test_descs[i].alg);
5238 }
5239 }
5240}
5241
Eric Biggers3f47a032019-01-31 23:51:43 -08005242static void alg_check_testvec_configs(void)
5243{
Eric Biggers4e7babba2019-01-31 23:51:46 -08005244 int i;
5245
5246 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5247 WARN_ON(!valid_testvec_config(
5248 &default_cipher_testvec_configs[i]));
Eric Biggers4cc2dcf2019-01-31 23:51:48 -08005249
5250 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5251 WARN_ON(!valid_testvec_config(
5252 &default_hash_testvec_configs[i]));
Eric Biggers3f47a032019-01-31 23:51:43 -08005253}
5254
5255static void testmgr_onetime_init(void)
5256{
5257 alg_check_test_descs_order();
5258 alg_check_testvec_configs();
Eric Biggers5b2706a2019-01-31 23:51:44 -08005259
5260#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5261 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5262#endif
Eric Biggers3f47a032019-01-31 23:51:43 -08005263}
5264
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005265static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08005266{
5267 int start = 0;
5268 int end = ARRAY_SIZE(alg_test_descs);
5269
5270 while (start < end) {
5271 int i = (start + end) / 2;
5272 int diff = strcmp(alg_test_descs[i].alg, alg);
5273
5274 if (diff > 0) {
5275 end = i;
5276 continue;
5277 }
5278
5279 if (diff < 0) {
5280 start = i + 1;
5281 continue;
5282 }
5283
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005284 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08005285 }
5286
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005287 return -1;
5288}
5289
5290int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5291{
5292 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08005293 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08005294 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005295
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01005296 if (!fips_enabled && notests) {
5297 printk_once(KERN_INFO "alg: self-tests disabled\n");
5298 return 0;
5299 }
5300
Eric Biggers3f47a032019-01-31 23:51:43 -08005301 DO_ONCE(testmgr_onetime_init);
Jussi Kivilinna57147582013-06-13 17:37:40 +03005302
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005303 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5304 char nalg[CRYPTO_MAX_ALG_NAME];
5305
5306 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5307 sizeof(nalg))
5308 return -ENAMETOOLONG;
5309
5310 i = alg_find_test(nalg);
5311 if (i < 0)
5312 goto notest;
5313
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005314 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5315 goto non_fips_alg;
5316
Jarod Wilson941fb322009-05-04 19:49:23 +08005317 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5318 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005319 }
5320
5321 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08005322 j = alg_find_test(driver);
5323 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005324 goto notest;
5325
Herbert Xua68f6612009-07-02 16:32:12 +08005326 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
5327 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005328 goto non_fips_alg;
5329
Herbert Xua68f6612009-07-02 16:32:12 +08005330 rc = 0;
5331 if (i >= 0)
5332 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5333 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03005334 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08005335 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5336 type, mask);
5337
Jarod Wilson941fb322009-05-04 19:49:23 +08005338test_done:
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005339 if (rc && (fips_enabled || panic_on_fail)) {
5340 fips_fail_notify();
Eric Biggerseda69b02019-03-31 13:09:14 -07005341 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5342 driver, alg, fips_enabled ? "fips" : "panic_on_fail");
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03005343 }
Neil Hormand12d6b62008-10-12 20:36:51 +08005344
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005345 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09005346 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08005347
Neil Hormand12d6b62008-10-12 20:36:51 +08005348 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10005349
5350notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08005351 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5352 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10005353non_fips_alg:
5354 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08005355}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005356
Herbert Xu326a6342010-08-06 09:40:28 +08005357#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10005358
Herbert Xuda7f0332008-07-31 17:08:25 +08005359EXPORT_SYMBOL_GPL(alg_test);