From: Gonglei <arei.gonglei@huawei.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Huangweidong (C)" <weidong.huang@huawei.com>,
Zhanghailiang <zhang.zhanghailiang@huawei.com>,
"qemu-trivial@nongnu.org" <qemu-trivial@nongnu.org>,
"mjt@tls.msk.ru" <mjt@tls.msk.ru>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"Huangpeng (Peter)" <peter.huangpeng@huawei.com>,
Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 9/9] hcd-musb: fix dereference null return value
Date: Mon, 17 Nov 2014 20:55:15 +0800 [thread overview]
Message-ID: <5469F033.5090104@huawei.com> (raw)
In-Reply-To: <5469D98A.8020408@huawei.com>
On 2014/11/17 19:18, Gonglei wrote:
> On 2014/11/17 18:58, Paolo Bonzini wrote:
>
>>
>>
>> On 15/11/2014 11:06, arei.gonglei@huawei.com wrote:
>>> From: Gonglei <arei.gonglei@huawei.com>
>>>
>>> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
>>> ---
>>> hw/usb/hcd-musb.c | 4 ++++
>>> 1 file changed, 4 insertions(+)
>>>
>>> diff --git a/hw/usb/hcd-musb.c b/hw/usb/hcd-musb.c
>>> index 66bc61a..f2cb73c 100644
>>> --- a/hw/usb/hcd-musb.c
>>> +++ b/hw/usb/hcd-musb.c
>>> @@ -624,6 +624,10 @@ static void musb_packet(MUSBState *s, MUSBEndPoint *ep,
>>>
>>> /* A wild guess on the FADDR semantics... */
>>> dev = usb_find_device(&s->port, ep->faddr[idx]);
>>> + if (!dev) {
>>> + TRACE("Do not find an usb device");
>>> + return;
>>> + }
>>> uep = usb_ep_get(dev, pid, ep->type[idx] & 0xf);
>>> usb_packet_setup(&ep->packey[dir].p, pid, uep, 0,
>>> (dev->addr << 16) | (uep->nr << 8) | pid, false, true);
>>>
>>
>> I think this patch is not the real fix. usb_ep_get and
>> usb_handle_packet can deal with a NULL device, but we have to avoid
>> dereferencing NULL pointers when building the id.
>>
>
> Good catch :)
>
>> Paolo
>>
>> diff --git a/hw/usb/hcd-musb.c b/hw/usb/hcd-musb.c
>> index 66bc61a..40809f6 100644
>> --- a/hw/usb/hcd-musb.c
>> +++ b/hw/usb/hcd-musb.c
>> @@ -608,6 +608,7 @@ static void musb_packet(MUSBState *s, MUSBEndPoint *ep,
>> USBDevice *dev;
>> USBEndpoint *uep;
>> int idx = epnum && dir;
>> + int id;
>> int ttype;
>>
>> /* ep->type[0,1] contains:
>> @@ -625,8 +626,11 @@ static void musb_packet(MUSBState *s, MUSBEndPoint *ep,
>> /* A wild guess on the FADDR semantics... */
>> dev = usb_find_device(&s->port, ep->faddr[idx]);
>> uep = usb_ep_get(dev, pid, ep->type[idx] & 0xf);
>> - usb_packet_setup(&ep->packey[dir].p, pid, uep, 0,
>> - (dev->addr << 16) | (uep->nr << 8) | pid, false, true);
>> + id = pid;
>> + if (uep) {
>> + id |= (dev->addr << 16) | (uep->nr << 8);
>> + }
>> + usb_packet_setup(&ep->packey[dir].p, pid, uep, 0, id, false, true);
>> usb_packet_addbuf(&ep->packey[dir].p, ep->buf[idx], len);
>> ep->packey[dir].ep = ep;
>> ep->packey[dir].dir = dir;
>
> This is a good approach, id is just a identifying. Thanks,
>
Let me split the patch from this series as a separate patch
and add Paolo's signed-off-by.
Asking for Gerd's reviewing, Thanks.
Best regards,
-Gonglei
next prev parent reply other threads:[~2014-11-17 12:55 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-15 10:06 [Qemu-devel] [PATCH 0/9] Fix Coverity warning reports arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 1/9] l2tpv3: fix fd leak arei.gonglei
2014-11-17 16:51 ` Stefan Hajnoczi
2014-11-17 16:58 ` Michael Tokarev
2014-11-18 7:50 ` Markus Armbruster
2014-11-18 8:07 ` Gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 2/9] mips_mipssim: fix use-after-free for filename arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 3/9] qga: fix false negative argument passing arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 4/9] loader: fix NEGATIVE_RETURNS arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 5/9] nvme: remove superfluous check arei.gonglei
2014-11-17 16:55 ` Stefan Hajnoczi
2014-11-15 10:06 ` [Qemu-devel] [PATCH 6/9] acl: fix memory leak arei.gonglei
2014-11-17 10:48 ` Paolo Bonzini
2014-11-15 10:06 ` [Qemu-devel] [PATCH 7/9] qemu-char: fix MISSING_COMMA arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 8/9] shpc: fix dead code arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 9/9] hcd-musb: fix dereference null return value arei.gonglei
2014-11-17 10:58 ` Paolo Bonzini
2014-11-17 11:18 ` Gonglei
2014-11-17 12:55 ` Gonglei [this message]
2014-11-17 13:36 ` Gerd Hoffmann
2014-11-17 13:39 ` Paolo Bonzini
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=5469F033.5090104@huawei.com \
--to=arei.gonglei@huawei.com \
--cc=kraxel@redhat.com \
--cc=mjt@tls.msk.ru \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=weidong.huang@huawei.com \
--cc=zhang.zhanghailiang@huawei.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;
as well as URLs for NNTP newsgroup(s).