]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
usb: gadget: goku_udc: avoid NULL deref of dev->driver in INT_USBRESET log
authorStepan Ionichev <sozdayvek@gmail.com>
Sat, 9 May 2026 11:06:36 +0000 (16:06 +0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 22 May 2026 09:34:41 +0000 (11:34 +0200)
goku_irq() handles a number of bus events under a single ep0 path.
It already guards the gadget driver suspend/resume callbacks against a
NULL ->driver:

if (dev->gadget.speed != USB_SPEED_UNKNOWN
&& dev->driver
&& dev->driver->resume) {
spin_unlock(&dev->lock);
dev->driver->resume(&dev->gadget);
...
}

but the very next branch unconditionally dereferences dev->driver
when an INT_USBRESET arrives:

if (stat & INT_USBRESET) {
ACK(INT_USBRESET);
INFO(dev, "USB reset done, gadget %s\n",
dev->driver->driver.name);
}

If the controller raises INT_USBRESET before any gadget driver has
been bound (or after one has been unbound), dev->driver is NULL and
the printk dereferences NULL.

smatch flags the inconsistency:

  drivers/usb/gadget/udc/goku_udc.c:1618 goku_irq() error:
  we previously assumed 'dev->driver' could be null (see line 1607)

Fall back to a placeholder when the gadget driver is not bound.

No functional change while a gadget driver is bound.

Signed-off-by: Stepan Ionichev <sozdayvek@gmail.com>
Link: https://patch.msgid.link/20260509110636.19762-1-sozdayvek@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/goku_udc.c

index db42a5e3e805f2e7f34bb999b43539d9a59b9665..ac2a984c2f87ea94e3259bd1b78cf88a47d1a80a 100644 (file)
@@ -1616,7 +1616,8 @@ pm_next:
                if (stat & INT_USBRESET) {              /* hub reset done */
                        ACK(INT_USBRESET);
                        INFO(dev, "USB reset done, gadget %s\n",
-                               dev->driver->driver.name);
+                               dev->driver ? dev->driver->driver.name :
+                                             "<not bound>");
                }
                // and INT_ERR on some endpoint's crc/bitstuff/... problem
        }