From: Keisuke Tsukuda <tkdkei@outlook.jp>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Chris Wulff <crwulff@gmail.com>,
Edward Adam Davis <eadavis@qq.com>,
Michael Zimmermann <sigmaepsilon92@gmail.com>,
Peter Korsgaard <peter@korsgaard.com>,
Keisuke Tsukuda <tkdkei@outlook.jp>,
"stable@vger.kernel.org" <stable@vger.kernel.org>
Subject: [PATCH] usb: gadget: f_hid: keep GET_REPORT request across disable
Date: Wed, 9 Sep 2026 10:28:11 +0000 [thread overview]
Message-ID: <20260909102802.26181-1-tkdkei@outlook.jp> (raw)
hidg_disable() frees hidg->get_req when a GET_REPORT is waiting for
userspace. A USB reset disables and re-enables the existing function
without calling hidg_bind(), so the request remains NULL. Every later
GET_REPORT then times out until the gadget is unbound and bound again.
Keep the request allocated for the lifetime of the bound function and
free it from hidg_unbind(). Cancel and wake a pending operation during
disable, and use a request generation counter to stop work from an old
configuration from replying to a newer control request.
A pending get_req leak fix also adds cleanup at unbind, but it leaves the
early free in hidg_disable() and therefore does not address this reset
failure.
The failure was reproduced on usb-testing with dummy_hcd: the interrupted
request failed with ESHUTDOWN and subsequent requests timed out. It was
also reproduced with a Linux xHCI host issuing a USB reset to a
Raspberry Pi 4 using DWC2. The change passed eight reset timings under
KASAN and the same physical Linux-host test.
Fixes: a139c98f760e ("USB: gadget: f_hid: Add GET_REPORT via userspace IOCTL")
Link: https://lore.kernel.org/all/tencent_F5AB9201DDA25D8E1925CF818D87258B8D07@qq.com/
Cc: stable@vger.kernel.org
Signed-off-by: Keisuke Tsukuda <tkdkei@outlook.jp>
---
drivers/usb/gadget/function/f_hid.c | 26 +++++++++++++++++++++-----
1 file changed, 21 insertions(+), 5 deletions(-)
diff --git a/drivers/usb/gadget/function/f_hid.c b/drivers/usb/gadget/function/f_hid.c
index 3c6b43d06a..99d9666172 100644
--- a/drivers/usb/gadget/function/f_hid.c
+++ b/drivers/usb/gadget/function/f_hid.c
@@ -96,6 +96,9 @@ struct f_hidg {
struct usb_request *get_req;
struct usb_hidg_report get_report;
bool get_report_returned;
+ /* Cancel pending work and distinguish requests across reconfiguration. */
+ bool get_report_cancelled;
+ unsigned int get_report_req_tag;
int get_report_req_report_id;
int get_report_req_report_length;
spinlock_t get_report_spinlock;
@@ -562,10 +565,16 @@ static void get_report_workqueue_handler(struct work_struct *work)
struct usb_request *req;
struct report_entry *ptr;
unsigned long flags;
+ unsigned int req_tag;
int status = 0;
spin_lock_irqsave(&hidg->get_report_spinlock, flags);
+ if (hidg->get_report_cancelled) {
+ spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
+ return;
+ }
+ req_tag = hidg->get_report_req_tag;
req = hidg->get_req;
if (!req) {
spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
@@ -598,6 +607,11 @@ static void get_report_workqueue_handler(struct work_struct *work)
status = wait_event_interruptible_timeout(hidg->get_queue, !GET_REPORT_COND,
msecs_to_jiffies(GET_REPORT_TIMEOUT_MS));
spin_lock_irqsave(&hidg->get_report_spinlock, flags);
+ if (hidg->get_report_cancelled ||
+ req_tag != hidg->get_report_req_tag) {
+ spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
+ return;
+ }
req = hidg->get_req;
if (!req) {
spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
@@ -864,6 +878,8 @@ static int hidg_setup(struct usb_function *f,
* GET_REPORT the request was actually for.
*/
spin_lock_irqsave(&hidg->get_report_spinlock, flags);
+ hidg->get_report_cancelled = false;
+ hidg->get_report_req_tag++;
hidg->get_report_req_report_id = value & 0xff;
hidg->get_report_req_report_length = length;
spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
@@ -997,12 +1013,11 @@ static void hidg_disable(struct usb_function *f)
}
spin_lock_irqsave(&hidg->get_report_spinlock, flags);
- if (!hidg->get_report_returned) {
- usb_ep_free_request(f->config->cdev->gadget->ep0, hidg->get_req);
- hidg->get_req = NULL;
- hidg->get_report_returned = true;
- }
+ hidg->get_report_cancelled = true;
+ hidg->get_report_req_tag++;
+ hidg->get_report_returned = true;
spin_unlock_irqrestore(&hidg->get_report_spinlock, flags);
+ wake_up(&hidg->get_queue);
spin_lock_irqsave(&hidg->read_spinlock, flags);
hidg->disabled = true;
@@ -1588,6 +1603,7 @@ static void hidg_unbind(struct usb_configuration *c, struct usb_function *f)
cdev_device_del(hidg->cdev, &hidg->dev);
destroy_workqueue(hidg->workqueue);
+ usb_ep_free_request(c->cdev->gadget->ep0, hidg->get_req);
usb_free_all_descriptors(f);
}
--
2.50.1 (Apple Git-155)
reply other threads:[~2026-09-09 10:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20260909102802.26181-1-tkdkei@outlook.jp \
--to=tkdkei@outlook.jp \
--cc=crwulff@gmail.com \
--cc=eadavis@qq.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=peter@korsgaard.com \
--cc=sigmaepsilon92@gmail.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