* [PATCH v2] usb: chipidea: otg: fix invalid role name print when no current role
@ 2026-09-07 10:16 Xu Yang
2026-09-07 10:25 ` sashiko-bot
0 siblings, 1 reply; 2+ messages in thread
From: Xu Yang @ 2026-09-07 10:16 UTC (permalink / raw)
To: Peter Chen; +Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, imx, jun.li
From: Xu Yang <xu.yang_2@nxp.com>
ci_handle_id_switch() prints the role transition via ci_role(ci)->name
for the current role, but when ci->role is CI_ROLE_END (no role
assigned yet), ci_role(ci) call BUG_ON() and return ci->roles[CI_ROLE_END]
which will cause invalid memory access in the debug print.
This can happen if ci_role_start() fails during a role switch, since
ci_role_stop() has already set ci->role to CI_ROLE_END.
Fix it by printing "none" instead of dereferencing ci_role(ci)->name
when ci->role is not a valid role.
Fixes: cbec6bd55a45 ("usb: chipidea: move otg related things to otg file")
Cc: stable@vger.kernel.org
Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
---
Changes in v2:
- improve commit message
- use " >= " sign
---
drivers/usb/chipidea/otg.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/chipidea/otg.c b/drivers/usb/chipidea/otg.c
index fecc7d7e2f0d..5eb3b32c2e87 100644
--- a/drivers/usb/chipidea/otg.c
+++ b/drivers/usb/chipidea/otg.c
@@ -179,7 +179,8 @@ void ci_handle_id_switch(struct ci_hdrc *ci)
role = ci_otg_role(ci);
if (role != ci->role) {
dev_dbg(ci->dev, "switching from %s to %s\n",
- ci_role(ci)->name, ci->roles[role]->name);
+ ci->role >= CI_ROLE_END ? "none" : ci_role(ci)->name,
+ ci->roles[role]->name);
if (ci->vbus_active && ci->role == CI_ROLE_GADGET)
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] usb: chipidea: otg: fix invalid role name print when no current role
2026-09-07 10:16 [PATCH v2] usb: chipidea: otg: fix invalid role name print when no current role Xu Yang
@ 2026-09-07 10:25 ` sashiko-bot
0 siblings, 0 replies; 2+ messages in thread
From: sashiko-bot @ 2026-09-07 10:25 UTC (permalink / raw)
To: Xu Yang; +Cc: imx, Frank.Li
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] A hardware failure during role switch to gadget mode triggers a BUG_ON() panic instead of a graceful error in hw_device_reset().
--
commit c6988a7e6f8c802fa9431c1e969bc414e366bec6
Author: Xu Yang <xu.yang_2@nxp.com>
usb: chipidea: otg: fix invalid role name print when no current role
This commit fixes an invalid memory access and BUG_ON() panic in
ci_handle_id_switch() when logging role transitions. It ensures "none" is
printed instead of dereferencing ci_role(ci)->name if the current role is
CI_ROLE_END.
> diff --git a/drivers/usb/chipidea/otg.c b/drivers/usb/chipidea/otg.c
> index fecc7d7e2f0d7..5eb3b32c2e871 100644
> --- a/drivers/usb/chipidea/otg.c
> +++ b/drivers/usb/chipidea/otg.c
> @@ -179,7 +179,8 @@ void ci_handle_id_switch(struct ci_hdrc *ci)
> role = ci_otg_role(ci);
> if (role != ci->role) {
> dev_dbg(ci->dev, "switching from %s to %s\n",
> - ci_role(ci)->name, ci->roles[role]->name);
> + ci->role >= CI_ROLE_END ? "none" : ci_role(ci)->name,
> + ci->roles[role]->name);
>
> if (ci->vbus_active && ci->role == CI_ROLE_GADGET)
[Severity: High]
This is a pre-existing issue, but the same underlying BUG_ON() panic can still
happen during a role switch to gadget mode if a hardware failure occurs in
hw_device_reset():
drivers/usb/chipidea/core.c:hw_device_reset() {
...
if (hw_read(ci, OP_USBMODE, USBMODE_CM) != USBMODE_CM_DC) {
dev_err(ci->dev, "cannot enter in %s device mode\n",
ci_role(ci)->name);
...
}
During a role switch, ci->role is set to CI_ROLE_END by ci_role_stop() and
isn't updated to CI_ROLE_GADGET until ci->roles[role]->start() successfully
completes.
If hw_device_reset() fails to read back USBMODE_CM_DC during this time, won't
the error path dereferencing ci_role(ci)->name hit the same
BUG_ON(ci->role >= CI_ROLE_END) panic instead of gracefully logging the
hardware reset error?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260907101643.2844296-1-xu.yang_2@oss.nxp.com?part=1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-07 10:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 10:16 [PATCH v2] usb: chipidea: otg: fix invalid role name print when no current role Xu Yang
2026-09-07 10:25 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox