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

ASoC: codecs: simple-mux: Fix enum control bounds check

simple_mux_control_put() rejects values greater than e->items, but
enum control values are zero based. For the two-entry mux used by this
driver, valid values are 0 and 1, so value 2 must be rejected as well.

Accepting e->items can store an invalid mux state, pass it to the GPIO
setter, and pass it on to the DAPM mux update path where it is used as
an index into the enum text array.

Use the same >= e->items check used by the ASoC enum helpers.
Published: 2026-07-24
Score: 7.1 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel ASoC simple‑mux driver accepts enum control values larger than the declared number of items because the bounds test uses ">" instead of ">=". For a two‑entry mux the only valid values are 0 and 1, yet a value of 2 is also accepted and later used as an index into a text array and a GPIO setter. This mis‑indexing can corrupt kernel memory, trigger a kernel panic, or otherwise affect stability. The weakness is an improper input validation flaw (CWE‑20).

Affected Systems

The flaw exists in the ASoC simple‑mux driver of the Linux kernel. Any kernel build that includes this driver without the recent patch is vulnerable. No specific version range is provided, so all kernels containing the unpatched implementation—whether older releases or custom builds with ASoC support—are affected.

Risk and Exploitability

The EPSS score is below 1 % and the issue is not listed in the CISA KEV catalog, indicating a low probability of widespread exploitation at present. With a CVSS score of 7.1 this flaw is considered high severity. Local attackers who can manipulate audio controls or load a malicious driver could trigger a kernel panic or cause a crash, warranting prompt remediation.

Generated by OpenCVE AI on August 4, 2026 at 14:55 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the kernel to a version that includes the simple_mux_control_put bounds check fix and reboot to load the patched driver.
  • If an immediate kernel upgrade is infeasible, disable or remove the ASoC simple‑mux driver from the kernel configuration to eliminate the out‑of‑bounds condition.
  • Configure auditing or monitoring to flag attempts to set invalid audio control values, providing early detection of exploitation attempts.

Generated by OpenCVE AI on August 4, 2026 at 14:55 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Ubuntu USN Ubuntu USN USN-8618-1 Linux kernel vulnerabilities
History

Tue, 04 Aug 2026 15:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-20

Tue, 28 Jul 2026 16:15:00 +0000


Mon, 27 Jul 2026 05:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Fri, 24 Jul 2026 18:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: ASoC: codecs: simple-mux: Fix enum control bounds check simple_mux_control_put() rejects values greater than e->items, but enum control values are zero based. For the two-entry mux used by this driver, valid values are 0 and 1, so value 2 must be rejected as well. Accepting e->items can store an invalid mux state, pass it to the GPIO setter, and pass it on to the DAPM mux update path where it is used as an index into the enum text array. Use the same >= e->items check used by the ASoC enum helpers.
Title ASoC: codecs: simple-mux: Fix enum control bounds check
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-08-05T12:40:14.935Z

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

Link: CVE-2026-64243

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Awaiting Analysis

Published: 2026-07-24T16:16:53.680

Modified: 2026-07-30T15:00:27.343

Link: CVE-2026-64243

cve-icon Redhat

Severity : Moderate

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

Links: CVE-2026-64243 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-04T15:00:14Z

Weaknesses
  • CWE-20

    Improper Input Validation