In the Linux kernel, the following vulnerability has been resolved:
platform/x86: dell-uart-backlight: fix serdev race
The dell_uart_bl_serdev_probe() function calls devm_serdev_device_open()
before setting the client ops via serdev_device_set_client_ops(). This
ordering can trigger a NULL pointer dereference in the serdev controller's
receive_buf handler, as it assumes serdev->ops is valid when
SERPORT_ACTIVE is set.
This is similar to the issue fixed in commit 5e700b384ec1
("platform/chrome: cros_ec_uart: properly fix race condition") where
devm_serdev_device_open() was called before fully initializing the
device.
Fix the race by ensuring client ops are set before enabling the port via
devm_serdev_device_open().
Note, serdev_device_set_baudrate() and serdev_device_set_flow_control()
calls should be after the devm_serdev_device_open() call.
Security readout for executives and security teams
Plain-English summary
A Linux kernel driver for Dell UART backlight handling can crash because it opens a serial device before registering required callbacks. This is a local availability issue, not a data theft issue. Business urgency is mainly for affected Linux endpoints where a kernel crash or denial of service would disrupt operations.
Executive priority
Treat as a moderate reliability risk. It is not described as remotely exploitable or confidentiality-impacting, but a local kernel crash can still disrupt users and support operations. Patch through normal kernel maintenance, faster for exposed shared workstations or high-availability endpoints.
Technical view
CVE-2025-21695 is a CWE-476 NULL pointer dereference in platform/x86 dell-uart-backlight. The race occurs when devm_serdev_device_open() runs before serdev_device_set_client_ops(), allowing receive_buf handling while serdev->ops is unset. The fix sets client ops before enabling the port.
Likely exposure
Exposure appears limited to Linux systems running affected kernel versions with the dell-uart-backlight serdev driver path relevant. The CVE data lists Linux kernel 6.10 and ranges through 6.12.11 and 6.13 as affected; confirm downstream vendor kernel status.
Exploitation context
The supplied CVSS vector requires local access, low privileges, high attack complexity, and no user interaction. The impact is availability only. The source bundle says KEV is false and provides no evidence of active exploitation.
Researcher notes
The core issue is initialization ordering in dell_uart_bl_serdev_probe(). The source compares it to an earlier cros_ec_uart race pattern. Evidence supports local denial of service only; affected hardware and downstream backport status require environment-specific confirmation.
Mitigation direction
Update to a kernel containing the referenced stable fixes.
Confirm your Linux distribution has backported the dell-uart-backlight serdev race fix.
Prioritize affected laptops or endpoints where local users can trigger kernel-level denial of service.
If patching is delayed, check vendor guidance; no workaround is named in the supplied sources.
Validation and detection
Inventory Linux kernel versions across endpoint and laptop fleets.
Check whether affected systems use the dell-uart-backlight driver path.
Verify fixed stable commits are present in deployed kernel source or vendor changelogs.
Review crash telemetry for NULL pointer dereferences involving serdev receive_buf handling.
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.