Description
In the Linux kernel, the following vulnerability has been resolved:

Input: mms114 - fix touch indexing for MMS134S and MMS136

The MMS134S and MMS136 touch controllers have an event size of 6 bytes
rather than 8 bytes. When __mms114_read_reg() reads the touch data
packet from the device into the touch buffer, the events are packed
tightly at 6-byte intervals. However, the driver iterates through the
events using standard C array indexing (touch[index]), where each
element is sizeof(struct mms114_touch) (8 bytes) apart. As a result, any
touch events beyond the first one are read from incorrect offsets and
parsed improperly.

Fix this by explicitly calculating the byte offset for each touch event
based on the device's specific event size.
Published: 2026-07-25
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability originates from a mismatch between the event size expected by the mms114 driver (8 bytes) and the actual 6‑byte packets generated by the MMS134S and MMS136 touch controllers. The driver treats each event as an 8‑byte struct and therefore reads subsequent events from incorrect offsets, causing malformed touch data to be processed. The defect does not lead to memory corruption, remote code execution, or privilege escalation; it merely results in inaccurate or unpredictable touch input handling that can degrade device usability.

Affected Systems

The flaw affects any Linux kernel build that includes the mms114 driver for the MMS134S or MMS136 controllers. Systems running older kernels that have not incorporated the upstream patch, custom kernel configurations that compile the driver, or distributions that ship the affected driver without correcting the event calculation are all potentially vulnerable. Updating to a kernel that contains the event‑size fix or disabling the driver resolves the issue.

Risk and Exploitability

Because the vulnerability involves only incorrect parsing of touch packets, it does not expose a memory overflow or code execution path. Exploitation would require local, physical access to inject malformed touch data and the flaw does not provide a means for privilege escalation. The EPSS score of < 1% and absence from the CISA KEV catalog indicate a very low likelihood of real‑world exploitation. Consequently, the overall risk to systems that use the affected driver is minimal, though it can impact device usability.

Generated by OpenCVE AI on August 13, 2026 at 19:50 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a release that contains the mms114 driver patch that corrects the event‑size computation.
  • If upgrading the kernel is not possible, unload the mms114 module or disable it in the kernel configuration to stop the faulty driver from loading.
  • Confirm that the system is not compiling the mms114 driver when the hardware does not use MMS134S/MMS136 components, and apply vendor patches as soon as they become available.

Generated by OpenCVE AI on August 13, 2026 at 19:50 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4724-1 linux-6.12 new package
History

Thu, 13 Aug 2026 18:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-129
Metrics cvssV3_1

{'score': 7.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sat, 01 Aug 2026 02:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-20

Thu, 30 Jul 2026 12:15:00 +0000


Sun, 26 Jul 2026 03:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-125
CWE-20

Sat, 25 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Input: mms114 - fix touch indexing for MMS134S and MMS136 The MMS134S and MMS136 touch controllers have an event size of 6 bytes rather than 8 bytes. When __mms114_read_reg() reads the touch data packet from the device into the touch buffer, the events are packed tightly at 6-byte intervals. However, the driver iterates through the events using standard C array indexing (touch[index]), where each element is sizeof(struct mms114_touch) (8 bytes) apart. As a result, any touch events beyond the first one are read from incorrect offsets and parsed improperly. Fix this by explicitly calculating the byte offset for each touch event based on the device's specific event size.
Title Input: mms114 - fix touch indexing for MMS134S and MMS136
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-07-25T08:49:18.766Z

Reserved: 2026-07-19T15:36:31.775Z

Link: CVE-2026-64272

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Analyzed

Published: 2026-07-25T10:17:07.550

Modified: 2026-08-13T18:27:48.377

Link: CVE-2026-64272

cve-icon Redhat

Severity :

Publid Date: 2026-07-25T00:00:00Z

Links: CVE-2026-64272 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T20:00:03Z

Weaknesses
  • CWE-125

    Out-of-bounds Read

  • CWE-129

    Improper Validation of Array Index