testmgr.c 101.4 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Algorithm testing framework and tests.
 *
 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
 * Copyright (c) 2007 Nokia Siemens Networks
 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
8
 * Copyright (c) 2019 Google LLC
9
 *
10 11 12 13 14 15 16
 * Updated RFC4106 AES-GCM testing.
 *    Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
 *             Adrian Hoban <adrian.hoban@intel.com>
 *             Gabriele Paoloni <gabriele.paoloni@intel.com>
 *             Tadeusz Struk (tadeusz.struk@intel.com)
 *    Copyright (c) 2010, Intel Corporation.
 *
17 18 19 20 21 22 23
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */

24
#include <crypto/aead.h>
25
#include <crypto/hash.h>
26
#include <crypto/skcipher.h>
27
#include <linux/err.h>
28
#include <linux/fips.h>
29
#include <linux/module.h>
30
#include <linux/once.h>
31
#include <linux/random.h>
32 33 34
#include <linux/scatterlist.h>
#include <linux/slab.h>
#include <linux/string.h>
35
#include <crypto/rng.h>
36
#include <crypto/drbg.h>
37
#include <crypto/akcipher.h>
38
#include <crypto/kpp.h>
39
#include <crypto/acompress.h>
40
#include <crypto/internal/simd.h>
41 42

#include "internal.h"
43

44 45 46 47
static bool notests;
module_param(notests, bool, 0644);
MODULE_PARM_DESC(notests, "disable crypto self-tests");

48 49 50
static bool panic_on_fail;
module_param(panic_on_fail, bool, 0444);

51 52 53 54 55 56 57 58
#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
static bool noextratests;
module_param(noextratests, bool, 0644);
MODULE_PARM_DESC(noextratests, "disable expensive crypto self-tests");

static unsigned int fuzz_iterations = 100;
module_param(fuzz_iterations, uint, 0644);
MODULE_PARM_DESC(fuzz_iterations, "number of fuzz test iterations");
59 60 61

DEFINE_PER_CPU(bool, crypto_simd_disabled_for_test);
EXPORT_PER_CPU_SYMBOL_GPL(crypto_simd_disabled_for_test);
62 63
#endif

64
#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
65 66 67 68 69 70 71 72 73

/* a perfect nop */
int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
{
	return 0;
}

#else

74 75 76 77 78 79 80 81 82 83 84 85 86 87
#include "testmgr.h"

/*
 * Need slab memory for testing (size in number of pages).
 */
#define XBUFSIZE	8

/*
* Used by test_cipher()
*/
#define ENCRYPT 1
#define DECRYPT 0

struct aead_test_suite {
88 89
	const struct aead_testvec *vecs;
	unsigned int count;
90 91 92
};

struct cipher_test_suite {
93 94
	const struct cipher_testvec *vecs;
	unsigned int count;
95 96 97 98
};

struct comp_test_suite {
	struct {
99
		const struct comp_testvec *vecs;
100 101 102 103 104
		unsigned int count;
	} comp, decomp;
};

struct hash_test_suite {
105
	const struct hash_testvec *vecs;
106 107 108
	unsigned int count;
};

109
struct cprng_test_suite {
110
	const struct cprng_testvec *vecs;
111 112 113
	unsigned int count;
};

114
struct drbg_test_suite {
115
	const struct drbg_testvec *vecs;
116 117 118
	unsigned int count;
};

119
struct akcipher_test_suite {
120
	const struct akcipher_testvec *vecs;
121 122 123
	unsigned int count;
};

124
struct kpp_test_suite {
125
	const struct kpp_testvec *vecs;
126 127 128
	unsigned int count;
};

129 130 131 132
struct alg_test_desc {
	const char *alg;
	int (*test)(const struct alg_test_desc *desc, const char *driver,
		    u32 type, u32 mask);
133
	int fips_allowed;	/* set if alg is allowed in fips mode */
134 135 136 137 138 139

	union {
		struct aead_test_suite aead;
		struct cipher_test_suite cipher;
		struct comp_test_suite comp;
		struct hash_test_suite hash;
140
		struct cprng_test_suite cprng;
141
		struct drbg_test_suite drbg;
142
		struct akcipher_test_suite akcipher;
143
		struct kpp_test_suite kpp;
144 145 146 147 148 149 150 151 152 153
	} suite;
};

static void hexdump(unsigned char *buf, unsigned int len)
{
	print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
			16, 1,
			buf, len, false);
}

154
static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
155 156 157 158
{
	int i;

	for (i = 0; i < XBUFSIZE; i++) {
159
		buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
160 161 162 163 164 165 166 167
		if (!buf[i])
			goto err_free_buf;
	}

	return 0;

err_free_buf:
	while (i-- > 0)
168
		free_pages((unsigned long)buf[i], order);
169 170 171 172

	return -ENOMEM;
}

173 174 175 176 177 178
static int testmgr_alloc_buf(char *buf[XBUFSIZE])
{
	return __testmgr_alloc_buf(buf, 0);
}

static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
179 180 181 182
{
	int i;

	for (i = 0; i < XBUFSIZE; i++)
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
		free_pages((unsigned long)buf[i], order);
}

static void testmgr_free_buf(char *buf[XBUFSIZE])
{
	__testmgr_free_buf(buf, 0);
}

#define TESTMGR_POISON_BYTE	0xfe
#define TESTMGR_POISON_LEN	16

static inline void testmgr_poison(void *addr, size_t len)
{
	memset(addr, TESTMGR_POISON_BYTE, len);
}

/* Is the memory region still fully poisoned? */
static inline bool testmgr_is_poison(const void *addr, size_t len)
{
	return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
}

/* flush type for hash algorithms */
enum flush_type {
	/* merge with update of previous buffer(s) */
	FLUSH_TYPE_NONE = 0,

	/* update with previous buffer(s) before doing this one */
	FLUSH_TYPE_FLUSH,

	/* likewise, but also export and re-import the intermediate state */
	FLUSH_TYPE_REIMPORT,
};

/* finalization function for hash algorithms */
enum finalization_type {
	FINALIZATION_TYPE_FINAL,	/* use final() */
	FINALIZATION_TYPE_FINUP,	/* use finup() */
	FINALIZATION_TYPE_DIGEST,	/* use digest() */
};

#define TEST_SG_TOTAL	10000

/**
 * struct test_sg_division - description of a scatterlist entry
 *
 * This struct describes one entry of a scatterlist being constructed to check a
 * crypto test vector.
 *
 * @proportion_of_total: length of this chunk relative to the total length,
 *			 given as a proportion out of TEST_SG_TOTAL so that it
 *			 scales to fit any test vector
 * @offset: byte offset into a 2-page buffer at which this chunk will start
 * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
 *				  @offset
 * @flush_type: for hashes, whether an update() should be done now vs.
 *		continuing to accumulate data
240
 * @nosimd: if doing the pending update(), do it with SIMD disabled?
241 242 243 244 245 246
 */
struct test_sg_division {
	unsigned int proportion_of_total;
	unsigned int offset;
	bool offset_relative_to_alignmask;
	enum flush_type flush_type;
247
	bool nosimd;
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
};

/**
 * struct testvec_config - configuration for testing a crypto test vector
 *
 * This struct describes the data layout and other parameters with which each
 * crypto test vector can be tested.
 *
 * @name: name of this config, logged for debugging purposes if a test fails
 * @inplace: operate on the data in-place, if applicable for the algorithm type?
 * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
 * @src_divs: description of how to arrange the source scatterlist
 * @dst_divs: description of how to arrange the dst scatterlist, if applicable
 *	      for the algorithm type.  Defaults to @src_divs if unset.
 * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
 *	       where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
 * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
 *				     the @iv_offset
 * @finalization_type: what finalization function to use for hashes
267
 * @nosimd: execute with SIMD disabled?  Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
268 269 270 271 272 273 274 275 276 277
 */
struct testvec_config {
	const char *name;
	bool inplace;
	u32 req_flags;
	struct test_sg_division src_divs[XBUFSIZE];
	struct test_sg_division dst_divs[XBUFSIZE];
	unsigned int iv_offset;
	bool iv_offset_relative_to_alignmask;
	enum finalization_type finalization_type;
278
	bool nosimd;
279 280 281 282
};

#define TESTVEC_CONFIG_NAMELEN	192

283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
/*
 * The following are the lists of testvec_configs to test for each algorithm
 * type when the basic crypto self-tests are enabled, i.e. when
 * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset.  They aim to provide good test
 * coverage, while keeping the test time much shorter than the full fuzz tests
 * so that the basic tests can be enabled in a wider range of circumstances.
 */

/* Configs for skciphers and aeads */
static const struct testvec_config default_cipher_testvec_configs[] = {
	{
		.name = "in-place",
		.inplace = true,
		.src_divs = { { .proportion_of_total = 10000 } },
	}, {
		.name = "out-of-place",
		.src_divs = { { .proportion_of_total = 10000 } },
	}, {
		.name = "unaligned buffer, offset=1",
		.src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
		.iv_offset = 1,
	}, {
		.name = "buffer aligned only to alignmask",
		.src_divs = {
			{
				.proportion_of_total = 10000,
				.offset = 1,
				.offset_relative_to_alignmask = true,
			},
		},
		.iv_offset = 1,
		.iv_offset_relative_to_alignmask = true,
	}, {
		.name = "two even aligned splits",
		.src_divs = {
			{ .proportion_of_total = 5000 },
			{ .proportion_of_total = 5000 },
		},
	}, {
		.name = "uneven misaligned splits, may sleep",
		.req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
		.src_divs = {
			{ .proportion_of_total = 1900, .offset = 33 },
			{ .proportion_of_total = 3300, .offset = 7  },
			{ .proportion_of_total = 4800, .offset = 18 },
		},
		.iv_offset = 3,
	}, {
		.name = "misaligned splits crossing pages, inplace",
		.inplace = true,
		.src_divs = {
			{
				.proportion_of_total = 7500,
				.offset = PAGE_SIZE - 32
			}, {
				.proportion_of_total = 2500,
				.offset = PAGE_SIZE - 7
			},
		},
	}
};

345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
static const struct testvec_config default_hash_testvec_configs[] = {
	{
		.name = "init+update+final aligned buffer",
		.src_divs = { { .proportion_of_total = 10000 } },
		.finalization_type = FINALIZATION_TYPE_FINAL,
	}, {
		.name = "init+finup aligned buffer",
		.src_divs = { { .proportion_of_total = 10000 } },
		.finalization_type = FINALIZATION_TYPE_FINUP,
	}, {
		.name = "digest aligned buffer",
		.src_divs = { { .proportion_of_total = 10000 } },
		.finalization_type = FINALIZATION_TYPE_DIGEST,
	}, {
		.name = "init+update+final misaligned buffer",
		.src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
		.finalization_type = FINALIZATION_TYPE_FINAL,
	}, {
		.name = "digest buffer aligned only to alignmask",
		.src_divs = {
			{
				.proportion_of_total = 10000,
				.offset = 1,
				.offset_relative_to_alignmask = true,
			},
		},
		.finalization_type = FINALIZATION_TYPE_DIGEST,
	}, {
		.name = "init+update+update+final two even splits",
		.src_divs = {
			{ .proportion_of_total = 5000 },
			{
				.proportion_of_total = 5000,
				.flush_type = FLUSH_TYPE_FLUSH,
			},
		},
		.finalization_type = FINALIZATION_TYPE_FINAL,
	}, {
		.name = "digest uneven misaligned splits, may sleep",
		.req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
		.src_divs = {
			{ .proportion_of_total = 1900, .offset = 33 },
			{ .proportion_of_total = 3300, .offset = 7  },
			{ .proportion_of_total = 4800, .offset = 18 },
		},
		.finalization_type = FINALIZATION_TYPE_DIGEST,
	}, {
		.name = "digest misaligned splits crossing pages",
		.src_divs = {
			{
				.proportion_of_total = 7500,
				.offset = PAGE_SIZE - 32,
			}, {
				.proportion_of_total = 2500,
				.offset = PAGE_SIZE - 7,
			},
		},
		.finalization_type = FINALIZATION_TYPE_DIGEST,
	}, {
		.name = "import/export",
		.src_divs = {
			{
				.proportion_of_total = 6500,
				.flush_type = FLUSH_TYPE_REIMPORT,
			}, {
				.proportion_of_total = 3500,
				.flush_type = FLUSH_TYPE_REIMPORT,
			},
		},
		.finalization_type = FINALIZATION_TYPE_FINAL,
	}
};

418 419 420 421 422 423 424 425 426 427 428 429
static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
{
	unsigned int remaining = TEST_SG_TOTAL;
	unsigned int ndivs = 0;

	do {
		remaining -= divs[ndivs++].proportion_of_total;
	} while (remaining);

	return ndivs;
}

430 431 432
#define SGDIVS_HAVE_FLUSHES	BIT(0)
#define SGDIVS_HAVE_NOSIMD	BIT(1)

433
static bool valid_sg_divisions(const struct test_sg_division *divs,
434
			       unsigned int count, int *flags_ret)
435 436 437 438 439 440 441 442 443 444
{
	unsigned int total = 0;
	unsigned int i;

	for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
		if (divs[i].proportion_of_total <= 0 ||
		    divs[i].proportion_of_total > TEST_SG_TOTAL - total)
			return false;
		total += divs[i].proportion_of_total;
		if (divs[i].flush_type != FLUSH_TYPE_NONE)
445 446 447
			*flags_ret |= SGDIVS_HAVE_FLUSHES;
		if (divs[i].nosimd)
			*flags_ret |= SGDIVS_HAVE_NOSIMD;
448 449 450 451 452 453 454 455 456 457 458 459
	}
	return total == TEST_SG_TOTAL &&
		memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
}

/*
 * Check whether the given testvec_config is valid.  This isn't strictly needed
 * since every testvec_config should be valid, but check anyway so that people
 * don't unknowingly add broken configs that don't do what they wanted.
 */
static bool valid_testvec_config(const struct testvec_config *cfg)
{
460
	int flags = 0;
461 462 463 464 465

	if (cfg->name == NULL)
		return false;

	if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
466
				&flags))
