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 C2A2546EF87; Tue, 25 Aug 2026 13:46:06 +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=1787665568; cv=none; b=IhTTRhEqf+fneSjsWD7mDQGVkZBoyIVMFSeKdyd/7m3Q9dngIpLaBtPSG96OF6rwgUK/og/kKV58D1yhfsEtLUu2uLfLq0wd2vhZJ5AFZ6GPji+gzqq0Lh4qFe2PScf7VyaC1k5nQkXdCgB041s2jPqJPD1HV1M94KJYkP4d0jk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787665568; c=relaxed/simple; bh=ucWfmzkdNjUfqe2QxblqlzZHeJ7OjvUxXTmMunQaCgw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XzA26iKs5KJtpIyr9ZlpRHEsIu5xVnrnsOL8x3Fx61iNrGfeVJcy7y6qZv6QiyTXMxJaeFJ0uTUATLYxxayafuJLQXoyuLccCJ/DAVcAlcdlnNRvZugLP2fSQQKomf5wOWB3mz/X1ASU+0BthutsHOUgcqZCLhg10xOulVEVLuU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=k1X0PwIi; 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="k1X0PwIi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C42FE1F000E9; Tue, 25 Aug 2026 13:46:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787665566; bh=rIwoDh6WN3URNEUunQSScas9UNNR6SfOWJy2Z+Y9pQc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=k1X0PwIiBZFRIly7IyREFHWpc2kE56XXWKjdBADsvWfn/h9J9iFlonziyZrcPMqiL z3s4UHFK4O295mzJTRVzbS+E5sGnoJ7xG+mXMi5lnGr0Q8LxE3CSKutOMv8953xOJ0 5ckecEjwkxDXNsNhzZqrKvgbYeZLqLKdyMPwKgKE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jiangshan Yi , Jiri Kosina Subject: [PATCH 6.12 70/77] HID: nintendo: stop device IO before hid_hw_stop on probe failure Date: Tue, 25 Aug 2026 15:26:32 +0200 Message-ID: <20260825132544.271828324@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260825132541.580275153@linuxfoundation.org> References: <20260825132541.580275153@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.12-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 @@ -2696,14 +2696,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 */ @@ -2726,7 +2726,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);