[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <b3e5184d-19bc-45ed-92e3-a751842839b3@linaro.org>
Date: Tue, 3 Dec 2024 14:55:12 +0100
From: neil.armstrong@...aro.org
To: Bartosz Golaszewski <brgl@...ev.pl>,
Thara Gopinath <thara.gopinath@...il.com>,
Herbert Xu <herbert@...dor.apana.org.au>,
"David S. Miller" <davem@...emloft.net>,
Stanimir Varbanov <svarbanov@...sol.com>
Cc: linux-crypto@...r.kernel.org, linux-arm-msm@...r.kernel.org,
linux-kernel@...r.kernel.org,
Bartosz Golaszewski <bartosz.golaszewski@...aro.org>, stable@...r.kernel.org
Subject: Re: [PATCH 2/9] crypto: qce - unregister previously registered algos
in error path
On 03/12/2024 10:19, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
>
> If we encounter an error when registering alorithms with the crypto
> framework, we just bail out and don't unregister the ones we
> successfully registered in prior iterations of the loop.
>
> Add code that goes back over the algos and unregisters them before
> returning an error from qce_register_algs().
>
> Cc: stable@...r.kernel.org
> Fixes: ec8f5d8f6f76 ("crypto: qce - Qualcomm crypto engine driver")
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
> ---
> drivers/crypto/qce/core.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/crypto/qce/core.c b/drivers/crypto/qce/core.c
> index 58ea93220f015..848e5e802b92b 100644
> --- a/drivers/crypto/qce/core.c
> +++ b/drivers/crypto/qce/core.c
> @@ -51,16 +51,19 @@ static void qce_unregister_algs(struct qce_device *qce)
> static int qce_register_algs(struct qce_device *qce)
> {
> const struct qce_algo_ops *ops;
> - int i, ret = -ENODEV;
> + int i, j, ret = -ENODEV;
>
> for (i = 0; i < ARRAY_SIZE(qce_ops); i++) {
> ops = qce_ops[i];
> ret = ops->register_algs(qce);
> - if (ret)
> - break;
> + if (ret) {
> + for (j = i - 1; j >= 0; j--)
> + ops->unregister_algs(qce);
> + return ret;
> + }
> }
>
> - return ret;
> + return 0;
> }
>
> static int qce_handle_request(struct crypto_async_request *async_req)
>
Perhaps you can also use the devm trick here aswell ?
Neil
Powered by blists - more mailing lists