467 468 469 470
		return false;

	if (cfg->dst_divs[0].proportion_of_total) {
		if (!valid_sg_divisions(cfg->dst_divs,
471
					ARRAY_SIZE(cfg->dst_divs), &flags))
472 473 474 475 476 477 478 479 480 481 482 483
			return false;
	} else {
		if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
			return false;
		/* defaults to dst_divs=src_divs */
	}

	if (cfg->iv_offset +
	    (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
	    MAX_ALGAPI_ALIGNMASK + 1)
		return false;

484 485 486 487 488 489
	if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
	    cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
		return false;

	if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
	    (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
		return false;

	return true;
}

struct test_sglist {
	char *bufs[XBUFSIZE];
	struct scatterlist sgl[XBUFSIZE];
	struct scatterlist sgl_saved[XBUFSIZE];
	struct scatterlist *sgl_ptr;
	unsigned int nents;
};

static int init_test_sglist(struct test_sglist *tsgl)
{
	return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
}

static void destroy_test_sglist(struct test_sglist *tsgl)
{
	return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
}

/**
 * build_test_sglist() - build a scatterlist for a crypto test
 *
 * @tsgl: the scatterlist to build.  @tsgl->bufs[] contains an array of 2-page
 *	  buffers which the scatterlist @tsgl->sgl[] will be made to point into.
 * @divs: the layout specification on which the scatterlist will be based
 * @alignmask: the algorithm's alignmask
 * @total_len: the total length of the scatterlist to build in bytes
 * @data: if non-NULL, the buffers will be filled with this data until it ends.
 *	  Otherwise the buffers will be poisoned.  In both cases, some bytes
 *	  past the end of each buffer will be poisoned to help detect overruns.
 * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
 *	      corresponds will be returned here.  This will match @divs except
 *	      that divisions resolving to a length of 0 are omitted as they are
 *	      not included in the scatterlist.
 *
 * Return: 0 or a -errno value
 */
static int build_test_sglist(struct test_sglist *tsgl,
			     const struct test_sg_division *divs,
			     const unsigned int alignmask,
			     const unsigned int total_len,
			     struct iov_iter *data,
			     const struct test_sg_division *out_divs[XBUFSIZE])
{
	struct {
		const struct test_sg_division *div;
		size_t length;
	} partitions[XBUFSIZE];
	const unsigned int ndivs = count_test_sg_divisions(divs);
	unsigned int len_remaining = total_len;
	unsigned int i;

	BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
	if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
		return -EINVAL;

	/* Calculate the (div, length) pairs */
	tsgl->nents = 0;
	for (i = 0; i < ndivs; i++) {
		unsigned int len_this_sg =
			min(len_remaining,
			    (total_len * divs[i].proportion_of_total +
			     TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);

		if (len_this_sg != 0) {
			partitions[tsgl->nents].div = &divs[i];
			partitions[tsgl->nents].length = len_this_sg;
			tsgl->nents++;
			len_remaining -= len_this_sg;
		}
	}
	if (tsgl->nents == 0) {
		partitions[tsgl->nents].div = &divs[0];
		partitions[tsgl->nents].length = 0;
		tsgl->nents++;
	}
	partitions[tsgl->nents - 1].length += len_remaining;

	/* Set up the sgl entries and fill the data or poison */
	sg_init_table(tsgl->sgl, tsgl->nents);
	for (i = 0; i < tsgl->nents; i++) {
		unsigned int offset = partitions[i].div->offset;
		void *addr;

		if (partitions[i].div->offset_relative_to_alignmask)
			offset += alignmask;

		while (offset + partitions[i].length + TESTMGR_POISON_LEN >
		       2 * PAGE_SIZE) {
			if (WARN_ON(offset <= 0))
				return -EINVAL;
			offset /= 2;
		}

		addr = &tsgl->bufs[i][offset];
		sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);

		if (out_divs)
			out_divs[i] = partitions[i].div;

		if (data) {
			size_t copy_len, copied;

			copy_len = min(partitions[i].length, data->count);
			copied = copy_from_iter(addr, copy_len, data);
			if (WARN_ON(copied != copy_len))
				return -EINVAL;
			testmgr_poison(addr + copy_len, partitions[i].length +
				       TESTMGR_POISON_LEN - copy_len);
		} else {
			testmgr_poison(addr, partitions[i].length +
				       TESTMGR_POISON_LEN);
		}
	}

	sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
	tsgl->sgl_ptr = tsgl->sgl;
	memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
	return 0;
}

/*
 * Verify that a scatterlist crypto operation produced the correct output.
 *
 * @tsgl: scatterlist containing the actual output
 * @expected_output: buffer containing the expected output
 * @len_to_check: length of @expected_output in bytes
 * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
 * @check_poison: verify that the poison bytes after each chunk are intact?
 *
 * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
 */
static int verify_correct_output(const struct test_sglist *tsgl,
				 const char *expected_output,
				 unsigned int len_to_check,
				 unsigned int unchecked_prefix_len,
				 bool check_poison)
{
	unsigned int i;

	for (i = 0; i < tsgl->nents; i++) {
		struct scatterlist *sg = &tsgl->sgl_ptr[i];
		unsigned int len = sg->length;
		unsigned int offset = sg->offset;
		const char *actual_output;

		if (unchecked_prefix_len) {
			if (unchecked_prefix_len >= len) {
				unchecked_prefix_len -= len;
				continue;
			}
			offset += unchecked_prefix_len;
			len -= unchecked_prefix_len;
			unchecked_prefix_len = 0;
		}
		len = min(len, len_to_check);
		actual_output = page_address(sg_page(sg)) + offset;
		if (memcmp(expected_output, actual_output, len) != 0)
			return -EINVAL;
		if (check_poison &&
		    !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
			return -EOVERFLOW;
		len_to_check -= len;
		expected_output += len;
	}
	if (WARN_ON(len_to_check != 0))
		return -EINVAL;
	return 0;
}

static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
{
	unsigned int i;

	for (i = 0; i < tsgl->nents; i++) {
		if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
			return true;
		if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
			return true;
		if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
			return true;
	}
	return false;
}

struct cipher_test_sglists {
	struct test_sglist src;
	struct test_sglist dst;
};

static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
{
	struct cipher_test_sglists *tsgls;

	tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
	if (!tsgls)
		return NULL;

	if (init_test_sglist(&tsgls->src) != 0)
		goto fail_kfree;
	if (init_test_sglist(&tsgls->dst) != 0)
		goto fail_destroy_src;

	return tsgls;

fail_destroy_src:
	destroy_test_sglist(&tsgls->src);
fail_kfree:
	kfree(tsgls);
	return NULL;
}

static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
{
	if (tsgls) {
		destroy_test_sglist(&tsgls->src);
		destroy_test_sglist(&tsgls->dst);
		kfree(tsgls);
	}
}

/* Build the src and dst scatterlists for an skcipher or AEAD test */
static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
				     const struct testvec_config *cfg,
				     unsigned int alignmask,
				     unsigned int src_total_len,
				     unsigned int dst_total_len,
				     const struct kvec *inputs,
				     unsigned int nr_inputs)
{
	struct iov_iter input;
	int err;

	iov_iter_kvec(&input, WRITE, inputs, nr_inputs, src_total_len);
	err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
				cfg->inplace ?
					max(dst_total_len, src_total_len) :
					src_total_len,
				&input, NULL);
	if (err)
		return err;

	if (cfg->inplace) {
		tsgls->dst.sgl_ptr = tsgls->src.sgl;
		tsgls->dst.nents = tsgls->src.nents;
		return 0;
	}
	return build_test_sglist(&tsgls->dst,
				 cfg->dst_divs[0].proportion_of_total ?
					cfg->dst_divs : cfg->src_divs,
				 alignmask, dst_total_len, NULL, NULL);
745 746
}

747 748 749
#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
static char *generate_random_sgl_divisions(struct test_sg_division *divs,
					   size_t max_divs, char *p, char *end,
750
					   bool gen_flushes, u32 req_flags)
751 752 753 754 755 756
{
	struct test_sg_division *div = divs;
	unsigned int remaining = TEST_SG_TOTAL;

	do {
		unsigned int this_len;
757
		const char *flushtype_str;
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785

		if (div == &divs[max_divs - 1] || prandom_u32() % 2 == 0)
			this_len = remaining;
		else
			this_len = 1 + (prandom_u32() % remaining);
		div->proportion_of_total = this_len;

		if (prandom_u32() % 4 == 0)
			div->offset = (PAGE_SIZE - 128) + (prandom_u32() % 128);
		else if (prandom_u32() % 2 == 0)
			div->offset = prandom_u32() % 32;
		else
			div->offset = prandom_u32() % PAGE_SIZE;
		if (prandom_u32() % 8 == 0)
			div->offset_relative_to_alignmask = true;

		div->flush_type = FLUSH_TYPE_NONE;
		if (gen_flushes) {
			switch (prandom_u32() % 4) {
			case 0:
				div->flush_type = FLUSH_TYPE_REIMPORT;
				break;
			case 1:
				div->flush_type = FLUSH_TYPE_FLUSH;
				break;
			}
		}

786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
		if (div->flush_type != FLUSH_TYPE_NONE &&
		    !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
		    prandom_u32() % 2 == 0)
			div->nosimd = true;

		switch (div->flush_type) {
		case FLUSH_TYPE_FLUSH:
			if (div->nosimd)
				flushtype_str = "<flush,nosimd>";
			else
				flushtype_str = "<flush>";
			break;
		case FLUSH_TYPE_REIMPORT:
			if (div->nosimd)
				flushtype_str = "<reimport,nosimd>";
			else
				flushtype_str = "<reimport>";
			break;
		default:
			flushtype_str = "";
			break;
		}

809
		BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
810
		p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
			       this_len / 100, this_len % 100,
			       div->offset_relative_to_alignmask ?
					"alignmask" : "",
			       div->offset, this_len == remaining ? "" : ", ");
		remaining -= this_len;
		div++;
	} while (remaining);

	return p;
}

/* Generate a random testvec_config for fuzz testing */
static void generate_random_testvec_config(struct testvec_config *cfg,
					   char *name, size_t max_namelen)
{
	char *p = name;
	char * const end = name + max_namelen;

	memset(cfg, 0, sizeof(*cfg));

	cfg->name = name;

	p += scnprintf(p, end - p, "random:");

	if (prandom_u32() % 2 == 0) {
		cfg->inplace = true;
		p += scnprintf(p, end - p, " inplace");
	}

	if (prandom_u32() % 2 == 0) {
		cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
		p += scnprintf(p, end - p, " may_sleep");
	}

	switch (prandom_u32() % 4) {
	case 0:
		cfg->finalization_type = FINALIZATION_TYPE_FINAL;
		p += scnprintf(p, end - p, " use_final");
		break;
	case 1:
		cfg->finalization_type = FINALIZATION_TYPE_FINUP;
		p += scnprintf(p, end - p, " use_finup");
		break;
	default:
		cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
		p += scnprintf(p, end - p, " use_digest");
		break;
	}

860 861 862 863 864 865
	if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
	    prandom_u32() % 2 == 0) {
		cfg->nosimd = true;
		p += scnprintf(p, end - p, " nosimd");
	}

866 867 868 869
	p += scnprintf(p, end - p, " src_divs=[");
	p = generate_random_sgl_divisions(cfg->src_divs,
					  ARRAY_SIZE(cfg->src_divs), p, end,
					  (cfg->finalization_type !=
870 871
					   FINALIZATION_TYPE_DIGEST),
					  cfg->req_flags);
872 873 874 875 876 877
	p += scnprintf(p, end - p, "]");

	if (!cfg->inplace && prandom_u32() % 2 == 0) {
		p += scnprintf(p, end - p, " dst_divs=[");
		p = generate_random_sgl_divisions(cfg->dst_divs,
						  ARRAY_SIZE(cfg->dst_divs),
878 879
						  p, end, false,
						  cfg->req_flags);
880 881 882 883 884 885 886 887 888 889
		p += scnprintf(p, end - p, "]");
	}

	if (prandom_u32() % 2 == 0) {
		cfg->iv_offset = 1 + (prandom_u32() % MAX_ALGAPI_ALIGNMASK);
		p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
	}

	WARN_ON_ONCE(!valid_testvec_config(cfg));
}
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910

static void crypto_disable_simd_for_test(void)
{
	preempt_disable();
	__this_cpu_write(crypto_simd_disabled_for_test, true);
}

static void crypto_reenable_simd_for_test(void)
{
	__this_cpu_write(crypto_simd_disabled_for_test, false);
	preempt_enable();
}
#else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
static void crypto_disable_simd_for_test(void)
{
}

static void crypto_reenable_simd_for_test(void)
{
}
#endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
911

912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
static int do_ahash_op(int (*op)(struct ahash_request *req),
		       struct ahash_request *req,
		       struct crypto_wait *wait, bool nosimd)
{
	int err;

	if (nosimd)
		crypto_disable_simd_for_test();

	err = op(req);

	if (nosimd)
		crypto_reenable_simd_for_test();

	return crypto_wait_req(err, wait);
}

929 930 931 932
static int check_nonfinal_hash_op(const char *op, int err,
				  u8 *result, unsigned int digestsize,
				  const char *driver, unsigned int vec_num,
				  const struct testvec_config *cfg)
933
{
934 935 936 937
	if (err) {
		pr_err("alg: hash: %s %s() failed with err %d on test vector %u, cfg=\"%s\"\n",
		       driver, op, err, vec_num, cfg->name);
		return err;
938
	}
939 940 941 942
	if (!testmgr_is_poison(result, digestsize)) {
		pr_err("alg: hash: %s %s() used result buffer on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
943
	}
944
	return 0;
945 946
}

947 948 949 950 951 952 953
static int test_hash_vec_cfg(const char *driver,
			     const struct hash_testvec *vec,
			     unsigned int vec_num,
			     const struct testvec_config *cfg,
			     struct ahash_request *req,
			     struct test_sglist *tsgl,
			     u8 *hashstate)
954
{
955 956 957 958 959 960 961 962 963 964 965 966 967 968
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
	const unsigned int alignmask = crypto_ahash_alignmask(tfm);
	const unsigned int digestsize = crypto_ahash_digestsize(tfm);
	const unsigned int statesize = crypto_ahash_statesize(tfm);
	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
	const struct test_sg_division *divs[XBUFSIZE];
	DECLARE_CRYPTO_WAIT(wait);
	struct kvec _input;
	struct iov_iter input;
	unsigned int i;
	struct scatterlist *pending_sgl;
	unsigned int pending_len;
	u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
	int err;
969

970 971 972 973 974 975 976 977 978 979
	/* Set the key, if specified */
	if (vec->ksize) {
		err = crypto_ahash_setkey(tfm, vec->key, vec->ksize);
		if (err) {
			pr_err("alg: hash: %s setkey failed with err %d on test vector %u; flags=%#x\n",
			       driver, err, vec_num,
			       crypto_ahash_get_flags(tfm));
			return err;
		}
	}
980

981 982 983 984 985 986 987 988 989 990
	/* Build the scatterlist for the source data */
	_input.iov_base = (void *)vec->plaintext;
	_input.iov_len = vec->psize;
	iov_iter_kvec(&input, WRITE, &_input, 1, vec->psize);
	err = build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
				&input, divs);
	if (err) {
		pr_err("alg: hash: %s: error preparing scatterlist for test vector %u, cfg=\"%s\"\n",
		       driver, vec_num, cfg->name);
		return err;
991 992
	}

993
	/* Do the actual hashing */
994

995 996
	testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
	testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
997

998 999 1000 1001 1002
	if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST) {
		/* Just using digest() */
		ahash_request_set_callback(req, req_flags, crypto_req_done,
					   &wait);
		ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
1003
		err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
1004 1005 1006 1007 1008 1009 1010
		if (err) {
			pr_err("alg: hash: %s digest() failed with err %d on test vector %u, cfg=\"%s\"\n",
			       driver, err, vec_num, cfg->name);
			return err;
		}
		goto result_ready;
	}
1011

1012
	/* Using init(), zero or more update(), then final() or finup() */
1013

1014 1015
	ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
	ahash_request_set_crypt(req, NULL, result, 0);
1016
	err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
1017 1018 1019 1020
	err = check_nonfinal_hash_op("init", err, result, digestsize,
				     driver, vec_num, cfg);
	if (err)
		return err;
1021

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
	pending_sgl = NULL;
	pending_len = 0;
	for (i = 0; i < tsgl->nents; i++) {
		if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
		    pending_sgl != NULL) {
			/* update() with the pending data */
			ahash_request_set_callback(req, req_flags,
						   crypto_req_done, &wait);
			ahash_request_set_crypt(req, pending_sgl, result,
						pending_len);
1032 1033
			err = do_ahash_op(crypto_ahash_update, req, &wait,
					  divs[i]->nosimd);
1034 1035 1036 1037 1038 1039 1040
			err = check_nonfinal_hash_op("update", err,
						     result, digestsize,
						     driver, vec_num, cfg);
			if (err)
				return err;
			pending_sgl = NULL;
			pending_len = 0;
1041
		}
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
		if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
			/* Test ->export() and ->import() */
			testmgr_poison(hashstate + statesize,
				       TESTMGR_POISON_LEN);
			err = crypto_ahash_export(req, hashstate);
			err = check_nonfinal_hash_op("export", err,
						     result, digestsize,
						     driver, vec_num, cfg);
			if (err)
				return err;
			if (!testmgr_is_poison(hashstate + statesize,
					       TESTMGR_POISON_LEN)) {
				pr_err("alg: hash: %s export() overran state buffer on test vector %u, cfg=\"%s\"\n",
				       driver, vec_num, cfg->name);
				return -EOVERFLOW;
1057
			}
1058

1059 1060 1061 1062 1063 1064 1065
			testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
			err = crypto_ahash_import(req, hashstate);
			err = check_nonfinal_hash_op("import", err,
						     result, digestsize,
						     driver, vec_num, cfg);
			if (err)
				return err;
1066
		}
1067 1068 1069 1070
		if (pending_sgl == NULL)
			pending_sgl = &tsgl->sgl[i];
		pending_len += tsgl->sgl[i].length;
	}
1071

