[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Z-56xSy2kNnBmpWA@stanley.mountain>
Date: Thu, 3 Apr 2025 15:10:45 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: Wentao Liang <vulab@...as.ac.cn>
Cc: gregkh@...uxfoundation.org, philipp.g.hortmann@...il.com,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] staging: rtl8723bs: Add error handling for sd_read().
On Thu, Apr 03, 2025 at 05:37:41PM +0800, Wentao Liang wrote:
> The sdio_read32() calls sd_read(), but does not handle the error if
> sd_read() fails. This could lead to subsequent operations processing
> invalid data. A proper implementation can be found in sdio_readN().
>
> Add error handling to the sd_read(), ensuring that the memcpy() is
> only performed when the read operation is successful.
>
> Fixes: 554c0a3abf21 ("staging: Add rtl8723bs sdio wifi driver")
> Signed-off-by: Wentao Liang <vulab@...as.ac.cn>
> ---
> drivers/staging/rtl8723bs/hal/sdio_ops.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/rtl8723bs/hal/sdio_ops.c b/drivers/staging/rtl8723bs/hal/sdio_ops.c
> index 21e9f1858745..86776d924c15 100644
> --- a/drivers/staging/rtl8723bs/hal/sdio_ops.c
> +++ b/drivers/staging/rtl8723bs/hal/sdio_ops.c
> @@ -185,9 +185,11 @@ static u32 sdio_read32(struct intf_hdl *intfhdl, u32 addr)
> return SDIO_ERR_VAL32;
>
> ftaddr &= ~(u16)0x3;
> - sd_read(intfhdl, ftaddr, 8, tmpbuf);
> - memcpy(&le_tmp, tmpbuf + shift, 4);
> - val = le32_to_cpu(le_tmp);
> + err = sd_read(intfhdl, ftaddr, 8, tmpbuf);
> + if (!err) {
> + memcpy(&le_tmp, tmpbuf + shift, 4);
> + val = le32_to_cpu(le_tmp);
Now val isn't initialized on the error path.
regards,
dan carpenter
Powered by blists - more mailing lists