* usb:core: possible bug in wMaxPacketSize validation in config.c?
@ 2021-12-09 7:53 Pavel Hofman
2021-12-09 8:02 ` Greg KH
2021-12-09 16:26 ` Alan Stern
0 siblings, 2 replies; 4+ messages in thread
From: Pavel Hofman @ 2021-12-09 7:53 UTC (permalink / raw)
To: linux-usb@vger.kernel.org
Hi,
in
https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L409
the initial value of maxp is obtained using function usb_endpoint_maxp.
maxp = usb_endpoint_maxp(&endpoint->desc);
This function
https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/usb/ch9.h#L647
returns only the bits 0 - 10 of the wMaxPacketSize field, i.e. dropping
the high-bandwidth bits 11 and 12. Yet the subsequent code extracts
these bits from maxp into variable i
https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L427
, clears them in maxp, and re-sets back in one of the further checks
https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L445
IMO that means the code requires that initial value of maxp contains the
additional-transactions bits. IMO the code should be fixed with this
trivial patch (tested on my build):
===================================================================
diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c
--- a/drivers/usb/core/config.c (revision
018dd9dd80ab5f3bd988911b1f10255029ffa52d)
+++ b/drivers/usb/core/config.c (date 1638972286064)
@@ -406,7 +406,7 @@
* the USB-2 spec requires such endpoints to have wMaxPacketSize = 0
* (see the end of section 5.6.3), so don't warn about them.
*/
- maxp = usb_endpoint_maxp(&endpoint->desc);
+ maxp = endpoint->desc.wMaxPacketSize;
if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) {
dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X
has invalid wMaxPacketSize 0\n",
cfgno, inum, asnum, d->bEndpointAddress);
=========================
I can send a proper patch should the change be approved.
Thanks a lot,
Pavel.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: usb:core: possible bug in wMaxPacketSize validation in config.c? 2021-12-09 7:53 usb:core: possible bug in wMaxPacketSize validation in config.c? Pavel Hofman @ 2021-12-09 8:02 ` Greg KH 2021-12-09 8:46 ` Pavel Hofman 2021-12-09 16:26 ` Alan Stern 1 sibling, 1 reply; 4+ messages in thread From: Greg KH @ 2021-12-09 8:02 UTC (permalink / raw) To: Pavel Hofman; +Cc: linux-usb@vger.kernel.org On Thu, Dec 09, 2021 at 08:53:37AM +0100, Pavel Hofman wrote: > Hi, > > in > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L409 > the initial value of maxp is obtained using function usb_endpoint_maxp. > > maxp = usb_endpoint_maxp(&endpoint->desc); > > This function https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/usb/ch9.h#L647 > returns only the bits 0 - 10 of the wMaxPacketSize field, i.e. dropping the > high-bandwidth bits 11 and 12. Yet the subsequent code extracts these bits > from maxp into variable i > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L427 > , clears them in maxp, and re-sets back in one of the further checks > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L445 > > IMO that means the code requires that initial value of maxp contains the > additional-transactions bits. IMO the code should be fixed with this trivial > patch (tested on my build): > > > =================================================================== > diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c > --- a/drivers/usb/core/config.c (revision > 018dd9dd80ab5f3bd988911b1f10255029ffa52d) > +++ b/drivers/usb/core/config.c (date 1638972286064) > @@ -406,7 +406,7 @@ > * the USB-2 spec requires such endpoints to have wMaxPacketSize = 0 > * (see the end of section 5.6.3), so don't warn about them. > */ > - maxp = usb_endpoint_maxp(&endpoint->desc); > + maxp = endpoint->desc.wMaxPacketSize; > if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) { > dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has > invalid wMaxPacketSize 0\n", > cfgno, inum, asnum, d->bEndpointAddress); > > > ========================= > > I can send a proper patch should the change be approved. Please always just send a real patch, that makes it easier to discuss. Anyway, what problem is this solving? Do you have a device where the data is calculated incorrectly? What value in a device is being declared incorrect because of the existing code? thanks, greg k-h ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: usb:core: possible bug in wMaxPacketSize validation in config.c? 2021-12-09 8:02 ` Greg KH @ 2021-12-09 8:46 ` Pavel Hofman 0 siblings, 0 replies; 4+ messages in thread From: Pavel Hofman @ 2021-12-09 8:46 UTC (permalink / raw) To: Greg KH; +Cc: linux-usb@vger.kernel.org Hi Greg, Dne 09. 12. 21 v 9:02 Greg KH napsal(a): > On Thu, Dec 09, 2021 at 08:53:37AM +0100, Pavel Hofman wrote: >> Hi, >> >> in >> https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L409 >> the initial value of maxp is obtained using function usb_endpoint_maxp. >> >> maxp = usb_endpoint_maxp(&endpoint->desc); >> >> This function https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/usb/ch9.h#L647 >> returns only the bits 0 - 10 of the wMaxPacketSize field, i.e. dropping the >> high-bandwidth bits 11 and 12. Yet the subsequent code extracts these bits >> from maxp into variable i >> https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L427 >> , clears them in maxp, and re-sets back in one of the further checks >> https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L445 >> >> IMO that means the code requires that initial value of maxp contains the >> additional-transactions bits. IMO the code should be fixed with this trivial >> patch (tested on my build): >> >> >> =================================================================== >> diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c >> --- a/drivers/usb/core/config.c (revision >> 018dd9dd80ab5f3bd988911b1f10255029ffa52d) >> +++ b/drivers/usb/core/config.c (date 1638972286064) >> @@ -406,7 +406,7 @@ >> * the USB-2 spec requires such endpoints to have wMaxPacketSize = 0 >> * (see the end of section 5.6.3), so don't warn about them. >> */ >> - maxp = usb_endpoint_maxp(&endpoint->desc); >> + maxp = endpoint->desc.wMaxPacketSize; >> if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) { >> dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has >> invalid wMaxPacketSize 0\n", >> cfgno, inum, asnum, d->bEndpointAddress); >> >> >> ========================= >> >> I can send a proper patch should the change be approved. > > Please always just send a real patch, that makes it easier to discuss. > > Anyway, what problem is this solving? The config.c contains several verifications which modify wMaxPacketSize values reported by a device to conform to USB specs. IMO there is a bug in the validation code. > Do you have a device where the > data is calculated incorrectly? No I don't, I noticed the issue while testing something which involved that part of code. > What value in a device is being > declared incorrect because of the existing code? Please look at the existing code with my comments starting ///////: ==================== /* * Validate the wMaxPacketSize field. * Some devices have isochronous endpoints in altsetting 0; * the USB-2 spec requires such endpoints to have wMaxPacketSize = 0 * (see the end of section 5.6.3), so don't warn about them. */ ////// Here only bits 0 - 10 from endpoint->desc.wMaxPacketSize ////// are copied to maxp maxp = usb_endpoint_maxp(&endpoint->desc); if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) { dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid wMaxPacketSize 0\n", cfgno, inum, asnum, d->bEndpointAddress); } /* Find the highest legal maxpacket size for this endpoint */ i = 0; /* additional transactions per microframe */ switch (udev->speed) { case USB_SPEED_LOW: maxpacket_maxes = low_speed_maxpacket_maxes; break; case USB_SPEED_FULL: maxpacket_maxes = full_speed_maxpacket_maxes; break; case USB_SPEED_HIGH: /* Bits 12..11 are allowed only for HS periodic endpoints */ if (usb_endpoint_xfer_int(d) || usb_endpoint_xfer_isoc(d)) { ///////// Here bits 11 and 12 are extracted from maxp, ///////// removed from maxp and stored in i. ///////// They are always 0 due to the usb_endpoint_maxp call. i = maxp & (BIT(12) | BIT(11)); maxp &= ~i; } fallthrough; default: maxpacket_maxes = high_speed_maxpacket_maxes; break; case USB_SPEED_SUPER: case USB_SPEED_SUPER_PLUS: maxpacket_maxes = super_speed_maxpacket_maxes; break; } j = maxpacket_maxes[usb_endpoint_type(&endpoint->desc)]; if (maxp > j) { dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n", cfgno, inum, asnum, d->bEndpointAddress, maxp, j); //////// If maxp > max allowed packet size (the device reports incorrect //////// values in bits 0-10, wMaxPacketSize will use the max allowed //////// packet size for bits 0-10, and the additional-transaction //////// (high-bandwidth) bits stored in i will be set, to allow more //////// packets per frame. But currently i is always = 0 due to the //////// usb_endpoint_maxp call. maxp = j; endpoint->desc.wMaxPacketSize = cpu_to_le16(i | maxp); } ==================== Thanks a lot for the review. Pavel. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: usb:core: possible bug in wMaxPacketSize validation in config.c? 2021-12-09 7:53 usb:core: possible bug in wMaxPacketSize validation in config.c? Pavel Hofman 2021-12-09 8:02 ` Greg KH @ 2021-12-09 16:26 ` Alan Stern 1 sibling, 0 replies; 4+ messages in thread From: Alan Stern @ 2021-12-09 16:26 UTC (permalink / raw) To: Pavel Hofman; +Cc: linux-usb@vger.kernel.org On Thu, Dec 09, 2021 at 08:53:37AM +0100, Pavel Hofman wrote: > Hi, > > in > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L409 > the initial value of maxp is obtained using function usb_endpoint_maxp. > > maxp = usb_endpoint_maxp(&endpoint->desc); > > This function https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/usb/ch9.h#L647 > returns only the bits 0 - 10 of the wMaxPacketSize field, i.e. dropping the > high-bandwidth bits 11 and 12. Yet the subsequent code extracts these bits > from maxp into variable i > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L427 > , clears them in maxp, and re-sets back in one of the further checks > https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/config.c#L445 This is clearly wrong. Good catch. > IMO that means the code requires that initial value of maxp contains the > additional-transactions bits. IMO the code should be fixed with this trivial > patch (tested on my build): > > > =================================================================== > diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c > --- a/drivers/usb/core/config.c (revision > 018dd9dd80ab5f3bd988911b1f10255029ffa52d) > +++ b/drivers/usb/core/config.c (date 1638972286064) > @@ -406,7 +406,7 @@ > * the USB-2 spec requires such endpoints to have wMaxPacketSize = 0 > * (see the end of section 5.6.3), so don't warn about them. > */ > - maxp = usb_endpoint_maxp(&endpoint->desc); > + maxp = endpoint->desc.wMaxPacketSize; You need to say: le16_to_cpu(endpoint->desc.wMaxPacketSize). It also wouldn't hurt to change the line which calculates i. Replace (BIT(12) | BIT(11)) with USB_EP_MAXP_MULT_MASK, and adjust the preceding comment accordingly. Alan Stern ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-12-09 16:26 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-12-09 7:53 usb:core: possible bug in wMaxPacketSize validation in config.c? Pavel Hofman 2021-12-09 8:02 ` Greg KH 2021-12-09 8:46 ` Pavel Hofman 2021-12-09 16:26 ` Alan Stern
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox