aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/crypto/ahash.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2020-01-02 20:04:40 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2020-01-09 11:30:58 +0800
commitd4fdc2dfaa755e0bf22de6a2774cac2e5ae45cf4 (patch)
tree18c2e44d234eaff00fbb2b9ae243d4ea69619651 /crypto/ahash.c
parentcrypto: algapi - remove crypto_template::{alloc,free}() (diff)
downloadwireguard-linux-d4fdc2dfaa755e0bf22de6a2774cac2e5ae45cf4.tar.xz
wireguard-linux-d4fdc2dfaa755e0bf22de6a2774cac2e5ae45cf4.zip
crypto: algapi - enforce that all instances have a ->free() method
All instances need to have a ->free() method, but people could forget to set it and then not notice if the instance is never unregistered. To help detect this bug earlier, don't allow an instance without a ->free() method to be registered, and complain loudly if someone tries to do it. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/ahash.c')
-rw-r--r--crypto/ahash.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c
index cd5d9847d513..68a0f0cb75c4 100644
--- a/crypto/ahash.c
+++ b/crypto/ahash.c
@@ -656,6 +656,9 @@ int ahash_register_instance(struct crypto_template *tmpl,
{
int err;
+ if (WARN_ON(!inst->free))
+ return -EINVAL;
+
err = ahash_prepare_alg(&inst->alg);
if (err)
return err;