Skip to content

Commit 9c521a2

Browse files
smuellerDDherbertx
authored andcommitted
crypto: api - remove instance when test failed
A cipher instance is added to the list of instances unconditionally regardless of whether the associated test failed. However, a failed test implies that during another lookup, the cipher instance will be added to the list again as it will not be found by the lookup code. That means that the list can be filled up with instances whose tests failed. Note: tests only fail in reality in FIPS mode when a cipher is not marked as fips_allowed=1. This can be seen with cmac(des3_ede) that does not have a fips_allowed=1. When allocating the cipher, the allocation fails with -ENOENT due to the missing fips_allowed=1 flag (which causes the testmgr to return EINVAL). Yet, the instance of cmac(des3_ede) is shown in /proc/crypto. Allocating the cipher again fails again, but a 2nd instance is listed in /proc/crypto. The patch simply de-registers the instance when the testing failed. Signed-off-by: Stephan Mueller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent e9b8e5b commit 9c521a2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

crypto/algapi.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,10 @@ int crypto_register_instance(struct crypto_template *tmpl,
523523

524524
err = crypto_check_alg(&inst->alg);
525525
if (err)
526-
goto err;
526+
return err;
527+
528+
if (unlikely(!crypto_mod_get(&inst->alg)))
529+
return -EAGAIN;
527530

528531
inst->alg.cra_module = tmpl->module;
529532
inst->alg.cra_flags |= CRYPTO_ALG_INSTANCE;
@@ -545,9 +548,14 @@ int crypto_register_instance(struct crypto_template *tmpl,
545548
goto err;
546549

547550
crypto_wait_for_test(larval);
551+
552+
/* Remove instance if test failed */
553+
if (!(inst->alg.cra_flags & CRYPTO_ALG_TESTED))
554+
crypto_unregister_instance(inst);
548555
err = 0;
549556

550557
err:
558+
crypto_mod_put(&inst->alg);
551559
return err;
552560
}
553561
EXPORT_SYMBOL_GPL(crypto_register_instance);

0 commit comments

Comments
 (0)