From: Russell King Date: Fri, 9 Oct 2015 19:43:33 +0000 (+0100) Subject: crypto: ahash - ensure statesize is non-zero X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2aafe811b0d734f1dc743ce23bc9bec94dec26cb;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git crypto: ahash - ensure statesize is non-zero commit 8996eafdcbad149ac0f772fb1649fbb75c482a6a upstream. Unlike shash algorithms, ahash drivers must implement export and import as their descriptors may contain hardware state and cannot be exported as is. Unfortunately some ahash drivers did not provide them and end up causing crashes with algif_hash. This patch adds a check to prevent these drivers from registering ahash algorithms until they are fixed. Signed-off-by: Russell King Signed-off-by: Herbert Xu Signed-off-by: Greg Kroah-Hartman --- diff --git a/crypto/ahash.c b/crypto/ahash.c index 793a27f2493e..857ae2b2a2a2 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -462,7 +462,8 @@ static int ahash_prepare_alg(struct ahash_alg *alg) struct crypto_alg *base = &alg->halg.base; if (alg->halg.digestsize > PAGE_SIZE / 8 || - alg->halg.statesize > PAGE_SIZE / 8) + alg->halg.statesize > PAGE_SIZE / 8 || + alg->halg.statesize == 0) return -EINVAL; base->cra_type = &crypto_ahash_type;