Skip to content

Commit 5a4391b

Browse files
can: esd_usb: esd_usb_read_bulk_callback(): fix URB memory leak
Fix similar memory leak as in commit 7352e1d ("can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak"). In esd_usb_open(), the URBs for USB-in transfers are allocated, added to the dev->rx_submitted anchor and submitted. In the complete callback esd_usb_read_bulk_callback(), the URBs are processed and resubmitted. In esd_usb_close() the URBs are freed by calling usb_kill_anchored_urbs(&dev->rx_submitted). However, this does not take into account that the USB framework unanchors the URB before the complete function is called. This means that once an in-URB has been completed, it is no longer anchored and is ultimately not released in esd_usb_close(). Fix the memory leak by anchoring the URB in the esd_usb_read_bulk_callback() to the dev->rx_submitted anchor. Fixes: 96d8e90 ("can: Add driver for esd CAN-USB/2 device") Cc: stable@vger.kernel.org Link: https://patch.msgid.link/20260116-can_usb-fix-memory-leak-v2-2-4b8cb2915571@pengutronix.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
1 parent 0ce73a0 commit 5a4391b

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

drivers/net/can/usb/esd_usb.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,13 +541,20 @@ static void esd_usb_read_bulk_callback(struct urb *urb)
541541
urb->transfer_buffer, ESD_USB_RX_BUFFER_SIZE,
542542
esd_usb_read_bulk_callback, dev);
543543

544+
usb_anchor_urb(urb, &dev->rx_submitted);
545+
544546
err = usb_submit_urb(urb, GFP_ATOMIC);
547+
if (!err)
548+
return;
549+
550+
usb_unanchor_urb(urb);
551+
545552
if (err == -ENODEV) {
546553
for (i = 0; i < dev->net_count; i++) {
547554
if (dev->nets[i])
548555
netif_device_detach(dev->nets[i]->netdev);
549556
}
550-
} else if (err) {
557+
} else {
551558
dev_err(dev->udev->dev.parent,
552559
"failed resubmitting read bulk urb: %pe\n", ERR_PTR(err));
553560
}

0 commit comments

Comments
 (0)