Linux Input/HID development
 help / color / mirror / Atom feed
* [PATCH] HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler()
@ 2026-07-15 11:52 Ibrahim Hashimov
  2026-07-15 12:15 ` sashiko-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Ibrahim Hashimov @ 2026-07-15 11:52 UTC (permalink / raw)
  To: jikos, bentiss; +Cc: linux-input, linux-kernel, stable

joycon_ctlr_read_handler() casts an incoming HID input report to
struct joycon_input_report and parses it, guarding the cast only with a
12-byte length check:

	if (size >= 12) /* make sure it contains the input report */
		joycon_parse_report(ctlr, (struct joycon_input_report *)data);

struct joycon_input_report is 49 bytes: a 13-byte header followed by a
union whose IMU arm is 36 bytes. For an IMU report joycon_parse_report()
-> joycon_parse_imu_report() walks that union (struct offsets 13..48),
so a report of exactly 12 bytes with data[0] == JC_INPUT_IMU_DATA passes
the guard yet is read up to 37 bytes past its declared length. The
over-read bytes are decoded into accelerometer/gyroscope values and
forwarded to userspace through the "(IMU)" input device, leaking
driver-internal memory. data[0] and size are fully controlled by a
malicious or spoofed Joy-Con/Pro Controller.

Receive buffers are sized to the maximum report length, so this is an
over-read within the allocation rather than a slab OOB, but the decoded
bytes still reach userspace.

The sibling subcmd path in joycon_ctlr_handle_event() already bounds the
same cast correctly:

	if (size < sizeof(struct joycon_input_report) ||
	    data[0] != JC_INPUT_SUBCMD_REPLY)
		break;

Use the same sizeof(struct joycon_input_report) bound here.

Fixes: 2af16c1f846b ("HID: nintendo: add nintendo switch controller driver")
Cc: stable@vger.kernel.org
Signed-off-by: Ibrahim Hashimov <security@auditcode.ai>
Assisted-by: AuditCode-AI:2026.07
---
 drivers/hid/hid-nintendo.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/hid/hid-nintendo.c b/drivers/hid/hid-nintendo.c
index e7302ec01ff1..11b5fe05acf4 100644
--- a/drivers/hid/hid-nintendo.c
+++ b/drivers/hid/hid-nintendo.c
@@ -2607,7 +2607,12 @@ static int joycon_ctlr_read_handler(struct joycon_ctlr *ctlr, u8 *data,
 {
 	if (data[0] == JC_INPUT_SUBCMD_REPLY || data[0] == JC_INPUT_IMU_DATA ||
 	    data[0] == JC_INPUT_MCU_DATA) {
-		if (size >= 12) /* make sure it contains the input report */
+		/*
+		 * The whole struct is cast and parsed below, including the
+		 * IMU/subcmd union, not just the 12-byte partial header this
+		 * used to check for.
+		 */
+		if (size >= sizeof(struct joycon_input_report))
 			joycon_parse_report(ctlr,
 					    (struct joycon_input_report *)data);
 	}
-- 
2.50.1 (Apple Git-155)

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler()
  2026-07-15 11:52 [PATCH] HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler() Ibrahim Hashimov
@ 2026-07-15 12:15 ` sashiko-bot
  0 siblings, 0 replies; 2+ messages in thread
From: sashiko-bot @ 2026-07-15 12:15 UTC (permalink / raw)
  To: Ibrahim Hashimov; +Cc: dmitry.torokhov, linux-input

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] The input device is registered before its capabilities are fully initialized.
--

--- Patch [1]: [PATCH] HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler() ---
commit 4a13815d9787a8e4509f8221af788267db0c1886
Author: Ibrahim Hashimov <security@auditcode.ai>

HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler()

This commit changes a bounds check in joycon_ctlr_read_handler() from
12 bytes to the full size of struct joycon_input_report. This prevents
an out-of-bounds read when decoding IMU reports that are smaller than
the full structure size.

> diff --git a/drivers/hid/hid-nintendo.c b/drivers/hid/hid-nintendo.c
> index e7302ec01ff1f..11b5fe05acf44 100644
> --- a/drivers/hid/hid-nintendo.c
> +++ b/drivers/hid/hid-nintendo.c
> @@ -2607,7 +2607,12 @@ static int joycon_ctlr_read_handler(struct joycon_ctlr *ctlr, u8 *data,
>  {
>  	if (data[0] == JC_INPUT_SUBCMD_REPLY || data[0] == JC_INPUT_IMU_DATA ||
>  	    data[0] == JC_INPUT_MCU_DATA) {
> -		if (size >= 12) /* make sure it contains the input report */
> +		/*
> +		 * The whole struct is cast and parsed below, including the
> +		 * IMU/subcmd union, not just the 12-byte partial header this
> +		 * used to check for.
> +		 */
> +		if (size >= sizeof(struct joycon_input_report))
>  			joycon_parse_report(ctlr,
>  					    (struct joycon_input_report *)data);
>  	}

While reviewing this file, I noticed a pre-existing issue in
joycon_input_create():

drivers/hid/hid-nintendo.c:joycon_input_create() {
[ ... ]
	ctlr->input->phys = hdev->phys;
	input_set_drvdata(ctlr->input, ctlr);

	ret = input_register_device(ctlr->input);
	if (ret)
		return ret;

	if (joycon_type_is_right_joycon(ctlr)) {
		joycon_config_right_stick(ctlr->input);
[ ... ]
}

[Severity: High]
This is a pre-existing issue, but is the input device registered here before
its capabilities are configured?

Calling input_register_device() before setting the keys and absolute axes
results in an empty capability map during registration. This causes the joydev
handler to reject the device since EV_KEY and EV_ABS are not set.

Could this lead to udev exporting empty capabilities, and evdev calculating
an incorrect event buffer size, causing applications to fail to reliably
recognize the controller?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260715115253.91029-1-security@auditcode.ai?part=1

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-07-15 12:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-15 11:52 [PATCH] HID: nintendo: fix out-of-bounds read in joycon_ctlr_read_handler() Ibrahim Hashimov
2026-07-15 12:15 ` sashiko-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox