blob: 1ce53f8058d22937a39b09e56f9c665513401484 [file] [log] [blame]
Herbert Xuda7f0332008-07-31 17:08:25 +08001/*
2 * Algorithm testing framework and tests.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
8 *
Adrian Hoban69435b92010-11-04 15:02:04 -04009 * Updated RFC4106 AES-GCM testing.
10 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
11 * Adrian Hoban <adrian.hoban@intel.com>
12 * Gabriele Paoloni <gabriele.paoloni@intel.com>
13 * Tadeusz Struk (tadeusz.struk@intel.com)
14 * Copyright (c) 2010, Intel Corporation.
15 *
Herbert Xuda7f0332008-07-31 17:08:25 +080016 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
19 * any later version.
20 *
21 */
22
Herbert Xu1ce33112015-04-22 15:06:31 +080023#include <crypto/aead.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080024#include <crypto/hash.h>
Herbert Xu12773d92015-08-20 15:21:46 +080025#include <crypto/skcipher.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080026#include <linux/err.h>
Herbert Xu1c41b882015-04-22 13:25:58 +080027#include <linux/fips.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080028#include <linux/module.h>
29#include <linux/scatterlist.h>
30#include <linux/slab.h>
31#include <linux/string.h>
Jarod Wilson7647d6c2009-05-04 19:44:50 +080032#include <crypto/rng.h>
Stephan Mueller64d1cdf2014-05-31 17:25:36 +020033#include <crypto/drbg.h>
Tadeusz Struk946cc462015-06-16 10:31:06 -070034#include <crypto/akcipher.h>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010035#include <crypto/kpp.h>
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +010036#include <crypto/acompress.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080037
38#include "internal.h"
Alexander Shishkin0b767f92010-06-03 20:53:43 +100039
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +010040static bool notests;
41module_param(notests, bool, 0644);
42MODULE_PARM_DESC(notests, "disable crypto self-tests");
43
Herbert Xu326a6342010-08-06 09:40:28 +080044#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
Alexander Shishkin0b767f92010-06-03 20:53:43 +100045
46/* a perfect nop */
47int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
48{
49 return 0;
50}
51
52#else
53
Herbert Xuda7f0332008-07-31 17:08:25 +080054#include "testmgr.h"
55
56/*
57 * Need slab memory for testing (size in number of pages).
58 */
59#define XBUFSIZE 8
60
61/*
62 * Indexes into the xbuf to simulate cross-page access.
63 */
64#define IDX1 32
65#define IDX2 32400
Ard Biesheuvel04b46fb2016-12-08 08:23:52 +000066#define IDX3 1511
Herbert Xuda7f0332008-07-31 17:08:25 +080067#define IDX4 8193
68#define IDX5 22222
69#define IDX6 17101
70#define IDX7 27333
71#define IDX8 3000
72
73/*
74* Used by test_cipher()
75*/
76#define ENCRYPT 1
77#define DECRYPT 0
78
Herbert Xuda7f0332008-07-31 17:08:25 +080079struct aead_test_suite {
80 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080081 const struct aead_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080082 unsigned int count;
83 } enc, dec;
84};
85
86struct cipher_test_suite {
Eric Biggers92a4c9f2018-05-20 22:50:29 -070087 const struct cipher_testvec *vecs;
88 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +080089};
90
91struct comp_test_suite {
92 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080093 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080094 unsigned int count;
95 } comp, decomp;
96};
97
98struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -080099 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800100 unsigned int count;
101};
102
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800103struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800104 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800105 unsigned int count;
106};
107
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200108struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800109 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200110 unsigned int count;
111};
112
Tadeusz Struk946cc462015-06-16 10:31:06 -0700113struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800114 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700115 unsigned int count;
116};
117
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100118struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800119 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100120 unsigned int count;
121};
122
Herbert Xuda7f0332008-07-31 17:08:25 +0800123struct alg_test_desc {
124 const char *alg;
125 int (*test)(const struct alg_test_desc *desc, const char *driver,
126 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000127 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800128
129 union {
130 struct aead_test_suite aead;
131 struct cipher_test_suite cipher;
132 struct comp_test_suite comp;
133 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800134 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200135 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700136 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100137 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800138 } suite;
139};
140
Eric Biggersb13b1e02017-02-24 15:46:59 -0800141static const unsigned int IDX[8] = {
142 IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
Herbert Xuda7f0332008-07-31 17:08:25 +0800143
Herbert Xuda7f0332008-07-31 17:08:25 +0800144static void hexdump(unsigned char *buf, unsigned int len)
145{
146 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
147 16, 1,
148 buf, len, false);
149}
150
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800151static int testmgr_alloc_buf(char *buf[XBUFSIZE])
152{
153 int i;
154
155 for (i = 0; i < XBUFSIZE; i++) {
156 buf[i] = (void *)__get_free_page(GFP_KERNEL);
157 if (!buf[i])
158 goto err_free_buf;
159 }
160
161 return 0;
162
163err_free_buf:
164 while (i-- > 0)
165 free_page((unsigned long)buf[i]);
166
167 return -ENOMEM;
168}
169
170static void testmgr_free_buf(char *buf[XBUFSIZE])
171{
172 int i;
173
174 for (i = 0; i < XBUFSIZE; i++)
175 free_page((unsigned long)buf[i]);
176}
177
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100178static int ahash_guard_result(char *result, char c, int size)
179{
180 int i;
181
182 for (i = 0; i < size; i++) {
183 if (result[i] != c)
184 return -EINVAL;
185 }
186
187 return 0;
188}
189
Wang, Rui Y018ba952016-02-03 18:26:57 +0800190static int ahash_partial_update(struct ahash_request **preq,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800191 struct crypto_ahash *tfm, const struct hash_testvec *template,
Wang, Rui Y018ba952016-02-03 18:26:57 +0800192 void *hash_buff, int k, int temp, struct scatterlist *sg,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100193 const char *algo, char *result, struct crypto_wait *wait)
Wang, Rui Y018ba952016-02-03 18:26:57 +0800194{
195 char *state;
196 struct ahash_request *req;
197 int statesize, ret = -EINVAL;
Joey Pabalinasda1729c2018-01-01 10:40:14 -1000198 static const unsigned char guard[] = { 0x00, 0xba, 0xad, 0x00 };
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100199 int digestsize = crypto_ahash_digestsize(tfm);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800200
201 req = *preq;
202 statesize = crypto_ahash_statesize(
203 crypto_ahash_reqtfm(req));
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200204 state = kmalloc(statesize + sizeof(guard), GFP_KERNEL);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800205 if (!state) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300206 pr_err("alg: hash: Failed to alloc state for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800207 goto out_nostate;
208 }
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200209 memcpy(state + statesize, guard, sizeof(guard));
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100210 memset(result, 1, digestsize);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800211 ret = crypto_ahash_export(req, state);
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200212 WARN_ON(memcmp(state + statesize, guard, sizeof(guard)));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800213 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300214 pr_err("alg: hash: Failed to export() for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800215 goto out;
216 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100217 ret = ahash_guard_result(result, 1, digestsize);
218 if (ret) {
219 pr_err("alg: hash: Failed, export used req->result for %s\n",
220 algo);
221 goto out;
222 }
Wang, Rui Y018ba952016-02-03 18:26:57 +0800223 ahash_request_free(req);
224 req = ahash_request_alloc(tfm, GFP_KERNEL);
225 if (!req) {
226 pr_err("alg: hash: Failed to alloc request for %s\n", algo);
227 goto out_noreq;
228 }
229 ahash_request_set_callback(req,
230 CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100231 crypto_req_done, wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800232
233 memcpy(hash_buff, template->plaintext + temp,
234 template->tap[k]);
235 sg_init_one(&sg[0], hash_buff, template->tap[k]);
236 ahash_request_set_crypt(req, sg, result, template->tap[k]);
237 ret = crypto_ahash_import(req, state);
238 if (ret) {
239 pr_err("alg: hash: Failed to import() for %s\n", algo);
240 goto out;
241 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100242 ret = ahash_guard_result(result, 1, digestsize);
243 if (ret) {
244 pr_err("alg: hash: Failed, import used req->result for %s\n",
245 algo);
246 goto out;
247 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100248 ret = crypto_wait_req(crypto_ahash_update(req), wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800249 if (ret)
250 goto out;
251 *preq = req;
252 ret = 0;
253 goto out_noreq;
254out:
255 ahash_request_free(req);
256out_noreq:
257 kfree(state);
258out_nostate:
259 return ret;
260}
261
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100262enum hash_test {
263 HASH_TEST_DIGEST,
264 HASH_TEST_FINAL,
265 HASH_TEST_FINUP
266};
267
Eric Biggersb13b1e02017-02-24 15:46:59 -0800268static int __test_hash(struct crypto_ahash *tfm,
269 const struct hash_testvec *template, unsigned int tcount,
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100270 enum hash_test test_type, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800271{
272 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800273 size_t digest_size = crypto_ahash_digestsize(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +0800274 unsigned int i, j, k, temp;
275 struct scatterlist sg[8];
Horia Geanta29b77e52014-07-23 11:59:38 +0300276 char *result;
277 char *key;
Herbert Xuda7f0332008-07-31 17:08:25 +0800278 struct ahash_request *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100279 struct crypto_wait wait;
Herbert Xuda7f0332008-07-31 17:08:25 +0800280 void *hash_buff;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800281 char *xbuf[XBUFSIZE];
282 int ret = -ENOMEM;
283
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800284 result = kmalloc(digest_size, GFP_KERNEL);
Horia Geanta29b77e52014-07-23 11:59:38 +0300285 if (!result)
286 return ret;
287 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
288 if (!key)
289 goto out_nobuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800290 if (testmgr_alloc_buf(xbuf))
291 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +0800292
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100293 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800294
295 req = ahash_request_alloc(tfm, GFP_KERNEL);
296 if (!req) {
297 printk(KERN_ERR "alg: hash: Failed to allocate request for "
298 "%s\n", algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800299 goto out_noreq;
300 }
301 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100302 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800303
Herbert Xua0cfae52009-05-29 16:23:12 +1000304 j = 0;
Herbert Xuda7f0332008-07-31 17:08:25 +0800305 for (i = 0; i < tcount; i++) {
Herbert Xua0cfae52009-05-29 16:23:12 +1000306 if (template[i].np)
307 continue;
308
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300309 ret = -EINVAL;
310 if (WARN_ON(align_offset + template[i].psize > PAGE_SIZE))
311 goto out;
312
Herbert Xua0cfae52009-05-29 16:23:12 +1000313 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800314 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800315
316 hash_buff = xbuf[0];
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300317 hash_buff += align_offset;
Herbert Xuda7f0332008-07-31 17:08:25 +0800318
319 memcpy(hash_buff, template[i].plaintext, template[i].psize);
320 sg_init_one(&sg[0], hash_buff, template[i].psize);
321
322 if (template[i].ksize) {
323 crypto_ahash_clear_flags(tfm, ~0);
Horia Geanta29b77e52014-07-23 11:59:38 +0300324 if (template[i].ksize > MAX_KEYLEN) {
325 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
326 j, algo, template[i].ksize, MAX_KEYLEN);
327 ret = -EINVAL;
328 goto out;
329 }
330 memcpy(key, template[i].key, template[i].ksize);
331 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +0800332 if (ret) {
333 printk(KERN_ERR "alg: hash: setkey failed on "
Herbert Xua0cfae52009-05-29 16:23:12 +1000334 "test %d for %s: ret=%d\n", j, algo,
Herbert Xuda7f0332008-07-31 17:08:25 +0800335 -ret);
336 goto out;
337 }
338 }
339
340 ahash_request_set_crypt(req, sg, result, template[i].psize);
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100341 switch (test_type) {
342 case HASH_TEST_DIGEST:
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100343 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000344 if (ret) {
345 pr_err("alg: hash: digest failed on test %d "
346 "for %s: ret=%d\n", j, algo, -ret);
347 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800348 }
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100349 break;
350
351 case HASH_TEST_FINAL:
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100352 memset(result, 1, digest_size);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100353 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000354 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300355 pr_err("alg: hash: init failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000356 "for %s: ret=%d\n", j, algo, -ret);
357 goto out;
358 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100359 ret = ahash_guard_result(result, 1, digest_size);
360 if (ret) {
361 pr_err("alg: hash: init failed on test %d "
362 "for %s: used req->result\n", j, algo);
363 goto out;
364 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100365 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000366 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300367 pr_err("alg: hash: update failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000368 "for %s: ret=%d\n", j, algo, -ret);
369 goto out;
370 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100371 ret = ahash_guard_result(result, 1, digest_size);
372 if (ret) {
373 pr_err("alg: hash: update failed on test %d "
374 "for %s: used req->result\n", j, algo);
375 goto out;
376 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100377 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000378 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300379 pr_err("alg: hash: final failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000380 "for %s: ret=%d\n", j, algo, -ret);
381 goto out;
382 }
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100383 break;
384
385 case HASH_TEST_FINUP:
386 memset(result, 1, digest_size);
387 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
388 if (ret) {
389 pr_err("alg: hash: init failed on test %d "
390 "for %s: ret=%d\n", j, algo, -ret);
391 goto out;
392 }
393 ret = ahash_guard_result(result, 1, digest_size);
394 if (ret) {
395 pr_err("alg: hash: init failed on test %d "
396 "for %s: used req->result\n", j, algo);
397 goto out;
398 }
399 ret = crypto_wait_req(crypto_ahash_finup(req), &wait);
400 if (ret) {
401 pr_err("alg: hash: final failed on test %d "
402 "for %s: ret=%d\n", j, algo, -ret);
403 goto out;
404 }
405 break;
Herbert Xuda7f0332008-07-31 17:08:25 +0800406 }
407
408 if (memcmp(result, template[i].digest,
409 crypto_ahash_digestsize(tfm))) {
410 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
Herbert Xua0cfae52009-05-29 16:23:12 +1000411 j, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800412 hexdump(result, crypto_ahash_digestsize(tfm));
413 ret = -EINVAL;
414 goto out;
415 }
416 }
417
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100418 if (test_type)
419 goto out;
420
Herbert Xuda7f0332008-07-31 17:08:25 +0800421 j = 0;
422 for (i = 0; i < tcount; i++) {
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300423 /* alignment tests are only done with continuous buffers */
424 if (align_offset != 0)
425 break;
426
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300427 if (!template[i].np)
428 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800429
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300430 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800431 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800432
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300433 temp = 0;
434 sg_init_table(sg, template[i].np);
435 ret = -EINVAL;
436 for (k = 0; k < template[i].np; k++) {
437 if (WARN_ON(offset_in_page(IDX[k]) +
438 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +0800439 goto out;
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300440 sg_set_buf(&sg[k],
441 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
442 offset_in_page(IDX[k]),
443 template[i].plaintext + temp,
444 template[i].tap[k]),
445 template[i].tap[k]);
446 temp += template[i].tap[k];
447 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800448
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300449 if (template[i].ksize) {
450 if (template[i].ksize > MAX_KEYLEN) {
451 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
452 j, algo, template[i].ksize, MAX_KEYLEN);
Herbert Xuda7f0332008-07-31 17:08:25 +0800453 ret = -EINVAL;
454 goto out;
455 }
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300456 crypto_ahash_clear_flags(tfm, ~0);
457 memcpy(key, template[i].key, template[i].ksize);
458 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
459
460 if (ret) {
461 printk(KERN_ERR "alg: hash: setkey "
462 "failed on chunking test %d "
463 "for %s: ret=%d\n", j, algo, -ret);
464 goto out;
465 }
466 }
467
468 ahash_request_set_crypt(req, sg, result, template[i].psize);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100469 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
470 if (ret) {
471 pr_err("alg: hash: digest failed on chunking test %d for %s: ret=%d\n",
472 j, algo, -ret);
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300473 goto out;
474 }
475
476 if (memcmp(result, template[i].digest,
477 crypto_ahash_digestsize(tfm))) {
478 printk(KERN_ERR "alg: hash: Chunking test %d "
479 "failed for %s\n", j, algo);
480 hexdump(result, crypto_ahash_digestsize(tfm));
481 ret = -EINVAL;
482 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800483 }
484 }
485
Wang, Rui Y018ba952016-02-03 18:26:57 +0800486 /* partial update exercise */
487 j = 0;
488 for (i = 0; i < tcount; i++) {
489 /* alignment tests are only done with continuous buffers */
490 if (align_offset != 0)
491 break;
492
493 if (template[i].np < 2)
494 continue;
495
496 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800497 memset(result, 0, digest_size);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800498
499 ret = -EINVAL;
500 hash_buff = xbuf[0];
501 memcpy(hash_buff, template[i].plaintext,
502 template[i].tap[0]);
503 sg_init_one(&sg[0], hash_buff, template[i].tap[0]);
504
505 if (template[i].ksize) {
506 crypto_ahash_clear_flags(tfm, ~0);
507 if (template[i].ksize > MAX_KEYLEN) {
508 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
509 j, algo, template[i].ksize, MAX_KEYLEN);
510 ret = -EINVAL;
511 goto out;
512 }
513 memcpy(key, template[i].key, template[i].ksize);
514 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
515 if (ret) {
516 pr_err("alg: hash: setkey failed on test %d for %s: ret=%d\n",
517 j, algo, -ret);
518 goto out;
519 }
520 }
521
522 ahash_request_set_crypt(req, sg, result, template[i].tap[0]);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100523 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800524 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300525 pr_err("alg: hash: init failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800526 j, algo, -ret);
527 goto out;
528 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100529 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800530 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300531 pr_err("alg: hash: update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800532 j, algo, -ret);
533 goto out;
534 }
535
536 temp = template[i].tap[0];
537 for (k = 1; k < template[i].np; k++) {
538 ret = ahash_partial_update(&req, tfm, &template[i],
539 hash_buff, k, temp, &sg[0], algo, result,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100540 &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800541 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300542 pr_err("alg: hash: partial update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800543 j, algo, -ret);
544 goto out_noreq;
545 }
546 temp += template[i].tap[k];
547 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100548 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800549 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300550 pr_err("alg: hash: final failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800551 j, algo, -ret);
552 goto out;
553 }
554 if (memcmp(result, template[i].digest,
555 crypto_ahash_digestsize(tfm))) {
556 pr_err("alg: hash: Partial Test %d failed for %s\n",
557 j, algo);
558 hexdump(result, crypto_ahash_digestsize(tfm));
559 ret = -EINVAL;
560 goto out;
561 }
562 }
563
Herbert Xuda7f0332008-07-31 17:08:25 +0800564 ret = 0;
565
566out:
567 ahash_request_free(req);
568out_noreq:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800569 testmgr_free_buf(xbuf);
570out_nobuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300571 kfree(key);
572 kfree(result);
Herbert Xuda7f0332008-07-31 17:08:25 +0800573 return ret;
574}
575
Eric Biggersb13b1e02017-02-24 15:46:59 -0800576static int test_hash(struct crypto_ahash *tfm,
577 const struct hash_testvec *template,
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100578 unsigned int tcount, enum hash_test test_type)
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300579{
580 unsigned int alignmask;
581 int ret;
582
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100583 ret = __test_hash(tfm, template, tcount, test_type, 0);
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300584 if (ret)
585 return ret;
586
587 /* test unaligned buffers, check with one byte offset */
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100588 ret = __test_hash(tfm, template, tcount, test_type, 1);
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300589 if (ret)
590 return ret;
591
592 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
593 if (alignmask) {
594 /* Check if alignment mask for tfm is correctly set. */
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100595 ret = __test_hash(tfm, template, tcount, test_type,
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300596 alignmask + 1);
597 if (ret)
598 return ret;
599 }
600
601 return 0;
602}
603
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300604static int __test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800605 const struct aead_testvec *template, unsigned int tcount,
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300606 const bool diff_dst, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800607{
608 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
609 unsigned int i, j, k, n, temp;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800610 int ret = -ENOMEM;
Herbert Xuda7f0332008-07-31 17:08:25 +0800611 char *q;
612 char *key;
613 struct aead_request *req;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300614 struct scatterlist *sg;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300615 struct scatterlist *sgout;
616 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100617 struct crypto_wait wait;
Cristian Stoica424a5da2015-01-28 11:03:05 +0200618 unsigned int authsize, iv_len;
Herbert Xuda7f0332008-07-31 17:08:25 +0800619 void *input;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300620 void *output;
Herbert Xuda7f0332008-07-31 17:08:25 +0800621 void *assoc;
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700622 char *iv;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800623 char *xbuf[XBUFSIZE];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300624 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800625 char *axbuf[XBUFSIZE];
626
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700627 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
628 if (!iv)
629 return ret;
Horia Geanta29b77e52014-07-23 11:59:38 +0300630 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
631 if (!key)
632 goto out_noxbuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800633 if (testmgr_alloc_buf(xbuf))
634 goto out_noxbuf;
635 if (testmgr_alloc_buf(axbuf))
636 goto out_noaxbuf;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300637 if (diff_dst && testmgr_alloc_buf(xoutbuf))
638 goto out_nooutbuf;
639
640 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
Kees Cook6da2ec52018-06-12 13:55:00 -0700641 sg = kmalloc(array3_size(sizeof(*sg), 8, (diff_dst ? 4 : 2)),
642 GFP_KERNEL);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300643 if (!sg)
644 goto out_nosg;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800645 sgout = &sg[16];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300646
647 if (diff_dst)
648 d = "-ddst";
649 else
650 d = "";
651
Herbert Xuda7f0332008-07-31 17:08:25 +0800652 if (enc == ENCRYPT)
653 e = "encryption";
654 else
655 e = "decryption";
656
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100657 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800658
659 req = aead_request_alloc(tfm, GFP_KERNEL);
660 if (!req) {
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300661 pr_err("alg: aead%s: Failed to allocate request for %s\n",
662 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800663 goto out;
664 }
665
666 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100667 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800668
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100669 iv_len = crypto_aead_ivsize(tfm);
670
Herbert Xuda7f0332008-07-31 17:08:25 +0800671 for (i = 0, j = 0; i < tcount; i++) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300672 if (template[i].np)
673 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800674
Cristian Stoica05b1d332014-07-28 13:11:23 +0300675 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800676
Cristian Stoica05b1d332014-07-28 13:11:23 +0300677 /* some templates have no input data but they will
678 * touch input
679 */
680 input = xbuf[0];
681 input += align_offset;
682 assoc = axbuf[0];
683
684 ret = -EINVAL;
685 if (WARN_ON(align_offset + template[i].ilen >
686 PAGE_SIZE || template[i].alen > PAGE_SIZE))
687 goto out;
688
689 memcpy(input, template[i].input, template[i].ilen);
690 memcpy(assoc, template[i].assoc, template[i].alen);
691 if (template[i].iv)
Cristian Stoica424a5da2015-01-28 11:03:05 +0200692 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300693 else
Cristian Stoica424a5da2015-01-28 11:03:05 +0200694 memset(iv, 0, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300695
696 crypto_aead_clear_flags(tfm, ~0);
697 if (template[i].wk)
698 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
699
700 if (template[i].klen > MAX_KEYLEN) {
701 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
702 d, j, algo, template[i].klen,
703 MAX_KEYLEN);
Herbert Xufd57f222009-05-29 16:05:42 +1000704 ret = -EINVAL;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300705 goto out;
706 }
707 memcpy(key, template[i].key, template[i].klen);
Herbert Xufd57f222009-05-29 16:05:42 +1000708
Cristian Stoica05b1d332014-07-28 13:11:23 +0300709 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800710 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300711 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
712 d, j, algo, crypto_aead_get_flags(tfm));
713 goto out;
714 } else if (ret)
715 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800716
Cristian Stoica05b1d332014-07-28 13:11:23 +0300717 authsize = abs(template[i].rlen - template[i].ilen);
718 ret = crypto_aead_setauthsize(tfm, authsize);
719 if (ret) {
720 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
721 d, authsize, j, algo);
722 goto out;
723 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800724
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800725 k = !!template[i].alen;
726 sg_init_table(sg, k + 1);
727 sg_set_buf(&sg[0], assoc, template[i].alen);
728 sg_set_buf(&sg[k], input,
729 template[i].ilen + (enc ? authsize : 0));
730 output = input;
731
Cristian Stoica05b1d332014-07-28 13:11:23 +0300732 if (diff_dst) {
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800733 sg_init_table(sgout, k + 1);
734 sg_set_buf(&sgout[0], assoc, template[i].alen);
735
Cristian Stoica05b1d332014-07-28 13:11:23 +0300736 output = xoutbuf[0];
737 output += align_offset;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800738 sg_set_buf(&sgout[k], output,
739 template[i].rlen + (enc ? 0 : authsize));
Cristian Stoica05b1d332014-07-28 13:11:23 +0300740 }
741
Cristian Stoica05b1d332014-07-28 13:11:23 +0300742 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
743 template[i].ilen, iv);
744
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800745 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300746
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100747 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
748 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300749
750 switch (ret) {
751 case 0:
752 if (template[i].novrfy) {
753 /* verification was supposed to fail */
754 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
755 d, e, j, algo);
756 /* so really, we got a bad message */
757 ret = -EBADMSG;
Horia Geanta29b77e52014-07-23 11:59:38 +0300758 goto out;
759 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300760 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300761 case -EBADMSG:
762 if (template[i].novrfy)
763 /* verification failure was expected */
764 continue;
765 /* fall through */
766 default:
767 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
768 d, e, j, algo, -ret);
769 goto out;
770 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800771
Cristian Stoica05b1d332014-07-28 13:11:23 +0300772 q = output;
773 if (memcmp(q, template[i].result, template[i].rlen)) {
774 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
775 d, j, e, algo);
776 hexdump(q, template[i].rlen);
777 ret = -EINVAL;
778 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800779 }
780 }
781
782 for (i = 0, j = 0; i < tcount; i++) {
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300783 /* alignment tests are only done with continuous buffers */
784 if (align_offset != 0)
785 break;
786
Cristian Stoica05b1d332014-07-28 13:11:23 +0300787 if (!template[i].np)
788 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800789
Cristian Stoica05b1d332014-07-28 13:11:23 +0300790 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800791
Cristian Stoica05b1d332014-07-28 13:11:23 +0300792 if (template[i].iv)
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100793 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300794 else
795 memset(iv, 0, MAX_IVLEN);
796
797 crypto_aead_clear_flags(tfm, ~0);
798 if (template[i].wk)
799 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
800 if (template[i].klen > MAX_KEYLEN) {
801 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
802 d, j, algo, template[i].klen, MAX_KEYLEN);
803 ret = -EINVAL;
804 goto out;
805 }
806 memcpy(key, template[i].key, template[i].klen);
807
808 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800809 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300810 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
811 d, j, algo, crypto_aead_get_flags(tfm));
812 goto out;
813 } else if (ret)
814 continue;
815
816 authsize = abs(template[i].rlen - template[i].ilen);
817
818 ret = -EINVAL;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800819 sg_init_table(sg, template[i].anp + template[i].np);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300820 if (diff_dst)
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800821 sg_init_table(sgout, template[i].anp + template[i].np);
822
823 ret = -EINVAL;
824 for (k = 0, temp = 0; k < template[i].anp; k++) {
825 if (WARN_ON(offset_in_page(IDX[k]) +
826 template[i].atap[k] > PAGE_SIZE))
827 goto out;
828 sg_set_buf(&sg[k],
829 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
830 offset_in_page(IDX[k]),
831 template[i].assoc + temp,
832 template[i].atap[k]),
833 template[i].atap[k]);
834 if (diff_dst)
835 sg_set_buf(&sgout[k],
836 axbuf[IDX[k] >> PAGE_SHIFT] +
837 offset_in_page(IDX[k]),
838 template[i].atap[k]);
839 temp += template[i].atap[k];
840 }
841
Cristian Stoica05b1d332014-07-28 13:11:23 +0300842 for (k = 0, temp = 0; k < template[i].np; k++) {
843 if (WARN_ON(offset_in_page(IDX[k]) +
844 template[i].tap[k] > PAGE_SIZE))
845 goto out;
846
847 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
848 memcpy(q, template[i].input + temp, template[i].tap[k]);
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800849 sg_set_buf(&sg[template[i].anp + k],
850 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300851
852 if (diff_dst) {
853 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
854 offset_in_page(IDX[k]);
855
856 memset(q, 0, template[i].tap[k]);
857
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800858 sg_set_buf(&sgout[template[i].anp + k],
859 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300860 }
861
862 n = template[i].tap[k];
863 if (k == template[i].np - 1 && enc)
864 n += authsize;
865 if (offset_in_page(q) + n < PAGE_SIZE)
866 q[n] = 0;
867
868 temp += template[i].tap[k];
869 }
870
871 ret = crypto_aead_setauthsize(tfm, authsize);
872 if (ret) {
873 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
874 d, authsize, j, algo);
875 goto out;
876 }
877
878 if (enc) {
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800879 if (WARN_ON(sg[template[i].anp + k - 1].offset +
880 sg[template[i].anp + k - 1].length +
881 authsize > PAGE_SIZE)) {
Horia Geanta29b77e52014-07-23 11:59:38 +0300882 ret = -EINVAL;
883 goto out;
884 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800885
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300886 if (diff_dst)
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800887 sgout[template[i].anp + k - 1].length +=
888 authsize;
889 sg[template[i].anp + k - 1].length += authsize;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300890 }
891
892 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
893 template[i].ilen,
894 iv);
895
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800896 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300897
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100898 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
899 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300900
901 switch (ret) {
902 case 0:
903 if (template[i].novrfy) {
904 /* verification was supposed to fail */
905 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
906 d, e, j, algo);
907 /* so really, we got a bad message */
908 ret = -EBADMSG;
909 goto out;
910 }
911 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300912 case -EBADMSG:
913 if (template[i].novrfy)
914 /* verification failure was expected */
915 continue;
916 /* fall through */
917 default:
918 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
919 d, e, j, algo, -ret);
920 goto out;
921 }
922
923 ret = -EINVAL;
924 for (k = 0, temp = 0; k < template[i].np; k++) {
925 if (diff_dst)
926 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
927 offset_in_page(IDX[k]);
928 else
Herbert Xuda7f0332008-07-31 17:08:25 +0800929 q = xbuf[IDX[k] >> PAGE_SHIFT] +
930 offset_in_page(IDX[k]);
931
Cristian Stoica05b1d332014-07-28 13:11:23 +0300932 n = template[i].tap[k];
933 if (k == template[i].np - 1)
934 n += enc ? authsize : -authsize;
Herbert Xuda7f0332008-07-31 17:08:25 +0800935
Cristian Stoica05b1d332014-07-28 13:11:23 +0300936 if (memcmp(q, template[i].result + temp, n)) {
937 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
938 d, j, e, k, algo);
939 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800940 goto out;
941 }
942
Cristian Stoica05b1d332014-07-28 13:11:23 +0300943 q += n;
944 if (k == template[i].np - 1 && !enc) {
945 if (!diff_dst &&
946 memcmp(q, template[i].input +
947 temp + n, authsize))
948 n = authsize;
Horia Geanta8ec25c52013-11-28 15:11:18 +0200949 else
Cristian Stoica05b1d332014-07-28 13:11:23 +0300950 n = 0;
951 } else {
952 for (n = 0; offset_in_page(q + n) && q[n]; n++)
953 ;
Herbert Xuda7f0332008-07-31 17:08:25 +0800954 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300955 if (n) {
956 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
957 d, j, e, k, algo, n);
958 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800959 goto out;
960 }
961
Cristian Stoica05b1d332014-07-28 13:11:23 +0300962 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +0800963 }
964 }
965
966 ret = 0;
967
968out:
969 aead_request_free(req);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300970 kfree(sg);
971out_nosg:
972 if (diff_dst)
973 testmgr_free_buf(xoutbuf);
974out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800975 testmgr_free_buf(axbuf);
976out_noaxbuf:
977 testmgr_free_buf(xbuf);
978out_noxbuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300979 kfree(key);
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700980 kfree(iv);
Herbert Xuda7f0332008-07-31 17:08:25 +0800981 return ret;
982}
983
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300984static int test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800985 const struct aead_testvec *template, unsigned int tcount)
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300986{
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300987 unsigned int alignmask;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300988 int ret;
989
990 /* test 'dst == src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300991 ret = __test_aead(tfm, enc, template, tcount, false, 0);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300992 if (ret)
993 return ret;
994
995 /* test 'dst != src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300996 ret = __test_aead(tfm, enc, template, tcount, true, 0);
997 if (ret)
998 return ret;
999
1000 /* test unaligned buffers, check with one byte offset */
1001 ret = __test_aead(tfm, enc, template, tcount, true, 1);
1002 if (ret)
1003 return ret;
1004
1005 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1006 if (alignmask) {
1007 /* Check if alignment mask for tfm is correctly set. */
1008 ret = __test_aead(tfm, enc, template, tcount, true,
1009 alignmask + 1);
1010 if (ret)
1011 return ret;
1012 }
1013
1014 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001015}
1016
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001017static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001018 const struct cipher_testvec *template,
1019 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001020{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001021 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
1022 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001023 char *q;
1024 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001025 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001026 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001027 char *xbuf[XBUFSIZE];
1028 int ret = -ENOMEM;
1029
1030 if (testmgr_alloc_buf(xbuf))
1031 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001032
1033 if (enc == ENCRYPT)
1034 e = "encryption";
1035 else
1036 e = "decryption";
1037
1038 j = 0;
1039 for (i = 0; i < tcount; i++) {
1040 if (template[i].np)
1041 continue;
1042
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001043 if (fips_enabled && template[i].fips_skip)
1044 continue;
1045
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001046 input = enc ? template[i].ptext : template[i].ctext;
1047 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001048 j++;
1049
Herbert Xufd57f222009-05-29 16:05:42 +10001050 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001051 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10001052 goto out;
1053
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001054 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001055 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001056
1057 crypto_cipher_clear_flags(tfm, ~0);
1058 if (template[i].wk)
1059 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1060
1061 ret = crypto_cipher_setkey(tfm, template[i].key,
1062 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001063 if (template[i].fail == !ret) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001064 printk(KERN_ERR "alg: cipher: setkey failed "
1065 "on test %d for %s: flags=%x\n", j,
1066 algo, crypto_cipher_get_flags(tfm));
1067 goto out;
1068 } else if (ret)
1069 continue;
1070
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001071 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001072 k += crypto_cipher_blocksize(tfm)) {
1073 if (enc)
1074 crypto_cipher_encrypt_one(tfm, data + k,
1075 data + k);
1076 else
1077 crypto_cipher_decrypt_one(tfm, data + k,
1078 data + k);
1079 }
1080
1081 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001082 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001083 printk(KERN_ERR "alg: cipher: Test %d failed "
1084 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001085 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001086 ret = -EINVAL;
1087 goto out;
1088 }
1089 }
1090
1091 ret = 0;
1092
1093out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001094 testmgr_free_buf(xbuf);
1095out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001096 return ret;
1097}
1098
Herbert Xu12773d92015-08-20 15:21:46 +08001099static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001100 const struct cipher_testvec *template,
1101 unsigned int tcount,
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001102 const bool diff_dst, const int align_offset)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001103{
Herbert Xuda7f0332008-07-31 17:08:25 +08001104 const char *algo =
Herbert Xu12773d92015-08-20 15:21:46 +08001105 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm));
Herbert Xuda7f0332008-07-31 17:08:25 +08001106 unsigned int i, j, k, n, temp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001107 char *q;
Herbert Xu12773d92015-08-20 15:21:46 +08001108 struct skcipher_request *req;
Herbert Xuda7f0332008-07-31 17:08:25 +08001109 struct scatterlist sg[8];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001110 struct scatterlist sgout[8];
1111 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001112 struct crypto_wait wait;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001113 const char *input, *result;
Herbert Xuda7f0332008-07-31 17:08:25 +08001114 void *data;
1115 char iv[MAX_IVLEN];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001116 char *xbuf[XBUFSIZE];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001117 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001118 int ret = -ENOMEM;
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001119 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001120
1121 if (testmgr_alloc_buf(xbuf))
1122 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +08001123
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001124 if (diff_dst && testmgr_alloc_buf(xoutbuf))
1125 goto out_nooutbuf;
1126
1127 if (diff_dst)
1128 d = "-ddst";
1129 else
1130 d = "";
1131
Herbert Xuda7f0332008-07-31 17:08:25 +08001132 if (enc == ENCRYPT)
1133 e = "encryption";
1134 else
1135 e = "decryption";
1136
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001137 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001138
Herbert Xu12773d92015-08-20 15:21:46 +08001139 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Herbert Xuda7f0332008-07-31 17:08:25 +08001140 if (!req) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001141 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
1142 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +08001143 goto out;
1144 }
1145
Herbert Xu12773d92015-08-20 15:21:46 +08001146 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001147 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001148
1149 j = 0;
1150 for (i = 0; i < tcount; i++) {
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001151 if (template[i].np && !template[i].also_non_np)
1152 continue;
1153
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001154 if (fips_enabled && template[i].fips_skip)
1155 continue;
1156
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001157 if (template[i].iv && !(template[i].generates_iv && enc))
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001158 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001159 else
1160 memset(iv, 0, MAX_IVLEN);
1161
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001162 input = enc ? template[i].ptext : template[i].ctext;
1163 result = enc ? template[i].ctext : template[i].ptext;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001164 j++;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001165 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001166 if (WARN_ON(align_offset + template[i].len > PAGE_SIZE))
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001167 goto out;
1168
1169 data = xbuf[0];
1170 data += align_offset;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001171 memcpy(data, input, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001172
Herbert Xu12773d92015-08-20 15:21:46 +08001173 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001174 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001175 crypto_skcipher_set_flags(tfm,
1176 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001177
Herbert Xu12773d92015-08-20 15:21:46 +08001178 ret = crypto_skcipher_setkey(tfm, template[i].key,
1179 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001180 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001181 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001182 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001183 goto out;
1184 } else if (ret)
1185 continue;
1186
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001187 sg_init_one(&sg[0], data, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001188 if (diff_dst) {
1189 data = xoutbuf[0];
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001190 data += align_offset;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001191 sg_init_one(&sgout[0], data, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001192 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001193
Herbert Xu12773d92015-08-20 15:21:46 +08001194 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001195 template[i].len, iv);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001196 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1197 crypto_skcipher_decrypt(req), &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001198
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001199 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001200 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
1201 d, e, j, algo, -ret);
1202 goto out;
1203 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001204
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001205 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001206 if (memcmp(q, result, template[i].len)) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001207 pr_err("alg: skcipher%s: Test %d failed (invalid result) on %s for %s\n",
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001208 d, j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001209 hexdump(q, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001210 ret = -EINVAL;
1211 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001212 }
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001213
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001214 if (template[i].generates_iv && enc &&
1215 memcmp(iv, template[i].iv, crypto_skcipher_ivsize(tfm))) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001216 pr_err("alg: skcipher%s: Test %d failed (invalid output IV) on %s for %s\n",
1217 d, j, e, algo);
1218 hexdump(iv, crypto_skcipher_ivsize(tfm));
1219 ret = -EINVAL;
1220 goto out;
1221 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001222 }
1223
1224 j = 0;
1225 for (i = 0; i < tcount; i++) {
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001226 /* alignment tests are only done with continuous buffers */
1227 if (align_offset != 0)
1228 break;
Herbert Xuda7f0332008-07-31 17:08:25 +08001229
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001230 if (!template[i].np)
1231 continue;
1232
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001233 if (fips_enabled && template[i].fips_skip)
1234 continue;
1235
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001236 if (template[i].iv && !(template[i].generates_iv && enc))
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001237 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001238 else
1239 memset(iv, 0, MAX_IVLEN);
1240
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001241 input = enc ? template[i].ptext : template[i].ctext;
1242 result = enc ? template[i].ctext : template[i].ptext;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001243 j++;
Herbert Xu12773d92015-08-20 15:21:46 +08001244 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001245 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001246 crypto_skcipher_set_flags(tfm,
1247 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001248
Herbert Xu12773d92015-08-20 15:21:46 +08001249 ret = crypto_skcipher_setkey(tfm, template[i].key,
1250 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001251 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001252 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001253 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001254 goto out;
1255 } else if (ret)
1256 continue;
1257
1258 temp = 0;
1259 ret = -EINVAL;
1260 sg_init_table(sg, template[i].np);
1261 if (diff_dst)
1262 sg_init_table(sgout, template[i].np);
1263 for (k = 0; k < template[i].np; k++) {
1264 if (WARN_ON(offset_in_page(IDX[k]) +
1265 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +08001266 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001267
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001268 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
1269
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001270 memcpy(q, input + temp, template[i].tap[k]);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001271
1272 if (offset_in_page(q) + template[i].tap[k] < PAGE_SIZE)
1273 q[template[i].tap[k]] = 0;
1274
1275 sg_set_buf(&sg[k], q, template[i].tap[k]);
1276 if (diff_dst) {
1277 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1278 offset_in_page(IDX[k]);
1279
1280 sg_set_buf(&sgout[k], q, template[i].tap[k]);
1281
1282 memset(q, 0, template[i].tap[k]);
1283 if (offset_in_page(q) +
1284 template[i].tap[k] < PAGE_SIZE)
1285 q[template[i].tap[k]] = 0;
1286 }
1287
1288 temp += template[i].tap[k];
1289 }
1290
Herbert Xu12773d92015-08-20 15:21:46 +08001291 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001292 template[i].len, iv);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001293
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001294 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1295 crypto_skcipher_decrypt(req), &wait);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001296
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001297 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001298 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1299 d, e, j, algo, -ret);
1300 goto out;
1301 }
1302
1303 temp = 0;
1304 ret = -EINVAL;
1305 for (k = 0; k < template[i].np; k++) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001306 if (diff_dst)
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001307 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1308 offset_in_page(IDX[k]);
1309 else
Herbert Xuda7f0332008-07-31 17:08:25 +08001310 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1311 offset_in_page(IDX[k]);
1312
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001313 if (memcmp(q, result + temp, template[i].tap[k])) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001314 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1315 d, j, e, k, algo);
1316 hexdump(q, template[i].tap[k]);
Herbert Xuda7f0332008-07-31 17:08:25 +08001317 goto out;
1318 }
1319
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001320 q += template[i].tap[k];
1321 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1322 ;
1323 if (n) {
1324 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1325 d, j, e, k, algo, n);
1326 hexdump(q, n);
1327 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001328 }
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001329 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +08001330 }
1331 }
1332
1333 ret = 0;
1334
1335out:
Herbert Xu12773d92015-08-20 15:21:46 +08001336 skcipher_request_free(req);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001337 if (diff_dst)
1338 testmgr_free_buf(xoutbuf);
1339out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001340 testmgr_free_buf(xbuf);
1341out_nobuf:
Herbert Xuda7f0332008-07-31 17:08:25 +08001342 return ret;
1343}
1344
Herbert Xu12773d92015-08-20 15:21:46 +08001345static int test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001346 const struct cipher_testvec *template,
1347 unsigned int tcount)
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001348{
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001349 unsigned int alignmask;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001350 int ret;
1351
1352 /* test 'dst == src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001353 ret = __test_skcipher(tfm, enc, template, tcount, false, 0);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001354 if (ret)
1355 return ret;
1356
1357 /* test 'dst != src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001358 ret = __test_skcipher(tfm, enc, template, tcount, true, 0);
1359 if (ret)
1360 return ret;
1361
1362 /* test unaligned buffers, check with one byte offset */
1363 ret = __test_skcipher(tfm, enc, template, tcount, true, 1);
1364 if (ret)
1365 return ret;
1366
1367 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1368 if (alignmask) {
1369 /* Check if alignment mask for tfm is correctly set. */
1370 ret = __test_skcipher(tfm, enc, template, tcount, true,
1371 alignmask + 1);
1372 if (ret)
1373 return ret;
1374 }
1375
1376 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001377}
1378
Eric Biggersb13b1e02017-02-24 15:46:59 -08001379static int test_comp(struct crypto_comp *tfm,
1380 const struct comp_testvec *ctemplate,
1381 const struct comp_testvec *dtemplate,
1382 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001383{
1384 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02001385 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08001386 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08001387 int ret;
1388
Mahipal Challa33607382018-04-11 20:28:32 +02001389 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1390 if (!output)
1391 return -ENOMEM;
1392
1393 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1394 if (!decomp_output) {
1395 kfree(output);
1396 return -ENOMEM;
1397 }
1398
Herbert Xuda7f0332008-07-31 17:08:25 +08001399 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001400 int ilen;
1401 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001402
Michael Schupikov22a81182018-10-07 13:58:10 +02001403 memset(output, 0, COMP_BUF_SIZE);
1404 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08001405
1406 ilen = ctemplate[i].inlen;
1407 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02001408 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001409 if (ret) {
1410 printk(KERN_ERR "alg: comp: compression failed "
1411 "on test %d for %s: ret=%d\n", i + 1, algo,
1412 -ret);
1413 goto out;
1414 }
1415
Mahipal Challa33607382018-04-11 20:28:32 +02001416 ilen = dlen;
1417 dlen = COMP_BUF_SIZE;
1418 ret = crypto_comp_decompress(tfm, output,
1419 ilen, decomp_output, &dlen);
1420 if (ret) {
1421 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
1422 i + 1, algo, -ret);
1423 goto out;
1424 }
1425
1426 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001427 printk(KERN_ERR "alg: comp: Compression test %d "
1428 "failed for %s: output len = %d\n", i + 1, algo,
1429 dlen);
1430 ret = -EINVAL;
1431 goto out;
1432 }
1433
Mahipal Challa33607382018-04-11 20:28:32 +02001434 if (memcmp(decomp_output, ctemplate[i].input,
1435 ctemplate[i].inlen)) {
1436 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
1437 i + 1, algo);
1438 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001439 ret = -EINVAL;
1440 goto out;
1441 }
1442 }
1443
1444 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001445 int ilen;
1446 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001447
Michael Schupikov22a81182018-10-07 13:58:10 +02001448 memset(decomp_output, 0, COMP_BUF_SIZE);
Herbert Xuda7f0332008-07-31 17:08:25 +08001449
1450 ilen = dtemplate[i].inlen;
1451 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02001452 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001453 if (ret) {
1454 printk(KERN_ERR "alg: comp: decompression failed "
1455 "on test %d for %s: ret=%d\n", i + 1, algo,
1456 -ret);
1457 goto out;
1458 }
1459
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001460 if (dlen != dtemplate[i].outlen) {
1461 printk(KERN_ERR "alg: comp: Decompression test %d "
1462 "failed for %s: output len = %d\n", i + 1, algo,
1463 dlen);
1464 ret = -EINVAL;
1465 goto out;
1466 }
1467
Mahipal Challa33607382018-04-11 20:28:32 +02001468 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08001469 printk(KERN_ERR "alg: comp: Decompression test %d "
1470 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02001471 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001472 ret = -EINVAL;
1473 goto out;
1474 }
1475 }
1476
1477 ret = 0;
1478
1479out:
Mahipal Challa33607382018-04-11 20:28:32 +02001480 kfree(decomp_output);
1481 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08001482 return ret;
1483}
1484
Eric Biggersb13b1e02017-02-24 15:46:59 -08001485static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02001486 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001487 const struct comp_testvec *dtemplate,
1488 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001489{
1490 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
1491 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001492 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001493 int ret;
1494 struct scatterlist src, dst;
1495 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001496 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001497
Eric Biggerseb095592016-11-23 10:24:35 -08001498 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1499 if (!output)
1500 return -ENOMEM;
1501
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001502 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1503 if (!decomp_out) {
1504 kfree(output);
1505 return -ENOMEM;
1506 }
1507
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001508 for (i = 0; i < ctcount; i++) {
1509 unsigned int dlen = COMP_BUF_SIZE;
1510 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001511 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001512
Eric Biggersd2110222016-12-30 14:12:00 -06001513 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001514 if (!input_vec) {
1515 ret = -ENOMEM;
1516 goto out;
1517 }
1518
Eric Biggerseb095592016-11-23 10:24:35 -08001519 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001520 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001521 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001522 sg_init_one(&dst, output, dlen);
1523
1524 req = acomp_request_alloc(tfm);
1525 if (!req) {
1526 pr_err("alg: acomp: request alloc failed for %s\n",
1527 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001528 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001529 ret = -ENOMEM;
1530 goto out;
1531 }
1532
1533 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1534 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001535 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001536
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001537 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001538 if (ret) {
1539 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1540 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001541 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001542 acomp_request_free(req);
1543 goto out;
1544 }
1545
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001546 ilen = req->dlen;
1547 dlen = COMP_BUF_SIZE;
1548 sg_init_one(&src, output, ilen);
1549 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001550 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001551 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1552
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001553 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001554 if (ret) {
1555 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1556 i + 1, algo, -ret);
1557 kfree(input_vec);
1558 acomp_request_free(req);
1559 goto out;
1560 }
1561
1562 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001563 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
1564 i + 1, algo, req->dlen);
1565 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001566 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001567 acomp_request_free(req);
1568 goto out;
1569 }
1570
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001571 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001572 pr_err("alg: acomp: Compression test %d failed for %s\n",
1573 i + 1, algo);
1574 hexdump(output, req->dlen);
1575 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001576 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001577 acomp_request_free(req);
1578 goto out;
1579 }
1580
Laura Abbott02608e02016-12-21 12:32:54 -08001581 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001582 acomp_request_free(req);
1583 }
1584
1585 for (i = 0; i < dtcount; i++) {
1586 unsigned int dlen = COMP_BUF_SIZE;
1587 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001588 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001589
Eric Biggersd2110222016-12-30 14:12:00 -06001590 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001591 if (!input_vec) {
1592 ret = -ENOMEM;
1593 goto out;
1594 }
1595
Eric Biggerseb095592016-11-23 10:24:35 -08001596 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001597 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001598 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001599 sg_init_one(&dst, output, dlen);
1600
1601 req = acomp_request_alloc(tfm);
1602 if (!req) {
1603 pr_err("alg: acomp: request alloc failed for %s\n",
1604 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001605 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001606 ret = -ENOMEM;
1607 goto out;
1608 }
1609
1610 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1611 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001612 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001613
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001614 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001615 if (ret) {
1616 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
1617 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001618 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001619 acomp_request_free(req);
1620 goto out;
1621 }
1622
1623 if (req->dlen != dtemplate[i].outlen) {
1624 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
1625 i + 1, algo, req->dlen);
1626 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001627 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001628 acomp_request_free(req);
1629 goto out;
1630 }
1631
1632 if (memcmp(output, dtemplate[i].output, req->dlen)) {
1633 pr_err("alg: acomp: Decompression test %d failed for %s\n",
1634 i + 1, algo);
1635 hexdump(output, req->dlen);
1636 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001637 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001638 acomp_request_free(req);
1639 goto out;
1640 }
1641
Laura Abbott02608e02016-12-21 12:32:54 -08001642 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001643 acomp_request_free(req);
1644 }
1645
1646 ret = 0;
1647
1648out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001649 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08001650 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001651 return ret;
1652}
1653
Eric Biggersb13b1e02017-02-24 15:46:59 -08001654static int test_cprng(struct crypto_rng *tfm,
1655 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001656 unsigned int tcount)
1657{
1658 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08001659 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001660 u8 *seed;
1661 char result[32];
1662
1663 seedsize = crypto_rng_seedsize(tfm);
1664
1665 seed = kmalloc(seedsize, GFP_KERNEL);
1666 if (!seed) {
1667 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1668 "for %s\n", algo);
1669 return -ENOMEM;
1670 }
1671
1672 for (i = 0; i < tcount; i++) {
1673 memset(result, 0, 32);
1674
1675 memcpy(seed, template[i].v, template[i].vlen);
1676 memcpy(seed + template[i].vlen, template[i].key,
1677 template[i].klen);
1678 memcpy(seed + template[i].vlen + template[i].klen,
1679 template[i].dt, template[i].dtlen);
1680
1681 err = crypto_rng_reset(tfm, seed, seedsize);
1682 if (err) {
1683 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1684 "for %s\n", algo);
1685 goto out;
1686 }
1687
1688 for (j = 0; j < template[i].loops; j++) {
1689 err = crypto_rng_get_bytes(tfm, result,
1690 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01001691 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001692 printk(KERN_ERR "alg: cprng: Failed to obtain "
1693 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01001694 "%s (requested %d)\n", algo,
1695 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001696 goto out;
1697 }
1698 }
1699
1700 err = memcmp(result, template[i].result,
1701 template[i].rlen);
1702 if (err) {
1703 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1704 i, algo);
1705 hexdump(result, template[i].rlen);
1706 err = -EINVAL;
1707 goto out;
1708 }
1709 }
1710
1711out:
1712 kfree(seed);
1713 return err;
1714}
1715
Herbert Xuda7f0332008-07-31 17:08:25 +08001716static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1717 u32 type, u32 mask)
1718{
1719 struct crypto_aead *tfm;
1720 int err = 0;
1721
Herbert Xueed93e02016-11-22 20:08:31 +08001722 tfm = crypto_alloc_aead(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001723 if (IS_ERR(tfm)) {
1724 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1725 "%ld\n", driver, PTR_ERR(tfm));
1726 return PTR_ERR(tfm);
1727 }
1728
1729 if (desc->suite.aead.enc.vecs) {
1730 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1731 desc->suite.aead.enc.count);
1732 if (err)
1733 goto out;
1734 }
1735
1736 if (!err && desc->suite.aead.dec.vecs)
1737 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1738 desc->suite.aead.dec.count);
1739
1740out:
1741 crypto_free_aead(tfm);
1742 return err;
1743}
1744
1745static int alg_test_cipher(const struct alg_test_desc *desc,
1746 const char *driver, u32 type, u32 mask)
1747{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001748 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001749 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001750 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001751
Herbert Xueed93e02016-11-22 20:08:31 +08001752 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001753 if (IS_ERR(tfm)) {
1754 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1755 "%s: %ld\n", driver, PTR_ERR(tfm));
1756 return PTR_ERR(tfm);
1757 }
1758
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001759 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
1760 if (!err)
1761 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08001762
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001763 crypto_free_cipher(tfm);
1764 return err;
1765}
1766
1767static int alg_test_skcipher(const struct alg_test_desc *desc,
1768 const char *driver, u32 type, u32 mask)
1769{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001770 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu12773d92015-08-20 15:21:46 +08001771 struct crypto_skcipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001772 int err;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001773
Herbert Xueed93e02016-11-22 20:08:31 +08001774 tfm = crypto_alloc_skcipher(driver, type, mask);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001775 if (IS_ERR(tfm)) {
1776 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1777 "%s: %ld\n", driver, PTR_ERR(tfm));
1778 return PTR_ERR(tfm);
1779 }
1780
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001781 err = test_skcipher(tfm, ENCRYPT, suite->vecs, suite->count);
1782 if (!err)
1783 err = test_skcipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001784
Herbert Xu12773d92015-08-20 15:21:46 +08001785 crypto_free_skcipher(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +08001786 return err;
1787}
1788
1789static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1790 u32 type, u32 mask)
1791{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001792 struct crypto_comp *comp;
1793 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001794 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001795 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08001796
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001797 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
1798 acomp = crypto_alloc_acomp(driver, type, mask);
1799 if (IS_ERR(acomp)) {
1800 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
1801 driver, PTR_ERR(acomp));
1802 return PTR_ERR(acomp);
1803 }
1804 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
1805 desc->suite.comp.decomp.vecs,
1806 desc->suite.comp.comp.count,
1807 desc->suite.comp.decomp.count);
1808 crypto_free_acomp(acomp);
1809 } else {
1810 comp = crypto_alloc_comp(driver, type, mask);
1811 if (IS_ERR(comp)) {
1812 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
1813 driver, PTR_ERR(comp));
1814 return PTR_ERR(comp);
1815 }
1816
1817 err = test_comp(comp, desc->suite.comp.comp.vecs,
1818 desc->suite.comp.decomp.vecs,
1819 desc->suite.comp.comp.count,
1820 desc->suite.comp.decomp.count);
1821
1822 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08001823 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001824 return err;
1825}
1826
Eric Biggers9b3abc0162018-05-19 22:07:41 -07001827static int __alg_test_hash(const struct hash_testvec *template,
1828 unsigned int tcount, const char *driver,
1829 u32 type, u32 mask)
Herbert Xuda7f0332008-07-31 17:08:25 +08001830{
1831 struct crypto_ahash *tfm;
1832 int err;
1833
Herbert Xueed93e02016-11-22 20:08:31 +08001834 tfm = crypto_alloc_ahash(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001835 if (IS_ERR(tfm)) {
1836 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1837 "%ld\n", driver, PTR_ERR(tfm));
1838 return PTR_ERR(tfm);
1839 }
1840
Gilad Ben-Yossef76715092018-07-01 08:02:35 +01001841 err = test_hash(tfm, template, tcount, HASH_TEST_DIGEST);
David S. Millera8f1a052010-05-19 14:12:03 +10001842 if (!err)
Gilad Ben-Yossef76715092018-07-01 08:02:35 +01001843 err = test_hash(tfm, template, tcount, HASH_TEST_FINAL);
1844 if (!err)
1845 err = test_hash(tfm, template, tcount, HASH_TEST_FINUP);
Herbert Xuda7f0332008-07-31 17:08:25 +08001846 crypto_free_ahash(tfm);
1847 return err;
1848}
1849
Eric Biggers9b3abc0162018-05-19 22:07:41 -07001850static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1851 u32 type, u32 mask)
1852{
1853 const struct hash_testvec *template = desc->suite.hash.vecs;
1854 unsigned int tcount = desc->suite.hash.count;
1855 unsigned int nr_unkeyed, nr_keyed;
1856 int err;
1857
1858 /*
1859 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1860 * first, before setting a key on the tfm. To make this easier, we
1861 * require that the unkeyed test vectors (if any) are listed first.
1862 */
1863
1864 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1865 if (template[nr_unkeyed].ksize)
1866 break;
1867 }
1868 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1869 if (!template[nr_unkeyed + nr_keyed].ksize) {
1870 pr_err("alg: hash: test vectors for %s out of order, "
1871 "unkeyed ones must come first\n", desc->alg);
1872 return -EINVAL;
1873 }
1874 }
1875
1876 err = 0;
1877 if (nr_unkeyed) {
1878 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask);
1879 template += nr_unkeyed;
1880 }
1881
1882 if (!err && nr_keyed)
1883 err = __alg_test_hash(template, nr_keyed, driver, type, mask);
1884
1885 return err;
1886}
1887
Herbert Xu8e3ee852008-11-07 14:58:52 +08001888static int alg_test_crc32c(const struct alg_test_desc *desc,
1889 const char *driver, u32 type, u32 mask)
1890{
1891 struct crypto_shash *tfm;
1892 u32 val;
1893 int err;
1894
1895 err = alg_test_hash(desc, driver, type, mask);
1896 if (err)
1897 goto out;
1898
Herbert Xueed93e02016-11-22 20:08:31 +08001899 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001900 if (IS_ERR(tfm)) {
1901 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1902 "%ld\n", driver, PTR_ERR(tfm));
1903 err = PTR_ERR(tfm);
1904 goto out;
1905 }
1906
1907 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001908 SHASH_DESC_ON_STACK(shash, tfm);
1909 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001910
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001911 shash->tfm = tfm;
1912 shash->flags = 0;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001913
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001914 *ctx = le32_to_cpu(420553207);
1915 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001916 if (err) {
1917 printk(KERN_ERR "alg: crc32c: Operation failed for "
1918 "%s: %d\n", driver, err);
1919 break;
1920 }
1921
1922 if (val != ~420553207) {
1923 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1924 "%d\n", driver, val);
1925 err = -EINVAL;
1926 }
1927 } while (0);
1928
1929 crypto_free_shash(tfm);
1930
1931out:
1932 return err;
1933}
1934
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001935static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1936 u32 type, u32 mask)
1937{
1938 struct crypto_rng *rng;
1939 int err;
1940
Herbert Xueed93e02016-11-22 20:08:31 +08001941 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001942 if (IS_ERR(rng)) {
1943 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1944 "%ld\n", driver, PTR_ERR(rng));
1945 return PTR_ERR(rng);
1946 }
1947
1948 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1949
1950 crypto_free_rng(rng);
1951
1952 return err;
1953}
1954
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001955
Eric Biggersb13b1e02017-02-24 15:46:59 -08001956static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001957 const char *driver, u32 type, u32 mask)
1958{
1959 int ret = -EAGAIN;
1960 struct crypto_rng *drng;
1961 struct drbg_test_data test_data;
1962 struct drbg_string addtl, pers, testentropy;
1963 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
1964
1965 if (!buf)
1966 return -ENOMEM;
1967
Herbert Xueed93e02016-11-22 20:08:31 +08001968 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001969 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001970 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001971 "%s\n", driver);
1972 kzfree(buf);
1973 return -ENOMEM;
1974 }
1975
1976 test_data.testentropy = &testentropy;
1977 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
1978 drbg_string_fill(&pers, test->pers, test->perslen);
1979 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
1980 if (ret) {
1981 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
1982 goto outbuf;
1983 }
1984
1985 drbg_string_fill(&addtl, test->addtla, test->addtllen);
1986 if (pr) {
1987 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
1988 ret = crypto_drbg_get_bytes_addtl_test(drng,
1989 buf, test->expectedlen, &addtl, &test_data);
1990 } else {
1991 ret = crypto_drbg_get_bytes_addtl(drng,
1992 buf, test->expectedlen, &addtl);
1993 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001994 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001995 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001996 "driver %s\n", driver);
1997 goto outbuf;
1998 }
1999
2000 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
2001 if (pr) {
2002 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
2003 ret = crypto_drbg_get_bytes_addtl_test(drng,
2004 buf, test->expectedlen, &addtl, &test_data);
2005 } else {
2006 ret = crypto_drbg_get_bytes_addtl(drng,
2007 buf, test->expectedlen, &addtl);
2008 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01002009 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04002010 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002011 "driver %s\n", driver);
2012 goto outbuf;
2013 }
2014
2015 ret = memcmp(test->expected, buf, test->expectedlen);
2016
2017outbuf:
2018 crypto_free_rng(drng);
2019 kzfree(buf);
2020 return ret;
2021}
2022
2023
2024static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
2025 u32 type, u32 mask)
2026{
2027 int err = 0;
2028 int pr = 0;
2029 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08002030 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002031 unsigned int tcount = desc->suite.drbg.count;
2032
2033 if (0 == memcmp(driver, "drbg_pr_", 8))
2034 pr = 1;
2035
2036 for (i = 0; i < tcount; i++) {
2037 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
2038 if (err) {
2039 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
2040 i, driver);
2041 err = -EINVAL;
2042 break;
2043 }
2044 }
2045 return err;
2046
2047}
2048
Eric Biggersb13b1e02017-02-24 15:46:59 -08002049static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002050 const char *alg)
2051{
2052 struct kpp_request *req;
2053 void *input_buf = NULL;
2054 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002055 void *a_public = NULL;
2056 void *a_ss = NULL;
2057 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002058 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002059 unsigned int out_len_max;
2060 int err = -ENOMEM;
2061 struct scatterlist src, dst;
2062
2063 req = kpp_request_alloc(tfm, GFP_KERNEL);
2064 if (!req)
2065 return err;
2066
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002067 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002068
2069 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
2070 if (err < 0)
2071 goto free_req;
2072
2073 out_len_max = crypto_kpp_maxsize(tfm);
2074 output_buf = kzalloc(out_len_max, GFP_KERNEL);
2075 if (!output_buf) {
2076 err = -ENOMEM;
2077 goto free_req;
2078 }
2079
2080 /* Use appropriate parameter as base */
2081 kpp_request_set_input(req, NULL, 0);
2082 sg_init_one(&dst, output_buf, out_len_max);
2083 kpp_request_set_output(req, &dst, out_len_max);
2084 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002085 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002086
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002087 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002088 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002089 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002090 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002091 alg, err);
2092 goto free_output;
2093 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002094
2095 if (vec->genkey) {
2096 /* Save party A's public key */
2097 a_public = kzalloc(out_len_max, GFP_KERNEL);
2098 if (!a_public) {
2099 err = -ENOMEM;
2100 goto free_output;
2101 }
2102 memcpy(a_public, sg_virt(req->dst), out_len_max);
2103 } else {
2104 /* Verify calculated public key */
2105 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
2106 vec->expected_a_public_size)) {
2107 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
2108 alg);
2109 err = -EINVAL;
2110 goto free_output;
2111 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002112 }
2113
2114 /* Calculate shared secret key by using counter part (b) public key. */
2115 input_buf = kzalloc(vec->b_public_size, GFP_KERNEL);
2116 if (!input_buf) {
2117 err = -ENOMEM;
2118 goto free_output;
2119 }
2120
2121 memcpy(input_buf, vec->b_public, vec->b_public_size);
2122 sg_init_one(&src, input_buf, vec->b_public_size);
2123 sg_init_one(&dst, output_buf, out_len_max);
2124 kpp_request_set_input(req, &src, vec->b_public_size);
2125 kpp_request_set_output(req, &dst, out_len_max);
2126 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002127 crypto_req_done, &wait);
2128 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002129 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002130 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002131 alg, err);
2132 goto free_all;
2133 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002134
2135 if (vec->genkey) {
2136 /* Save the shared secret obtained by party A */
2137 a_ss = kzalloc(vec->expected_ss_size, GFP_KERNEL);
2138 if (!a_ss) {
2139 err = -ENOMEM;
2140 goto free_all;
2141 }
2142 memcpy(a_ss, sg_virt(req->dst), vec->expected_ss_size);
2143
2144 /*
2145 * Calculate party B's shared secret by using party A's
2146 * public key.
2147 */
2148 err = crypto_kpp_set_secret(tfm, vec->b_secret,
2149 vec->b_secret_size);
2150 if (err < 0)
2151 goto free_all;
2152
2153 sg_init_one(&src, a_public, vec->expected_a_public_size);
2154 sg_init_one(&dst, output_buf, out_len_max);
2155 kpp_request_set_input(req, &src, vec->expected_a_public_size);
2156 kpp_request_set_output(req, &dst, out_len_max);
2157 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002158 crypto_req_done, &wait);
2159 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
2160 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002161 if (err) {
2162 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
2163 alg, err);
2164 goto free_all;
2165 }
2166
2167 shared_secret = a_ss;
2168 } else {
2169 shared_secret = (void *)vec->expected_ss;
2170 }
2171
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002172 /*
2173 * verify shared secret from which the user will derive
2174 * secret key by executing whatever hash it has chosen
2175 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002176 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002177 vec->expected_ss_size)) {
2178 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
2179 alg);
2180 err = -EINVAL;
2181 }
2182
2183free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002184 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002185 kfree(input_buf);
2186free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002187 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002188 kfree(output_buf);
2189free_req:
2190 kpp_request_free(req);
2191 return err;
2192}
2193
2194static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002195 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002196{
2197 int ret, i;
2198
2199 for (i = 0; i < tcount; i++) {
2200 ret = do_test_kpp(tfm, vecs++, alg);
2201 if (ret) {
2202 pr_err("alg: %s: test failed on vector %d, err=%d\n",
2203 alg, i + 1, ret);
2204 return ret;
2205 }
2206 }
2207 return 0;
2208}
2209
2210static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
2211 u32 type, u32 mask)
2212{
2213 struct crypto_kpp *tfm;
2214 int err = 0;
2215
Herbert Xueed93e02016-11-22 20:08:31 +08002216 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002217 if (IS_ERR(tfm)) {
2218 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
2219 driver, PTR_ERR(tfm));
2220 return PTR_ERR(tfm);
2221 }
2222 if (desc->suite.kpp.vecs)
2223 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
2224 desc->suite.kpp.count);
2225
2226 crypto_free_kpp(tfm);
2227 return err;
2228}
2229
Herbert Xu50d2b6432016-06-29 19:32:20 +08002230static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002231 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002232{
Herbert Xudf27b262016-05-05 16:42:49 +08002233 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002234 struct akcipher_request *req;
2235 void *outbuf_enc = NULL;
2236 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002237 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002238 unsigned int out_len_max, out_len = 0;
2239 int err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002240 struct scatterlist src, dst, src_tab[2];
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002241 const char *m, *c;
2242 unsigned int m_size, c_size;
2243 const char *op;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002244
Herbert Xudf27b262016-05-05 16:42:49 +08002245 if (testmgr_alloc_buf(xbuf))
2246 return err;
2247
Tadeusz Struk946cc462015-06-16 10:31:06 -07002248 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2249 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002250 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002251
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002252 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002253
2254 if (vecs->public_key_vec)
2255 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2256 vecs->key_len);
2257 else
2258 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2259 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002260 if (err)
2261 goto free_req;
2262
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002263 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002264 out_len_max = crypto_akcipher_maxsize(tfm);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002265
2266 /*
2267 * First run test which do not require a private key, such as
2268 * encrypt or verify.
2269 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07002270 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2271 if (!outbuf_enc)
2272 goto free_req;
2273
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002274 if (!vecs->siggen_sigver_test) {
2275 m = vecs->m;
2276 m_size = vecs->m_size;
2277 c = vecs->c;
2278 c_size = vecs->c_size;
2279 op = "encrypt";
2280 } else {
2281 /* Swap args so we could keep plaintext (digest)
2282 * in vecs->m, and cooked signature in vecs->c.
2283 */
2284 m = vecs->c; /* signature */
2285 m_size = vecs->c_size;
2286 c = vecs->m; /* digest */
2287 c_size = vecs->m_size;
2288 op = "verify";
2289 }
Herbert Xudf27b262016-05-05 16:42:49 +08002290
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002291 if (WARN_ON(m_size > PAGE_SIZE))
2292 goto free_all;
2293 memcpy(xbuf[0], m, m_size);
Herbert Xudf27b262016-05-05 16:42:49 +08002294
Tadeusz Struk22287b02015-10-08 09:26:55 -07002295 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002296 sg_set_buf(&src_tab[0], xbuf[0], 8);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002297 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002298 sg_init_one(&dst, outbuf_enc, out_len_max);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002299 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
Tadeusz Struk22287b02015-10-08 09:26:55 -07002300 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002301 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002302 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002303
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002304 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002305 /* Run asymmetric signature verification */
2306 crypto_akcipher_verify(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002307 /* Run asymmetric encrypt */
2308 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002309 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002310 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002311 goto free_all;
2312 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002313 if (req->dst_len != c_size) {
2314 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
2315 op);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002316 err = -EINVAL;
2317 goto free_all;
2318 }
2319 /* verify that encrypted message is equal to expected */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002320 if (memcmp(c, outbuf_enc, c_size)) {
2321 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
2322 hexdump(outbuf_enc, c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002323 err = -EINVAL;
2324 goto free_all;
2325 }
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002326
2327 /*
2328 * Don't invoke (decrypt or sign) test which require a private key
2329 * for vectors with only a public key.
2330 */
Tadeusz Struk946cc462015-06-16 10:31:06 -07002331 if (vecs->public_key_vec) {
2332 err = 0;
2333 goto free_all;
2334 }
2335 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2336 if (!outbuf_dec) {
2337 err = -ENOMEM;
2338 goto free_all;
2339 }
Herbert Xudf27b262016-05-05 16:42:49 +08002340
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002341 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
2342 if (WARN_ON(c_size > PAGE_SIZE))
Herbert Xudf27b262016-05-05 16:42:49 +08002343 goto free_all;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002344 memcpy(xbuf[0], c, c_size);
Herbert Xudf27b262016-05-05 16:42:49 +08002345
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002346 sg_init_one(&src, xbuf[0], c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002347 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002348 crypto_init_wait(&wait);
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002349 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002350
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002351 err = crypto_wait_req(vecs->siggen_sigver_test ?
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002352 /* Run asymmetric signature generation */
2353 crypto_akcipher_sign(req) :
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002354 /* Run asymmetric decrypt */
2355 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002356 if (err) {
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002357 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002358 goto free_all;
2359 }
2360 out_len = req->dst_len;
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002361 if (out_len < m_size) {
2362 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
2363 op, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002364 err = -EINVAL;
2365 goto free_all;
2366 }
2367 /* verify that decrypted message is equal to the original msg */
Vitaly Chikunov0507de92019-01-07 20:54:27 +03002368 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
2369 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
2370 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002371 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002372 err = -EINVAL;
2373 }
2374free_all:
2375 kfree(outbuf_dec);
2376 kfree(outbuf_enc);
2377free_req:
2378 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002379free_xbuf:
2380 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002381 return err;
2382}
2383
Herbert Xu50d2b6432016-06-29 19:32:20 +08002384static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002385 const struct akcipher_testvec *vecs,
2386 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002387{
Herbert Xu15226e42016-07-18 18:20:10 +08002388 const char *algo =
2389 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002390 int ret, i;
2391
2392 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002393 ret = test_akcipher_one(tfm, vecs++);
2394 if (!ret)
2395 continue;
2396
Herbert Xu15226e42016-07-18 18:20:10 +08002397 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2398 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002399 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002400 }
2401 return 0;
2402}
2403
Tadeusz Struk946cc462015-06-16 10:31:06 -07002404static int alg_test_akcipher(const struct alg_test_desc *desc,
2405 const char *driver, u32 type, u32 mask)
2406{
2407 struct crypto_akcipher *tfm;
2408 int err = 0;
2409
Herbert Xueed93e02016-11-22 20:08:31 +08002410 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002411 if (IS_ERR(tfm)) {
2412 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2413 driver, PTR_ERR(tfm));
2414 return PTR_ERR(tfm);
2415 }
2416 if (desc->suite.akcipher.vecs)
2417 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2418 desc->suite.akcipher.count);
2419
2420 crypto_free_akcipher(tfm);
2421 return err;
2422}
2423
Youquan, Song863b5572009-12-23 19:45:20 +08002424static int alg_test_null(const struct alg_test_desc *desc,
2425 const char *driver, u32 type, u32 mask)
2426{
2427 return 0;
2428}
2429
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002430#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2431
Herbert Xuda7f0332008-07-31 17:08:25 +08002432/* Please keep this list sorted by algorithm name. */
2433static const struct alg_test_desc alg_test_descs[] = {
2434 {
Eric Biggers059c2a42018-11-16 17:26:31 -08002435 .alg = "adiantum(xchacha12,aes)",
2436 .test = alg_test_skcipher,
2437 .suite = {
2438 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
2439 },
2440 }, {
2441 .alg = "adiantum(xchacha20,aes)",
2442 .test = alg_test_skcipher,
2443 .suite = {
2444 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
2445 },
2446 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02002447 .alg = "aegis128",
2448 .test = alg_test_aead,
2449 .suite = {
2450 .aead = {
2451 .enc = __VECS(aegis128_enc_tv_template),
2452 .dec = __VECS(aegis128_dec_tv_template),
2453 }
2454 }
2455 }, {
2456 .alg = "aegis128l",
2457 .test = alg_test_aead,
2458 .suite = {
2459 .aead = {
2460 .enc = __VECS(aegis128l_enc_tv_template),
2461 .dec = __VECS(aegis128l_dec_tv_template),
2462 }
2463 }
2464 }, {
2465 .alg = "aegis256",
2466 .test = alg_test_aead,
2467 .suite = {
2468 .aead = {
2469 .enc = __VECS(aegis256_enc_tv_template),
2470 .dec = __VECS(aegis256_dec_tv_template),
2471 }
2472 }
2473 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002474 .alg = "ansi_cprng",
2475 .test = alg_test_cprng,
2476 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002477 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002478 }
2479 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002480 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2481 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002482 .suite = {
2483 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002484 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2485 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002486 }
2487 }
2488 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002489 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002490 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08002491 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002492 .suite = {
2493 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002494 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302495 }
2496 }
2497 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002498 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302499 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302500 .suite = {
2501 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002502 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302503 }
2504 }
2505 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002506 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302507 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002508 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302509 .suite = {
2510 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002511 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002512 }
2513 }
2514 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002515 .alg = "authenc(hmac(sha1),ctr(aes))",
2516 .test = alg_test_null,
2517 .fips_allowed = 1,
2518 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002519 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2520 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002521 .suite = {
2522 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002523 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2524 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302525 }
2526 }
2527 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002528 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2529 .test = alg_test_null,
2530 .fips_allowed = 1,
2531 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002532 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302533 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302534 .suite = {
2535 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002536 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302537 }
2538 }
2539 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002540 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302541 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002542 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302543 .suite = {
2544 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002545 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002546 }
2547 }
2548 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002549 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002550 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002551 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002552 .suite = {
2553 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002554 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302555 }
2556 }
2557 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002558 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302559 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302560 .suite = {
2561 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002562 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302563 }
2564 }
2565 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002566 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302567 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002568 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302569 .suite = {
2570 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002571 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302572 }
2573 }
2574 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002575 .alg = "authenc(hmac(sha256),ctr(aes))",
2576 .test = alg_test_null,
2577 .fips_allowed = 1,
2578 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002579 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2580 .test = alg_test_null,
2581 .fips_allowed = 1,
2582 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002583 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302584 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302585 .suite = {
2586 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002587 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302588 }
2589 }
2590 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002591 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302592 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002593 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302594 .suite = {
2595 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002596 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002597 }
2598 }
2599 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002600 .alg = "authenc(hmac(sha384),ctr(aes))",
2601 .test = alg_test_null,
2602 .fips_allowed = 1,
2603 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002604 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2605 .test = alg_test_null,
2606 .fips_allowed = 1,
2607 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002608 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002609 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002610 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002611 .suite = {
2612 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002613 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302614 }
2615 }
2616 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002617 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302618 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302619 .suite = {
2620 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002621 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302622 }
2623 }
2624 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002625 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302626 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002627 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302628 .suite = {
2629 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002630 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002631 }
2632 }
2633 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002634 .alg = "authenc(hmac(sha512),ctr(aes))",
2635 .test = alg_test_null,
2636 .fips_allowed = 1,
2637 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002638 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2639 .test = alg_test_null,
2640 .fips_allowed = 1,
2641 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002642 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002643 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002644 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002645 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002646 .cipher = __VECS(aes_cbc_tv_template)
2647 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002648 }, {
2649 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002650 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002651 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002652 .cipher = __VECS(anubis_cbc_tv_template)
2653 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002654 }, {
2655 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002656 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002657 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002658 .cipher = __VECS(bf_cbc_tv_template)
2659 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002660 }, {
2661 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002662 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002663 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002664 .cipher = __VECS(camellia_cbc_tv_template)
2665 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002666 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002667 .alg = "cbc(cast5)",
2668 .test = alg_test_skcipher,
2669 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002670 .cipher = __VECS(cast5_cbc_tv_template)
2671 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002672 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002673 .alg = "cbc(cast6)",
2674 .test = alg_test_skcipher,
2675 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002676 .cipher = __VECS(cast6_cbc_tv_template)
2677 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002678 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002679 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002680 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002681 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002682 .cipher = __VECS(des_cbc_tv_template)
2683 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002684 }, {
2685 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002686 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002687 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002688 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002689 .cipher = __VECS(des3_ede_cbc_tv_template)
2690 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002691 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002692 /* Same as cbc(aes) except the key is stored in
2693 * hardware secure memory which we reference by index
2694 */
2695 .alg = "cbc(paes)",
2696 .test = alg_test_null,
2697 .fips_allowed = 1,
2698 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002699 .alg = "cbc(serpent)",
2700 .test = alg_test_skcipher,
2701 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002702 .cipher = __VECS(serpent_cbc_tv_template)
2703 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002704 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01002705 .alg = "cbc(sm4)",
2706 .test = alg_test_skcipher,
2707 .suite = {
2708 .cipher = __VECS(sm4_cbc_tv_template)
2709 }
2710 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002711 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002712 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002713 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002714 .cipher = __VECS(tf_cbc_tv_template)
2715 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002716 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002717 .alg = "cbcmac(aes)",
2718 .fips_allowed = 1,
2719 .test = alg_test_hash,
2720 .suite = {
2721 .hash = __VECS(aes_cbcmac_tv_template)
2722 }
2723 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002724 .alg = "ccm(aes)",
2725 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002726 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002727 .suite = {
2728 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002729 .enc = __VECS(aes_ccm_enc_tv_template),
2730 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002731 }
2732 }
2733 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03002734 .alg = "cfb(aes)",
2735 .test = alg_test_skcipher,
2736 .fips_allowed = 1,
2737 .suite = {
2738 .cipher = __VECS(aes_cfb_tv_template)
2739 },
2740 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002741 .alg = "chacha20",
2742 .test = alg_test_skcipher,
2743 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002744 .cipher = __VECS(chacha20_tv_template)
2745 },
Martin Willi3590ebf2015-06-01 13:43:57 +02002746 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002747 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002748 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002749 .test = alg_test_hash,
2750 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002751 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002752 }
2753 }, {
2754 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002755 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002756 .test = alg_test_hash,
2757 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002758 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002759 }
2760 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002761 .alg = "compress_null",
2762 .test = alg_test_null,
2763 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002764 .alg = "crc32",
2765 .test = alg_test_hash,
2766 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002767 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002768 }
2769 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002770 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002771 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002772 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002773 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002774 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002775 }
2776 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002777 .alg = "crct10dif",
2778 .test = alg_test_hash,
2779 .fips_allowed = 1,
2780 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002781 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002782 }
2783 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002784 .alg = "ctr(aes)",
2785 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002786 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002787 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002788 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002789 }
2790 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002791 .alg = "ctr(blowfish)",
2792 .test = alg_test_skcipher,
2793 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002794 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002795 }
2796 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002797 .alg = "ctr(camellia)",
2798 .test = alg_test_skcipher,
2799 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002800 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002801 }
2802 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002803 .alg = "ctr(cast5)",
2804 .test = alg_test_skcipher,
2805 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002806 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002807 }
2808 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002809 .alg = "ctr(cast6)",
2810 .test = alg_test_skcipher,
2811 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002812 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002813 }
2814 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002815 .alg = "ctr(des)",
2816 .test = alg_test_skcipher,
2817 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002818 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002819 }
2820 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002821 .alg = "ctr(des3_ede)",
2822 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002823 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002824 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002825 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002826 }
2827 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002828 /* Same as ctr(aes) except the key is stored in
2829 * hardware secure memory which we reference by index
2830 */
2831 .alg = "ctr(paes)",
2832 .test = alg_test_null,
2833 .fips_allowed = 1,
2834 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002835 .alg = "ctr(serpent)",
2836 .test = alg_test_skcipher,
2837 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002838 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002839 }
2840 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01002841 .alg = "ctr(sm4)",
2842 .test = alg_test_skcipher,
2843 .suite = {
2844 .cipher = __VECS(sm4_ctr_tv_template)
2845 }
2846 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002847 .alg = "ctr(twofish)",
2848 .test = alg_test_skcipher,
2849 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002850 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002851 }
2852 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002853 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002854 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00002855 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002856 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002857 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002858 }
2859 }, {
2860 .alg = "deflate",
2861 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002862 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002863 .suite = {
2864 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002865 .comp = __VECS(deflate_comp_tv_template),
2866 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002867 }
2868 }
2869 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002870 .alg = "dh",
2871 .test = alg_test_kpp,
2872 .fips_allowed = 1,
2873 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002874 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002875 }
2876 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002877 .alg = "digest_null",
2878 .test = alg_test_null,
2879 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002880 .alg = "drbg_nopr_ctr_aes128",
2881 .test = alg_test_drbg,
2882 .fips_allowed = 1,
2883 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002884 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002885 }
2886 }, {
2887 .alg = "drbg_nopr_ctr_aes192",
2888 .test = alg_test_drbg,
2889 .fips_allowed = 1,
2890 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002891 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002892 }
2893 }, {
2894 .alg = "drbg_nopr_ctr_aes256",
2895 .test = alg_test_drbg,
2896 .fips_allowed = 1,
2897 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002898 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002899 }
2900 }, {
2901 /*
2902 * There is no need to specifically test the DRBG with every
2903 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2904 */
2905 .alg = "drbg_nopr_hmac_sha1",
2906 .fips_allowed = 1,
2907 .test = alg_test_null,
2908 }, {
2909 .alg = "drbg_nopr_hmac_sha256",
2910 .test = alg_test_drbg,
2911 .fips_allowed = 1,
2912 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002913 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002914 }
2915 }, {
2916 /* covered by drbg_nopr_hmac_sha256 test */
2917 .alg = "drbg_nopr_hmac_sha384",
2918 .fips_allowed = 1,
2919 .test = alg_test_null,
2920 }, {
2921 .alg = "drbg_nopr_hmac_sha512",
2922 .test = alg_test_null,
2923 .fips_allowed = 1,
2924 }, {
2925 .alg = "drbg_nopr_sha1",
2926 .fips_allowed = 1,
2927 .test = alg_test_null,
2928 }, {
2929 .alg = "drbg_nopr_sha256",
2930 .test = alg_test_drbg,
2931 .fips_allowed = 1,
2932 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002933 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002934 }
2935 }, {
2936 /* covered by drbg_nopr_sha256 test */
2937 .alg = "drbg_nopr_sha384",
2938 .fips_allowed = 1,
2939 .test = alg_test_null,
2940 }, {
2941 .alg = "drbg_nopr_sha512",
2942 .fips_allowed = 1,
2943 .test = alg_test_null,
2944 }, {
2945 .alg = "drbg_pr_ctr_aes128",
2946 .test = alg_test_drbg,
2947 .fips_allowed = 1,
2948 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002949 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002950 }
2951 }, {
2952 /* covered by drbg_pr_ctr_aes128 test */
2953 .alg = "drbg_pr_ctr_aes192",
2954 .fips_allowed = 1,
2955 .test = alg_test_null,
2956 }, {
2957 .alg = "drbg_pr_ctr_aes256",
2958 .fips_allowed = 1,
2959 .test = alg_test_null,
2960 }, {
2961 .alg = "drbg_pr_hmac_sha1",
2962 .fips_allowed = 1,
2963 .test = alg_test_null,
2964 }, {
2965 .alg = "drbg_pr_hmac_sha256",
2966 .test = alg_test_drbg,
2967 .fips_allowed = 1,
2968 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002969 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002970 }
2971 }, {
2972 /* covered by drbg_pr_hmac_sha256 test */
2973 .alg = "drbg_pr_hmac_sha384",
2974 .fips_allowed = 1,
2975 .test = alg_test_null,
2976 }, {
2977 .alg = "drbg_pr_hmac_sha512",
2978 .test = alg_test_null,
2979 .fips_allowed = 1,
2980 }, {
2981 .alg = "drbg_pr_sha1",
2982 .fips_allowed = 1,
2983 .test = alg_test_null,
2984 }, {
2985 .alg = "drbg_pr_sha256",
2986 .test = alg_test_drbg,
2987 .fips_allowed = 1,
2988 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002989 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002990 }
2991 }, {
2992 /* covered by drbg_pr_sha256 test */
2993 .alg = "drbg_pr_sha384",
2994 .fips_allowed = 1,
2995 .test = alg_test_null,
2996 }, {
2997 .alg = "drbg_pr_sha512",
2998 .fips_allowed = 1,
2999 .test = alg_test_null,
3000 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003001 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003002 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003003 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003004 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003005 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003006 }
3007 }, {
3008 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003009 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003010 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003011 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003012 }
3013 }, {
3014 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003015 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003016 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003017 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003018 }
3019 }, {
3020 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003021 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003022 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003023 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003024 }
3025 }, {
3026 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003027 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003028 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003029 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003030 }
3031 }, {
3032 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003033 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003034 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003035 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003036 }
3037 }, {
3038 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003039 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003040 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003041 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003042 }
3043 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03003044 .alg = "ecb(cipher_null)",
3045 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02003046 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03003047 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003048 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003049 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003050 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003051 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003052 }
3053 }, {
3054 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003055 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003056 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003057 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003058 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003059 }
3060 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003061 .alg = "ecb(fcrypt)",
3062 .test = alg_test_skcipher,
3063 .suite = {
3064 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003065 .vecs = fcrypt_pcbc_tv_template,
3066 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003067 }
3068 }
3069 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003070 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003071 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003072 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003073 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003074 }
3075 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003076 /* Same as ecb(aes) except the key is stored in
3077 * hardware secure memory which we reference by index
3078 */
3079 .alg = "ecb(paes)",
3080 .test = alg_test_null,
3081 .fips_allowed = 1,
3082 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003083 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003084 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003085 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003086 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003087 }
3088 }, {
3089 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003090 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003091 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003092 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003093 }
3094 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003095 .alg = "ecb(sm4)",
3096 .test = alg_test_skcipher,
3097 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003098 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003099 }
3100 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003101 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003102 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003103 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003104 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003105 }
3106 }, {
3107 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003108 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003109 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003110 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003111 }
3112 }, {
3113 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003114 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003115 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003116 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003117 }
3118 }, {
3119 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003120 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003121 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003122 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003123 }
3124 }, {
3125 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003126 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003127 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003128 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003129 }
3130 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003131 .alg = "ecdh",
3132 .test = alg_test_kpp,
3133 .fips_allowed = 1,
3134 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003135 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003136 }
3137 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003138 .alg = "gcm(aes)",
3139 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003140 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003141 .suite = {
3142 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003143 .enc = __VECS(aes_gcm_enc_tv_template),
3144 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003145 }
3146 }
3147 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003148 .alg = "ghash",
3149 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003150 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003151 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003152 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003153 }
3154 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003155 .alg = "hmac(md5)",
3156 .test = alg_test_hash,
3157 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003158 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003159 }
3160 }, {
3161 .alg = "hmac(rmd128)",
3162 .test = alg_test_hash,
3163 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003164 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003165 }
3166 }, {
3167 .alg = "hmac(rmd160)",
3168 .test = alg_test_hash,
3169 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003170 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003171 }
3172 }, {
3173 .alg = "hmac(sha1)",
3174 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003175 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003176 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003177 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003178 }
3179 }, {
3180 .alg = "hmac(sha224)",
3181 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003182 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003183 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003184 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003185 }
3186 }, {
3187 .alg = "hmac(sha256)",
3188 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003189 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003190 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003191 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003192 }
3193 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303194 .alg = "hmac(sha3-224)",
3195 .test = alg_test_hash,
3196 .fips_allowed = 1,
3197 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003198 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303199 }
3200 }, {
3201 .alg = "hmac(sha3-256)",
3202 .test = alg_test_hash,
3203 .fips_allowed = 1,
3204 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003205 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303206 }
3207 }, {
3208 .alg = "hmac(sha3-384)",
3209 .test = alg_test_hash,
3210 .fips_allowed = 1,
3211 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003212 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303213 }
3214 }, {
3215 .alg = "hmac(sha3-512)",
3216 .test = alg_test_hash,
3217 .fips_allowed = 1,
3218 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003219 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303220 }
3221 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003222 .alg = "hmac(sha384)",
3223 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003224 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003225 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003226 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003227 }
3228 }, {
3229 .alg = "hmac(sha512)",
3230 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003231 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003232 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003233 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003234 }
3235 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03003236 .alg = "hmac(streebog256)",
3237 .test = alg_test_hash,
3238 .suite = {
3239 .hash = __VECS(hmac_streebog256_tv_template)
3240 }
3241 }, {
3242 .alg = "hmac(streebog512)",
3243 .test = alg_test_hash,
3244 .suite = {
3245 .hash = __VECS(hmac_streebog512_tv_template)
3246 }
3247 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003248 .alg = "jitterentropy_rng",
3249 .fips_allowed = 1,
3250 .test = alg_test_null,
3251 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003252 .alg = "kw(aes)",
3253 .test = alg_test_skcipher,
3254 .fips_allowed = 1,
3255 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003256 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003257 }
3258 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003259 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003260 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003261 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003262 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003263 }
3264 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003265 .alg = "lrw(camellia)",
3266 .test = alg_test_skcipher,
3267 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003268 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003269 }
3270 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003271 .alg = "lrw(cast6)",
3272 .test = alg_test_skcipher,
3273 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003274 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003275 }
3276 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003277 .alg = "lrw(serpent)",
3278 .test = alg_test_skcipher,
3279 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003280 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003281 }
3282 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003283 .alg = "lrw(twofish)",
3284 .test = alg_test_skcipher,
3285 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003286 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003287 }
3288 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003289 .alg = "lz4",
3290 .test = alg_test_comp,
3291 .fips_allowed = 1,
3292 .suite = {
3293 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003294 .comp = __VECS(lz4_comp_tv_template),
3295 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003296 }
3297 }
3298 }, {
3299 .alg = "lz4hc",
3300 .test = alg_test_comp,
3301 .fips_allowed = 1,
3302 .suite = {
3303 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003304 .comp = __VECS(lz4hc_comp_tv_template),
3305 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003306 }
3307 }
3308 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003309 .alg = "lzo",
3310 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003311 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003312 .suite = {
3313 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003314 .comp = __VECS(lzo_comp_tv_template),
3315 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003316 }
3317 }
3318 }, {
3319 .alg = "md4",
3320 .test = alg_test_hash,
3321 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003322 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003323 }
3324 }, {
3325 .alg = "md5",
3326 .test = alg_test_hash,
3327 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003328 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003329 }
3330 }, {
3331 .alg = "michael_mic",
3332 .test = alg_test_hash,
3333 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003334 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003335 }
3336 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02003337 .alg = "morus1280",
3338 .test = alg_test_aead,
3339 .suite = {
3340 .aead = {
3341 .enc = __VECS(morus1280_enc_tv_template),
3342 .dec = __VECS(morus1280_dec_tv_template),
3343 }
3344 }
3345 }, {
3346 .alg = "morus640",
3347 .test = alg_test_aead,
3348 .suite = {
3349 .aead = {
3350 .enc = __VECS(morus640_enc_tv_template),
3351 .dec = __VECS(morus640_dec_tv_template),
3352 }
3353 }
3354 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08003355 .alg = "nhpoly1305",
3356 .test = alg_test_hash,
3357 .suite = {
3358 .hash = __VECS(nhpoly1305_tv_template)
3359 }
3360 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003361 .alg = "ofb(aes)",
3362 .test = alg_test_skcipher,
3363 .fips_allowed = 1,
3364 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003365 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003366 }
3367 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01003368 /* Same as ofb(aes) except the key is stored in
3369 * hardware secure memory which we reference by index
3370 */
3371 .alg = "ofb(paes)",
3372 .test = alg_test_null,
3373 .fips_allowed = 1,
3374 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003375 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003376 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003377 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003378 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003379 }
3380 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003381 .alg = "pkcs1pad(rsa,sha224)",
3382 .test = alg_test_null,
3383 .fips_allowed = 1,
3384 }, {
3385 .alg = "pkcs1pad(rsa,sha256)",
3386 .test = alg_test_akcipher,
3387 .fips_allowed = 1,
3388 .suite = {
3389 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3390 }
3391 }, {
3392 .alg = "pkcs1pad(rsa,sha384)",
3393 .test = alg_test_null,
3394 .fips_allowed = 1,
3395 }, {
3396 .alg = "pkcs1pad(rsa,sha512)",
3397 .test = alg_test_null,
3398 .fips_allowed = 1,
3399 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003400 .alg = "poly1305",
3401 .test = alg_test_hash,
3402 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003403 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003404 }
3405 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003406 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003407 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003408 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003409 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003410 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003411 }
3412 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003413 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003414 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05003415 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003416 .suite = {
3417 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003418 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3419 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003420 }
3421 }
3422 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003423 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003424 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003425 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003426 .suite = {
3427 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003428 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3429 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003430 }
3431 }
3432 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003433 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003434 .test = alg_test_aead,
3435 .suite = {
3436 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003437 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3438 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003439 }
3440 }
3441 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003442 .alg = "rfc7539(chacha20,poly1305)",
3443 .test = alg_test_aead,
3444 .suite = {
3445 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003446 .enc = __VECS(rfc7539_enc_tv_template),
3447 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003448 }
3449 }
3450 }, {
Martin Willi59007582015-06-01 13:44:03 +02003451 .alg = "rfc7539esp(chacha20,poly1305)",
3452 .test = alg_test_aead,
3453 .suite = {
3454 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003455 .enc = __VECS(rfc7539esp_enc_tv_template),
3456 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003457 }
3458 }
3459 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003460 .alg = "rmd128",
3461 .test = alg_test_hash,
3462 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003463 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003464 }
3465 }, {
3466 .alg = "rmd160",
3467 .test = alg_test_hash,
3468 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003469 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003470 }
3471 }, {
3472 .alg = "rmd256",
3473 .test = alg_test_hash,
3474 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003475 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003476 }
3477 }, {
3478 .alg = "rmd320",
3479 .test = alg_test_hash,
3480 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003481 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003482 }
3483 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003484 .alg = "rsa",
3485 .test = alg_test_akcipher,
3486 .fips_allowed = 1,
3487 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003488 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003489 }
3490 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003491 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003492 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003493 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003494 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003495 }
3496 }, {
3497 .alg = "sha1",
3498 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003499 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003500 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003501 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003502 }
3503 }, {
3504 .alg = "sha224",
3505 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003506 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003507 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003508 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003509 }
3510 }, {
3511 .alg = "sha256",
3512 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003513 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003514 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003515 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003516 }
3517 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303518 .alg = "sha3-224",
3519 .test = alg_test_hash,
3520 .fips_allowed = 1,
3521 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003522 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303523 }
3524 }, {
3525 .alg = "sha3-256",
3526 .test = alg_test_hash,
3527 .fips_allowed = 1,
3528 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003529 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303530 }
3531 }, {
3532 .alg = "sha3-384",
3533 .test = alg_test_hash,
3534 .fips_allowed = 1,
3535 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003536 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303537 }
3538 }, {
3539 .alg = "sha3-512",
3540 .test = alg_test_hash,
3541 .fips_allowed = 1,
3542 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003543 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303544 }
3545 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003546 .alg = "sha384",
3547 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003548 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003549 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003550 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003551 }
3552 }, {
3553 .alg = "sha512",
3554 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003555 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003556 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003557 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003558 }
3559 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03003560 .alg = "sm3",
3561 .test = alg_test_hash,
3562 .suite = {
3563 .hash = __VECS(sm3_tv_template)
3564 }
3565 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03003566 .alg = "streebog256",
3567 .test = alg_test_hash,
3568 .suite = {
3569 .hash = __VECS(streebog256_tv_template)
3570 }
3571 }, {
3572 .alg = "streebog512",
3573 .test = alg_test_hash,
3574 .suite = {
3575 .hash = __VECS(streebog512_tv_template)
3576 }
3577 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003578 .alg = "tgr128",
3579 .test = alg_test_hash,
3580 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003581 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003582 }
3583 }, {
3584 .alg = "tgr160",
3585 .test = alg_test_hash,
3586 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003587 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003588 }
3589 }, {
3590 .alg = "tgr192",
3591 .test = alg_test_hash,
3592 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003593 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003594 }
3595 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07003596 .alg = "vmac64(aes)",
3597 .test = alg_test_hash,
3598 .suite = {
3599 .hash = __VECS(vmac64_aes_tv_template)
3600 }
3601 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003602 .alg = "wp256",
3603 .test = alg_test_hash,
3604 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003605 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003606 }
3607 }, {
3608 .alg = "wp384",
3609 .test = alg_test_hash,
3610 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003611 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003612 }
3613 }, {
3614 .alg = "wp512",
3615 .test = alg_test_hash,
3616 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003617 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003618 }
3619 }, {
3620 .alg = "xcbc(aes)",
3621 .test = alg_test_hash,
3622 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003623 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003624 }
3625 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08003626 .alg = "xchacha12",
3627 .test = alg_test_skcipher,
3628 .suite = {
3629 .cipher = __VECS(xchacha12_tv_template)
3630 },
3631 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08003632 .alg = "xchacha20",
3633 .test = alg_test_skcipher,
3634 .suite = {
3635 .cipher = __VECS(xchacha20_tv_template)
3636 },
3637 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003638 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003639 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003640 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003641 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003642 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003643 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003644 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003645 .alg = "xts(camellia)",
3646 .test = alg_test_skcipher,
3647 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003648 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003649 }
3650 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003651 .alg = "xts(cast6)",
3652 .test = alg_test_skcipher,
3653 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003654 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003655 }
3656 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003657 /* Same as xts(aes) except the key is stored in
3658 * hardware secure memory which we reference by index
3659 */
3660 .alg = "xts(paes)",
3661 .test = alg_test_null,
3662 .fips_allowed = 1,
3663 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003664 .alg = "xts(serpent)",
3665 .test = alg_test_skcipher,
3666 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003667 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003668 }
3669 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003670 .alg = "xts(twofish)",
3671 .test = alg_test_skcipher,
3672 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003673 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003674 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003675 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003676 .alg = "xts4096(paes)",
3677 .test = alg_test_null,
3678 .fips_allowed = 1,
3679 }, {
3680 .alg = "xts512(paes)",
3681 .test = alg_test_null,
3682 .fips_allowed = 1,
3683 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003684 .alg = "zlib-deflate",
3685 .test = alg_test_comp,
3686 .fips_allowed = 1,
3687 .suite = {
3688 .comp = {
3689 .comp = __VECS(zlib_deflate_comp_tv_template),
3690 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3691 }
3692 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07003693 }, {
3694 .alg = "zstd",
3695 .test = alg_test_comp,
3696 .fips_allowed = 1,
3697 .suite = {
3698 .comp = {
3699 .comp = __VECS(zstd_comp_tv_template),
3700 .decomp = __VECS(zstd_decomp_tv_template)
3701 }
3702 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003703 }
3704};
3705
Jussi Kivilinna57147582013-06-13 17:37:40 +03003706static bool alg_test_descs_checked;
3707
3708static void alg_test_descs_check_order(void)
3709{
3710 int i;
3711
3712 /* only check once */
3713 if (alg_test_descs_checked)
3714 return;
3715
3716 alg_test_descs_checked = true;
3717
3718 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3719 int diff = strcmp(alg_test_descs[i - 1].alg,
3720 alg_test_descs[i].alg);
3721
3722 if (WARN_ON(diff > 0)) {
3723 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3724 alg_test_descs[i - 1].alg,
3725 alg_test_descs[i].alg);
3726 }
3727
3728 if (WARN_ON(diff == 0)) {
3729 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3730 alg_test_descs[i].alg);
3731 }
3732 }
3733}
3734
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003735static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003736{
3737 int start = 0;
3738 int end = ARRAY_SIZE(alg_test_descs);
3739
3740 while (start < end) {
3741 int i = (start + end) / 2;
3742 int diff = strcmp(alg_test_descs[i].alg, alg);
3743
3744 if (diff > 0) {
3745 end = i;
3746 continue;
3747 }
3748
3749 if (diff < 0) {
3750 start = i + 1;
3751 continue;
3752 }
3753
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003754 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003755 }
3756
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003757 return -1;
3758}
3759
3760int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3761{
3762 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003763 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003764 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003765
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003766 if (!fips_enabled && notests) {
3767 printk_once(KERN_INFO "alg: self-tests disabled\n");
3768 return 0;
3769 }
3770
Jussi Kivilinna57147582013-06-13 17:37:40 +03003771 alg_test_descs_check_order();
3772
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003773 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3774 char nalg[CRYPTO_MAX_ALG_NAME];
3775
3776 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3777 sizeof(nalg))
3778 return -ENAMETOOLONG;
3779
3780 i = alg_find_test(nalg);
3781 if (i < 0)
3782 goto notest;
3783
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003784 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3785 goto non_fips_alg;
3786
Jarod Wilson941fb322009-05-04 19:49:23 +08003787 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3788 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003789 }
3790
3791 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003792 j = alg_find_test(driver);
3793 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003794 goto notest;
3795
Herbert Xua68f6612009-07-02 16:32:12 +08003796 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3797 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003798 goto non_fips_alg;
3799
Herbert Xua68f6612009-07-02 16:32:12 +08003800 rc = 0;
3801 if (i >= 0)
3802 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3803 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003804 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003805 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3806 type, mask);
3807
Jarod Wilson941fb322009-05-04 19:49:23 +08003808test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003809 if (fips_enabled && rc)
3810 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3811
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003812 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003813 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003814
Neil Hormand12d6b62008-10-12 20:36:51 +08003815 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003816
3817notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003818 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3819 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003820non_fips_alg:
3821 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003822}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003823
Herbert Xu326a6342010-08-06 09:40:28 +08003824#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003825
Herbert Xuda7f0332008-07-31 17:08:25 +08003826EXPORT_SYMBOL_GPL(alg_test);