blob: 0f684a414acbedc1334de5c939c17863bbafc998 [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];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002241
Herbert Xudf27b262016-05-05 16:42:49 +08002242 if (testmgr_alloc_buf(xbuf))
2243 return err;
2244
Tadeusz Struk946cc462015-06-16 10:31:06 -07002245 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2246 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002247 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002248
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002249 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002250
2251 if (vecs->public_key_vec)
2252 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2253 vecs->key_len);
2254 else
2255 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2256 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002257 if (err)
2258 goto free_req;
2259
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002260 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002261 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002262 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2263 if (!outbuf_enc)
2264 goto free_req;
2265
Herbert Xudf27b262016-05-05 16:42:49 +08002266 if (WARN_ON(vecs->m_size > PAGE_SIZE))
2267 goto free_all;
2268
2269 memcpy(xbuf[0], vecs->m, vecs->m_size);
2270
Tadeusz Struk22287b02015-10-08 09:26:55 -07002271 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002272 sg_set_buf(&src_tab[0], xbuf[0], 8);
2273 sg_set_buf(&src_tab[1], xbuf[0] + 8, vecs->m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002274 sg_init_one(&dst, outbuf_enc, out_len_max);
2275 akcipher_request_set_crypt(req, src_tab, &dst, vecs->m_size,
2276 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002277 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002278 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002279
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002280 err = crypto_wait_req(vecs->siggen_sigver_test ?
2281 /* Run asymmetric signature generation */
2282 crypto_akcipher_sign(req) :
2283 /* Run asymmetric encrypt */
2284 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002285 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002286 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002287 goto free_all;
2288 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002289 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002290 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002291 err = -EINVAL;
2292 goto free_all;
2293 }
2294 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002295 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002296 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2297 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002298 err = -EINVAL;
2299 goto free_all;
2300 }
2301 /* Don't invoke decrypt for vectors with public key */
2302 if (vecs->public_key_vec) {
2303 err = 0;
2304 goto free_all;
2305 }
2306 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2307 if (!outbuf_dec) {
2308 err = -ENOMEM;
2309 goto free_all;
2310 }
Herbert Xudf27b262016-05-05 16:42:49 +08002311
2312 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2313 goto free_all;
2314
2315 memcpy(xbuf[0], vecs->c, vecs->c_size);
2316
2317 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002318 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002319 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002320 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002321
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002322 err = crypto_wait_req(vecs->siggen_sigver_test ?
2323 /* Run asymmetric signature verification */
2324 crypto_akcipher_verify(req) :
2325 /* Run asymmetric decrypt */
2326 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002327 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002328 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002329 goto free_all;
2330 }
2331 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002332 if (out_len < vecs->m_size) {
2333 pr_err("alg: akcipher: decrypt test failed. "
2334 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002335 err = -EINVAL;
2336 goto free_all;
2337 }
2338 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002339 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2340 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2341 vecs->m_size)) {
2342 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2343 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002344 err = -EINVAL;
2345 }
2346free_all:
2347 kfree(outbuf_dec);
2348 kfree(outbuf_enc);
2349free_req:
2350 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002351free_xbuf:
2352 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002353 return err;
2354}
2355
Herbert Xu50d2b6432016-06-29 19:32:20 +08002356static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002357 const struct akcipher_testvec *vecs,
2358 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002359{
Herbert Xu15226e42016-07-18 18:20:10 +08002360 const char *algo =
2361 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002362 int ret, i;
2363
2364 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002365 ret = test_akcipher_one(tfm, vecs++);
2366 if (!ret)
2367 continue;
2368
Herbert Xu15226e42016-07-18 18:20:10 +08002369 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2370 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002371 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002372 }
2373 return 0;
2374}
2375
Tadeusz Struk946cc462015-06-16 10:31:06 -07002376static int alg_test_akcipher(const struct alg_test_desc *desc,
2377 const char *driver, u32 type, u32 mask)
2378{
2379 struct crypto_akcipher *tfm;
2380 int err = 0;
2381
Herbert Xueed93e02016-11-22 20:08:31 +08002382 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002383 if (IS_ERR(tfm)) {
2384 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2385 driver, PTR_ERR(tfm));
2386 return PTR_ERR(tfm);
2387 }
2388 if (desc->suite.akcipher.vecs)
2389 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2390 desc->suite.akcipher.count);
2391
2392 crypto_free_akcipher(tfm);
2393 return err;
2394}
2395
Youquan, Song863b5572009-12-23 19:45:20 +08002396static int alg_test_null(const struct alg_test_desc *desc,
2397 const char *driver, u32 type, u32 mask)
2398{
2399 return 0;
2400}
2401
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002402#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2403
Herbert Xuda7f0332008-07-31 17:08:25 +08002404/* Please keep this list sorted by algorithm name. */
2405static const struct alg_test_desc alg_test_descs[] = {
2406 {
Eric Biggers059c2a42018-11-16 17:26:31 -08002407 .alg = "adiantum(xchacha12,aes)",
2408 .test = alg_test_skcipher,
2409 .suite = {
2410 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
2411 },
2412 }, {
2413 .alg = "adiantum(xchacha20,aes)",
2414 .test = alg_test_skcipher,
2415 .suite = {
2416 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
2417 },
2418 }, {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02002419 .alg = "aegis128",
2420 .test = alg_test_aead,
2421 .suite = {
2422 .aead = {
2423 .enc = __VECS(aegis128_enc_tv_template),
2424 .dec = __VECS(aegis128_dec_tv_template),
2425 }
2426 }
2427 }, {
2428 .alg = "aegis128l",
2429 .test = alg_test_aead,
2430 .suite = {
2431 .aead = {
2432 .enc = __VECS(aegis128l_enc_tv_template),
2433 .dec = __VECS(aegis128l_dec_tv_template),
2434 }
2435 }
2436 }, {
2437 .alg = "aegis256",
2438 .test = alg_test_aead,
2439 .suite = {
2440 .aead = {
2441 .enc = __VECS(aegis256_enc_tv_template),
2442 .dec = __VECS(aegis256_dec_tv_template),
2443 }
2444 }
2445 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002446 .alg = "ansi_cprng",
2447 .test = alg_test_cprng,
2448 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002449 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002450 }
2451 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002452 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2453 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002454 .suite = {
2455 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002456 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2457 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002458 }
2459 }
2460 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002461 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002462 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08002463 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002464 .suite = {
2465 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002466 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302467 }
2468 }
2469 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002470 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302471 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302472 .suite = {
2473 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002474 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302475 }
2476 }
2477 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002478 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302479 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002480 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302481 .suite = {
2482 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002483 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002484 }
2485 }
2486 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002487 .alg = "authenc(hmac(sha1),ctr(aes))",
2488 .test = alg_test_null,
2489 .fips_allowed = 1,
2490 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002491 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2492 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002493 .suite = {
2494 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002495 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2496 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302497 }
2498 }
2499 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002500 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2501 .test = alg_test_null,
2502 .fips_allowed = 1,
2503 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002504 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302505 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302506 .suite = {
2507 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002508 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302509 }
2510 }
2511 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002512 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302513 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002514 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302515 .suite = {
2516 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002517 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002518 }
2519 }
2520 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002521 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002522 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002523 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002524 .suite = {
2525 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002526 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302527 }
2528 }
2529 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002530 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302531 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302532 .suite = {
2533 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002534 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302535 }
2536 }
2537 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002538 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302539 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002540 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302541 .suite = {
2542 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002543 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302544 }
2545 }
2546 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002547 .alg = "authenc(hmac(sha256),ctr(aes))",
2548 .test = alg_test_null,
2549 .fips_allowed = 1,
2550 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002551 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2552 .test = alg_test_null,
2553 .fips_allowed = 1,
2554 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002555 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302556 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302557 .suite = {
2558 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002559 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302560 }
2561 }
2562 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002563 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302564 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002565 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302566 .suite = {
2567 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002568 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002569 }
2570 }
2571 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002572 .alg = "authenc(hmac(sha384),ctr(aes))",
2573 .test = alg_test_null,
2574 .fips_allowed = 1,
2575 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002576 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2577 .test = alg_test_null,
2578 .fips_allowed = 1,
2579 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002580 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002581 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002582 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002583 .suite = {
2584 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002585 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302586 }
2587 }
2588 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002589 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302590 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302591 .suite = {
2592 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002593 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302594 }
2595 }
2596 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002597 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302598 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002599 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302600 .suite = {
2601 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002602 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002603 }
2604 }
2605 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002606 .alg = "authenc(hmac(sha512),ctr(aes))",
2607 .test = alg_test_null,
2608 .fips_allowed = 1,
2609 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002610 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2611 .test = alg_test_null,
2612 .fips_allowed = 1,
2613 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002614 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002615 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002616 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002617 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002618 .cipher = __VECS(aes_cbc_tv_template)
2619 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002620 }, {
2621 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002622 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002623 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002624 .cipher = __VECS(anubis_cbc_tv_template)
2625 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002626 }, {
2627 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002628 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002629 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002630 .cipher = __VECS(bf_cbc_tv_template)
2631 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002632 }, {
2633 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002634 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002635 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002636 .cipher = __VECS(camellia_cbc_tv_template)
2637 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002638 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002639 .alg = "cbc(cast5)",
2640 .test = alg_test_skcipher,
2641 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002642 .cipher = __VECS(cast5_cbc_tv_template)
2643 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002644 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002645 .alg = "cbc(cast6)",
2646 .test = alg_test_skcipher,
2647 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002648 .cipher = __VECS(cast6_cbc_tv_template)
2649 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002650 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002651 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002652 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002653 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002654 .cipher = __VECS(des_cbc_tv_template)
2655 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002656 }, {
2657 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002658 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002659 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002660 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002661 .cipher = __VECS(des3_ede_cbc_tv_template)
2662 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002663 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002664 /* Same as cbc(aes) except the key is stored in
2665 * hardware secure memory which we reference by index
2666 */
2667 .alg = "cbc(paes)",
2668 .test = alg_test_null,
2669 .fips_allowed = 1,
2670 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002671 .alg = "cbc(serpent)",
2672 .test = alg_test_skcipher,
2673 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002674 .cipher = __VECS(serpent_cbc_tv_template)
2675 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002676 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01002677 .alg = "cbc(sm4)",
2678 .test = alg_test_skcipher,
2679 .suite = {
2680 .cipher = __VECS(sm4_cbc_tv_template)
2681 }
2682 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002683 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002684 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002685 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002686 .cipher = __VECS(tf_cbc_tv_template)
2687 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002688 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002689 .alg = "cbcmac(aes)",
2690 .fips_allowed = 1,
2691 .test = alg_test_hash,
2692 .suite = {
2693 .hash = __VECS(aes_cbcmac_tv_template)
2694 }
2695 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002696 .alg = "ccm(aes)",
2697 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002698 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002699 .suite = {
2700 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002701 .enc = __VECS(aes_ccm_enc_tv_template),
2702 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002703 }
2704 }
2705 }, {
Dmitry Eremin-Solenikov7da66672018-10-20 02:01:53 +03002706 .alg = "cfb(aes)",
2707 .test = alg_test_skcipher,
2708 .fips_allowed = 1,
2709 .suite = {
2710 .cipher = __VECS(aes_cfb_tv_template)
2711 },
2712 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002713 .alg = "chacha20",
2714 .test = alg_test_skcipher,
2715 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002716 .cipher = __VECS(chacha20_tv_template)
2717 },
Martin Willi3590ebf2015-06-01 13:43:57 +02002718 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002719 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002720 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002721 .test = alg_test_hash,
2722 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002723 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002724 }
2725 }, {
2726 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002727 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002728 .test = alg_test_hash,
2729 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002730 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002731 }
2732 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002733 .alg = "compress_null",
2734 .test = alg_test_null,
2735 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002736 .alg = "crc32",
2737 .test = alg_test_hash,
2738 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002739 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002740 }
2741 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002742 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002743 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002744 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002745 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002746 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002747 }
2748 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002749 .alg = "crct10dif",
2750 .test = alg_test_hash,
2751 .fips_allowed = 1,
2752 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002753 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002754 }
2755 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002756 .alg = "ctr(aes)",
2757 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002758 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002759 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002760 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002761 }
2762 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002763 .alg = "ctr(blowfish)",
2764 .test = alg_test_skcipher,
2765 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002766 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002767 }
2768 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002769 .alg = "ctr(camellia)",
2770 .test = alg_test_skcipher,
2771 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002772 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002773 }
2774 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002775 .alg = "ctr(cast5)",
2776 .test = alg_test_skcipher,
2777 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002778 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002779 }
2780 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002781 .alg = "ctr(cast6)",
2782 .test = alg_test_skcipher,
2783 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002784 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002785 }
2786 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002787 .alg = "ctr(des)",
2788 .test = alg_test_skcipher,
2789 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002790 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002791 }
2792 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002793 .alg = "ctr(des3_ede)",
2794 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002795 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002796 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002797 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002798 }
2799 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002800 /* Same as ctr(aes) except the key is stored in
2801 * hardware secure memory which we reference by index
2802 */
2803 .alg = "ctr(paes)",
2804 .test = alg_test_null,
2805 .fips_allowed = 1,
2806 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002807 .alg = "ctr(serpent)",
2808 .test = alg_test_skcipher,
2809 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002810 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002811 }
2812 }, {
Gilad Ben-Yossef95ba5972018-09-20 14:18:38 +01002813 .alg = "ctr(sm4)",
2814 .test = alg_test_skcipher,
2815 .suite = {
2816 .cipher = __VECS(sm4_ctr_tv_template)
2817 }
2818 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002819 .alg = "ctr(twofish)",
2820 .test = alg_test_skcipher,
2821 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002822 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002823 }
2824 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002825 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002826 .test = alg_test_skcipher,
Gilad Ben-Yossef196ad602018-11-04 10:05:24 +00002827 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002828 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002829 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002830 }
2831 }, {
2832 .alg = "deflate",
2833 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002834 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002835 .suite = {
2836 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002837 .comp = __VECS(deflate_comp_tv_template),
2838 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002839 }
2840 }
2841 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002842 .alg = "dh",
2843 .test = alg_test_kpp,
2844 .fips_allowed = 1,
2845 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002846 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002847 }
2848 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002849 .alg = "digest_null",
2850 .test = alg_test_null,
2851 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002852 .alg = "drbg_nopr_ctr_aes128",
2853 .test = alg_test_drbg,
2854 .fips_allowed = 1,
2855 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002856 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002857 }
2858 }, {
2859 .alg = "drbg_nopr_ctr_aes192",
2860 .test = alg_test_drbg,
2861 .fips_allowed = 1,
2862 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002863 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002864 }
2865 }, {
2866 .alg = "drbg_nopr_ctr_aes256",
2867 .test = alg_test_drbg,
2868 .fips_allowed = 1,
2869 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002870 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002871 }
2872 }, {
2873 /*
2874 * There is no need to specifically test the DRBG with every
2875 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2876 */
2877 .alg = "drbg_nopr_hmac_sha1",
2878 .fips_allowed = 1,
2879 .test = alg_test_null,
2880 }, {
2881 .alg = "drbg_nopr_hmac_sha256",
2882 .test = alg_test_drbg,
2883 .fips_allowed = 1,
2884 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002885 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002886 }
2887 }, {
2888 /* covered by drbg_nopr_hmac_sha256 test */
2889 .alg = "drbg_nopr_hmac_sha384",
2890 .fips_allowed = 1,
2891 .test = alg_test_null,
2892 }, {
2893 .alg = "drbg_nopr_hmac_sha512",
2894 .test = alg_test_null,
2895 .fips_allowed = 1,
2896 }, {
2897 .alg = "drbg_nopr_sha1",
2898 .fips_allowed = 1,
2899 .test = alg_test_null,
2900 }, {
2901 .alg = "drbg_nopr_sha256",
2902 .test = alg_test_drbg,
2903 .fips_allowed = 1,
2904 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002905 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002906 }
2907 }, {
2908 /* covered by drbg_nopr_sha256 test */
2909 .alg = "drbg_nopr_sha384",
2910 .fips_allowed = 1,
2911 .test = alg_test_null,
2912 }, {
2913 .alg = "drbg_nopr_sha512",
2914 .fips_allowed = 1,
2915 .test = alg_test_null,
2916 }, {
2917 .alg = "drbg_pr_ctr_aes128",
2918 .test = alg_test_drbg,
2919 .fips_allowed = 1,
2920 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002921 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002922 }
2923 }, {
2924 /* covered by drbg_pr_ctr_aes128 test */
2925 .alg = "drbg_pr_ctr_aes192",
2926 .fips_allowed = 1,
2927 .test = alg_test_null,
2928 }, {
2929 .alg = "drbg_pr_ctr_aes256",
2930 .fips_allowed = 1,
2931 .test = alg_test_null,
2932 }, {
2933 .alg = "drbg_pr_hmac_sha1",
2934 .fips_allowed = 1,
2935 .test = alg_test_null,
2936 }, {
2937 .alg = "drbg_pr_hmac_sha256",
2938 .test = alg_test_drbg,
2939 .fips_allowed = 1,
2940 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002941 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002942 }
2943 }, {
2944 /* covered by drbg_pr_hmac_sha256 test */
2945 .alg = "drbg_pr_hmac_sha384",
2946 .fips_allowed = 1,
2947 .test = alg_test_null,
2948 }, {
2949 .alg = "drbg_pr_hmac_sha512",
2950 .test = alg_test_null,
2951 .fips_allowed = 1,
2952 }, {
2953 .alg = "drbg_pr_sha1",
2954 .fips_allowed = 1,
2955 .test = alg_test_null,
2956 }, {
2957 .alg = "drbg_pr_sha256",
2958 .test = alg_test_drbg,
2959 .fips_allowed = 1,
2960 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002961 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002962 }
2963 }, {
2964 /* covered by drbg_pr_sha256 test */
2965 .alg = "drbg_pr_sha384",
2966 .fips_allowed = 1,
2967 .test = alg_test_null,
2968 }, {
2969 .alg = "drbg_pr_sha512",
2970 .fips_allowed = 1,
2971 .test = alg_test_null,
2972 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002973 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002974 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002975 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002976 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002977 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002978 }
2979 }, {
2980 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002981 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002982 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002983 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002984 }
2985 }, {
2986 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002987 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002988 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002989 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002990 }
2991 }, {
2992 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002993 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002994 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002995 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002996 }
2997 }, {
2998 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002999 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003000 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003001 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003002 }
3003 }, {
3004 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003005 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003006 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003007 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003008 }
3009 }, {
3010 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003011 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003012 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003013 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003014 }
3015 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03003016 .alg = "ecb(cipher_null)",
3017 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02003018 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03003019 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003020 .alg = "ecb(des)",
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(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003024 }
3025 }, {
3026 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003027 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003028 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003029 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003030 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003031 }
3032 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003033 .alg = "ecb(fcrypt)",
3034 .test = alg_test_skcipher,
3035 .suite = {
3036 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003037 .vecs = fcrypt_pcbc_tv_template,
3038 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003039 }
3040 }
3041 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003042 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003043 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003044 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003045 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003046 }
3047 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003048 /* Same as ecb(aes) except the key is stored in
3049 * hardware secure memory which we reference by index
3050 */
3051 .alg = "ecb(paes)",
3052 .test = alg_test_null,
3053 .fips_allowed = 1,
3054 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003055 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003056 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003057 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003058 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003059 }
3060 }, {
3061 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003062 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003063 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003064 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003065 }
3066 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003067 .alg = "ecb(sm4)",
3068 .test = alg_test_skcipher,
3069 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003070 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003071 }
3072 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003073 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003074 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003075 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003076 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003077 }
3078 }, {
3079 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003080 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003081 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003082 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003083 }
3084 }, {
3085 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003086 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003087 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003088 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003089 }
3090 }, {
3091 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003092 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003093 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003094 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003095 }
3096 }, {
3097 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003098 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003099 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003100 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003101 }
3102 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003103 .alg = "ecdh",
3104 .test = alg_test_kpp,
3105 .fips_allowed = 1,
3106 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003107 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003108 }
3109 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003110 .alg = "gcm(aes)",
3111 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003112 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003113 .suite = {
3114 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003115 .enc = __VECS(aes_gcm_enc_tv_template),
3116 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003117 }
3118 }
3119 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003120 .alg = "ghash",
3121 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003122 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003123 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003124 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003125 }
3126 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003127 .alg = "hmac(md5)",
3128 .test = alg_test_hash,
3129 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003130 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003131 }
3132 }, {
3133 .alg = "hmac(rmd128)",
3134 .test = alg_test_hash,
3135 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003136 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003137 }
3138 }, {
3139 .alg = "hmac(rmd160)",
3140 .test = alg_test_hash,
3141 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003142 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003143 }
3144 }, {
3145 .alg = "hmac(sha1)",
3146 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003147 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003148 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003149 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003150 }
3151 }, {
3152 .alg = "hmac(sha224)",
3153 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003154 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003155 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003156 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003157 }
3158 }, {
3159 .alg = "hmac(sha256)",
3160 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003161 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003162 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003163 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003164 }
3165 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303166 .alg = "hmac(sha3-224)",
3167 .test = alg_test_hash,
3168 .fips_allowed = 1,
3169 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003170 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303171 }
3172 }, {
3173 .alg = "hmac(sha3-256)",
3174 .test = alg_test_hash,
3175 .fips_allowed = 1,
3176 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003177 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303178 }
3179 }, {
3180 .alg = "hmac(sha3-384)",
3181 .test = alg_test_hash,
3182 .fips_allowed = 1,
3183 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003184 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303185 }
3186 }, {
3187 .alg = "hmac(sha3-512)",
3188 .test = alg_test_hash,
3189 .fips_allowed = 1,
3190 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003191 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303192 }
3193 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003194 .alg = "hmac(sha384)",
3195 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003196 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003197 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003198 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003199 }
3200 }, {
3201 .alg = "hmac(sha512)",
3202 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003203 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003204 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003205 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003206 }
3207 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03003208 .alg = "hmac(streebog256)",
3209 .test = alg_test_hash,
3210 .suite = {
3211 .hash = __VECS(hmac_streebog256_tv_template)
3212 }
3213 }, {
3214 .alg = "hmac(streebog512)",
3215 .test = alg_test_hash,
3216 .suite = {
3217 .hash = __VECS(hmac_streebog512_tv_template)
3218 }
3219 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003220 .alg = "jitterentropy_rng",
3221 .fips_allowed = 1,
3222 .test = alg_test_null,
3223 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003224 .alg = "kw(aes)",
3225 .test = alg_test_skcipher,
3226 .fips_allowed = 1,
3227 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003228 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003229 }
3230 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003231 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003232 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003233 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003234 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003235 }
3236 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003237 .alg = "lrw(camellia)",
3238 .test = alg_test_skcipher,
3239 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003240 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003241 }
3242 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003243 .alg = "lrw(cast6)",
3244 .test = alg_test_skcipher,
3245 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003246 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003247 }
3248 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003249 .alg = "lrw(serpent)",
3250 .test = alg_test_skcipher,
3251 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003252 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003253 }
3254 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003255 .alg = "lrw(twofish)",
3256 .test = alg_test_skcipher,
3257 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003258 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003259 }
3260 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003261 .alg = "lz4",
3262 .test = alg_test_comp,
3263 .fips_allowed = 1,
3264 .suite = {
3265 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003266 .comp = __VECS(lz4_comp_tv_template),
3267 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003268 }
3269 }
3270 }, {
3271 .alg = "lz4hc",
3272 .test = alg_test_comp,
3273 .fips_allowed = 1,
3274 .suite = {
3275 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003276 .comp = __VECS(lz4hc_comp_tv_template),
3277 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003278 }
3279 }
3280 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003281 .alg = "lzo",
3282 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003283 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003284 .suite = {
3285 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003286 .comp = __VECS(lzo_comp_tv_template),
3287 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003288 }
3289 }
3290 }, {
3291 .alg = "md4",
3292 .test = alg_test_hash,
3293 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003294 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003295 }
3296 }, {
3297 .alg = "md5",
3298 .test = alg_test_hash,
3299 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003300 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003301 }
3302 }, {
3303 .alg = "michael_mic",
3304 .test = alg_test_hash,
3305 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003306 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003307 }
3308 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02003309 .alg = "morus1280",
3310 .test = alg_test_aead,
3311 .suite = {
3312 .aead = {
3313 .enc = __VECS(morus1280_enc_tv_template),
3314 .dec = __VECS(morus1280_dec_tv_template),
3315 }
3316 }
3317 }, {
3318 .alg = "morus640",
3319 .test = alg_test_aead,
3320 .suite = {
3321 .aead = {
3322 .enc = __VECS(morus640_enc_tv_template),
3323 .dec = __VECS(morus640_dec_tv_template),
3324 }
3325 }
3326 }, {
Eric Biggers26609a22018-11-16 17:26:29 -08003327 .alg = "nhpoly1305",
3328 .test = alg_test_hash,
3329 .suite = {
3330 .hash = __VECS(nhpoly1305_tv_template)
3331 }
3332 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003333 .alg = "ofb(aes)",
3334 .test = alg_test_skcipher,
3335 .fips_allowed = 1,
3336 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003337 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003338 }
3339 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01003340 /* Same as ofb(aes) except the key is stored in
3341 * hardware secure memory which we reference by index
3342 */
3343 .alg = "ofb(paes)",
3344 .test = alg_test_null,
3345 .fips_allowed = 1,
3346 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003347 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003348 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003349 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003350 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003351 }
3352 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003353 .alg = "pkcs1pad(rsa,sha224)",
3354 .test = alg_test_null,
3355 .fips_allowed = 1,
3356 }, {
3357 .alg = "pkcs1pad(rsa,sha256)",
3358 .test = alg_test_akcipher,
3359 .fips_allowed = 1,
3360 .suite = {
3361 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3362 }
3363 }, {
3364 .alg = "pkcs1pad(rsa,sha384)",
3365 .test = alg_test_null,
3366 .fips_allowed = 1,
3367 }, {
3368 .alg = "pkcs1pad(rsa,sha512)",
3369 .test = alg_test_null,
3370 .fips_allowed = 1,
3371 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003372 .alg = "poly1305",
3373 .test = alg_test_hash,
3374 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003375 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003376 }
3377 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003378 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003379 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003380 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003381 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003382 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003383 }
3384 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003385 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003386 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05003387 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003388 .suite = {
3389 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003390 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3391 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003392 }
3393 }
3394 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003395 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003396 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003397 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003398 .suite = {
3399 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003400 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3401 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003402 }
3403 }
3404 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003405 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003406 .test = alg_test_aead,
3407 .suite = {
3408 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003409 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3410 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003411 }
3412 }
3413 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003414 .alg = "rfc7539(chacha20,poly1305)",
3415 .test = alg_test_aead,
3416 .suite = {
3417 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003418 .enc = __VECS(rfc7539_enc_tv_template),
3419 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003420 }
3421 }
3422 }, {
Martin Willi59007582015-06-01 13:44:03 +02003423 .alg = "rfc7539esp(chacha20,poly1305)",
3424 .test = alg_test_aead,
3425 .suite = {
3426 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003427 .enc = __VECS(rfc7539esp_enc_tv_template),
3428 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003429 }
3430 }
3431 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003432 .alg = "rmd128",
3433 .test = alg_test_hash,
3434 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003435 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003436 }
3437 }, {
3438 .alg = "rmd160",
3439 .test = alg_test_hash,
3440 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003441 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003442 }
3443 }, {
3444 .alg = "rmd256",
3445 .test = alg_test_hash,
3446 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003447 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003448 }
3449 }, {
3450 .alg = "rmd320",
3451 .test = alg_test_hash,
3452 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003453 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003454 }
3455 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003456 .alg = "rsa",
3457 .test = alg_test_akcipher,
3458 .fips_allowed = 1,
3459 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003460 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003461 }
3462 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003463 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003464 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003465 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003466 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003467 }
3468 }, {
3469 .alg = "sha1",
3470 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003471 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003472 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003473 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003474 }
3475 }, {
3476 .alg = "sha224",
3477 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003478 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003479 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003480 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003481 }
3482 }, {
3483 .alg = "sha256",
3484 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003485 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003486 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003487 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003488 }
3489 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303490 .alg = "sha3-224",
3491 .test = alg_test_hash,
3492 .fips_allowed = 1,
3493 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003494 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303495 }
3496 }, {
3497 .alg = "sha3-256",
3498 .test = alg_test_hash,
3499 .fips_allowed = 1,
3500 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003501 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303502 }
3503 }, {
3504 .alg = "sha3-384",
3505 .test = alg_test_hash,
3506 .fips_allowed = 1,
3507 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003508 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303509 }
3510 }, {
3511 .alg = "sha3-512",
3512 .test = alg_test_hash,
3513 .fips_allowed = 1,
3514 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003515 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303516 }
3517 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003518 .alg = "sha384",
3519 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003520 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003521 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003522 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003523 }
3524 }, {
3525 .alg = "sha512",
3526 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003527 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003528 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003529 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003530 }
3531 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03003532 .alg = "sm3",
3533 .test = alg_test_hash,
3534 .suite = {
3535 .hash = __VECS(sm3_tv_template)
3536 }
3537 }, {
Vitaly Chikunov25a0b9d2018-11-07 00:00:03 +03003538 .alg = "streebog256",
3539 .test = alg_test_hash,
3540 .suite = {
3541 .hash = __VECS(streebog256_tv_template)
3542 }
3543 }, {
3544 .alg = "streebog512",
3545 .test = alg_test_hash,
3546 .suite = {
3547 .hash = __VECS(streebog512_tv_template)
3548 }
3549 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003550 .alg = "tgr128",
3551 .test = alg_test_hash,
3552 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003553 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003554 }
3555 }, {
3556 .alg = "tgr160",
3557 .test = alg_test_hash,
3558 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003559 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003560 }
3561 }, {
3562 .alg = "tgr192",
3563 .test = alg_test_hash,
3564 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003565 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003566 }
3567 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07003568 .alg = "vmac64(aes)",
3569 .test = alg_test_hash,
3570 .suite = {
3571 .hash = __VECS(vmac64_aes_tv_template)
3572 }
3573 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003574 .alg = "wp256",
3575 .test = alg_test_hash,
3576 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003577 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003578 }
3579 }, {
3580 .alg = "wp384",
3581 .test = alg_test_hash,
3582 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003583 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003584 }
3585 }, {
3586 .alg = "wp512",
3587 .test = alg_test_hash,
3588 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003589 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003590 }
3591 }, {
3592 .alg = "xcbc(aes)",
3593 .test = alg_test_hash,
3594 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003595 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003596 }
3597 }, {
Eric Biggersaa762402018-11-16 17:26:22 -08003598 .alg = "xchacha12",
3599 .test = alg_test_skcipher,
3600 .suite = {
3601 .cipher = __VECS(xchacha12_tv_template)
3602 },
3603 }, {
Eric Biggersde61d7a2018-11-16 17:26:20 -08003604 .alg = "xchacha20",
3605 .test = alg_test_skcipher,
3606 .suite = {
3607 .cipher = __VECS(xchacha20_tv_template)
3608 },
3609 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003610 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003611 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003612 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003613 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003614 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003615 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003616 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003617 .alg = "xts(camellia)",
3618 .test = alg_test_skcipher,
3619 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003620 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003621 }
3622 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003623 .alg = "xts(cast6)",
3624 .test = alg_test_skcipher,
3625 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003626 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003627 }
3628 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003629 /* Same as xts(aes) except the key is stored in
3630 * hardware secure memory which we reference by index
3631 */
3632 .alg = "xts(paes)",
3633 .test = alg_test_null,
3634 .fips_allowed = 1,
3635 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003636 .alg = "xts(serpent)",
3637 .test = alg_test_skcipher,
3638 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003639 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003640 }
3641 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003642 .alg = "xts(twofish)",
3643 .test = alg_test_skcipher,
3644 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003645 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003646 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003647 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003648 .alg = "xts4096(paes)",
3649 .test = alg_test_null,
3650 .fips_allowed = 1,
3651 }, {
3652 .alg = "xts512(paes)",
3653 .test = alg_test_null,
3654 .fips_allowed = 1,
3655 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003656 .alg = "zlib-deflate",
3657 .test = alg_test_comp,
3658 .fips_allowed = 1,
3659 .suite = {
3660 .comp = {
3661 .comp = __VECS(zlib_deflate_comp_tv_template),
3662 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3663 }
3664 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07003665 }, {
3666 .alg = "zstd",
3667 .test = alg_test_comp,
3668 .fips_allowed = 1,
3669 .suite = {
3670 .comp = {
3671 .comp = __VECS(zstd_comp_tv_template),
3672 .decomp = __VECS(zstd_decomp_tv_template)
3673 }
3674 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003675 }
3676};
3677
Jussi Kivilinna57147582013-06-13 17:37:40 +03003678static bool alg_test_descs_checked;
3679
3680static void alg_test_descs_check_order(void)
3681{
3682 int i;
3683
3684 /* only check once */
3685 if (alg_test_descs_checked)
3686 return;
3687
3688 alg_test_descs_checked = true;
3689
3690 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3691 int diff = strcmp(alg_test_descs[i - 1].alg,
3692 alg_test_descs[i].alg);
3693
3694 if (WARN_ON(diff > 0)) {
3695 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3696 alg_test_descs[i - 1].alg,
3697 alg_test_descs[i].alg);
3698 }
3699
3700 if (WARN_ON(diff == 0)) {
3701 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3702 alg_test_descs[i].alg);
3703 }
3704 }
3705}
3706
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003707static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003708{
3709 int start = 0;
3710 int end = ARRAY_SIZE(alg_test_descs);
3711
3712 while (start < end) {
3713 int i = (start + end) / 2;
3714 int diff = strcmp(alg_test_descs[i].alg, alg);
3715
3716 if (diff > 0) {
3717 end = i;
3718 continue;
3719 }
3720
3721 if (diff < 0) {
3722 start = i + 1;
3723 continue;
3724 }
3725
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003726 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003727 }
3728
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003729 return -1;
3730}
3731
3732int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3733{
3734 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003735 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003736 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003737
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003738 if (!fips_enabled && notests) {
3739 printk_once(KERN_INFO "alg: self-tests disabled\n");
3740 return 0;
3741 }
3742
Jussi Kivilinna57147582013-06-13 17:37:40 +03003743 alg_test_descs_check_order();
3744
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003745 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3746 char nalg[CRYPTO_MAX_ALG_NAME];
3747
3748 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3749 sizeof(nalg))
3750 return -ENAMETOOLONG;
3751
3752 i = alg_find_test(nalg);
3753 if (i < 0)
3754 goto notest;
3755
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003756 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3757 goto non_fips_alg;
3758
Jarod Wilson941fb322009-05-04 19:49:23 +08003759 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3760 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003761 }
3762
3763 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003764 j = alg_find_test(driver);
3765 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003766 goto notest;
3767
Herbert Xua68f6612009-07-02 16:32:12 +08003768 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3769 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003770 goto non_fips_alg;
3771
Herbert Xua68f6612009-07-02 16:32:12 +08003772 rc = 0;
3773 if (i >= 0)
3774 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3775 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003776 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003777 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3778 type, mask);
3779
Jarod Wilson941fb322009-05-04 19:49:23 +08003780test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003781 if (fips_enabled && rc)
3782 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3783
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003784 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003785 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003786
Neil Hormand12d6b62008-10-12 20:36:51 +08003787 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003788
3789notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003790 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3791 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003792non_fips_alg:
3793 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003794}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003795
Herbert Xu326a6342010-08-06 09:40:28 +08003796#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003797
Herbert Xuda7f0332008-07-31 17:08:25 +08003798EXPORT_SYMBOL_GPL(alg_test);