1072 1073 1074 1075
	ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
	ahash_request_set_crypt(req, pending_sgl, result, pending_len);
	if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
		/* finish with update() and final() */
1076
		err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
1077 1078 1079 1080
		err = check_nonfinal_hash_op("update", err, result, digestsize,
					     driver, vec_num, cfg);
		if (err)
			return err;
1081
		err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
1082 1083 1084 1085 1086 1087 1088
		if (err) {
			pr_err("alg: hash: %s final() failed with err %d on test vector %u, cfg=\"%s\"\n",
			       driver, err, vec_num, cfg->name);
			return err;
		}
	} else {
		/* finish with finup() */
1089
		err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
1090 1091 1092 1093
		if (err) {
			pr_err("alg: hash: %s finup() failed with err %d on test vector %u, cfg=\"%s\"\n",
			       driver, err, vec_num, cfg->name);
			return err;
1094 1095 1096
		}
	}

1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
result_ready:
	/* Check that the algorithm produced the correct digest */
	if (memcmp(result, vec->digest, digestsize) != 0) {
		pr_err("alg: hash: %s test failed (wrong result) on test vector %u, cfg=\"%s\"\n",
		       driver, vec_num, cfg->name);
		return -EINVAL;
	}
	if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
		pr_err("alg: hash: %s overran result buffer on test vector %u, cfg=\"%s\"\n",
		       driver, vec_num, cfg->name);
		return -EOVERFLOW;
	}
1109

1110 1111
	return 0;
}
1112

1113 1114 1115 1116 1117 1118
static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
			 unsigned int vec_num, struct ahash_request *req,
			 struct test_sglist *tsgl, u8 *hashstate)
{
	unsigned int i;
	int err;
1119

1120 1121 1122 1123 1124 1125 1126
	for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
		err = test_hash_vec_cfg(driver, vec, vec_num,
					&default_hash_testvec_configs[i],
					req, tsgl, hashstate);
		if (err)
			return err;
	}
1127

1128 1129 1130 1131
#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
	if (!noextratests) {
		struct testvec_config cfg;
		char cfgname[TESTVEC_CONFIG_NAMELEN];
1132

1133 1134 1135 1136 1137 1138 1139
		for (i = 0; i < fuzz_iterations; i++) {
			generate_random_testvec_config(&cfg, cfgname,
						       sizeof(cfgname));
			err = test_hash_vec_cfg(driver, vec, vec_num, &cfg,
						req, tsgl, hashstate);
			if (err)
				return err;
1140 1141
		}
	}
1142 1143 1144
#endif
	return 0;
}
1145

1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
static int __alg_test_hash(const struct hash_testvec *vecs,
			   unsigned int num_vecs, const char *driver,
			   u32 type, u32 mask)
{
	struct crypto_ahash *tfm;
	struct ahash_request *req = NULL;
	struct test_sglist *tsgl = NULL;
	u8 *hashstate = NULL;
	unsigned int i;
	int err;
1156

1157 1158 1159 1160 1161 1162
	tfm = crypto_alloc_ahash(driver, type, mask);
	if (IS_ERR(tfm)) {
		pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
		       driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}
1163

1164 1165 1166 1167 1168 1169 1170
	req = ahash_request_alloc(tfm, GFP_KERNEL);
	if (!req) {
		pr_err("alg: hash: failed to allocate request for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
	}
1171

1172 1173 1174 1175 1176 1177 1178 1179 1180
	tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
	if (!tsgl || init_test_sglist(tsgl) != 0) {
		pr_err("alg: hash: failed to allocate test buffers for %s\n",
		       driver);
		kfree(tsgl);
		tsgl = NULL;
		err = -ENOMEM;
		goto out;
	}
1181

1182 1183 1184 1185 1186 1187 1188 1189
	hashstate = kmalloc(crypto_ahash_statesize(tfm) + TESTMGR_POISON_LEN,
			    GFP_KERNEL);
	if (!hashstate) {
		pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
	}
1190

1191 1192 1193
	for (i = 0; i < num_vecs; i++) {
		err = test_hash_vec(driver, &vecs[i], i, req, tsgl, hashstate);
		if (err)
1194
			goto out;
1195
	}
1196
	err = 0;
1197
out:
1198 1199 1200 1201 1202
	kfree(hashstate);
	if (tsgl) {
		destroy_test_sglist(tsgl);
		kfree(tsgl);
	}
1203
	ahash_request_free(req);
1204 1205
	crypto_free_ahash(tfm);
	return err;
1206 1207
}

1208 1209
static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
			 u32 type, u32 mask)
1210
{
1211 1212 1213 1214
	const struct hash_testvec *template = desc->suite.hash.vecs;
	unsigned int tcount = desc->suite.hash.count;
	unsigned int nr_unkeyed, nr_keyed;
	int err;
1215

1216 1217 1218 1219 1220
	/*
	 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
	 * first, before setting a key on the tfm.  To make this easier, we
	 * require that the unkeyed test vectors (if any) are listed first.
	 */
1221

1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
	for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
		if (template[nr_unkeyed].ksize)
			break;
	}
	for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
		if (!template[nr_unkeyed + nr_keyed].ksize) {
			pr_err("alg: hash: test vectors for %s out of order, "
			       "unkeyed ones must come first\n", desc->alg);
			return -EINVAL;
		}
	}
1233

1234 1235 1236 1237
	err = 0;
	if (nr_unkeyed) {
		err = __alg_test_hash(template, nr_unkeyed, driver, type, mask);
		template += nr_unkeyed;
1238 1239
	}

1240 1241 1242 1243
	if (!err && nr_keyed)
		err = __alg_test_hash(template, nr_keyed, driver, type, mask);

	return err;
1244 1245
}

1246 1247 1248 1249 1250 1251
static int test_aead_vec_cfg(const char *driver, int enc,
			     const struct aead_testvec *vec,
			     unsigned int vec_num,
			     const struct testvec_config *cfg,
			     struct aead_request *req,
			     struct cipher_test_sglists *tsgls)
1252
{
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
	struct crypto_aead *tfm = crypto_aead_reqtfm(req);
	const unsigned int alignmask = crypto_aead_alignmask(tfm);
	const unsigned int ivsize = crypto_aead_ivsize(tfm);
	const unsigned int authsize = vec->clen - vec->plen;
	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
	const char *op = enc ? "encryption" : "decryption";
	DECLARE_CRYPTO_WAIT(wait);
	u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
	u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
		 cfg->iv_offset +
		 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
	struct kvec input[2];
	int err;
1266

1267 1268 1269
	/* Set the key */
	if (vec->wk)
		crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1270
	else
1271 1272 1273 1274 1275 1276 1277 1278
		crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
	err = crypto_aead_setkey(tfm, vec->key, vec->klen);
	if (err) {
		if (vec->fail) /* expectedly failed to set key? */
			return 0;
		pr_err("alg: aead: %s setkey failed with err %d on test vector %u; flags=%#x\n",
		       driver, err, vec_num, crypto_aead_get_flags(tfm));
		return err;
1279
	}
1280 1281 1282 1283
	if (vec->fail) {
		pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %u\n",
		       driver, vec_num);
		return -EINVAL;
1284 1285
	}

1286 1287 1288 1289 1290 1291 1292
	/* Set the authentication tag size */
	err = crypto_aead_setauthsize(tfm, authsize);
	if (err) {
		pr_err("alg: aead: %s setauthsize failed with err %d on test vector %u\n",
		       driver, err, vec_num);
		return err;
	}
1293

1294 1295 1296 1297 1298 1299 1300
	/* The IV must be copied to a buffer, as the algorithm may modify it */
	if (WARN_ON(ivsize > MAX_IVLEN))
		return -EINVAL;
	if (vec->iv)
		memcpy(iv, vec->iv, ivsize);
	else
		memset(iv, 0, ivsize);
1301

1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
	/* Build the src/dst scatterlists */
	input[0].iov_base = (void *)vec->assoc;
	input[0].iov_len = vec->alen;
	input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
	input[1].iov_len = enc ? vec->plen : vec->clen;
	err = build_cipher_test_sglists(tsgls, cfg, alignmask,
					vec->alen + (enc ? vec->plen :
						     vec->clen),
					vec->alen + (enc ? vec->clen :
						     vec->plen),
					input, 2);
	if (err) {
		pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
1318

1319 1320 1321 1322 1323 1324
	/* Do the actual encryption or decryption */
	testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
	aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
	aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
			       enc ? vec->plen : vec->clen, iv);
	aead_request_set_ad(req, vec->alen);
