lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Mon, 17 Jul 2023 09:03:40 -0700
From:   Jeff Johnson <quic_jjohnson@...cinc.com>
To:     Zhang Shurong <zhang_shurong@...mail.com>, <pkshih@...ltek.com>,
        <Markus.Elfring@....de>, <kuba@...nel.org>
CC:     <kvalo@...nel.org>, <linux-wireless@...r.kernel.org>,
        <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v3] wifi: rtw89: debug: fix error code in

On 7/15/2023 5:51 AM, Zhang Shurong wrote:
> If there is a failure during kstrtobool_from_user()
> rtw89_debug_priv_btc_manual_set should return negative error code
> instead of returning the count driectly.

nit: s/driectly/directly/

> 
> Fix this bug with the following changes:
> - Return an error code instead of a count after a failed call
> of the function "kstrtobool_from_user".
> - Omit the label "out" with this source code correction.
> 
> Fixes: e3ec7017f6a2 ("rtw89: add Realtek 802.11ax driver")
> Signed-off-by: Zhang Shurong <zhang_shurong@...mail.com>
> ---
> Changes in v2:
> - Corrected the format of this patch
> - Used variable ret instead of goto out
> Changes in v3:
> - Improved change description
> 
>   drivers/net/wireless/realtek/rtw89/debug.c | 8 +++++---
>   1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/wireless/realtek/rtw89/debug.c b/drivers/net/wireless/realtek/rtw89/debug.c
> index a4bbac916e22..ce5a9ac08145 100644
> --- a/drivers/net/wireless/realtek/rtw89/debug.c
> +++ b/drivers/net/wireless/realtek/rtw89/debug.c
> @@ -3193,12 +3193,14 @@ static ssize_t rtw89_debug_priv_btc_manual_set(struct file *filp,
>   	struct rtw89_dev *rtwdev = debugfs_priv->rtwdev;
>   	struct rtw89_btc *btc = &rtwdev->btc;
>   	bool btc_manual;
> +	int ret;
>   
> -	if (kstrtobool_from_user(user_buf, count, &btc_manual))
> -		goto out;
> +	ret = kstrtobool_from_user(user_buf, count, &btc_manual);
> +	if (ret)
> +		return ret;
>   
>   	btc->ctrl.manual = btc_manual;
> -out:
> +
>   	return count;
>   }
>   

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