mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: zjamg <ndaugoing@gmail.com>
Cc: Michal Nazarewicz <mina86@mina86.com>,
	Robert Baldyga <r.baldyga@samsung.com>,
	Felipe Balbi <balbi@ti.com>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	stable@vger.kernel.org
Subject: Re: [PATCH 1/1] usb: gadget: f_fs: Fix NULL pointer dereference in FUNCTIONFS_ENDPOINT_DESC
Date: Thu, 17 Sep 2026 16:15:26 +0100	[thread overview]
Message-ID: <2026091710-trapper-sudden-0d05@gregkh> (raw)
In-Reply-To: <20260917135337.65444-2-ndaugoing@gmail.com>

On Thu, Sep 17, 2026 at 09:53:37PM +0800, zjamg wrote:
> When user space sets up FunctionFS with only full-speed descriptors
> (e.g., flags = FUNCTIONFS_HAS_FS_DESC) and the gadget operates at a
> higher speed (such as USB_SPEED_HIGH or USB_SPEED_SUPER),
> config_ep_by_speed() detects that the function lacks descriptors for
> the current speed, logs a warning, and falls back to full-speed
> descriptors. The endpoint is then successfully enabled via
> usb_ep_enable(), and epfile->ep becomes valid.
> 
> However, when user space subsequently issues the FUNCTIONFS_ENDPOINT_DESC
> ioctl to query the endpoint descriptor, ffs_epfile_ioctl() selects the
> descriptor index solely based on gadget->speed:
> 
> 	switch (epfile->ffs->gadget->speed) {
> 	case USB_SPEED_SUPER:
> 	case USB_SPEED_SUPER_PLUS:
> 		desc_idx = 2;
> 		break;
> 	case USB_SPEED_HIGH:
> 		desc_idx = 1;
> 		break;
> 	default:
> 		desc_idx = 0;
> 	}
> 	desc = epfile->ep->descs[desc_idx];
> 	memcpy(&desc1, desc, desc->bLength);
> 
> Because user space only supplied full-speed descriptors,
> epfile->ep->descs[1] is NULL. Dereferencing desc->bLength triggers an
> immediate kernel NULL pointer dereference panic.
> 
> Fix this by falling back through lower speed descriptors if the current
> speed descriptor was not supplied, matching the fallback logic in
> config_ep_by_speed() and historical f_fs behavior. If still missing,
> fall back to epfile->ep->ep->desc (the active descriptor), and return
> -EINVAL safely if no valid descriptor is found. In addition, mark desc
> as const to match struct usb_ep::desc and avoid discarding qualifiers.
> 
> Fixes: c559a3534109 ("usb: gadget: f_fs: add ioctl returning ep descriptor")
> Cc: stable@vger.kernel.org
> Signed-off-by: zjamg <ndaugoing@gmail.com>
> ---
>  drivers/usb/gadget/function/f_fs.c | 15 +++++++++++++--
>  1 file changed, 13 insertions(+), 2 deletions(-)
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- It looks like you did not use your "real" name for the patch on either
  the Signed-off-by: line, or the From: line (both of which have to
  match).  Please read the kernel file,
  Documentation/process/submitting-patches.rst for how to do this
  correctly.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

      reply	other threads:[~2026-09-17 15:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-17 13:53 [PATCH 0/1] usb: gadget: f_fs: fix " zjamg
2026-09-17 13:53 ` [PATCH 1/1] usb: gadget: f_fs: Fix " zjamg
2026-09-17 15:15   ` Greg Kroah-Hartman [this message]

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=2026091710-trapper-sudden-0d05@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=balbi@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mina86@mina86.com \
    --cc=ndaugoing@gmail.com \
    --cc=r.baldyga@samsung.com \
    --cc=stable@vger.kernel.org \
    /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

all inboxes | Powered by JetHome®