1325 1326 1327 1328 1329 1330
	if (cfg->nosimd)
		crypto_disable_simd_for_test();
	err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
	if (cfg->nosimd)
		crypto_reenable_simd_for_test();
	err = crypto_wait_req(err, &wait);
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
	if (err) {
		if (err == -EBADMSG && vec->novrfy)
			return 0;
		pr_err("alg: aead: %s %s failed with err %d on test vector %u, cfg=\"%s\"\n",
		       driver, op, err, vec_num, cfg->name);
		return err;
	}
	if (vec->novrfy) {
		pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
	}

	/* Check that the algorithm didn't overwrite things it shouldn't have */
	if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
	    req->assoclen != vec->alen ||
	    req->iv != iv ||
	    req->src != tsgls->src.sgl_ptr ||
	    req->dst != tsgls->dst.sgl_ptr ||
	    crypto_aead_reqtfm(req) != tfm ||
	    req->base.complete != crypto_req_done ||
	    req->base.flags != req_flags ||
	    req->base.data != &wait) {
		pr_err("alg: aead: %s %s corrupted request struct on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		if (req->cryptlen != (enc ? vec->plen : vec->clen))
			pr_err("alg: aead: changed 'req->cryptlen'\n");
		if (req->assoclen != vec->alen)
			pr_err("alg: aead: changed 'req->assoclen'\n");
		if (req->iv != iv)
			pr_err("alg: aead: changed 'req->iv'\n");
		if (req->src != tsgls->src.sgl_ptr)
			pr_err("alg: aead: changed 'req->src'\n");
		if (req->dst != tsgls->dst.sgl_ptr)
			pr_err("alg: aead: changed 'req->dst'\n");
		if (crypto_aead_reqtfm(req) != tfm)
			pr_err("alg: aead: changed 'req->base.tfm'\n");
		if (req->base.complete != crypto_req_done)
			pr_err("alg: aead: changed 'req->base.complete'\n");
		if (req->base.flags != req_flags)
			pr_err("alg: aead: changed 'req->base.flags'\n");
		if (req->base.data != &wait)
			pr_err("alg: aead: changed 'req->base.data'\n");
		return -EINVAL;
	}
	if (is_test_sglist_corrupted(&tsgls->src)) {
		pr_err("alg: aead: %s %s corrupted src sgl on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
	}
	if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
	    is_test_sglist_corrupted(&tsgls->dst)) {
		pr_err("alg: aead: %s %s corrupted dst sgl on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
1386
	}
1387

1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
	/* Check for the correct output (ciphertext or plaintext) */
	err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
				    enc ? vec->clen : vec->plen,
				    vec->alen, enc || !cfg->inplace);
	if (err == -EOVERFLOW) {
		pr_err("alg: aead: %s %s overran dst buffer on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
	if (err) {
		pr_err("alg: aead: %s %s test failed (wrong result) on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
1402

1403 1404
	return 0;
}
1405

1406 1407 1408 1409 1410 1411 1412
static int test_aead_vec(const char *driver, int enc,
			 const struct aead_testvec *vec, unsigned int vec_num,
			 struct aead_request *req,
			 struct cipher_test_sglists *tsgls)
{
	unsigned int i;
	int err;
1413

1414 1415
	if (enc && vec->novrfy)
		return 0;
1416

1417 1418 1419 1420 1421 1422 1423
	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
		err = test_aead_vec_cfg(driver, enc, vec, vec_num,
					&default_cipher_testvec_configs[i],
					req, tsgls);
		if (err)
			return err;
	}
1424

1425 1426 1427 1428
#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
	if (!noextratests) {
		struct testvec_config cfg;
		char cfgname[TESTVEC_CONFIG_NAMELEN];
1429

1430 1431 1432 1433 1434 1435 1436
		for (i = 0; i < fuzz_iterations; i++) {
			generate_random_testvec_config(&cfg, cfgname,
						       sizeof(cfgname));
			err = test_aead_vec_cfg(driver, enc, vec, vec_num,
						&cfg, req, tsgls);
			if (err)
				return err;
1437 1438
		}
	}
1439 1440 1441
#endif
	return 0;
}
1442

1443 1444 1445 1446 1447 1448 1449
static int test_aead(const char *driver, int enc,
		     const struct aead_test_suite *suite,
		     struct aead_request *req,
		     struct cipher_test_sglists *tsgls)
{
	unsigned int i;
	int err;
1450

1451 1452 1453 1454 1455 1456 1457
	for (i = 0; i < suite->count; i++) {
		err = test_aead_vec(driver, enc, &suite->vecs[i], i, req,
				    tsgls);
		if (err)
			return err;
	}
	return 0;
1458 1459
}

1460 1461
static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
			 u32 type, u32 mask)
1462
{
1463 1464 1465 1466 1467
	const struct aead_test_suite *suite = &desc->suite.aead;
	struct crypto_aead *tfm;
	struct aead_request *req = NULL;
	struct cipher_test_sglists *tsgls = NULL;
	int err;
1468

1469 1470 1471 1472
	if (suite->count <= 0) {
		pr_err("alg: aead: empty test suite for %s\n", driver);
		return -EINVAL;
	}
1473

1474 1475 1476 1477 1478 1479
	tfm = crypto_alloc_aead(driver, type, mask);
	if (IS_ERR(tfm)) {
		pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
		       driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}
1480

1481 1482 1483 1484 1485 1486 1487
	req = aead_request_alloc(tfm, GFP_KERNEL);
	if (!req) {
		pr_err("alg: aead: failed to allocate request for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
	}
1488

1489 1490 1491 1492 1493 1494
	tsgls = alloc_cipher_test_sglists();
	if (!tsgls) {
		pr_err("alg: aead: failed to allocate test buffers for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
1495 1496
	}

1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
	err = test_aead(driver, ENCRYPT, suite, req, tsgls);
	if (err)
		goto out;

	err = test_aead(driver, DECRYPT, suite, req, tsgls);
out:
	free_cipher_test_sglists(tsgls);
	aead_request_free(req);
	crypto_free_aead(tfm);
	return err;
1507 1508
}

1509
static int test_cipher(struct crypto_cipher *tfm, int enc,
1510 1511
		       const struct cipher_testvec *template,
		       unsigned int tcount)
1512 1513 1514 1515 1516
{
	const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
	unsigned int i, j, k;
	char *q;
	const char *e;
1517
	const char *input, *result;
1518
	void *data;
1519 1520 1521 1522 1523
	char *xbuf[XBUFSIZE];
	int ret = -ENOMEM;

	if (testmgr_alloc_buf(xbuf))
		goto out_nobuf;
1524 1525 1526 1527 1528 1529 1530 1531 1532

	if (enc == ENCRYPT)
	        e = "encryption";
	else
		e = "decryption";

	j = 0;
	for (i = 0; i < tcount; i++) {

1533 1534 1535
		if (fips_enabled && template[i].fips_skip)
			continue;

1536 1537
		input  = enc ? template[i].ptext : template[i].ctext;
		result = enc ? template[i].ctext : template[i].ptext;
1538 1539
		j++;

1540
		ret = -EINVAL;
1541
		if (WARN_ON(template[i].len > PAGE_SIZE))
1542 1543
			goto out;

1544
		data = xbuf[0];
1545
		memcpy(data, input, template[i].len);
1546 1547 1548

		crypto_cipher_clear_flags(tfm, ~0);
		if (template[i].wk)
1549
			crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1550 1551 1552

		ret = crypto_cipher_setkey(tfm, template[i].key,
					   template[i].klen);
1553
		if (template[i].fail == !ret) {
1554 1555 1556 1557 1558 1559 1560
			printk(KERN_ERR "alg: cipher: setkey failed "
			       "on test %d for %s: flags=%x\n", j,
			       algo, crypto_cipher_get_flags(tfm));
			goto out;
		} else if (ret)
			continue;

1561
		for (k = 0; k < template[i].len;
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
		     k += crypto_cipher_blocksize(tfm)) {
			if (enc)
				crypto_cipher_encrypt_one(tfm, data + k,
							  data + k);
			else
				crypto_cipher_decrypt_one(tfm, data + k,
							  data + k);
		}

		q = data;
1572
		if (memcmp(q, result, template[i].len)) {
1573 1574
			printk(KERN_ERR "alg: cipher: Test %d failed "
			       "on %s for %s\n", j, e, algo);
1575
			hexdump(q, template[i].len);
1576 1577 1578 1579 1580 1581 1582 1583
			ret = -EINVAL;
			goto out;
		}
	}

	ret = 0;

out:
1584 1585
	testmgr_free_buf(xbuf);
out_nobuf:
1586 1587 1588
	return ret;
}

1589 1590 1591 1592 1593 1594
static int test_skcipher_vec_cfg(const char *driver, int enc,
				 const struct cipher_testvec *vec,
				 unsigned int vec_num,
				 const struct testvec_config *cfg,
				 struct skcipher_request *req,
				 struct cipher_test_sglists *tsgls)
1595
{
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
	const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
	const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
	const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
	const char *op = enc ? "encryption" : "decryption";
	DECLARE_CRYPTO_WAIT(wait);
	u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
	u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
		 cfg->iv_offset +
		 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
	struct kvec input;
	int err;
1608

1609 1610 1611
	/* Set the key */
	if (vec->wk)
		crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
1612
	else
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
		crypto_skcipher_clear_flags(tfm,
					    CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
	err = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
	if (err) {
		if (vec->fail) /* expectedly failed to set key? */
			return 0;
		pr_err("alg: skcipher: %s setkey failed with err %d on test vector %u; flags=%#x\n",
		       driver, err, vec_num, crypto_skcipher_get_flags(tfm));
		return err;
	}
	if (vec->fail) {
		pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %u\n",
		       driver, vec_num);
		return -EINVAL;
1627 1628
	}

1629 1630 1631 1632
	/* The IV must be copied to a buffer, as the algorithm may modify it */
	if (ivsize) {
		if (WARN_ON(ivsize > MAX_IVLEN))
			return -EINVAL;
1633 1634 1635
		if (vec->generates_iv && !enc)
			memcpy(iv, vec->iv_out, ivsize);
		else if (vec->iv)
1636
			memcpy(iv, vec->iv, ivsize);
1637
		else
1638 1639 1640 1641 1642 1643
			memset(iv, 0, ivsize);
	} else {
		if (vec->generates_iv) {
			pr_err("alg: skcipher: %s has ivsize=0 but test vector %u generates IV!\n",
			       driver, vec_num);
			return -EINVAL;
1644
		}
1645
		iv = NULL;
1646 1647
	}

1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
	/* Build the src/dst scatterlists */
	input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
	input.iov_len = vec->len;
	err = build_cipher_test_sglists(tsgls, cfg, alignmask,
					vec->len, vec->len, &input, 1);
	if (err) {
		pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
1658

1659 1660 1661 1662 1663
	/* Do the actual encryption or decryption */
	testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
	skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
	skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
				   vec->len, iv);
1664 1665 1666 1667 1668 1669
	if (cfg->nosimd)
		crypto_disable_simd_for_test();
	err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
	if (cfg->nosimd)
		crypto_reenable_simd_for_test();
	err = crypto_wait_req(err, &wait);
1670 1671 1672 1673 1674
	if (err) {
		pr_err("alg: skcipher: %s %s failed with err %d on test vector %u, cfg=\"%s\"\n",
		       driver, op, err, vec_num, cfg->name);
		return err;
	}
1675

1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
	/* Check that the algorithm didn't overwrite things it shouldn't have */
	if (req->cryptlen != vec->len ||
	    req->iv != iv ||
	    req->src != tsgls->src.sgl_ptr ||
	    req->dst != tsgls->dst.sgl_ptr ||
	    crypto_skcipher_reqtfm(req) != tfm ||
	    req->base.complete != crypto_req_done ||
	    req->base.flags != req_flags ||
	    req->base.data != &wait) {
		pr_err("alg: skcipher: %s %s corrupted request struct on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		if (req->cryptlen != vec->len)
			pr_err("alg: skcipher: changed 'req->cryptlen'\n");
		if (req->iv != iv)
			pr_err("alg: skcipher: changed 'req->iv'\n");
		if (req->src != tsgls->src.sgl_ptr)
			pr_err("alg: skcipher: changed 'req->src'\n");
		if (req->dst != tsgls->dst.sgl_ptr)
			pr_err("alg: skcipher: changed 'req->dst'\n");
		if (crypto_skcipher_reqtfm(req) != tfm)
			pr_err("alg: skcipher: changed 'req->base.tfm'\n");
		if (req->base.complete != crypto_req_done)
			pr_err("alg: skcipher: changed 'req->base.complete'\n");
		if (req->base.flags != req_flags)
			pr_err("alg: skcipher: changed 'req->base.flags'\n");
		if (req->base.data != &wait)
			pr_err("alg: skcipher: changed 'req->base.data'\n");
		return -EINVAL;
	}
	if (is_test_sglist_corrupted(&tsgls->src)) {
		pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
	}
	if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
	    is_test_sglist_corrupted(&tsgls->dst)) {
		pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return -EINVAL;
	}

1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
	/* Check for the correct output (ciphertext or plaintext) */
	err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
				    vec->len, 0, true);
	if (err == -EOVERFLOW) {
		pr_err("alg: skcipher: %s %s overran dst buffer on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
	if (err) {
		pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		return err;
	}
1730

1731
	/* If applicable, check that the algorithm generated the correct IV */
1732
	if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
1733 1734 1735 1736 1737
		pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %u, cfg=\"%s\"\n",
		       driver, op, vec_num, cfg->name);
		hexdump(iv, ivsize);
		return -EINVAL;
	}
1738

1739 1740
	return 0;
}
1741

1742 1743 1744 1745 1746 1747 1748 1749
static int test_skcipher_vec(const char *driver, int enc,
			     const struct cipher_testvec *vec,
			     unsigned int vec_num,
			     struct skcipher_request *req,
			     struct cipher_test_sglists *tsgls)
{
	unsigned int i;
	int err;
1750

1751 1752
	if (fips_enabled && vec->fips_skip)
		return 0;
1753

1754 1755 1756 1757 1758 1759 1760
	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
		err = test_skcipher_vec_cfg(driver, enc, vec, vec_num,
					    &default_cipher_testvec_configs[i],
					    req, tsgls);
		if (err)
			return err;
	}
1761

1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
	if (!noextratests) {
		struct testvec_config cfg;
		char cfgname[TESTVEC_CONFIG_NAMELEN];

		for (i = 0; i < fuzz_iterations; i++) {
			generate_random_testvec_config(&cfg, cfgname,
						       sizeof(cfgname));
			err = test_skcipher_vec_cfg(driver, enc, vec, vec_num,
						    &cfg, req, tsgls);
			if (err)
				return err;
1774 1775
		}
	}
1776 1777 1778
#endif
	return 0;
}
1779

1780 1781 1782 1783 1784 1785 1786
static int test_skcipher(const char *driver, int enc,
			 const struct cipher_test_suite *suite,
			 struct skcipher_request *req,
			 struct cipher_test_sglists *tsgls)
{
	unsigned int i;
	int err;
1787

1788 1789 1790 1791 1792 1793 1794
	for (i = 0; i < suite->count; i++) {
		err = test_skcipher_vec(driver, enc, &suite->vecs[i], i, req,
					tsgls);
		if (err)
			return err;
	}
	return 0;
1795 1796
}

1797 1798
static int alg_test_skcipher(const struct alg_test_desc *desc,
			     const char *driver, u32 type, u32 mask)
1799
{
1800 1801 1802 1803 1804
	const struct cipher_test_suite *suite = &desc->suite.cipher;
	struct crypto_skcipher *tfm;
	struct skcipher_request *req = NULL;
	struct cipher_test_sglists *tsgls = NULL;
	int err;
1805

1806 1807 1808 1809
	if (suite->count <= 0) {
		pr_err("alg: skcipher: empty test suite for %s\n", driver);
		return -EINVAL;
	}
1810

1811 1812 1813 1814 1815 1816
	tfm = crypto_alloc_skcipher(driver, type, mask);
	if (IS_ERR(tfm)) {
		pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
		       driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}
1817

1818 1819 1820 1821 1822 1823 1824
	req = skcipher_request_alloc(tfm, GFP_KERNEL);
	if (!req) {
		pr_err("alg: skcipher: failed to allocate request for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
	}
1825

1826 1827 1828 1829 1830 1831
	tsgls = alloc_cipher_test_sglists();
	if (!tsgls) {
		pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
		       driver);
		err = -ENOMEM;
		goto out;
1832 1833
	}

1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
	err = test_skcipher(driver, ENCRYPT, suite, req, tsgls);
	if (err)
		goto out;

	err = test_skcipher(driver, DECRYPT, suite, req, tsgls);
out:
	free_cipher_test_sglists(tsgls);
	skcipher_request_free(req);
	crypto_free_skcipher(tfm);
	return err;
1844 1845
}

1846 1847 1848 1849
static int test_comp(struct crypto_comp *tfm,
		     const struct comp_testvec *ctemplate,
		     const struct comp_testvec *dtemplate,
		     int ctcount, int dtcount)
1850 1851
{
	const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
1852
	char *output, *decomp_output;
1853 1854 1855
	unsigned int i;
	int ret;

1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
	output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
	if (!output)
		return -ENOMEM;

	decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
	if (!decomp_output) {
		kfree(output);
		return -ENOMEM;
	}

1866
	for (i = 0; i < ctcount; i++) {
1867 1868
		int ilen;
		unsigned int dlen = COMP_BUF_SIZE;
1869

1870 1871
		memset(output, 0, COMP_BUF_SIZE);
		memset(decomp_output, 0, COMP_BUF_SIZE);
1872 1873 1874

		ilen = ctemplate[i].inlen;
		ret = crypto_comp_compress(tfm, ctemplate[i].input,
1875
					   ilen, output, &dlen);
1876 1877 1878 1879 1880 1881 1882
		if (ret) {
			printk(KERN_ERR "alg: comp: compression failed "
			       "on test %d for %s: ret=%d\n", i + 1, algo,
			       -ret);
			goto out;
		}

1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893
		ilen = dlen;
		dlen = COMP_BUF_SIZE;
		ret = crypto_comp_decompress(tfm, output,
					     ilen, decomp_output, &dlen);
		if (ret) {
			pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
			       i + 1, algo, -ret);
			goto out;
		}

		if (dlen != ctemplate[i].inlen) {
1894 1895 1896 1897 1898 1899 1900
			printk(KERN_ERR "alg: comp: Compression test %d "
			       "failed for %s: output len = %d\n", i + 1, algo,
			       dlen);
			ret = -EINVAL;
			goto out;
		}

1901 1902 1903 1904 1905
		if (memcmp(decomp_output, ctemplate[i].input,
			   ctemplate[i].inlen)) {
			pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
			       i + 1, algo);
			hexdump(decomp_output, dlen);
1906 1907 1908 1909 1910 1911
			ret = -EINVAL;
			goto out;
		}
	}

	for (i = 0; i < dtcount; i++) {
1912 1913
		int ilen;
		unsigned int dlen = COMP_BUF_SIZE;
1914

1915
		memset(decomp_output, 0, COMP_BUF_SIZE);
1916 1917 1918

		ilen = dtemplate[i].inlen;
		ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1919
					     ilen, decomp_output, &dlen);
1920 1921 1922 1923 1924 1925 1926
		if (ret) {
			printk(KERN_ERR "alg: comp: decompression failed "
			       "on test %d for %s: ret=%d\n", i + 1, algo,
			       -ret);
			goto out;
		}

1927 1928 1929 1930 1931 1932 1933 1934
		if (dlen != dtemplate[i].outlen) {
			printk(KERN_ERR "alg: comp: Decompression test %d "
			       "failed for %s: output len = %d\n", i + 1, algo,
			       dlen);
			ret = -EINVAL;
			goto out;
		}

1935
		if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
1936 1937
			printk(KERN_ERR "alg: comp: Decompression test %d "
			       "failed for %s\n", i + 1, algo);
1938
			hexdump(decomp_output, dlen);
1939 1940 1941 1942 1943 1944 1945 1946
			ret = -EINVAL;
			goto out;
		}
	}

	ret = 0;

out:
1947 1948
	kfree(decomp_output);
	kfree(output);
1949 1950 1951
	return ret;
}

1952
static int test_acomp(struct crypto_acomp *tfm,
1953
			      const struct comp_testvec *ctemplate,
1954 1955
		      const struct comp_testvec *dtemplate,
		      int ctcount, int dtcount)
1956 1957 1958
{
	const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
	unsigned int i;
1959
	char *output, *decomp_out;
1960 1961 1962
	int ret;
	struct scatterlist src, dst;
	struct acomp_req *req;
1963
	struct crypto_wait wait;
1964

1965 1966 1967 1968
	output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
	if (!output)
		return -ENOMEM;

1969 1970 1971 1972 1973 1974
	decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
	if (!decomp_out) {
		kfree(output);
		return -ENOMEM;
	}

1975 1976 1977
	for (i = 0; i < ctcount; i++) {
		unsigned int dlen = COMP_BUF_SIZE;
		int ilen = ctemplate[i].inlen;
1978
		void *input_vec;
1979

1980
		input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
1981 1982 1983 1984 1985
		if (!input_vec) {
			ret = -ENOMEM;
			goto out;
		}

1986
		memset(output, 0, dlen);
1987
		crypto_init_wait(&wait);
1988
		sg_init_one(&src, input_vec, ilen);
1989 1990 1991 1992 1993 1994
		sg_init_one(&dst, output, dlen);

		req = acomp_request_alloc(tfm);
		if (!req) {
			pr_err("alg: acomp: request alloc failed for %s\n",
			       algo);
1995
			kfree(input_vec);
1996 1997 1998 1999 2000 2001
			ret = -ENOMEM;
			goto out;
		}

		acomp_request_set_params(req, &src, &dst, ilen, dlen);
		acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2002
					   crypto_req_done, &wait);
2003

2004
		ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
2005 2006 2007
		if (ret) {
			pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
			       i + 1, algo, -ret);
2008
			kfree(input_vec);
2009 2010 2011 2012
			acomp_request_free(req);
			goto out;
		}

2013 2014 2015 2016
		ilen = req->dlen;
		dlen = COMP_BUF_SIZE;
		sg_init_one(&src, output, ilen);
		sg_init_one(&dst, decomp_out, dlen);
2017
		crypto_init_wait(&wait);
2018 2019
		acomp_request_set_params(req, &src, &dst, ilen, dlen);

2020
		ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
2021 2022 2023 2024 2025 2026 2027 2028 2029
		if (ret) {
			pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
			       i + 1, algo, -ret);
			kfree(input_vec);
			acomp_request_free(req);
			goto out;
		}

		if (req->dlen != ctemplate[i].inlen) {
2030 2031 2032
			pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
			       i + 1, algo, req->dlen);
			ret = -EINVAL;
2033
			kfree(input_vec);
2034 2035 2036 2037
			acomp_request_free(req);
			goto out;
		}

2038
		if (memcmp(input_vec, decomp_out, req->dlen)) {
2039 2040 2041 2042
			pr_err("alg: acomp: Compression test %d failed for %s\n",
			       i + 1, algo);
			hexdump(output, req->dlen);
			ret = -EINVAL;
2043
			kfree(input_vec);
2044 2045 2046 2047
			acomp_request_free(req);
			goto out;
		}

2048
		kfree(input_vec);
