]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
crypto: qce - fix uaf on qce_ahash_register_one
authorChengfeng Ye <cyeaa@connect.ust.hk>
Thu, 4 Nov 2021 13:38:31 +0000 (06:38 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 07:46:13 +0000 (08:46 +0100)
[ Upstream commit b4cb4d31631912842eb7dce02b4350cbb7562d5e ]

Pointer base points to sub field of tmpl, it
is dereferenced after tmpl is freed. Fix
this by accessing base before free tmpl.

Fixes: ec8f5d8f ("crypto: qce - Qualcomm crypto engine driver")
Signed-off-by: Chengfeng Ye <cyeaa@connect.ust.hk>
Acked-by: Thara Gopinath <thara.gopinath@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/crypto/qce/sha.c

index 0c9973ec80ebde80513152b7f16af5d50da8daae..da2e4c193953a5af611bc7cb2e49e821fb45f9e9 100644 (file)
@@ -539,8 +539,8 @@ static int qce_ahash_register_one(const struct qce_ahash_def *def,
 
        ret = crypto_register_ahash(alg);
        if (ret) {
-               kfree(tmpl);
                dev_err(qce->dev, "%s registration failed\n", base->cra_name);
+               kfree(tmpl);
                return ret;
        }