[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240819084843.1012289-1-make24@iscas.ac.cn>
Date: Mon, 19 Aug 2024 16:48:43 +0800
From: Ma Ke <make24@...as.ac.cn>
To: herbert@...dor.apana.org.au,
davem@...emloft.net,
j-keerthy@...com,
t-kristo@...com,
akpm@...ux-foundation.org
Cc: linux-crypto@...r.kernel.org,
linux-kernel@...r.kernel.org,
Ma Ke <make24@...as.ac.cn>,
stable@...r.kernel.org
Subject: [PATCH RESEND] crypto: sa2ul - fix memory leak in sa_cra_init_aead()
Currently the resource allocated by crypto_alloc_shash() is not freed in
case crypto_alloc_aead() fails, resulting in memory leak.
Add crypto_free_shash() to fix it.
Found by code review.
Cc: stable@...r.kernel.org
Fixes: d2c8ac187fc9 ("crypto: sa2ul - Add AEAD algorithm support")
Signed-off-by: Ma Ke <make24@...as.ac.cn>
---
drivers/crypto/sa2ul.c | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/drivers/crypto/sa2ul.c b/drivers/crypto/sa2ul.c
index 461eca40e878..b5af621f7f17 100644
--- a/drivers/crypto/sa2ul.c
+++ b/drivers/crypto/sa2ul.c
@@ -1740,7 +1740,8 @@ static int sa_cra_init_aead(struct crypto_aead *tfm, const char *hash,
ctx->shash = crypto_alloc_shash(hash, 0, CRYPTO_ALG_NEED_FALLBACK);
if (IS_ERR(ctx->shash)) {
dev_err(sa_k3_dev, "base driver %s couldn't be loaded\n", hash);
- return PTR_ERR(ctx->shash);
+ ret = PTR_ERR(ctx->shash);
+ goto err_free_shash;
}
ctx->fallback.aead = crypto_alloc_aead(fallback, 0,
@@ -1749,7 +1750,8 @@ static int sa_cra_init_aead(struct crypto_aead *tfm, const char *hash,
if (IS_ERR(ctx->fallback.aead)) {
dev_err(sa_k3_dev, "fallback driver %s couldn't be loaded\n",
fallback);
- return PTR_ERR(ctx->fallback.aead);
+ ret = PTR_ERR(ctx->fallback.aead);
+ goto err_free_shash;
}
crypto_aead_set_reqsize(tfm, sizeof(struct aead_request) +
@@ -1757,19 +1759,23 @@ static int sa_cra_init_aead(struct crypto_aead *tfm, const char *hash,
ret = sa_init_ctx_info(&ctx->enc, data);
if (ret)
- return ret;
+ goto err_free_shash;
ret = sa_init_ctx_info(&ctx->dec, data);
- if (ret) {
- sa_free_ctx_info(&ctx->enc, data);
- return ret;
- }
+ if (ret)
+ goto err_free_ctx_info;
dev_dbg(sa_k3_dev, "%s(0x%p) sc-ids(0x%x(0x%pad), 0x%x(0x%pad))\n",
__func__, tfm, ctx->enc.sc_id, &ctx->enc.sc_phys,
ctx->dec.sc_id, &ctx->dec.sc_phys);
return ret;
+
+err_free_ctx_info:
+ sa_free_ctx_info(&ctx->enc, data);
+err_free_shash:
+ crypto_free_shash(ctx->shash);
+ return ret;
}
static int sa_cra_init_aead_sha1(struct crypto_aead *tfm)
--
2.25.1
Powered by blists - more mailing lists