2049 2050 2051 2052 2053 2054
		acomp_request_free(req);
	}

	for (i = 0; i < dtcount; i++) {
		unsigned int dlen = COMP_BUF_SIZE;
		int ilen = dtemplate[i].inlen;
2055 2056
		void *input_vec;

2057
		input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
2058 2059 2060 2061
		if (!input_vec) {
			ret = -ENOMEM;
			goto out;
		}
2062

2063
		memset(output, 0, dlen);
2064
		crypto_init_wait(&wait);
2065
		sg_init_one(&src, input_vec, ilen);
2066 2067 2068 2069 2070 2071
		sg_init_one(&dst, output, dlen);

		req = acomp_request_alloc(tfm);
		if (!req) {
			pr_err("alg: acomp: request alloc failed for %s\n",
			       algo);
2072
			kfree(input_vec);
2073 2074 2075 2076 2077 2078
			ret = -ENOMEM;
			goto out;
		}

		acomp_request_set_params(req, &src, &dst, ilen, dlen);
		acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2079
					   crypto_req_done, &wait);
2080

2081
		ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
2082 2083 2084
		if (ret) {
			pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
			       i + 1, algo, -ret);
2085
			kfree(input_vec);
2086 2087 2088 2089 2090 2091 2092 2093
			acomp_request_free(req);
			goto out;
		}

		if (req->dlen != dtemplate[i].outlen) {
			pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
			       i + 1, algo, req->dlen);
			ret = -EINVAL;
2094
			kfree(input_vec);
2095 2096 2097 2098 2099 2100 2101 2102 2103
			acomp_request_free(req);
			goto out;
		}

		if (memcmp(output, dtemplate[i].output, req->dlen)) {
			pr_err("alg: acomp: Decompression test %d failed for %s\n",
			       i + 1, algo);
			hexdump(output, req->dlen);
			ret = -EINVAL;
2104
			kfree(input_vec);
2105 2106 2107 2108
			acomp_request_free(req);
			goto out;
		}

2109
		kfree(input_vec);
2110 2111 2112 2113 2114 2115
		acomp_request_free(req);
	}

	ret = 0;

out:
2116
	kfree(decomp_out);
2117
	kfree(output);
2118 2119 2120
	return ret;
}

2121 2122
static int test_cprng(struct crypto_rng *tfm,
		      const struct cprng_testvec *template,
2123 2124 2125
		      unsigned int tcount)
{
	const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
F
Felipe Contreras 已提交
2126
	int err = 0, i, j, seedsize;
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
	u8 *seed;
	char result[32];

	seedsize = crypto_rng_seedsize(tfm);

	seed = kmalloc(seedsize, GFP_KERNEL);
	if (!seed) {
		printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
		       "for %s\n", algo);
		return -ENOMEM;
	}

	for (i = 0; i < tcount; i++) {
		memset(result, 0, 32);

		memcpy(seed, template[i].v, template[i].vlen);
		memcpy(seed + template[i].vlen, template[i].key,
		       template[i].klen);
		memcpy(seed + template[i].vlen + template[i].klen,
		       template[i].dt, template[i].dtlen);

		err = crypto_rng_reset(tfm, seed, seedsize);
		if (err) {
			printk(KERN_ERR "alg: cprng: Failed to reset rng "
			       "for %s\n", algo);
			goto out;
		}

		for (j = 0; j < template[i].loops; j++) {
			err = crypto_rng_get_bytes(tfm, result,
						   template[i].rlen);
2158
			if (err < 0) {
2159 2160
				printk(KERN_ERR "alg: cprng: Failed to obtain "
				       "the correct amount of random data for "
2161 2162
				       "%s (requested %d)\n", algo,
				       template[i].rlen);
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
				goto out;
			}
		}

		err = memcmp(result, template[i].result,
			     template[i].rlen);
		if (err) {
			printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
			       i, algo);
			hexdump(result, template[i].rlen);
			err = -EINVAL;
			goto out;
		}
	}

out:
	kfree(seed);
	return err;
}

2183 2184 2185
static int alg_test_cipher(const struct alg_test_desc *desc,
			   const char *driver, u32 type, u32 mask)
{
2186
	const struct cipher_test_suite *suite = &desc->suite.cipher;
2187
	struct crypto_cipher *tfm;
2188
	int err;
2189

2190
	tfm = crypto_alloc_cipher(driver, type, mask);
2191 2192 2193 2194 2195 2196
	if (IS_ERR(tfm)) {
		printk(KERN_ERR "alg: cipher: Failed to load transform for "
		       "%s: %ld\n", driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}

2197 2198 2199
	err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
	if (!err)
		err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
2200

2201 2202 2203 2204
	crypto_free_cipher(tfm);
	return err;
}

2205 2206 2207
static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
			 u32 type, u32 mask)
{
2208 2209
	struct crypto_comp *comp;
	struct crypto_acomp *acomp;
2210
	int err;
2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
	u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;

	if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
		acomp = crypto_alloc_acomp(driver, type, mask);
		if (IS_ERR(acomp)) {
			pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
			       driver, PTR_ERR(acomp));
			return PTR_ERR(acomp);
		}
		err = test_acomp(acomp, desc->suite.comp.comp.vecs,
				 desc->suite.comp.decomp.vecs,
				 desc->suite.comp.comp.count,
				 desc->suite.comp.decomp.count);
		crypto_free_acomp(acomp);
	} else {
		comp = crypto_alloc_comp(driver, type, mask);
		if (IS_ERR(comp)) {
			pr_err("alg: comp: Failed to load transform for %s: %ld\n",
			       driver, PTR_ERR(comp));
			return PTR_ERR(comp);
		}
2232

2233 2234 2235 2236
		err = test_comp(comp, desc->suite.comp.comp.vecs,
				desc->suite.comp.decomp.vecs,
				desc->suite.comp.comp.count,
				desc->suite.comp.decomp.count);
2237

2238 2239
		crypto_free_comp(comp);
	}
2240 2241 2242
	return err;
}

2243 2244 2245 2246
static int alg_test_crc32c(const struct alg_test_desc *desc,
			   const char *driver, u32 type, u32 mask)
{
	struct crypto_shash *tfm;
2247
	__le32 val;
2248 2249 2250 2251
	int err;

	err = alg_test_hash(desc, driver, type, mask);
	if (err)
2252
		return err;
2253

2254
	tfm = crypto_alloc_shash(driver, type, mask);
2255
	if (IS_ERR(tfm)) {
2256 2257 2258 2259 2260 2261 2262 2263
		if (PTR_ERR(tfm) == -ENOENT) {
			/*
			 * This crc32c implementation is only available through
			 * ahash API, not the shash API, so the remaining part
			 * of the test is not applicable to it.
			 */
			return 0;
		}
2264 2265
		printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
		       "%ld\n", driver, PTR_ERR(tfm));
2266
		return PTR_ERR(tfm);
2267 2268 2269
	}

	do {
2270 2271
		SHASH_DESC_ON_STACK(shash, tfm);
		u32 *ctx = (u32 *)shash_desc_ctx(shash);
2272

2273 2274
		shash->tfm = tfm;
		shash->flags = 0;
2275

2276
		*ctx = 420553207;
2277
		err = crypto_shash_final(shash, (u8 *)&val);
2278 2279 2280 2281 2282 2283
		if (err) {
			printk(KERN_ERR "alg: crc32c: Operation failed for "
			       "%s: %d\n", driver, err);
			break;
		}

2284 2285 2286
		if (val != cpu_to_le32(~420553207)) {
			pr_err("alg: crc32c: Test failed for %s: %u\n",
			       driver, le32_to_cpu(val));
2287 2288 2289 2290 2291 2292 2293 2294 2295
			err = -EINVAL;
		}
	} while (0);

	crypto_free_shash(tfm);

	return err;
}

2296 2297 2298 2299 2300 2301
static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
			  u32 type, u32 mask)
{
	struct crypto_rng *rng;
	int err;

2302
	rng = crypto_alloc_rng(driver, type, mask);
2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
	if (IS_ERR(rng)) {
		printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
		       "%ld\n", driver, PTR_ERR(rng));
		return PTR_ERR(rng);
	}

	err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);

	crypto_free_rng(rng);

	return err;
}

2316

2317
static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328
			  const char *driver, u32 type, u32 mask)
{
	int ret = -EAGAIN;
	struct crypto_rng *drng;
	struct drbg_test_data test_data;
	struct drbg_string addtl, pers, testentropy;
	unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);

	if (!buf)
		return -ENOMEM;

2329
	drng = crypto_alloc_rng(driver, type, mask);
2330
	if (IS_ERR(drng)) {
2331
		printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
		       "%s\n", driver);
		kzfree(buf);
		return -ENOMEM;
	}

	test_data.testentropy = &testentropy;
	drbg_string_fill(&testentropy, test->entropy, test->entropylen);
	drbg_string_fill(&pers, test->pers, test->perslen);
	ret = crypto_drbg_reset_test(drng, &pers, &test_data);
	if (ret) {
		printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
		goto outbuf;
	}

	drbg_string_fill(&addtl, test->addtla, test->addtllen);
	if (pr) {
		drbg_string_fill(&testentropy, test->entpra, test->entprlen);
		ret = crypto_drbg_get_bytes_addtl_test(drng,
			buf, test->expectedlen, &addtl,	&test_data);
	} else {
		ret = crypto_drbg_get_bytes_addtl(drng,
			buf, test->expectedlen, &addtl);
	}
2355
	if (ret < 0) {
2356
		printk(KERN_ERR "alg: drbg: could not obtain random data for "
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
		       "driver %s\n", driver);
		goto outbuf;
	}

	drbg_string_fill(&addtl, test->addtlb, test->addtllen);
	if (pr) {
		drbg_string_fill(&testentropy, test->entprb, test->entprlen);
		ret = crypto_drbg_get_bytes_addtl_test(drng,
			buf, test->expectedlen, &addtl, &test_data);
	} else {
		ret = crypto_drbg_get_bytes_addtl(drng,
			buf, test->expectedlen, &addtl);
	}
2370
	if (ret < 0) {
2371
		printk(KERN_ERR "alg: drbg: could not obtain random data for "
2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
		       "driver %s\n", driver);
		goto outbuf;
	}

	ret = memcmp(test->expected, buf, test->expectedlen);

outbuf:
	crypto_free_rng(drng);
	kzfree(buf);
	return ret;
}


static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
			 u32 type, u32 mask)
{
	int err = 0;
	int pr = 0;
	int i = 0;
2391
	const struct drbg_testvec *template = desc->suite.drbg.vecs;
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
	unsigned int tcount = desc->suite.drbg.count;

	if (0 == memcmp(driver, "drbg_pr_", 8))
		pr = 1;

	for (i = 0; i < tcount; i++) {
		err = drbg_cavs_test(&template[i], pr, driver, type, mask);
		if (err) {
			printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
			       i, driver);
			err = -EINVAL;
			break;
		}
	}
	return err;

}

2410
static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
2411 2412 2413 2414 2415
		       const char *alg)
{
	struct kpp_request *req;
	void *input_buf = NULL;
	void *output_buf = NULL;
2416 2417 2418
	void *a_public = NULL;
	void *a_ss = NULL;
	void *shared_secret = NULL;
2419
	struct crypto_wait wait;
2420 2421 2422 2423 2424 2425 2426 2427
	unsigned int out_len_max;
	int err = -ENOMEM;
	struct scatterlist src, dst;

	req = kpp_request_alloc(tfm, GFP_KERNEL);
	if (!req)
		return err;

2428
	crypto_init_wait(&wait);
2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445

	err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
	if (err < 0)
		goto free_req;

	out_len_max = crypto_kpp_maxsize(tfm);
	output_buf = kzalloc(out_len_max, GFP_KERNEL);
	if (!output_buf) {
		err = -ENOMEM;
		goto free_req;
	}

	/* Use appropriate parameter as base */
	kpp_request_set_input(req, NULL, 0);
	sg_init_one(&dst, output_buf, out_len_max);
	kpp_request_set_output(req, &dst, out_len_max);
	kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2446
				 crypto_req_done, &wait);
2447

2448
	/* Compute party A's public key */
2449
	err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
2450
	if (err) {
2451
		pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
2452 2453 2454
		       alg, err);
		goto free_output;
	}
2455 2456 2457

	if (vec->genkey) {
		/* Save party A's public key */
2458
		a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
		if (!a_public) {
			err = -ENOMEM;
			goto free_output;
		}
	} else {
		/* Verify calculated public key */
		if (memcmp(vec->expected_a_public, sg_virt(req->dst),
			   vec->expected_a_public_size)) {
			pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
			       alg);
			err = -EINVAL;
			goto free_output;
		}
2472 2473 2474
	}

	/* Calculate shared secret key by using counter part (b) public key. */
2475
	input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
2476 2477 2478 2479 2480 2481 2482 2483 2484 2485
	if (!input_buf) {
		err = -ENOMEM;
		goto free_output;
	}

	sg_init_one(&src, input_buf, vec->b_public_size);
	sg_init_one(&dst, output_buf, out_len_max);
	kpp_request_set_input(req, &src, vec->b_public_size);
	kpp_request_set_output(req, &dst, out_len_max);
	kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2486 2487
				 crypto_req_done, &wait);
	err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
2488
	if (err) {
2489
		pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
2490 2491 2492
		       alg, err);
		goto free_all;
	}
2493 2494 2495

	if (vec->genkey) {
		/* Save the shared secret obtained by party A */
2496
		a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
		if (!a_ss) {
			err = -ENOMEM;
			goto free_all;
		}

		/*
		 * Calculate party B's shared secret by using party A's
		 * public key.
		 */
		err = crypto_kpp_set_secret(tfm, vec->b_secret,
					    vec->b_secret_size);
		if (err < 0)
			goto free_all;

		sg_init_one(&src, a_public, vec->expected_a_public_size);
		sg_init_one(&dst, output_buf, out_len_max);
		kpp_request_set_input(req, &src, vec->expected_a_public_size);
		kpp_request_set_output(req, &dst, out_len_max);
		kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2516 2517 2518
					 crypto_req_done, &wait);
		err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
				      &wait);
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529
		if (err) {
			pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
			       alg, err);
			goto free_all;
		}

		shared_secret = a_ss;
	} else {
		shared_secret = (void *)vec->expected_ss;
	}

2530 2531 2532 2533
	/*
	 * verify shared secret from which the user will derive
	 * secret key by executing whatever hash it has chosen
	 */
2534
	if (memcmp(shared_secret, sg_virt(req->dst),
2535 2536 2537 2538 2539 2540 2541
		   vec->expected_ss_size)) {
		pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
		       alg);
		err = -EINVAL;
	}

free_all:
2542
	kfree(a_ss);
2543 2544
	kfree(input_buf);
free_output:
2545
	kfree(a_public);
2546 2547 2548 2549 2550 2551 2552
	kfree(output_buf);
free_req:
	kpp_request_free(req);
	return err;
}

static int test_kpp(struct crypto_kpp *tfm, const char *alg,
2553
		    const struct kpp_testvec *vecs, unsigned int tcount)
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573
{
	int ret, i;

	for (i = 0; i < tcount; i++) {
		ret = do_test_kpp(tfm, vecs++, alg);
		if (ret) {
			pr_err("alg: %s: test failed on vector %d, err=%d\n",
			       alg, i + 1, ret);
			return ret;
		}
	}
	return 0;
}

static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
			u32 type, u32 mask)
{
	struct crypto_kpp *tfm;
	int err = 0;

2574
	tfm = crypto_alloc_kpp(driver, type, mask);
2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
	if (IS_ERR(tfm)) {
		pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
		       driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}
	if (desc->suite.kpp.vecs)
		err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
			       desc->suite.kpp.count);

	crypto_free_kpp(tfm);
	return err;
}

2588 2589 2590 2591 2592 2593
static u8 *test_pack_u32(u8 *dst, u32 val)
{
	memcpy(dst, &val, sizeof(val));
	return dst + sizeof(val);
}

2594
static int test_akcipher_one(struct crypto_akcipher *tfm,
2595
			     const struct akcipher_testvec *vecs)
2596
{
2597
	char *xbuf[XBUFSIZE];
2598 2599 2600
	struct akcipher_request *req;
	void *outbuf_enc = NULL;
	void *outbuf_dec = NULL;
2601
	struct crypto_wait wait;
2602 2603
	unsigned int out_len_max, out_len = 0;
	int err = -ENOMEM;
2604
	struct scatterlist src, dst, src_tab[3];
2605 2606 2607
	const char *m, *c;
	unsigned int m_size, c_size;
	const char *op;
2608
	u8 *key, *ptr;
2609

2610 2611 2612
	if (testmgr_alloc_buf(xbuf))
		return err;

2613 2614
	req = akcipher_request_alloc(tfm, GFP_KERNEL);
	if (!req)
2615
		goto free_xbuf;
2616

2617
	crypto_init_wait(&wait);
2618

2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
	key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
		      GFP_KERNEL);
	if (!key)
		goto free_xbuf;
	memcpy(key, vecs->key, vecs->key_len);
	ptr = key + vecs->key_len;
	ptr = test_pack_u32(ptr, vecs->algo);
	ptr = test_pack_u32(ptr, vecs->param_len);
	memcpy(ptr, vecs->params, vecs->param_len);

2629
	if (vecs->public_key_vec)
2630
		err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
2631
	else
2632
		err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
2633
	if (err)
2634 2635
		goto free_req;

2636 2637 2638 2639
	/*
	 * First run test which do not require a private key, such as
	 * encrypt or verify.
	 */
2640 2641
	err = -ENOMEM;
	out_len_max = crypto_akcipher_maxsize(tfm);
2642 2643 2644 2645
	outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
	if (!outbuf_enc)
		goto free_req;

2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661
	if (!vecs->siggen_sigver_test) {
		m = vecs->m;
		m_size = vecs->m_size;
		c = vecs->c;
		c_size = vecs->c_size;
		op = "encrypt";
	} else {
		/* Swap args so we could keep plaintext (digest)
		 * in vecs->m, and cooked signature in vecs->c.
		 */
		m = vecs->c; /* signature */
		m_size = vecs->c_size;
		c = vecs->m; /* digest */
		c_size = vecs->m_size;
		op = "verify";
	}
2662

2663 2664 2665
	if (WARN_ON(m_size > PAGE_SIZE))
		goto free_all;
	memcpy(xbuf[0], m, m_size);
2666

2667
	sg_init_table(src_tab, 3);
2668
	sg_set_buf(&src_tab[0], xbuf[0], 8);
2669
	sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680
	if (vecs->siggen_sigver_test) {
		if (WARN_ON(c_size > PAGE_SIZE))
			goto free_all;
		memcpy(xbuf[1], c, c_size);
		sg_set_buf(&src_tab[2], xbuf[1], c_size);
		akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
	} else {
		sg_init_one(&dst, outbuf_enc, out_len_max);
		akcipher_request_set_crypt(req, src_tab, &dst, m_size,
					   out_len_max);
	}
2681
	akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2682
				      crypto_req_done, &wait);
2683

2684
	err = crypto_wait_req(vecs->siggen_sigver_test ?
2685 2686
			      /* Run asymmetric signature verification */
			      crypto_akcipher_verify(req) :
2687 2688
			      /* Run asymmetric encrypt */
			      crypto_akcipher_encrypt(req), &wait);
2689
	if (err) {
2690
		pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
2691 2692
		goto free_all;
	}
2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707
	if (!vecs->siggen_sigver_test) {
		if (req->dst_len != c_size) {
			pr_err("alg: akcipher: %s test failed. Invalid output len\n",
			       op);
			err = -EINVAL;
			goto free_all;
		}
		/* verify that encrypted message is equal to expected */
		if (memcmp(c, outbuf_enc, c_size) != 0) {
			pr_err("alg: akcipher: %s test failed. Invalid output\n",
			       op);
			hexdump(outbuf_enc, c_size);
			err = -EINVAL;
			goto free_all;
		}
2708
	}
2709 2710 2711 2712 2713

	/*
	 * Don't invoke (decrypt or sign) test which require a private key
	 * for vectors with only a public key.
	 */
2714 2715 2716 2717 2718 2719 2720 2721 2722
	if (vecs->public_key_vec) {
		err = 0;
		goto free_all;
	}
	outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
	if (!outbuf_dec) {
		err = -ENOMEM;
		goto free_all;
	}
2723

2724 2725
	op = vecs->siggen_sigver_test ? "sign" : "decrypt";
	if (WARN_ON(c_size > PAGE_SIZE))
2726
		goto free_all;
2727
	memcpy(xbuf[0], c, c_size);
2728

2729
	sg_init_one(&src, xbuf[0], c_size);
2730
	sg_init_one(&dst, outbuf_dec, out_len_max);
2731
	crypto_init_wait(&wait);
2732
	akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
2733

2734
	err = crypto_wait_req(vecs->siggen_sigver_test ?
2735 2736
			      /* Run asymmetric signature generation */
			      crypto_akcipher_sign(req) :
2737 2738
			      /* Run asymmetric decrypt */
			      crypto_akcipher_decrypt(req), &wait);
2739
	if (err) {
2740
		pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
2741 2742 2743
		goto free_all;
	}
	out_len = req->dst_len;
2744 2745 2746
	if (out_len < m_size) {
		pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
		       op, out_len);
2747 2748 2749 2750
		err = -EINVAL;
		goto free_all;
	}
	/* verify that decrypted message is equal to the original msg */
2751 2752 2753
	if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
	    memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
		pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
2754
		hexdump(outbuf_dec, out_len);
2755 2756 2757 2758 2759 2760 2761
		err = -EINVAL;
	}
free_all:
	kfree(outbuf_dec);
	kfree(outbuf_enc);
free_req:
	akcipher_request_free(req);
2762
	kfree(key);
2763 2764
free_xbuf:
	testmgr_free_buf(xbuf);
2765 2766 2767
	return err;
}

2768
static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
2769 2770
			 const struct akcipher_testvec *vecs,
			 unsigned int tcount)
2771
{
2772 2773
	const char *algo =
		crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
2774 2775 2776
	int ret, i;

	for (i = 0; i < tcount; i++) {
2777 2778 2779
		ret = test_akcipher_one(tfm, vecs++);
		if (!ret)
			continue;
2780

2781 2782
		pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
		       i + 1, algo, ret);
2783 2784
		return ret;
	}
2785 2786 2787 2788 2789 2790 2791 2792 2793
	return 0;
}

static int alg_test_akcipher(const struct alg_test_desc *desc,
			     const char *driver, u32 type, u32 mask)
{
	struct crypto_akcipher *tfm;
	int err = 0;

2794
	tfm = crypto_alloc_akcipher(driver, type, mask);
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807
	if (IS_ERR(tfm)) {
		pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
		       driver, PTR_ERR(tfm));
		return PTR_ERR(tfm);
	}
	if (desc->suite.akcipher.vecs)
		err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
				    desc->suite.akcipher.count);

	crypto_free_akcipher(tfm);
	return err;
}

2808 2809 2810 2811 2812 2813
static int alg_test_null(const struct alg_test_desc *desc,
			     const char *driver, u32 type, u32 mask)
{
	return 0;
}

2814 2815
#define __VECS(tv)	{ .vecs = tv, .count = ARRAY_SIZE(tv) }

2816 2817 2818
/* Please keep this list sorted by algorithm name. */
static const struct alg_test_desc alg_test_descs[] = {
	{
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830
		.alg = "adiantum(xchacha12,aes)",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(adiantum_xchacha12_aes_tv_template)
		},
	}, {
		.alg = "adiantum(xchacha20,aes)",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(adiantum_xchacha20_aes_tv_template)
		},
	}, {
2831 2832 2833
		.alg = "aegis128",
		.test = alg_test_aead,
		.suite = {
2834
			.aead = __VECS(aegis128_tv_template)
2835 2836 2837 2838 2839
		}
	}, {
		.alg = "aegis128l",
		.test = alg_test_aead,
		.suite = {
2840
			.aead = __VECS(aegis128l_tv_template)
2841 2842 2843 2844 2845
		}
	}, {
		.alg = "aegis256",
		.test = alg_test_aead,
		.suite = {
2846
			.aead = __VECS(aegis256_tv_template)
2847 2848
		}
	}, {
2849 2850 2851
		.alg = "ansi_cprng",
		.test = alg_test_cprng,
		.suite = {
2852
			.cprng = __VECS(ansi_cprng_aes_tv_template)
2853
		}
2854 2855 2856 2857
	}, {
		.alg = "authenc(hmac(md5),ecb(cipher_null))",
		.test = alg_test_aead,
		.suite = {
2858
			.aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
2859
		}
2860
	}, {
2861
		.alg = "authenc(hmac(sha1),cbc(aes))",
2862
		.test = alg_test_aead,
2863
		.fips_allowed = 1,
2864
		.suite = {
2865
			.aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
2866 2867
		}
	}, {
2868
		.alg = "authenc(hmac(sha1),cbc(des))",
2869 2870
		.test = alg_test_aead,
		.suite = {
2871
			.aead = __VECS(hmac_sha1_des_cbc_tv_temp)
2872 2873
		}
	}, {
2874
		.alg = "authenc(hmac(sha1),cbc(des3_ede))",
2875
		.test = alg_test_aead,
2876
		.fips_allowed = 1,
2877
		.suite = {
2878
			.aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
2879
		}
2880 2881 2882 2883
	}, {
		.alg = "authenc(hmac(sha1),ctr(aes))",
		.test = alg_test_null,
		.fips_allowed = 1,
2884 2885 2886 2887
	}, {
		.alg = "authenc(hmac(sha1),ecb(cipher_null))",
		.test = alg_test_aead,
		.suite = {
2888
			.aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
2889
		}
2890 2891 2892 2893
	}, {
		.alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
		.test = alg_test_null,
		.fips_allowed = 1,
2894
	}, {
2895
		.alg = "authenc(hmac(sha224),cbc(des))",
2896 2897
		.test = alg_test_aead,
		.suite = {
2898
			.aead = __VECS(hmac_sha224_des_cbc_tv_temp)
2899 2900
		}
	}, {
2901
		.alg = "authenc(hmac(sha224),cbc(des3_ede))",
2902
		.test = alg_test_aead,
2903
		.fips_allowed = 1,
2904
		.suite = {
2905
			.aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
2906
		}
2907
	}, {
2908
		.alg = "authenc(hmac(sha256),cbc(aes))",
2909
		.test = alg_test_aead,
2910
		.fips_allowed = 1,
2911
		.suite = {
2912
			.aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
2913 2914
		}
	}, {
2915
		.alg = "authenc(hmac(sha256),cbc(des))",
2916 2917
		.test = alg_test_aead,
		.suite = {
2918
			.aead = __VECS(hmac_sha256_des_cbc_tv_temp)
2919 2920
		}
	}, {
2921
		.alg = "authenc(hmac(sha256),cbc(des3_ede))",
2922
		.test = alg_test_aead,
2923
		.fips_allowed = 1,
2924
		.suite = {
2925
			.aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
2926
		}
2927 2928 2929 2930
	}, {
		.alg = "authenc(hmac(sha256),ctr(aes))",
		.test = alg_test_null,
		.fips_allowed = 1,
2931 2932 2933 2934
	}, {
		.alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
		.test = alg_test_null,
		.fips_allowed = 1,
2935
	}, {
2936
		.alg = "authenc(hmac(sha384),cbc(des))",
2937 2938
		.test = alg_test_aead,
		.suite = {
2939
			.aead = __VECS(hmac_sha384_des_cbc_tv_temp)
2940 2941
		}
	}, {
2942
		.alg = "authenc(hmac(sha384),cbc(des3_ede))",
2943
		.test = alg_test_aead,
2944
		.fips_allowed = 1,
2945
		.suite = {
2946
			.aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
2947
		}
2948 2949 2950 2951
	}, {
		.alg = "authenc(hmac(sha384),ctr(aes))",
		.test = alg_test_null,
		.fips_allowed = 1,
2952 2953 2954 2955
	}, {
		.alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
		.test = alg_test_null,
		.fips_allowed = 1,
2956
	}, {
2957
		.alg = "authenc(hmac(sha512),cbc(aes))",
2958
		.fips_allowed = 1,
2959 2960
		.test = alg_test_aead,
		.suite = {
2961
			.aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
2962 2963
		}
	}, {
2964
		.alg = "authenc(hmac(sha512),cbc(des))",
2965 2966
		.test = alg_test_aead,
		.suite = {
2967
			.aead = __VECS(hmac_sha512_des_cbc_tv_temp)
2968 2969
		}
	}, {
2970
		.alg = "authenc(hmac(sha512),cbc(des3_ede))",
2971
		.test = alg_test_aead,
2972
		.fips_allowed = 1,
2973
		.suite = {
2974
			.aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
2975
		}
2976 2977 2978 2979
	}, {
		.alg = "authenc(hmac(sha512),ctr(aes))",
		.test = alg_test_null,
		.fips_allowed = 1,
2980 2981 2982 2983
	}, {
		.alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
		.test = alg_test_null,
		.fips_allowed = 1,
2984
	}, {
2985
		.alg = "cbc(aes)",
2986
		.test = alg_test_skcipher,
2987
		.fips_allowed = 1,
2988
		.suite = {
2989 2990
			.cipher = __VECS(aes_cbc_tv_template)
		},
2991 2992
	}, {
		.alg = "cbc(anubis)",
2993
		.test = alg_test_skcipher,
2994
		.suite = {
2995 2996
			.cipher = __VECS(anubis_cbc_tv_template)
		},
2997 2998
	}, {
		.alg = "cbc(blowfish)",
2999
		.test = alg_test_skcipher,
3000
		.suite = {
3001 3002
			.cipher = __VECS(bf_cbc_tv_template)
		},
3003 3004
	}, {
		.alg = "cbc(camellia)",
3005
		.test = alg_test_skcipher,
3006
		.suite = {
3007 3008
			.cipher = __VECS(camellia_cbc_tv_template)
		},
3009 3010 3011 3012
	}, {
		.alg = "cbc(cast5)",
		.test = alg_test_skcipher,
		.suite = {
3013 3014
			.cipher = __VECS(cast5_cbc_tv_template)
		},
3015 3016 3017 3018
	}, {
		.alg = "cbc(cast6)",
		.test = alg_test_skcipher,
		.suite = {
3019 3020
			.cipher = __VECS(cast6_cbc_tv_template)
		},
3021 3022
	}, {
		.alg = "cbc(des)",
3023
		.test = alg_test_skcipher,
3024
		.suite = {
3025 3026
			.cipher = __VECS(des_cbc_tv_template)
		},
3027 3028
	}, {
		.alg = "cbc(des3_ede)",
3029
		.test = alg_test_skcipher,
3030
		.fips_allowed = 1,
3031
		.suite = {
3032 3033
			.cipher = __VECS(des3_ede_cbc_tv_template)
		},
3034 3035 3036 3037 3038 3039 3040
	}, {
		/* Same as cbc(aes) except the key is stored in
		 * hardware secure memory which we reference by index
		 */
		.alg = "cbc(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
3041 3042 3043 3044
	}, {
		.alg = "cbc(serpent)",
		.test = alg_test_skcipher,
		.suite = {
3045 3046
			.cipher = __VECS(serpent_cbc_tv_template)
		},
3047 3048 3049 3050 3051 3052
	}, {
		.alg = "cbc(sm4)",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(sm4_cbc_tv_template)
		}
3053 3054
	}, {
		.alg = "cbc(twofish)",
3055
		.test = alg_test_skcipher,
3056
		.suite = {
3057 3058
			.cipher = __VECS(tf_cbc_tv_template)
		},
3059 3060 3061 3062 3063 3064 3065
	}, {
		.alg = "cbcmac(aes)",
		.fips_allowed = 1,
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(aes_cbcmac_tv_template)
		}
