* [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length
@ 2025-03-28 8:55 Frode Isaksen
2025-03-28 9:10 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Frode Isaksen @ 2025-03-28 8:55 UTC (permalink / raw)
To: linux-usb, Thinh.Nguyen; +Cc: gregkh, fisaksen, Frode Isaksen
From: Frode Isaksen <frode@meta.com>
The event count is read from register DWC3_GEVNTCOUNT.
There is a check for the count being zero, but not for exceeding the
event buffer length.
Check that event count does not exceed event buffer length,
avoiding an out-of-bounds access when memcpy'ing the event.
Crash log:
Unable to handle kernel paging request at virtual address ffffffc0129be000
pc : __memcpy+0x114/0x180
lr : dwc3_check_event_buf+0xec/0x348
x3 : 0000000000000030 x2 : 000000000000dfc4
x1 : ffffffc0129be000 x0 : ffffff87aad60080
Call trace:
__memcpy+0x114/0x180
dwc3_interrupt+0x24/0x34
Signed-off-by: Frode Isaksen <frode@meta.com>
---
This bug was discovered, tested and fixed (no more crashes seen) on Meta Quest 3 device.
Also tested on T.I. AM62x board.
drivers/usb/dwc3/gadget.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index 63fef4a1a498..548e112167f3 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -4564,7 +4564,7 @@ static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
count &= DWC3_GEVNTCOUNT_MASK;
- if (!count)
+ if (!count || count > evt->length)
return IRQ_NONE;
evt->count = count;
--
2.48.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length
2025-03-28 8:55 [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length Frode Isaksen
@ 2025-03-28 9:10 ` Greg KH
2025-03-28 9:57 ` Frode Isaksen
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2025-03-28 9:10 UTC (permalink / raw)
To: Frode Isaksen; +Cc: linux-usb, Thinh.Nguyen, Frode Isaksen
On Fri, Mar 28, 2025 at 09:55:25AM +0100, Frode Isaksen wrote:
> From: Frode Isaksen <frode@meta.com>
>
> The event count is read from register DWC3_GEVNTCOUNT.
> There is a check for the count being zero, but not for exceeding the
> event buffer length.
> Check that event count does not exceed event buffer length,
> avoiding an out-of-bounds access when memcpy'ing the event.
> Crash log:
> Unable to handle kernel paging request at virtual address ffffffc0129be000
> pc : __memcpy+0x114/0x180
> lr : dwc3_check_event_buf+0xec/0x348
> x3 : 0000000000000030 x2 : 000000000000dfc4
> x1 : ffffffc0129be000 x0 : ffffff87aad60080
> Call trace:
> __memcpy+0x114/0x180
> dwc3_interrupt+0x24/0x34
>
> Signed-off-by: Frode Isaksen <frode@meta.com>
> ---
> This bug was discovered, tested and fixed (no more crashes seen) on Meta Quest 3 device.
> Also tested on T.I. AM62x board.
What commit id does this fix? Should it go to stable kernels too?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length
2025-03-28 9:10 ` Greg KH
@ 2025-03-28 9:57 ` Frode Isaksen
2025-03-28 10:07 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Frode Isaksen @ 2025-03-28 9:57 UTC (permalink / raw)
To: Greg KH; +Cc: linux-usb, Thinh.Nguyen, Frode Isaksen
>What commit id does this fix?
It fixes commit ebbb2d59398fb7ef92fae83d6aeba0cbb2b6f99f ("usb: dwc3:
gadget: use evt->cache for processing events").
>Should it go to stable kernels too?
Don't know, it happens extremely seldom. First seen on kernel 5.10.
Thanks,
Frode
Le ven. 28 mars 2025 à 10:10, Greg KH <gregkh@linuxfoundation.org> a écrit :
>
> On Fri, Mar 28, 2025 at 09:55:25AM +0100, Frode Isaksen wrote:
> > From: Frode Isaksen <frode@meta.com>
> >
> > The event count is read from register DWC3_GEVNTCOUNT.
> > There is a check for the count being zero, but not for exceeding the
> > event buffer length.
> > Check that event count does not exceed event buffer length,
> > avoiding an out-of-bounds access when memcpy'ing the event.
> > Crash log:
> > Unable to handle kernel paging request at virtual address ffffffc0129be000
> > pc : __memcpy+0x114/0x180
> > lr : dwc3_check_event_buf+0xec/0x348
> > x3 : 0000000000000030 x2 : 000000000000dfc4
> > x1 : ffffffc0129be000 x0 : ffffff87aad60080
> > Call trace:
> > __memcpy+0x114/0x180
> > dwc3_interrupt+0x24/0x34
> >
> > Signed-off-by: Frode Isaksen <frode@meta.com>
> > ---
> > This bug was discovered, tested and fixed (no more crashes seen) on Meta Quest 3 device.
> > Also tested on T.I. AM62x board.
>
> What commit id does this fix? Should it go to stable kernels too?
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length
2025-03-28 9:57 ` Frode Isaksen
@ 2025-03-28 10:07 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2025-03-28 10:07 UTC (permalink / raw)
To: Frode Isaksen; +Cc: linux-usb, Thinh.Nguyen, Frode Isaksen
A: http://en.wikipedia.org/wiki/Top_post
Q: Were do I find info about this thing called top-posting?
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?
A: No.
Q: Should I include quotations after my reply?
http://daringfireball.net/2007/07/on_top
On Fri, Mar 28, 2025 at 10:57:46AM +0100, Frode Isaksen wrote:
> >What commit id does this fix?
> It fixes commit ebbb2d59398fb7ef92fae83d6aeba0cbb2b6f99f ("usb: dwc3:
> gadget: use evt->cache for processing events").
Great, please add a Fixes: tag.
> >Should it go to stable kernels too?
> Don't know, it happens extremely seldom. First seen on kernel 5.10.
So you do not think it should be applied to any older kernels? If it is
a bugfix, it probably should. Please resubmit with the proper cc:
stable tag as well.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-28 10:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-28 8:55 [PATCH] usb: dwc3: gadget: check that event count does not exceed event buffer length Frode Isaksen
2025-03-28 9:10 ` Greg KH
2025-03-28 9:57 ` Frode Isaksen
2025-03-28 10:07 ` Greg KH
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).