Skip to content

Commit

Permalink
UPSTREAM: crypto: testmgr - fix testing OPTIONAL_KEY hash algorithms
Browse files Browse the repository at this point in the history
Since testmgr uses a single tfm for all tests of each hash algorithm,
once a key is set the tfm won't be unkeyed anymore.  But with crc32 and
crc32c, the key is really the "default initial state" and is optional;
those algorithms should have both keyed and unkeyed test vectors, to
verify that implementations use the correct default key.

Simply listing the unkeyed test vectors first isn't guaranteed to work
yet because testmgr makes multiple passes through the test vectors.
crc32c does have an unkeyed test vector listed first currently, but it
only works by chance because the last crc32c test vector happens to use
a key that is the same as the default key.

Therefore, teach testmgr to split hash test vectors into unkeyed and
keyed sections, and do all the unkeyed ones before the keyed ones.

Signed-off-by: Eric Biggers <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>

(cherry picked from commit a1afe27492a408d45421a1812064235691303fa1)
Bug: 248322249
Change-Id: I0c8e5e36f0de29351a97a479d2f59a7b5b8b27d8
Signed-off-by: Ram Muthiah <[email protected]>
  • Loading branch information
ebiggers authored and rmuthiah committed Mar 31, 2023
1 parent f2a4c8b commit c0a7318
Showing 1 changed file with 43 additions and 7 deletions.
50 changes: 43 additions & 7 deletions crypto/testmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1807,8 +1807,9 @@ static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
return err;
}

static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
u32 type, u32 mask)
static int __alg_test_hash(const struct hash_testvec *template,
unsigned int tcount, const char *driver,
u32 type, u32 mask)
{
struct crypto_ahash *tfm;
int err;
Expand All @@ -1820,16 +1821,51 @@ static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
return PTR_ERR(tfm);
}

err = test_hash(tfm, desc->suite.hash.vecs,
desc->suite.hash.count, true);
err = test_hash(tfm, template, tcount, true);
if (!err)
err = test_hash(tfm, desc->suite.hash.vecs,
desc->suite.hash.count, false);

err = test_hash(tfm, template, tcount, false);
crypto_free_ahash(tfm);
return err;
}

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

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

for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
if (template[nr_unkeyed].ksize)
break;
}
for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
if (!template[nr_unkeyed + nr_keyed].ksize) {
pr_err("alg: hash: test vectors for %s out of order, "
"unkeyed ones must come first\n", desc->alg);
return -EINVAL;
}
}

err = 0;
if (nr_unkeyed) {
err = __alg_test_hash(template, nr_unkeyed, driver, type, mask);
template += nr_unkeyed;
}

if (!err && nr_keyed)
err = __alg_test_hash(template, nr_keyed, driver, type, mask);

return err;
}

static int alg_test_crc32c(const struct alg_test_desc *desc,
const char *driver, u32 type, u32 mask)
{
Expand Down

0 comments on commit c0a7318

Please sign in to comment.