CVE-2025-39892: ASoC: soc-core: care NULL dirver name on snd_soc_lookup_component_nolocked()
In the Linux kernel, the following vulnerability has been resolved:
ASoC: soc-core: care NULL dirver name on snd_soc_lookup_component_nolocked()
soc-generic-dmaengine-pcm.c uses same dev for both CPU and Platform.
In such case, CPU component driver might not have driver->name, then
snd_soc_lookup_component_nolocked() will be NULL pointer access error.
Care NULL driver name.
Call trace:
strcmp from snd_soc_lookup_component_nolocked+0x64/0xa4
snd_soc_lookup_component_nolocked from snd_soc_unregister_component_by_driver+0x2c/0x44
snd_soc_unregister_component_by_driver from snd_dmaengine_pcm_unregister+0x28/0x64
snd_dmaengine_pcm_unregister from devres_release_all+0x98/0xfc
devres_release_all from device_unbind_cleanup+0xc/0x60
device_unbind_cleanup from really_probe+0x220/0x2c8
really_probe from __driver_probe_device+0x88/0x1a0
__driver_probe_device from driver_probe_device+0x30/0x110
driver_probe_device from __driver_attach+0x90/0x178
__driver_attach from bus_for_each_dev+0x7c/0xcc
bus_for_each_dev from bus_add_driver+0xcc/0x1ec
bus_add_driver from driver_register+0x80/0x11c
driver_register from do_one_initcall+0x58/0x23c
do_one_initcall from kernel_init_freeable+0x198/0x1f4
kernel_init_freeable from kernel_init+0x1c/0x12c
kernel_init from ret_from_fork+0x14/0x28
Security readout for executives and security teams
Plain-English summary
CVE-2025-39892 is a Linux kernel availability flaw in the ALSA System-on-Chip audio subsystem. A missing NULL check can make the kernel dereference a missing driver name and crash. The known impact is denial of service, not data theft or privilege escalation.
Executive priority
Treat this as routine-to-prioritized kernel maintenance. It can crash affected Linux systems locally, so prioritize systems where uptime matters and local user access exists, but current sources do not justify emergency response.
Technical view
The flaw is CWE-476 in ASoC soc-core. When soc-generic-dmaengine-pcm.c uses the same device for CPU and Platform, a CPU component driver may have no driver->name. snd_soc_lookup_component_nolocked() can then call strcmp on NULL during unregister/probe cleanup, causing a kernel NULL pointer dereference.
Likely exposure
Exposure appears limited to Linux systems running affected kernel builds with relevant ASoC DMA engine PCM audio paths. The CVSS vector is local, low complexity, low privileges, no user interaction, and high availability impact only.
Exploitation context
The source bundle does not show CISA KEV listing or active exploitation. Public evidence supports local denial-of-service risk through a kernel crash condition, but does not support remote exploitation, data compromise, or privilege escalation claims.
Researcher notes
The evidence is concise and kernel-maintainer oriented. The reported call trace places the crash during component unregister after probe cleanup. Affected version details should be verified against vendor advisories because downstream distributions often backport kernel fixes without changing major version strings.
Mitigation direction
Update to a vendor kernel containing the referenced stable fixes.
Check distribution advisories for backported fixes before relying on version numbers.
Prioritize embedded, mobile, and audio-enabled Linux systems using ASoC paths.
Apply standard local access controls where immediate patching is delayed.
Validation and detection
Inventory running Linux kernel versions across affected fleets.
Confirm vendor packages include the two referenced stable commits or equivalent backports.
Review kernel logs for NULL dereference traces in snd_soc_lookup_component_nolocked.
Identify systems using ASoC and generic DMA engine PCM audio components.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.