From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: crwulff@gmail.com
Cc: linux-usb@vger.kernel.org, Alan Stern <stern@rowland.harvard.edu>,
Roy Luo <royluo@google.com>,
Krishna Kurapati <quic_kriskura@quicinc.com>,
Michael Grzeschik <m.grzeschik@pengutronix.de>,
yuan linyu <yuanlinyu@hihonor.com>,
Paul Cercueil <paul@crapouillou.net>,
Felipe Balbi <balbi@kernel.org>,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH v2] usb: gadget: core: Check for unset descriptor
Date: Thu, 25 Jul 2024 06:56:19 +0200 [thread overview]
Message-ID: <2024072512-arguably-creole-a017@gregkh> (raw)
In-Reply-To: <20240725010419.314430-2-crwulff@gmail.com>
On Wed, Jul 24, 2024 at 09:04:20PM -0400, crwulff@gmail.com wrote:
> From: Chris Wulff <crwulff@gmail.com>
>
> Make sure the descriptor has been set before looking at maxpacket.
> This fixes a null pointer panic in this case.
>
> This may happen if the gadget doesn't properly set up the endpoint
> for the current speed, or the gadget descriptors are malformed and
> the descriptor for the speed/endpoint are not found.
>
> No current gadget driver is known to have this problem, but this
> may cause a hard-to-find bug during development of new gadgets.
>
> Fixes: 54f83b8c8ea9 ("USB: gadget: Reject endpoints with 0 maxpacket value")
> Cc: stable@vger.kernel.org
> Signed-off-by: Chris Wulff <crwulff@gmail.com>
> ---
> v2: Added WARN_ONCE message & clarification on causes
> v1: https://lore.kernel.org/all/20240721192048.3530097-2-crwulff@gmail.com/
> ---
> drivers/usb/gadget/udc/core.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
> index 2dfae7a17b3f..81f9140f3681 100644
> --- a/drivers/usb/gadget/udc/core.c
> +++ b/drivers/usb/gadget/udc/core.c
> @@ -118,12 +118,10 @@ int usb_ep_enable(struct usb_ep *ep)
> goto out;
>
> /* UDC drivers can't handle endpoints with maxpacket size 0 */
> - if (usb_endpoint_maxp(ep->desc) == 0) {
> - /*
> - * We should log an error message here, but we can't call
> - * dev_err() because there's no way to find the gadget
> - * given only ep.
> - */
> + if (!ep->desc || usb_endpoint_maxp(ep->desc) == 0) {
> + WARN_ONCE(1, "%s: ep%d (%s) has %s\n", __func__, ep->address, ep->name,
> + (!ep->desc) ? "NULL descriptor" : "maxpacket 0");
So you just rebooted a machine that hit this, that's not good at all.
Please log the error and recover, don't crash a system (remember,
panic-on-warn is enabled in billions of Linux systems.)
thanks,
greg k-h
next prev parent reply other threads:[~2024-07-25 4:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-25 1:04 [PATCH v2] usb: gadget: core: Check for unset descriptor crwulff
2024-07-25 4:56 ` Greg Kroah-Hartman [this message]
2024-07-25 18:23 ` Alan Stern
2024-07-26 5:24 ` Greg Kroah-Hartman
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=2024072512-arguably-creole-a017@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=balbi@kernel.org \
--cc=crwulff@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=m.grzeschik@pengutronix.de \
--cc=paul@crapouillou.net \
--cc=quic_kriskura@quicinc.com \
--cc=royluo@google.com \
--cc=stable@vger.kernel.org \
--cc=stern@rowland.harvard.edu \
--cc=yuanlinyu@hihonor.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