From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 565BE423149; Wed, 4 Feb 2026 15:13:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217997; cv=none; b=AIsuaqVuuYY0MUHHDpXLv5vkFU6SVplhnd+v7Th3dvU76sgu9oaxwbbv5J9sfqf5VUSn22nGNBZVdpgGactszeKkqgTbmZo8gXx1qnMgwtUBShYJEOxrH3WpJ3cIMqNxsZltRQpedtnxuPObwZuVyzZRMhv9PHvB2abBS/vLCCc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217997; c=relaxed/simple; bh=EivW5Ip2SKfBjJ0hOSVBYMY6e0aClSb888LVAiwRLzI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SeCYLuvugHyofYIlZHrk3NqbKFGcgDPCfjzn7Szx+0XPPsOpOTiPByKIQBvhVUTE/o2+FZjJYQMd6oPwJo158Q6zsokZkYlo0iA6q6Wvk/Gl4yGgtrLIzpHljN4Hu9xmBRkgakJVNsmXiTzIUc4En5EwYV2NkOFYxIQ5rA/OBDY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UziDg37v; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="UziDg37v" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B4CC3C4CEF7; Wed, 4 Feb 2026 15:13:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770217997; bh=EivW5Ip2SKfBjJ0hOSVBYMY6e0aClSb888LVAiwRLzI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UziDg37v3e0VHqzbYphUbpP0RGfklq7rexsadrAR3Z/EUTYPfjV+csFKhDmB2n+Pj psxcLY13IOUwWEqCbYRWP1hJz0MBvUHGQj7njBS6oz07Kff6ICGbjMY/K4KpyWPaSw 2Cc5PRJSU3L/ujQKrh2t6I0wG7zk9viR3mmMdWRg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Marc Kleine-Budde Subject: [PATCH 6.1 181/280] can: mcba_usb: mcba_usb_read_bulk_callback(): fix URB memory leak Date: Wed, 4 Feb 2026 15:39:15 +0100 Message-ID: <20260204143916.129245590@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143909.614719725@linuxfoundation.org> References: <20260204143909.614719725@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Marc Kleine-Budde commit 710a7529fb13c5a470258ff5508ed3c498d54729 upstream. Fix similar memory leak as in commit 7352e1d5932a ("can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak"). In mcba_usb_probe() -> mcba_usb_start(), the URBs for USB-in transfers are allocated, added to the priv->rx_submitted anchor and submitted. In the complete callback mcba_usb_read_bulk_callback(), the URBs are processed and resubmitted. In mcba_usb_close() -> mcba_urb_unlink() the URBs are freed by calling usb_kill_anchored_urbs(&priv->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 usb_kill_anchored_urbs(). Fix the memory leak by anchoring the URB in the mcba_usb_read_bulk_callback()to the priv->rx_submitted anchor. Fixes: 51f3baad7de9 ("can: mcba_usb: Add support for Microchip CAN BUS Analyzer") Cc: stable@vger.kernel.org Link: https://patch.msgid.link/20260116-can_usb-fix-memory-leak-v2-4-4b8cb2915571@pengutronix.de Signed-off-by: Marc Kleine-Budde Signed-off-by: Greg Kroah-Hartman --- drivers/net/can/usb/mcba_usb.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/drivers/net/can/usb/mcba_usb.c +++ b/drivers/net/can/usb/mcba_usb.c @@ -608,11 +608,17 @@ resubmit_urb: urb->transfer_buffer, MCBA_USB_RX_BUFF_SIZE, mcba_usb_read_bulk_callback, priv); + usb_anchor_urb(urb, &priv->rx_submitted); + retval = usb_submit_urb(urb, GFP_ATOMIC); + if (!retval) + return; + + usb_unanchor_urb(urb); if (retval == -ENODEV) netif_device_detach(netdev); - else if (retval) + else netdev_err(netdev, "failed resubmitting read bulk urb: %d\n", retval); }