* [PATCH] misc: rtsx: improve status check
@ 2020-08-26 13:53 trix
2020-08-26 14:40 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: trix @ 2020-08-26 13:53 UTC (permalink / raw)
To: arnd, gregkh, rikard.falkeborn, rogerable, lee.jones
Cc: linux-kernel, Tom Rix
From: Tom Rix <trix@redhat.com>
clang static analysis flags this error
rtsx_usb.c:505:10: warning: The left operand of '&'
is a garbage value
if (val & cd_mask[card])
~~~ ^
val is set when rtsx_usb_get_card_status() is successful. The
problem is how it checks its callers returns.
/* usb_control_msg may return positive when success */
if (ret < 0)
return ret;
This is correct for the usb_control_msg() the call. However,
the call to rtsx_usb_get_status_with_bulk is only successful
when 0 is returned.
So make status checking block specific.
Fixes: 730876be2566 ("mfd: Add realtek USB card reader driver")
Signed-off-by: Tom Rix <trix@redhat.com>
---
drivers/misc/cardreader/rtsx_usb.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/misc/cardreader/rtsx_usb.c b/drivers/misc/cardreader/rtsx_usb.c
index 59eda55d92a3..bd392b0c66af 100644
--- a/drivers/misc/cardreader/rtsx_usb.c
+++ b/drivers/misc/cardreader/rtsx_usb.c
@@ -304,14 +304,15 @@ int rtsx_usb_get_card_status(struct rtsx_ucr *ucr, u16 *status)
*status = *buf;
kfree(buf);
+
+ /* usb_control_msg may return positive when success */
+ if (ret < 0)
+ return ret;
} else {
ret = rtsx_usb_get_status_with_bulk(ucr, status);
+ if (ret)
+ return ret;
}
-
- /* usb_control_msg may return positive when success */
- if (ret < 0)
- return ret;
-
return 0;
}
EXPORT_SYMBOL_GPL(rtsx_usb_get_card_status);
--
2.18.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] misc: rtsx: improve status check
2020-08-26 13:53 [PATCH] misc: rtsx: improve status check trix
@ 2020-08-26 14:40 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2020-08-26 14:40 UTC (permalink / raw)
To: trix; +Cc: arnd, rikard.falkeborn, rogerable, lee.jones, linux-kernel
On Wed, Aug 26, 2020 at 06:53:37AM -0700, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
>
> clang static analysis flags this error
>
> rtsx_usb.c:505:10: warning: The left operand of '&'
> is a garbage value
> if (val & cd_mask[card])
> ~~~ ^
>
> val is set when rtsx_usb_get_card_status() is successful. The
> problem is how it checks its callers returns.
>
> /* usb_control_msg may return positive when success */
> if (ret < 0)
> return ret;
>
> This is correct for the usb_control_msg() the call. However,
> the call to rtsx_usb_get_status_with_bulk is only successful
> when 0 is returned.
>
> So make status checking block specific.
>
> Fixes: 730876be2566 ("mfd: Add realtek USB card reader driver")
> Signed-off-by: Tom Rix <trix@redhat.com>
> ---
> drivers/misc/cardreader/rtsx_usb.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/misc/cardreader/rtsx_usb.c b/drivers/misc/cardreader/rtsx_usb.c
> index 59eda55d92a3..bd392b0c66af 100644
> --- a/drivers/misc/cardreader/rtsx_usb.c
> +++ b/drivers/misc/cardreader/rtsx_usb.c
> @@ -304,14 +304,15 @@ int rtsx_usb_get_card_status(struct rtsx_ucr *ucr, u16 *status)
> *status = *buf;
>
> kfree(buf);
> +
> + /* usb_control_msg may return positive when success */
it _WILL_ return positive. it will return negative for an error. It
will never return 0.
> + if (ret < 0)
> + return ret;
> } else {
> ret = rtsx_usb_get_status_with_bulk(ucr, status);
> + if (ret)
> + return ret;
> }
> -
> - /* usb_control_msg may return positive when success */
> - if (ret < 0)
> - return ret;
> -
I fail to see how this code is incorrect today.
Well, I do see a bug in here, but you aren't fixing it (short read is
not checked), see the recent linux-usb@vger mail thread about that
problem that we will be fixing tree-wide over time soon...
How can your move of these lines modify anything?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-08-26 14:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-26 13:53 [PATCH] misc: rtsx: improve status check trix
2020-08-26 14:40 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox