* [PATCH v2] usb: gadget: f_tcm: fix remaining nexus NULL dereferences
@ 2026-07-04 12:54 Guangshuo Li
2026-07-11 0:50 ` Thinh Nguyen
0 siblings, 1 reply; 2+ messages in thread
From: Guangshuo Li @ 2026-07-04 12:54 UTC (permalink / raw)
To: Greg Kroah-Hartman, Jiasheng Jiang, Kees Cook, Mike Christie,
Christophe JAILLET, Guangshuo Li, Thinh Nguyen, linux-usb,
linux-kernel
The previous nexus NULL-dereference fix added checks to the normal
command submission paths, but two UASP paths still dereference
tpg->tpg_nexus without checking it first.
A TASK MANAGEMENT request reaches usbg_submit_tmr(), which fetches
tvn_se_sess directly from tpg->tpg_nexus. The RC_OVERLAPPED_TAG path in
usbg_cmd_work() does the same before walking sess_cmd_map for the active
command with the same tag.
If userspace drops the nexus after the command is queued, these paths can
observe a NULL tpg_nexus and crash before they can ignore the command like
the already-fixed command paths do.
Commands that reach the workqueue have already been allocated from the
session tag pool by usbg_get_cmd(), and UASP commands may have been
inserted into the stream hash. Clean up those resources before returning
from nexus-missing paths.
Store the session pointer in struct usbg_cmd so the cleanup path does not
need to dereference tpg_nexus after it becomes NULL.
Fixes: b9fde5073553 ("usb: gadget: f_tcm: Fix NULL pointer dereferences in nexus handling")
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
v2:
- Clean up the session tag pool and stream hash before returning from
nexus-missing paths, as suggested by Thinh.
- Store the session pointer in struct usbg_cmd so the cleanup path does
not need to dereference tpg_nexus after it becomes NULL.
drivers/usb/gadget/function/f_tcm.c | 48 ++++++++++++++++++++++++++---
drivers/usb/gadget/function/tcm.h | 1 +
2 files changed, 45 insertions(+), 4 deletions(-)
diff --git a/drivers/usb/gadget/function/f_tcm.c b/drivers/usb/gadget/function/f_tcm.c
index 34d9f49e9987..89f9b3c97209 100644
--- a/drivers/usb/gadget/function/f_tcm.c
+++ b/drivers/usb/gadget/function/f_tcm.c
@@ -725,7 +725,7 @@ static void uasp_status_data_cmpl(struct usb_ep *ep, struct usb_request *req)
cmd->tmr_rsp != RC_RESPONSE_UNKNOWN) {
struct se_session *se_sess;
- se_sess = fu->tpg->tpg_nexus->tvn_se_sess;
+ se_sess = cmd->se_sess;
sbitmap_queue_clear(&se_sess->sess_tag_pool,
cmd->se_cmd.map_tag,
cmd->se_cmd.map_cpu);
@@ -1186,14 +1186,41 @@ static int usbg_send_read_response(struct se_cmd *se_cmd)
static void usbg_aborted_task(struct se_cmd *se_cmd);
+static void usbg_cleanup_queued_cmd(struct usbg_cmd *cmd)
+{
+ struct se_session *se_sess = cmd->se_sess;
+
+ if (cmd->fu->flags & USBG_IS_UAS) {
+ struct uas_stream *stream;
+
+ stream = &cmd->fu->stream[cmd->se_cmd.map_tag];
+ if (hash_hashed(&stream->node))
+ hash_del(&stream->node);
+ }
+
+ sbitmap_queue_clear(&se_sess->sess_tag_pool,
+ cmd->se_cmd.map_tag,
+ cmd->se_cmd.map_cpu);
+}
+
static void usbg_submit_tmr(struct usbg_cmd *cmd)
{
+ struct tcm_usbg_nexus *tv_nexus;
struct se_session *se_sess;
struct se_cmd *se_cmd;
int flags = TARGET_SCF_ACK_KREF;
se_cmd = &cmd->se_cmd;
- se_sess = cmd->fu->tpg->tpg_nexus->tvn_se_sess;
+ tv_nexus = cmd->fu->tpg->tpg_nexus;
+ if (!tv_nexus) {
+ struct usb_gadget *gadget = fuas_to_gadget(cmd->fu);
+
+ dev_err(&gadget->dev, "Missing nexus for TMR, ignoring command\n");
+ usbg_cleanup_queued_cmd(cmd);
+ return;
+ }
+
+ se_sess = tv_nexus->tvn_se_sess;
target_submit_tmr(se_cmd, se_sess,
cmd->response_iu.add_response_info,
@@ -1226,6 +1253,7 @@ static void usbg_submit_cmd(struct usbg_cmd *cmd)
struct usb_gadget *gadget = fuas_to_gadget(cmd->fu);
dev_err(&gadget->dev, "Missing nexus, ignoring command\n");
+ usbg_cleanup_queued_cmd(cmd);
return;
}
@@ -1271,12 +1299,22 @@ static void usbg_cmd_work(struct work_struct *work)
skip:
if (cmd->tmr_rsp == RC_OVERLAPPED_TAG) {
struct f_uas *fu = cmd->fu;
+ struct tcm_usbg_nexus *tv_nexus;
struct se_session *se_sess;
struct uas_stream *stream = NULL;
struct hlist_node *tmp;
struct usbg_cmd *active_cmd = NULL;
- se_sess = cmd->fu->tpg->tpg_nexus->tvn_se_sess;
+ tv_nexus = fu->tpg->tpg_nexus;
+ if (!tv_nexus) {
+ struct usb_gadget *gadget = fuas_to_gadget(fu);
+
+ dev_err(&gadget->dev, "Missing nexus for overlapped tag, ignoring command\n");
+ usbg_cleanup_queued_cmd(cmd);
+ return;
+ }
+
+ se_sess = tv_nexus->tvn_se_sess;
hash_for_each_possible_safe(fu->stream_hash, stream, tmp, node, cmd->tag) {
int i = stream - &fu->stream[0];
@@ -1357,6 +1395,7 @@ static struct usbg_cmd *usbg_get_cmd(struct f_uas *fu,
cmd->se_cmd.map_cpu = cpu;
cmd->se_cmd.cpuid = cpu;
cmd->se_cmd.tag = cmd->tag = scsi_tag;
+ cmd->se_sess = se_sess;
cmd->fu = fu;
return cmd;
@@ -1413,7 +1452,7 @@ static int usbg_submit_command(struct f_uas *fu, struct usb_request *req)
struct se_session *se_sess;
int i = stream - &fu->stream[0];
- se_sess = cmd->fu->tpg->tpg_nexus->tvn_se_sess;
+ se_sess = tv_nexus->tvn_se_sess;
active_cmd = &((struct usbg_cmd *)se_sess->sess_cmd_map)[i];
if (active_cmd->tag == scsi_tag) {
@@ -1494,6 +1533,7 @@ static void bot_cmd_work(struct work_struct *work)
struct usb_gadget *gadget = fuas_to_gadget(cmd->fu);
dev_err(&gadget->dev, "Missing nexus, ignoring command\n");
+ usbg_cleanup_queued_cmd(cmd);
return;
}
diff --git a/drivers/usb/gadget/function/tcm.h b/drivers/usb/gadget/function/tcm.h
index 009974d81d66..1ae1f8383bd0 100644
--- a/drivers/usb/gadget/function/tcm.h
+++ b/drivers/usb/gadget/function/tcm.h
@@ -73,6 +73,7 @@ struct usbg_cmd {
struct work_struct work;
int unpacked_lun;
struct se_cmd se_cmd;
+ struct se_session *se_sess;
void *data_buf; /* used if no sg support available */
struct f_uas *fu;
struct kref ref;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] usb: gadget: f_tcm: fix remaining nexus NULL dereferences
2026-07-04 12:54 [PATCH v2] usb: gadget: f_tcm: fix remaining nexus NULL dereferences Guangshuo Li
@ 2026-07-11 0:50 ` Thinh Nguyen
0 siblings, 0 replies; 2+ messages in thread
From: Thinh Nguyen @ 2026-07-11 0:50 UTC (permalink / raw)
To: Guangshuo Li
Cc: Greg Kroah-Hartman, Jiasheng Jiang, Kees Cook, Mike Christie,
Christophe JAILLET, Thinh Nguyen, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org
On Sat, Jul 04, 2026, Guangshuo Li wrote:
> The previous nexus NULL-dereference fix added checks to the normal
> command submission paths, but two UASP paths still dereference
> tpg->tpg_nexus without checking it first.
>
> A TASK MANAGEMENT request reaches usbg_submit_tmr(), which fetches
> tvn_se_sess directly from tpg->tpg_nexus. The RC_OVERLAPPED_TAG path in
> usbg_cmd_work() does the same before walking sess_cmd_map for the active
> command with the same tag.
>
> If userspace drops the nexus after the command is queued, these paths can
> observe a NULL tpg_nexus and crash before they can ignore the command like
> the already-fixed command paths do.
>
> Commands that reach the workqueue have already been allocated from the
> session tag pool by usbg_get_cmd(), and UASP commands may have been
> inserted into the stream hash. Clean up those resources before returning
> from nexus-missing paths.
>
> Store the session pointer in struct usbg_cmd so the cleanup path does not
> need to dereference tpg_nexus after it becomes NULL.
>
> Fixes: b9fde5073553 ("usb: gadget: f_tcm: Fix NULL pointer dereferences in nexus handling")
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
> v2:
> - Clean up the session tag pool and stream hash before returning from
> nexus-missing paths, as suggested by Thinh.
> - Store the session pointer in struct usbg_cmd so the cleanup path does
> not need to dereference tpg_nexus after it becomes NULL.
>
> drivers/usb/gadget/function/f_tcm.c | 48 ++++++++++++++++++++++++++---
> drivers/usb/gadget/function/tcm.h | 1 +
> 2 files changed, 45 insertions(+), 4 deletions(-)
>
Reviewed-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Thanks,
Thinh
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-11 0:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-04 12:54 [PATCH v2] usb: gadget: f_tcm: fix remaining nexus NULL dereferences Guangshuo Li
2026-07-11 0:50 ` Thinh Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox