CVE-2025-68281
Description
In the Linux kernel, the following vulnerability has been resolved:
ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list
"struct sdca_control" declares "values" field as integer array. But the memory allocated to it is of char array. This causes crash for sdca_parse_function API. This patch addresses the issue by allocating correct data size.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
A memory allocation mismatch in the Linux kernel's SDCA driver causes a crash when parsing MIPI SDCA control lists.
Vulnerability
Overview
In the Linux kernel's ASoC SDCA (SoundWire SDCA) subsystem, the struct sdca_control declares its values field as an integer array, but the memory allocated to it is of char array. This mismatch leads to a crash when the sdca_parse_function API attempts to access the array as integers, causing out-of-bounds reads or writes.
Exploitation
An attacker would need to trigger the parsing of a crafted MIPI SDCA control list, likely through a malicious audio device or by injecting a malformed control descriptor. No authentication is required if the attacker can physically connect a device or if the system processes untrusted control data from a compromised peripheral.
Impact
Successful exploitation results in a kernel crash (denial of service). The vulnerability could potentially be leveraged for arbitrary code execution if the memory corruption is carefully controlled, though the patch description only mentions a crash.
Mitigation
The fix [1] corrects the allocation size by using sizeof(int) instead of sizeof(char). The patch has been applied to the stable kernel tree. Users should update to a kernel version containing this commit or apply the backport.
AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected products
2Patches
0No patches discovered yet.
Vulnerability mechanics
AI mechanics synthesis has not run for this CVE yet.
References
2News mentions
0No linked articles in our index yet.