From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 973C3394497; Thu, 30 Jul 2026 16:17:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785428258; cv=none; b=CZDVonEN0omvsDnDJua6HvvyYSN0SIF8Jx0J3SdiGwQr0xU3v531TWYc8asW9F9Ap/PDPzz6U/d4cUF8xo1Xyk2kC31XMOVDDVb6Y8H5Uov/eZAu8y8h+VkcH40kP+B326oSmqqtR8xtbQuCgFOZns8fVcSGZ9/fcjy07rrYBSY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785428258; c=relaxed/simple; bh=bpQHh0Cl/RDxIqPzdgqP40ETmZBOlaSiutf5MksSQvk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JZqdf1Zzx9e3xW/ciqAYGKeDtjaVdSFuTaXkp5AVbwX4RfDIK+fzh5fcOUI7Rkp+4zXXEFwl6rFTmPhnHPtEz+enRlGC3xvBULo2PgFNWLAzCIypTCNFF4k5MrfVPl71W/oFlx8I+olrUNlv4JgQGg0fC4R2g1C5n62wsF++3TE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TkBJUHG/; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TkBJUHG/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B3E531F00A3F; Thu, 30 Jul 2026 16:17:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785428256; bh=GpfPDXmVTBuoAo7K8+n6e4xvfCOC628BF/qVmCVo1go=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=TkBJUHG/o+M6KcP2abQiHm2uLxP5PiSkKjCuKztVCavwNwEq8CPVZRctF5AZzL+NI S3lPyxWjO7b9oMo1swOEF5o5ql2iwlwCNj07YDqfDTyxneeaEhqjSqepLiCr5vZA7E J0M9cUyJw7piumCNz6CyAYGJdwsy6kQwLnfyJWVc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Binbin Zhou , Johan Hovold , Ulf Hansson Subject: [PATCH 6.6 456/484] mmc: vub300: fix use-after-free on disconnect Date: Thu, 30 Jul 2026 16:15:53 +0200 Message-ID: <20260730141433.390818444@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141423.392222816@linuxfoundation.org> References: <20260730141423.392222816@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johan Hovold The vub300 driver maintains an explicit reference count for the controller and its driver data and the last reference can in theory be dropped after the driver has been unbound. This specifically means that the controller allocation must not be device managed as that can lead to use-after-free. Note that the lifetime is currently also incorrectly tied the parent USB device rather than interface, which can lead to memory leaks if the driver is unbound without its device being physically disconnected (e.g. on probe deferral). Fix both issues by reverting to non-managed allocation of the controller. Fixes: dcfdd698dc52 ("mmc: vub300: Use devm_mmc_alloc_host() helper") Cc: stable@vger.kernel.org # 6.17+ Cc: Binbin Zhou Signed-off-by: Johan Hovold Signed-off-by: Ulf Hansson (cherry picked from commit 8f4d20a710225ec7a565f6a0459862d3b1f32330) Signed-off-by: Greg Kroah-Hartman --- drivers/mmc/host/vub300.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -2279,7 +2279,7 @@ static int vub300_probe(struct usb_inter dev_err(&vub300->udev->dev, "Could not find two sets of bulk-in/out endpoint pairs\n"); retval = -EINVAL; - goto error5; + goto err_free_host; } retval = usb_control_msg(vub300->udev, usb_rcvctrlpipe(vub300->udev, 0), @@ -2288,14 +2288,14 @@ static int vub300_probe(struct usb_inter 0x0000, 0x0000, &vub300->hc_info, sizeof(vub300->hc_info), 1000); if (retval < 0) - goto error5; + goto err_free_host; retval = usb_control_msg(vub300->udev, usb_sndctrlpipe(vub300->udev, 0), SET_ROM_WAIT_STATES, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, firmware_rom_wait_states, 0x0000, NULL, 0, 1000); if (retval < 0) - goto error5; + goto err_free_host; dev_info(&vub300->udev->dev, "operating_mode = %s %s %d MHz %s %d byte USB packets\n", (mmc->caps & MMC_CAP_SDIO_IRQ) ? "IRQs" : "POLL", @@ -2310,7 +2310,7 @@ static int vub300_probe(struct usb_inter 0x0000, 0x0000, &vub300->system_port_status, sizeof(vub300->system_port_status), 1000); if (retval < 0) { - goto error5; + goto err_free_host; } else if (sizeof(vub300->system_port_status) == retval) { vub300->card_present = (0x0001 & vub300->system_port_status.port_flags) ? 1 : 0; @@ -2318,7 +2318,7 @@ static int vub300_probe(struct usb_inter (0x0010 & vub300->system_port_status.port_flags) ? 1 : 0; } else { retval = -EINVAL; - goto error5; + goto err_free_host; } usb_set_intfdata(interface, vub300); INIT_DELAYED_WORK(&vub300->pollwork, vub300_pollwork_thread); @@ -2348,7 +2348,7 @@ static int vub300_probe(struct usb_inter return 0; error6: del_timer_sync(&vub300->inactivity_timer); -error5: +err_free_host: mmc_free_host(mmc); /* * and hence also frees vub300