CVE-2026-53291
Received Received - Intake
Missing Error Check in Conexant HDA Jack Detection Leads to Kernel Crash

Publication date: 2026-06-26

Last updated on: 2026-06-26

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: ALSA: hda/conexant: Fix missing error check for jack detection In cx_probe(), the return value of snd_hda_jack_detect_enable_callback() is ignored. This function returns a pointer, and if it fails (e.g., due to memory allocation failure), it returns an error pointer which must be checked using IS_ERR(). If the registration fails, the driver continues to probe, but the jack detection callback will not be registered. This can lead to a kernel crash later when the driver attempts to handle jack events or accesses the uninitialized structure. Check the return value using IS_ERR() and propagate the error via PTR_ERR() to the probe caller.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-26
Last Modified
2026-06-26
Generated
2026-06-27
AI Q&A
2026-06-26
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's ALSA hda/conexant driver. Specifically, in the cx_probe() function, the return value of snd_hda_jack_detect_enable_callback() is not checked. This function returns a pointer that may indicate an error if it fails, such as due to memory allocation failure.

Because the error pointer is not checked using IS_ERR(), the driver may continue probing without properly registering the jack detection callback. This can cause a kernel crash later when the driver tries to handle jack events or access an uninitialized structure.

The fix involves checking the return value with IS_ERR() and propagating the error to the probe caller using PTR_ERR().

Impact Analysis

If this vulnerability is triggered, it can lead to a kernel crash on systems running the affected Linux kernel with the ALSA hda/conexant driver.

A kernel crash can cause system instability, loss of unsaved data, and potential denial of service as the system may need to be rebooted.

Mitigation Strategies

To mitigate this vulnerability, update your Linux kernel to a version where the ALSA hda/conexant driver includes the fix for the missing error check in jack detection.

The fix involves proper checking of the return value of snd_hda_jack_detect_enable_callback() using IS_ERR() and propagating errors correctly to prevent kernel crashes.

Until the update is applied, avoid using the affected driver or hardware if possible to reduce the risk of kernel crashes caused by unhandled jack detection errors.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53291. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart