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 D2D032ED154; Tue, 25 Aug 2026 13:38:19 +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=1787665101; cv=none; b=HIHMz/2SIehNMSvKr3DUyuAuPUsRAc/FQz2s6Dv2UaeltX0XaDWowbbnVlJalSS5rY84/Au14Z0OBJBd8fctp8AEzxFgJVjfN7cdnGlWWMg46HNoZ1jVIPh6tZNQ0WCq6aKw4cddXwzFasMNMK14ZR37IfX1pKfsAeUghCrvvJ0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787665101; c=relaxed/simple; bh=4SAd1KNGUtguNAJIr270k5L/6DLPRp1KMcIqztItzzg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pdvcATV27yFIJn2EUEkxGkE7oFP5awhy8Nq2ar9gofgRmFwbAN5P7yVbGUjOmYnUHL5HF6NI36iPAS6VbFKYSUByOlxDhvkyULhIoUGV7iT6ewzSeL1FzN+5ptduF/jlM/rS+cZJfoqX3ntyrWJnr15XGIxKpILBB2lNWXazOfk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=gVQIzQFt; 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="gVQIzQFt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 334121F000E9; Tue, 25 Aug 2026 13:38:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787665099; bh=OhUrY/hXWbC3wE0c7E1aC6JtToaVjUEFzF1rm6mMkt4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=gVQIzQFt8GxSwXr/QRyAG9nqGtI3k/KO6B8RMFp5qUuiJnCo4krz9cR0evFtESUmp xJHuxSQTkFt2SQSKFqXroqxl3tNcDufi37Hd4+8W1BzLXCBbxBHvkfzrRbhAaRBd5A XG2AZkaKvecxyOB9BSFELEw2ol1WSTkqrfTp6F4Q= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jiangshan Yi , Jiri Kosina Subject: [PATCH 7.1 086/101] HID: nintendo: stop device IO before hid_hw_stop on probe failure Date: Tue, 25 Aug 2026 15:26:04 +0200 Message-ID: <20260825132545.267029364@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260825132541.986300899@linuxfoundation.org> References: <20260825132541.986300899@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 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jiangshan Yi commit 1f74d3bff6fe04a64e02ab3661d2e0d554565aa6 upstream. nintendo_hid_probe() calls hid_device_io_start() before joycon_init() and joycon_leds_create(). If either fails, the error path jumps to err_close which calls hid_hw_close()/hid_hw_stop() without first calling hid_device_io_stop(). hid_hw_stop() does not stop device IO, so hid_input_report() may still run and access driver data that is being torn down, resulting in a use-after-free. Add an err_io_stop label that calls hid_device_io_stop() before hid_hw_close(), and point the two post-io_start error paths at it. Fixes: 2af16c1f846b ("HID: nintendo: add nintendo switch controller driver") Cc: stable@vger.kernel.org Signed-off-by: Jiangshan Yi Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- drivers/hid/hid-nintendo.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/drivers/hid/hid-nintendo.c +++ b/drivers/hid/hid-nintendo.c @@ -2693,14 +2693,14 @@ static int nintendo_hid_probe(struct hid ret = joycon_init(hdev); if (ret) { hid_err(hdev, "Failed to initialize controller; ret=%d\n", ret); - goto err_close; + goto err_io_stop; } /* Initialize the leds */ ret = joycon_leds_create(ctlr); if (ret) { hid_err(hdev, "Failed to create leds; ret=%d\n", ret); - goto err_close; + goto err_io_stop; } /* Initialize the battery power supply */ @@ -2723,7 +2723,8 @@ static int nintendo_hid_probe(struct hid err_ida: ida_free(&nintendo_player_id_allocator, ctlr->player_id); -err_close: +err_io_stop: + hid_device_io_stop(hdev); hid_hw_close(hdev); err_stop: hid_hw_stop(hdev);