CVE-2026-43189
Memory Corruption in Linux Kernel V4L2 Async Subsystem
Publication date: 2026-05-06
Last updated on: 2026-05-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is in the Linux kernel's media subsystem, specifically in the v4l2-async component which handles asynchronous device connections.
The issue involves error handling after an asynchronous connection matches a firmware node (fwnode). When a match is found, a sub-device may be registered, its bound operation called, ancillary links created, and the connection added to the sub-device's list.
The vulnerability arises because if the function v4l2_async_match_notify() fails before handling sub-notifiers, the async connection is unbound and removed from the sub-device's connection list twice, causing inconsistent state.
Additionally, the async connection's sub-device field (sd) is set only after creating ancillary links, but it is dereferenced earlier during error handling, which can lead to use-after-free or null pointer dereference issues.
How can this vulnerability impact me? :
This vulnerability can cause improper error handling in the Linux kernel's media subsystem, potentially leading to system instability or crashes.
Because the async connection's sub-device field may be dereferenced before being properly set, this could result in kernel errors such as null pointer dereferences or use-after-free conditions.
Such kernel errors can cause denial of service by crashing the kernel or causing unpredictable behavior in media device handling.