Bug 2493744 (CVE-2026-53291) - CVE-2026-53291 kernel: ALSA: hda/conexant: Fix missing error check for jack detection
Summary: CVE-2026-53291 kernel: ALSA: hda/conexant: Fix missing error check for jack d...
Keywords:
Status: NEW
Alias: CVE-2026-53291
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Product Security
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-06-26 21:04 UTC by OSIDB Bzimport
Modified: 2026-06-29 09:08 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-06-26 21:04:38 UTC
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.

Comment 1 Mauro Matteo Cascella 2026-06-29 09:05:19 UTC
Upstream advisory:
https://lore.kernel.org/linux-cve-announce/2026062617-CVE-2026-53291-451e@gregkh/T


Note You need to log in before you can comment on or make changes to this bug.