From: Andrew Morton <akpm@linux-foundation.org>
To: Roel Kluin <roel.kluin@gmail.com>
Cc: David Vrabel <david.vrabel@csr.com>,
linux-usb@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] wusb: Use sizeof struct rather than pointer
Date: Mon, 23 Nov 2009 16:37:45 -0800 [thread overview]
Message-ID: <20091123163745.60c719c7.akpm@linux-foundation.org> (raw)
In-Reply-To: <4B0836A2.1000805@gmail.com>
On Sat, 21 Nov 2009 19:51:14 +0100
Roel Kluin <roel.kluin@gmail.com> wrote:
> The sizeof the struct should be used rather than sizeof the pointer
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> ---
> drivers/usb/wusbcore/security.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> Unless I am mistaken?
>
> diff --git a/drivers/usb/wusbcore/security.c b/drivers/usb/wusbcore/security.c
> index 4516c36..857f6e9 100644
> --- a/drivers/usb/wusbcore/security.c
> +++ b/drivers/usb/wusbcore/security.c
> @@ -213,7 +213,7 @@ int wusb_dev_sec_add(struct wusbhc *wusbhc,
>
> result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
> 0, secd, sizeof(struct usb_security_descriptor));
> - if (result < sizeof(secd)) {
> + if (result < sizeof(*secd)) {
> dev_err(dev, "Can't read security descriptor or "
> "not enough data: %d\n", result);
> goto out;
ick, code's a bit of a mess.
This:
--- a/drivers/usb/wusbcore/security.c~wusb-use-sizeof-struct-rather-than-pointer
+++ a/drivers/usb/wusbcore/security.c
@@ -205,15 +205,15 @@ int wusb_dev_sec_add(struct wusbhc *wusb
const void *itr, *top;
char buf[64];
- secd = kmalloc(sizeof(struct usb_security_descriptor), GFP_KERNEL);
+ secd = kmalloc(sizeof(*secd), GFP_KERNEL);
if (secd == NULL) {
result = -ENOMEM;
goto out;
}
- result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
- 0, secd, sizeof(struct usb_security_descriptor));
- if (result < sizeof(secd)) {
+ result = usb_get_descriptor(usb_dev, USB_DT_SECURITY, 0, secd,
+ sizeof(*secd));
+ if (result < sizeof(*secd)) {
dev_err(dev, "Can't read security descriptor or "
"not enough data: %d\n", result);
goto out;
_
at least makes things consistent.
But I wonder if the code will still work. Because we then go on to do
secd_size = le16_to_cpu(secd->wTotalLength);
secd = krealloc(secd, secd_size, GFP_KERNEL);
which implies (to me) that the thing we read from the device might
indeed have been smaller than we expected, in which case the
newly-fixed check will cause a failure.
That's probably not the case, but it needs checking by someone who
knows what's going on here, please
next prev parent reply other threads:[~2009-11-24 0:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-21 18:51 Roel Kluin
2009-11-24 0:37 ` Andrew Morton [this message]
2009-11-24 2:22 ` David Vrabel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091123163745.60c719c7.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=david.vrabel@csr.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=roel.kluin@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome