[PATCH v2 1/3] Input: xpad - add out-of-bounds checks for xpadone
Griffin Kroah-Hartman <[email protected]> Wed, 05 Aug 2026 11:56:35 +0200
| Newsgroups | org.kernel.vger.linux-input,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Add size checks for the "len" variable in xpadone_process_packet(). This prevents out-of-bounds accesses to the "data" buffer, as "len" comes directly from the hardware. Assisted-by: gkh_clanker_t1000 Signed-off-by: Griffin Kroah-Hartman <[email protected]> --- drivers/input/joystick/xpad.c | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index feb8f368f834..9ce792503b3a 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -1035,8 +1035,14 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char struct input_dev *dev = xpad->dev; bool do_sync = false; + if (len < 2) + return; + len = min(len, XPAD_PKT_LEN); + /* the xbox button has its own special report */ if (data[0] == GIP_CMD_VIRTUAL_KEY) { + if (len < 5) + return; /* * The Xbox One S controller requires these reports to be * acked otherwise it continues sending them forever and @@ -1052,6 +1058,8 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char } else if (data[0] == GIP_CMD_FIRMWARE) { /* Some packet formats force us to use this separate to poll paddle inputs */ if (xpad->packet_type == PKT_XBE2_FW_5_11) { + if (len < 20) + return; /* Mute paddles if controller is in a custom profile slot * Checked by looking at the active profile slot to * verify it's the default slot @@ -1079,9 +1087,13 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char error); } } else if (data[0] == GIP_CMD_INPUT) { /* The main valid packet type for inputs */ + if (len < 18) + return; /* menu/view buttons */ input_report_key(dev, BTN_START, data[4] & BIT(2)); input_report_key(dev, BTN_SELECT, data[4] & BIT(3)); + do_sync = true; + if (xpad->mapping & MAP_SHARE_BUTTON) { u32 offset = (xpad->mapping & MAP_SHARE_OFFSET) ? 26 : 18; @@ -1145,13 +1157,18 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char } /* Profile button has a value of 0-3, so it is reported as an axis */ - if (xpad->mapping & MAP_PROFILE_BUTTON) + if (xpad->mapping & MAP_PROFILE_BUTTON) { + if (len < 35) + goto exit; input_report_abs(dev, ABS_PROFILE, data[34]); + } /* paddle handling */ /* based on SDL's SDL_hidapi_xboxone.c */ if (xpad->mapping & MAP_PADDLES) { if (xpad->packet_type == PKT_XBE1) { + if (len < 33) + goto exit; /* Mute paddles if controller has a custom mapping applied. * Checked by comparing the current mapping * config against the factory mapping config @@ -1165,6 +1182,8 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char input_report_key(dev, BTN_GRIPL, data[32] & BIT(0)); input_report_key(dev, BTN_GRIPL2, data[32] & BIT(2)); } else if (xpad->packet_type == PKT_XBE2_FW_OLD) { + if (len < 20) + goto exit; /* Mute paddles if controller has a custom mapping applied. * Checked by comparing the current mapping * config against the factory mapping config @@ -1178,6 +1197,8 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char input_report_key(dev, BTN_GRIPL, data[18] & BIT(2)); input_report_key(dev, BTN_GRIPL2, data[18] & BIT(3)); } else if (xpad->packet_type == PKT_XBE2_FW_5_EARLY) { + if (len < 24) + goto exit; /* Mute paddles if controller has a custom mapping applied. * Checked by comparing the current mapping * config against the factory mapping config @@ -1197,7 +1218,7 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char do_sync = true; } - +exit: if (do_sync) input_sync(dev); } -- 2.55.0