3066 3067 3068
	}, {
		.alg = "ccm(aes)",
		.test = alg_test_aead,
3069
		.fips_allowed = 1,
3070
		.suite = {
3071
			.aead = __VECS(aes_ccm_tv_template)
3072
		}
3073 3074 3075 3076 3077 3078 3079
	}, {
		.alg = "cfb(aes)",
		.test = alg_test_skcipher,
		.fips_allowed = 1,
		.suite = {
			.cipher = __VECS(aes_cfb_tv_template)
		},
3080 3081 3082 3083
	}, {
		.alg = "chacha20",
		.test = alg_test_skcipher,
		.suite = {
3084 3085
			.cipher = __VECS(chacha20_tv_template)
		},
3086 3087
	}, {
		.alg = "cmac(aes)",
3088
		.fips_allowed = 1,
3089 3090
		.test = alg_test_hash,
		.suite = {
3091
			.hash = __VECS(aes_cmac128_tv_template)
3092 3093 3094
		}
	}, {
		.alg = "cmac(des3_ede)",
3095
		.fips_allowed = 1,
3096 3097
		.test = alg_test_hash,
		.suite = {
3098
			.hash = __VECS(des3_ede_cmac64_tv_template)
3099
		}
3100 3101 3102
	}, {
		.alg = "compress_null",
		.test = alg_test_null,
3103 3104 3105
	}, {
		.alg = "crc32",
		.test = alg_test_hash,
3106
		.fips_allowed = 1,
3107
		.suite = {
3108
			.hash = __VECS(crc32_tv_template)
3109
		}
3110 3111
	}, {
		.alg = "crc32c",
3112
		.test = alg_test_crc32c,
3113
		.fips_allowed = 1,
3114
		.suite = {
3115
			.hash = __VECS(crc32c_tv_template)
3116
		}
3117 3118 3119 3120 3121
	}, {
		.alg = "crct10dif",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3122
			.hash = __VECS(crct10dif_tv_template)
3123
		}
3124 3125 3126
	}, {
		.alg = "ctr(aes)",
		.test = alg_test_skcipher,
3127
		.fips_allowed = 1,
3128
		.suite = {
3129
			.cipher = __VECS(aes_ctr_tv_template)
3130
		}
3131 3132 3133 3134
	}, {
		.alg = "ctr(blowfish)",
		.test = alg_test_skcipher,
		.suite = {
3135
			.cipher = __VECS(bf_ctr_tv_template)
3136
		}
3137 3138 3139 3140
	}, {
		.alg = "ctr(camellia)",
		.test = alg_test_skcipher,
		.suite = {
3141
			.cipher = __VECS(camellia_ctr_tv_template)
3142
		}
3143 3144 3145 3146
	}, {
		.alg = "ctr(cast5)",
		.test = alg_test_skcipher,
		.suite = {
3147
			.cipher = __VECS(cast5_ctr_tv_template)
3148
		}
3149 3150 3151 3152
	}, {
		.alg = "ctr(cast6)",
		.test = alg_test_skcipher,
		.suite = {
3153
			.cipher = __VECS(cast6_ctr_tv_template)
3154
		}
3155 3156 3157 3158
	}, {
		.alg = "ctr(des)",
		.test = alg_test_skcipher,
		.suite = {
3159
			.cipher = __VECS(des_ctr_tv_template)
3160
		}
3161 3162 3163
	}, {
		.alg = "ctr(des3_ede)",
		.test = alg_test_skcipher,
3164
		.fips_allowed = 1,
3165
		.suite = {
3166
			.cipher = __VECS(des3_ede_ctr_tv_template)
3167
		}
3168 3169 3170 3171 3172 3173 3174
	}, {
		/* Same as ctr(aes) except the key is stored in
		 * hardware secure memory which we reference by index
		 */
		.alg = "ctr(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
3175 3176 3177 3178
	}, {
		.alg = "ctr(serpent)",
		.test = alg_test_skcipher,
		.suite = {
3179
			.cipher = __VECS(serpent_ctr_tv_template)
3180
		}
3181 3182 3183 3184 3185 3186
	}, {
		.alg = "ctr(sm4)",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(sm4_ctr_tv_template)
		}
3187 3188 3189 3190
	}, {
		.alg = "ctr(twofish)",
		.test = alg_test_skcipher,
		.suite = {
3191
			.cipher = __VECS(tf_ctr_tv_template)
3192
		}
3193 3194
	}, {
		.alg = "cts(cbc(aes))",
3195
		.test = alg_test_skcipher,
3196
		.fips_allowed = 1,
3197
		.suite = {
3198
			.cipher = __VECS(cts_mode_tv_template)
3199 3200 3201 3202
		}
	}, {
		.alg = "deflate",
		.test = alg_test_comp,
3203
		.fips_allowed = 1,
3204 3205
		.suite = {
			.comp = {
3206 3207
				.comp = __VECS(deflate_comp_tv_template),
				.decomp = __VECS(deflate_decomp_tv_template)
3208 3209
			}
		}
3210 3211 3212 3213 3214
	}, {
		.alg = "dh",
		.test = alg_test_kpp,
		.fips_allowed = 1,
		.suite = {
3215
			.kpp = __VECS(dh_tv_template)
3216
		}
3217 3218 3219
	}, {
		.alg = "digest_null",
		.test = alg_test_null,
3220 3221 3222 3223 3224
	}, {
		.alg = "drbg_nopr_ctr_aes128",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3225
			.drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
3226 3227 3228 3229 3230 3231
		}
	}, {
		.alg = "drbg_nopr_ctr_aes192",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3232
			.drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
3233 3234 3235 3236 3237 3238
		}
	}, {
		.alg = "drbg_nopr_ctr_aes256",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3239
			.drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253
		}
	}, {
		/*
		 * There is no need to specifically test the DRBG with every
		 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
		 */
		.alg = "drbg_nopr_hmac_sha1",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_nopr_hmac_sha256",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3254
			.drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273
		}
	}, {
		/* covered by drbg_nopr_hmac_sha256 test */
		.alg = "drbg_nopr_hmac_sha384",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_nopr_hmac_sha512",
		.test = alg_test_null,
		.fips_allowed = 1,
	}, {
		.alg = "drbg_nopr_sha1",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_nopr_sha256",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3274
			.drbg = __VECS(drbg_nopr_sha256_tv_template)
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289
		}
	}, {
		/* covered by drbg_nopr_sha256 test */
		.alg = "drbg_nopr_sha384",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_nopr_sha512",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_ctr_aes128",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3290
			.drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309
		}
	}, {
		/* covered by drbg_pr_ctr_aes128 test */
		.alg = "drbg_pr_ctr_aes192",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_ctr_aes256",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_hmac_sha1",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_hmac_sha256",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3310
			.drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329
		}
	}, {
		/* covered by drbg_pr_hmac_sha256 test */
		.alg = "drbg_pr_hmac_sha384",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_hmac_sha512",
		.test = alg_test_null,
		.fips_allowed = 1,
	}, {
		.alg = "drbg_pr_sha1",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_sha256",
		.test = alg_test_drbg,
		.fips_allowed = 1,
		.suite = {
3330
			.drbg = __VECS(drbg_pr_sha256_tv_template)
3331 3332 3333 3334 3335 3336 3337 3338 3339 3340
		}
	}, {
		/* covered by drbg_pr_sha256 test */
		.alg = "drbg_pr_sha384",
		.fips_allowed = 1,
		.test = alg_test_null,
	}, {
		.alg = "drbg_pr_sha512",
		.fips_allowed = 1,
		.test = alg_test_null,
3341 3342
	}, {
		.alg = "ecb(aes)",
3343
		.test = alg_test_skcipher,
3344
		.fips_allowed = 1,
3345
		.suite = {
3346
			.cipher = __VECS(aes_tv_template)
3347 3348 3349
		}
	}, {
		.alg = "ecb(anubis)",
3350
		.test = alg_test_skcipher,
3351
		.suite = {
3352
			.cipher = __VECS(anubis_tv_template)
3353 3354 3355
		}
	}, {
		.alg = "ecb(arc4)",
3356
		.test = alg_test_skcipher,
3357
		.suite = {
3358
			.cipher = __VECS(arc4_tv_template)
3359 3360 3361
		}
	}, {
		.alg = "ecb(blowfish)",
3362
		.test = alg_test_skcipher,
3363
		.suite = {
3364
			.cipher = __VECS(bf_tv_template)
3365 3366 3367
		}
	}, {
		.alg = "ecb(camellia)",
3368
		.test = alg_test_skcipher,
3369
		.suite = {
3370
			.cipher = __VECS(camellia_tv_template)
3371 3372 3373
		}
	}, {
		.alg = "ecb(cast5)",
3374
		.test = alg_test_skcipher,
3375
		.suite = {
3376
			.cipher = __VECS(cast5_tv_template)
3377 3378 3379
		}
	}, {
		.alg = "ecb(cast6)",
3380
		.test = alg_test_skcipher,
3381
		.suite = {
3382
			.cipher = __VECS(cast6_tv_template)
3383
		}
3384 3385 3386
	}, {
		.alg = "ecb(cipher_null)",
		.test = alg_test_null,
3387
		.fips_allowed = 1,
3388 3389
	}, {
		.alg = "ecb(des)",
3390
		.test = alg_test_skcipher,
3391
		.suite = {
3392
			.cipher = __VECS(des_tv_template)
3393 3394 3395
		}
	}, {
		.alg = "ecb(des3_ede)",
3396
		.test = alg_test_skcipher,
3397
		.fips_allowed = 1,
3398
		.suite = {
3399
			.cipher = __VECS(des3_ede_tv_template)
3400
		}
3401 3402 3403 3404 3405
	}, {
		.alg = "ecb(fcrypt)",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = {
3406 3407
				.vecs = fcrypt_pcbc_tv_template,
				.count = 1
3408 3409
			}
		}
3410 3411
	}, {
		.alg = "ecb(khazad)",
3412
		.test = alg_test_skcipher,
3413
		.suite = {
3414
			.cipher = __VECS(khazad_tv_template)
3415
		}
3416 3417 3418 3419 3420 3421 3422
	}, {
		/* Same as ecb(aes) except the key is stored in
		 * hardware secure memory which we reference by index
		 */
		.alg = "ecb(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
3423 3424
	}, {
		.alg = "ecb(seed)",
3425
		.test = alg_test_skcipher,
3426
		.suite = {
3427
			.cipher = __VECS(seed_tv_template)
3428 3429 3430
		}
	}, {
		.alg = "ecb(serpent)",
3431
		.test = alg_test_skcipher,
3432
		.suite = {
3433
			.cipher = __VECS(serpent_tv_template)
3434
		}
3435 3436 3437 3438
	}, {
		.alg = "ecb(sm4)",
		.test = alg_test_skcipher,
		.suite = {
3439
			.cipher = __VECS(sm4_tv_template)
3440
		}
3441 3442
	}, {
		.alg = "ecb(tea)",
3443
		.test = alg_test_skcipher,
3444
		.suite = {
3445
			.cipher = __VECS(tea_tv_template)
3446 3447 3448
		}
	}, {
		.alg = "ecb(tnepres)",
3449
		.test = alg_test_skcipher,
3450
		.suite = {
3451
			.cipher = __VECS(tnepres_tv_template)
3452 3453 3454
		}
	}, {
		.alg = "ecb(twofish)",
3455
		.test = alg_test_skcipher,
3456
		.suite = {
3457
			.cipher = __VECS(tf_tv_template)
3458 3459 3460
		}
	}, {
		.alg = "ecb(xeta)",
3461
		.test = alg_test_skcipher,
3462
		.suite = {
3463
			.cipher = __VECS(xeta_tv_template)
3464 3465 3466
		}
	}, {
		.alg = "ecb(xtea)",
3467
		.test = alg_test_skcipher,
3468
		.suite = {
3469
			.cipher = __VECS(xtea_tv_template)
3470
		}
3471 3472 3473 3474 3475
	}, {
		.alg = "ecdh",
		.test = alg_test_kpp,
		.fips_allowed = 1,
		.suite = {
3476
			.kpp = __VECS(ecdh_tv_template)
3477
		}
3478 3479 3480
	}, {
		.alg = "gcm(aes)",
		.test = alg_test_aead,
3481
		.fips_allowed = 1,
3482
		.suite = {
3483
			.aead = __VECS(aes_gcm_tv_template)
3484
		}
3485 3486 3487
	}, {
		.alg = "ghash",
		.test = alg_test_hash,
3488
		.fips_allowed = 1,
3489
		.suite = {
3490
			.hash = __VECS(ghash_tv_template)
3491
		}
3492 3493 3494 3495
	}, {
		.alg = "hmac(md5)",
		.test = alg_test_hash,
		.suite = {
3496
			.hash = __VECS(hmac_md5_tv_template)
3497 3498 3499 3500 3501
		}
	}, {
		.alg = "hmac(rmd128)",
		.test = alg_test_hash,
		.suite = {
3502
			.hash = __VECS(hmac_rmd128_tv_template)
3503 3504 3505 3506 3507
		}
	}, {
		.alg = "hmac(rmd160)",
		.test = alg_test_hash,
		.suite = {
3508
			.hash = __VECS(hmac_rmd160_tv_template)
3509 3510 3511 3512
		}
	}, {
		.alg = "hmac(sha1)",
		.test = alg_test_hash,
3513
		.fips_allowed = 1,
3514
		.suite = {
3515
			.hash = __VECS(hmac_sha1_tv_template)
3516 3517 3518 3519
		}
	}, {
		.alg = "hmac(sha224)",
		.test = alg_test_hash,
3520
		.fips_allowed = 1,
3521
		.suite = {
3522
			.hash = __VECS(hmac_sha224_tv_template)
3523 3524 3525 3526
		}
	}, {
		.alg = "hmac(sha256)",
		.test = alg_test_hash,
3527
		.fips_allowed = 1,
3528
		.suite = {
3529
			.hash = __VECS(hmac_sha256_tv_template)
3530
		}
3531 3532 3533 3534 3535
	}, {
		.alg = "hmac(sha3-224)",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3536
			.hash = __VECS(hmac_sha3_224_tv_template)
3537 3538 3539 3540 3541 3542
		}
	}, {
		.alg = "hmac(sha3-256)",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3543
			.hash = __VECS(hmac_sha3_256_tv_template)
3544 3545 3546 3547 3548 3549
		}
	}, {
		.alg = "hmac(sha3-384)",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3550
			.hash = __VECS(hmac_sha3_384_tv_template)
3551 3552 3553 3554 3555 3556
		}
	}, {
		.alg = "hmac(sha3-512)",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3557
			.hash = __VECS(hmac_sha3_512_tv_template)
3558
		}
3559 3560 3561
	}, {
		.alg = "hmac(sha384)",
		.test = alg_test_hash,
3562
		.fips_allowed = 1,
3563
		.suite = {
3564
			.hash = __VECS(hmac_sha384_tv_template)
3565 3566 3567 3568
		}
	}, {
		.alg = "hmac(sha512)",
		.test = alg_test_hash,
3569
		.fips_allowed = 1,
3570
		.suite = {
3571
			.hash = __VECS(hmac_sha512_tv_template)
3572
		}
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584
	}, {
		.alg = "hmac(streebog256)",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(hmac_streebog256_tv_template)
		}
	}, {
		.alg = "hmac(streebog512)",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(hmac_streebog512_tv_template)
		}
3585 3586 3587 3588
	}, {
		.alg = "jitterentropy_rng",
		.fips_allowed = 1,
		.test = alg_test_null,
3589 3590 3591 3592 3593
	}, {
		.alg = "kw(aes)",
		.test = alg_test_skcipher,
		.fips_allowed = 1,
		.suite = {
3594
			.cipher = __VECS(aes_kw_tv_template)
3595
		}
3596 3597
	}, {
		.alg = "lrw(aes)",
3598
		.test = alg_test_skcipher,
3599
		.suite = {
3600
			.cipher = __VECS(aes_lrw_tv_template)
3601
		}
3602 3603 3604 3605
	}, {
		.alg = "lrw(camellia)",
		.test = alg_test_skcipher,
		.suite = {
3606
			.cipher = __VECS(camellia_lrw_tv_template)
3607
		}
3608 3609 3610 3611
	}, {
		.alg = "lrw(cast6)",
		.test = alg_test_skcipher,
		.suite = {
3612
			.cipher = __VECS(cast6_lrw_tv_template)
3613
		}
3614 3615 3616 3617
	}, {
		.alg = "lrw(serpent)",
		.test = alg_test_skcipher,
		.suite = {
3618
			.cipher = __VECS(serpent_lrw_tv_template)
3619
		}
3620 3621 3622 3623
	}, {
		.alg = "lrw(twofish)",
		.test = alg_test_skcipher,
		.suite = {
3624
			.cipher = __VECS(tf_lrw_tv_template)
3625
		}
3626 3627 3628 3629 3630 3631
	}, {
		.alg = "lz4",
		.test = alg_test_comp,
		.fips_allowed = 1,
		.suite = {
			.comp = {
3632 3633
				.comp = __VECS(lz4_comp_tv_template),
				.decomp = __VECS(lz4_decomp_tv_template)
3634 3635 3636 3637 3638 3639 3640 3641
			}
		}
	}, {
		.alg = "lz4hc",
		.test = alg_test_comp,
		.fips_allowed = 1,
		.suite = {
			.comp = {
3642 3643
				.comp = __VECS(lz4hc_comp_tv_template),
				.decomp = __VECS(lz4hc_decomp_tv_template)
3644 3645
			}
		}
3646 3647 3648
	}, {
		.alg = "lzo",
		.test = alg_test_comp,
3649
		.fips_allowed = 1,
3650 3651
		.suite = {
			.comp = {
3652 3653
				.comp = __VECS(lzo_comp_tv_template),
				.decomp = __VECS(lzo_decomp_tv_template)
3654 3655 3656 3657 3658 3659
			}
		}
	}, {
		.alg = "md4",
		.test = alg_test_hash,
		.suite = {
3660
			.hash = __VECS(md4_tv_template)
3661 3662 3663 3664 3665
		}
	}, {
		.alg = "md5",
		.test = alg_test_hash,
		.suite = {
3666
			.hash = __VECS(md5_tv_template)
3667 3668 3669 3670 3671
		}
	}, {
		.alg = "michael_mic",
		.test = alg_test_hash,
		.suite = {
3672
			.hash = __VECS(michael_mic_tv_template)
3673
		}
3674 3675 3676 3677
	}, {
		.alg = "morus1280",
		.test = alg_test_aead,
		.suite = {
3678
			.aead = __VECS(morus1280_tv_template)
3679 3680 3681 3682 3683
		}
	}, {
		.alg = "morus640",
		.test = alg_test_aead,
		.suite = {
3684
			.aead = __VECS(morus640_tv_template)
3685
		}
3686 3687 3688 3689 3690 3691
	}, {
		.alg = "nhpoly1305",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(nhpoly1305_tv_template)
		}
3692 3693 3694 3695 3696
	}, {
		.alg = "ofb(aes)",
		.test = alg_test_skcipher,
		.fips_allowed = 1,
		.suite = {
3697
			.cipher = __VECS(aes_ofb_tv_template)
3698
		}
3699 3700 3701 3702 3703 3704 3705
	}, {
		/* Same as ofb(aes) except the key is stored in
		 * hardware secure memory which we reference by index
		 */
		.alg = "ofb(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
3706 3707
	}, {
		.alg = "pcbc(fcrypt)",
3708
		.test = alg_test_skcipher,
3709
		.suite = {
3710
			.cipher = __VECS(fcrypt_pcbc_tv_template)
3711
		}
3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730
	}, {
		.alg = "pkcs1pad(rsa,sha224)",
		.test = alg_test_null,
		.fips_allowed = 1,
	}, {
		.alg = "pkcs1pad(rsa,sha256)",
		.test = alg_test_akcipher,
		.fips_allowed = 1,
		.suite = {
			.akcipher = __VECS(pkcs1pad_rsa_tv_template)
		}
	}, {
		.alg = "pkcs1pad(rsa,sha384)",
		.test = alg_test_null,
		.fips_allowed = 1,
	}, {
		.alg = "pkcs1pad(rsa,sha512)",
		.test = alg_test_null,
		.fips_allowed = 1,
3731 3732 3733 3734
	}, {
		.alg = "poly1305",
		.test = alg_test_hash,
		.suite = {
3735
			.hash = __VECS(poly1305_tv_template)
3736
		}
3737 3738
	}, {
		.alg = "rfc3686(ctr(aes))",
3739
		.test = alg_test_skcipher,
3740
		.fips_allowed = 1,
3741
		.suite = {
3742
			.cipher = __VECS(aes_ctr_rfc3686_tv_template)
3743
		}
3744
	}, {
3745
		.alg = "rfc4106(gcm(aes))",
3746
		.test = alg_test_aead,
3747
		.fips_allowed = 1,
3748
		.suite = {
3749
			.aead = __VECS(aes_gcm_rfc4106_tv_template)
3750 3751
		}
	}, {
3752
		.alg = "rfc4309(ccm(aes))",
3753
		.test = alg_test_aead,
3754
		.fips_allowed = 1,
3755
		.suite = {
3756
			.aead = __VECS(aes_ccm_rfc4309_tv_template)
3757
		}
3758
	}, {
3759
		.alg = "rfc4543(gcm(aes))",
3760 3761
		.test = alg_test_aead,
		.suite = {
3762
			.aead = __VECS(aes_gcm_rfc4543_tv_template)
3763
		}
3764 3765 3766 3767
	}, {
		.alg = "rfc7539(chacha20,poly1305)",
		.test = alg_test_aead,
		.suite = {
3768
			.aead = __VECS(rfc7539_tv_template)
3769
		}
3770 3771 3772 3773
	}, {
		.alg = "rfc7539esp(chacha20,poly1305)",
		.test = alg_test_aead,
		.suite = {
3774
			.aead = __VECS(rfc7539esp_tv_template)
3775
		}
3776 3777 3778 3779
	}, {
		.alg = "rmd128",
		.test = alg_test_hash,
		.suite = {
3780
			.hash = __VECS(rmd128_tv_template)
3781 3782 3783 3784 3785
		}
	}, {
		.alg = "rmd160",
		.test = alg_test_hash,
		.suite = {
3786
			.hash = __VECS(rmd160_tv_template)
3787 3788 3789 3790 3791
		}
	}, {
		.alg = "rmd256",
		.test = alg_test_hash,
		.suite = {
3792
			.hash = __VECS(rmd256_tv_template)
3793 3794 3795 3796 3797
		}
	}, {
		.alg = "rmd320",
		.test = alg_test_hash,
		.suite = {
3798
			.hash = __VECS(rmd320_tv_template)
3799
		}
3800 3801 3802 3803 3804
	}, {
		.alg = "rsa",
		.test = alg_test_akcipher,
		.fips_allowed = 1,
		.suite = {
3805
			.akcipher = __VECS(rsa_tv_template)
3806
		}
3807 3808
	}, {
		.alg = "salsa20",
3809
		.test = alg_test_skcipher,
3810
		.suite = {
3811
			.cipher = __VECS(salsa20_stream_tv_template)
3812 3813 3814 3815
		}
	}, {
		.alg = "sha1",
		.test = alg_test_hash,
3816
		.fips_allowed = 1,
3817
		.suite = {
3818
			.hash = __VECS(sha1_tv_template)
3819 3820 3821 3822
		}
	}, {
		.alg = "sha224",
		.test = alg_test_hash,
3823
		.fips_allowed = 1,
3824
		.suite = {
3825
			.hash = __VECS(sha224_tv_template)
3826 3827 3828 3829
		}
	}, {
		.alg = "sha256",
		.test = alg_test_hash,
3830
		.fips_allowed = 1,
3831
		.suite = {
3832
			.hash = __VECS(sha256_tv_template)
3833
		}
3834 3835 3836 3837 3838
	}, {
		.alg = "sha3-224",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3839
			.hash = __VECS(sha3_224_tv_template)
3840 3841 3842 3843 3844 3845
		}
	}, {
		.alg = "sha3-256",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3846
			.hash = __VECS(sha3_256_tv_template)
3847 3848 3849 3850 3851 3852
		}
	}, {
		.alg = "sha3-384",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3853
			.hash = __VECS(sha3_384_tv_template)
3854 3855 3856 3857 3858 3859
		}
	}, {
		.alg = "sha3-512",
		.test = alg_test_hash,
		.fips_allowed = 1,
		.suite = {
3860
			.hash = __VECS(sha3_512_tv_template)
3861
		}
3862 3863 3864
	}, {
		.alg = "sha384",
		.test = alg_test_hash,
3865
		.fips_allowed = 1,
3866
		.suite = {
3867
			.hash = __VECS(sha384_tv_template)
3868 3869 3870 3871
		}
	}, {
		.alg = "sha512",
		.test = alg_test_hash,
3872
		.fips_allowed = 1,
3873
		.suite = {
3874
			.hash = __VECS(sha512_tv_template)
3875
		}
3876 3877 3878 3879 3880 3881
	}, {
		.alg = "sm3",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(sm3_tv_template)
		}
3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893
	}, {
		.alg = "streebog256",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(streebog256_tv_template)
		}
	}, {
		.alg = "streebog512",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(streebog512_tv_template)
		}
3894 3895 3896 3897
	}, {
		.alg = "tgr128",
		.test = alg_test_hash,
		.suite = {
3898
			.hash = __VECS(tgr128_tv_template)
3899 3900 3901 3902 3903
		}
	}, {
		.alg = "tgr160",
		.test = alg_test_hash,
		.suite = {
3904
			.hash = __VECS(tgr160_tv_template)
3905 3906 3907 3908 3909
		}
	}, {
		.alg = "tgr192",
		.test = alg_test_hash,
		.suite = {
3910
			.hash = __VECS(tgr192_tv_template)
3911
		}
3912 3913 3914 3915 3916 3917
	}, {
		.alg = "vmac64(aes)",
		.test = alg_test_hash,
		.suite = {
			.hash = __VECS(vmac64_aes_tv_template)
		}
3918 3919 3920 3921
	}, {
		.alg = "wp256",
		.test = alg_test_hash,
		.suite = {
3922
			.hash = __VECS(wp256_tv_template)
3923 3924 3925 3926 3927
		}
	}, {
		.alg = "wp384",
		.test = alg_test_hash,
		.suite = {
3928
			.hash = __VECS(wp384_tv_template)
3929 3930 3931 3932 3933
		}
	}, {
		.alg = "wp512",
		.test = alg_test_hash,
		.suite = {
3934
			.hash = __VECS(wp512_tv_template)
3935 3936 3937 3938 3939
		}
	}, {
		.alg = "xcbc(aes)",
		.test = alg_test_hash,
		.suite = {
3940
			.hash = __VECS(aes_xcbc128_tv_template)
3941
		}
3942 3943 3944 3945 3946 3947
	}, {
		.alg = "xchacha12",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(xchacha12_tv_template)
		},
3948 3949 3950 3951 3952 3953
	}, {
		.alg = "xchacha20",
		.test = alg_test_skcipher,
		.suite = {
			.cipher = __VECS(xchacha20_tv_template)
		},
3954 3955
	}, {
		.alg = "xts(aes)",
3956
		.test = alg_test_skcipher,
3957
		.fips_allowed = 1,
3958
		.suite = {
3959
			.cipher = __VECS(aes_xts_tv_template)
3960
		}
3961 3962 3963 3964
	}, {
		.alg = "xts(camellia)",
		.test = alg_test_skcipher,
		.suite = {
3965
			.cipher = __VECS(camellia_xts_tv_template)
3966
		}
3967 3968 3969 3970
	}, {
		.alg = "xts(cast6)",
		.test = alg_test_skcipher,
		.suite = {
3971
			.cipher = __VECS(cast6_xts_tv_template)
3972
		}
3973 3974 3975 3976 3977 3978 3979
	}, {
		/* Same as xts(aes) except the key is stored in
		 * hardware secure memory which we reference by index
		 */
		.alg = "xts(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
3980 3981 3982 3983
	}, {
		.alg = "xts(serpent)",
		.test = alg_test_skcipher,
		.suite = {
3984
			.cipher = __VECS(serpent_xts_tv_template)
3985
		}
3986 3987 3988 3989
	}, {
		.alg = "xts(twofish)",
		.test = alg_test_skcipher,
		.suite = {
3990
			.cipher = __VECS(tf_xts_tv_template)
3991
		}
3992 3993 3994 3995 3996 3997 3998 3999
	}, {
		.alg = "xts4096(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
	}, {
		.alg = "xts512(paes)",
		.test = alg_test_null,
		.fips_allowed = 1,
4000 4001 4002 4003 4004 4005 4006 4007 4008 4009
	}, {
		.alg = "zlib-deflate",
		.test = alg_test_comp,
		.fips_allowed = 1,
		.suite = {
			.comp = {
				.comp = __VECS(zlib_deflate_comp_tv_template),
				.decomp = __VECS(zlib_deflate_decomp_tv_template)
			}
		}
N
Nick Terrell 已提交
4010 4011 4012 4013 4014 4015 4016 4017 4018 4019
	}, {
		.alg = "zstd",
		.test = alg_test_comp,
		.fips_allowed = 1,
		.suite = {
			.comp = {
				.comp = __VECS(zstd_comp_tv_template),
				.decomp = __VECS(zstd_decomp_tv_template)
			}
		}
4020 4021 4022
	}
};

4023
static void alg_check_test_descs_order(void)
4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043
{
	int i;

	for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
		int diff = strcmp(alg_test_descs[i - 1].alg,
				  alg_test_descs[i].alg);

		if (WARN_ON(diff > 0)) {
			pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
				alg_test_descs[i - 1].alg,
				alg_test_descs[i].alg);
		}

		if (WARN_ON(diff == 0)) {
			pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
				alg_test_descs[i].alg);
		}
	}
}

4044 4045
static void alg_check_testvec_configs(void)
{
4046 4047 4048 4049 4050
	int i;

	for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
		WARN_ON(!valid_testvec_config(
				&default_cipher_testvec_configs[i]));
4051 4052 4053 4054

	for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
		WARN_ON(!valid_testvec_config(
				&default_hash_testvec_configs[i]));
4055 4056 4057 4058 4059 4060
}

static void testmgr_onetime_init(void)
{
	alg_check_test_descs_order();
	alg_check_testvec_configs();
4061 4062 4063 4064

#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
	pr_warn("alg: extra crypto tests enabled.  This is intended for developer use only.\n");
#endif
4065 4066
}

4067
static int alg_find_test(const char *alg)
4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085
{
	int start = 0;
	int end = ARRAY_SIZE(alg_test_descs);

	while (start < end) {
		int i = (start + end) / 2;
		int diff = strcmp(alg_test_descs[i].alg, alg);

		if (diff > 0) {
			end = i;
			continue;
		}

		if (diff < 0) {
			start = i + 1;
			continue;
		}

4086 4087 4088 4089 4090 4091 4092 4093 4094
		return i;
	}

	return -1;
}

int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
{
	int i;
4095
	int j;
4096
	int rc;
4097

4098 4099 4100 4101 4102
	if (!fips_enabled && notests) {
		printk_once(KERN_INFO "alg: self-tests disabled\n");
		return 0;
	}

4103
	DO_ONCE(testmgr_onetime_init);
4104

4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115
	if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
		char nalg[CRYPTO_MAX_ALG_NAME];

		if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
		    sizeof(nalg))
			return -ENAMETOOLONG;

		i = alg_find_test(nalg);
		if (i < 0)
			goto notest;

4116 4117 4118
		if (fips_enabled && !alg_test_descs[i].fips_allowed)
			goto non_fips_alg;

4119 4120
		rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
		goto test_done;
4121 4122
	}

4123
	i = alg_find_test(alg);
4124 4125
	j = alg_find_test(driver);
	if (i < 0 && j < 0)
4126 4127
		goto notest;

4128 4129
	if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
			     (j >= 0 && !alg_test_descs[j].fips_allowed)))
4130 4131
		goto non_fips_alg;

4132 4133 4134 4135
	rc = 0;
	if (i >= 0)
		rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
					     type, mask);
4136
	if (j >= 0 && j != i)
4137 4138 4139
		rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
					     type, mask);

4140
test_done:
4141 4142 4143
	if (rc && (fips_enabled || panic_on_fail))
		panic("alg: self-tests for %s (%s) failed in %s mode!\n",
		      driver, alg, fips_enabled ? "fips" : "panic_on_fail");
4144

4145
	if (fips_enabled && !rc)
4146
		pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
4147

4148
	return rc;
4149 4150

notest:
4151 4152
	printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
	return 0;
4153 4154
non_fips_alg:
	return -EINVAL;
4155
}
4156

4157
#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
4158

4159
EXPORT_SYMBOL_GPL(alg_test);