In the Linux kernel, the following vulnerability has been resolved:
platform/x86: lenovo-yoga-tab2-pro-1380-fastcharger: fix serdev race
The yt2_1380_fc_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
This is a Linux kernel availability flaw in a Lenovo Yoga Tablet 2 Pro 1380 fast-charger driver. A local low-privileged user could, under specific timing conditions, trigger a kernel NULL pointer dereference and potentially crash the system. The sources do not indicate data theft or remote compromise.
Executive priority
Treat as a targeted availability risk, not an enterprise-wide remote compromise issue. Patch through normal kernel maintenance, escalating only for systems using the affected driver where unexpected reboots would disrupt operations.
Technical view
In yt2_1380_fc_serdev_probe(), the driver opened the serdev device before assigning client operations. If receive_buf runs after SERPORT_ACTIVE is set but before ops is valid, the controller can dereference NULL. The kernel fix sets client ops before opening the serdev port.
Likely exposure
Exposure appears limited to Linux kernels that include and use this platform/x86 Lenovo fast-charger driver on relevant hardware. The CVE lists Linux 6.10, 6.12.11, and 6.13 as affected, but the bundle does not provide distribution-specific package status.
Exploitation context
The CVSS vector is local, high complexity, low privileges, no user interaction, and high availability impact. CISA KEV status is false, and the provided sources do not report active exploitation or public weaponization.
Researcher notes
The issue is a race during serdev initialization leading to CWE-476 NULL pointer dereference. Evidence supports availability impact only. The source bundle lacks proof-of-concept details, exploit telemetry, and distribution-level affected package mapping.
Mitigation direction
Update to a kernel build containing the referenced stable fixes.
Check Linux distribution advisories for the exact fixed package version.
Prioritize affected systems where this driver is present and relevant hardware exists.
If patching is delayed, follow vendor guidance for reducing driver exposure.
Validation and detection
Inventory running kernel versions against affected and fixed distribution packages.
Check whether the Lenovo fast-charger driver is built, installed, or loaded.
Confirm patched source orders serdev_device_set_client_ops before devm_serdev_device_open.
Run existing kernel stability and regression tests after updating.
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.