Bug 2429055 (CVE-2025-68777) - CVE-2025-68777 kernel: Input: ti_am335x_tsc - fix off-by-one error in wire_order validation
Summary: CVE-2025-68777 kernel: Input: ti_am335x_tsc - fix off-by-one error in wire_or...
Keywords:
Status: NEW
Alias: CVE-2025-68777
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-01-13 16:03 UTC by OSIDB Bzimport
Modified: 2026-01-15 03:14 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-01-13 16:03:32 UTC
In the Linux kernel, the following vulnerability has been resolved:

Input: ti_am335x_tsc - fix off-by-one error in wire_order validation

The current validation 'wire_order[i] > ARRAY_SIZE(config_pins)' allows
wire_order[i] to equal ARRAY_SIZE(config_pins), which causes out-of-bounds
access when used as index in 'config_pins[wire_order[i]]'.

Since config_pins has 4 elements (indices 0-3), the valid range for
wire_order should be 0-3. Fix the off-by-one error by using >= instead
of > in the validation check.


Note You need to log in before you can comment on or make changes to this bug.