CVE-2026-43290
UVC Video Buffer Leak in Linux Kernel
Publication date: 2026-05-08
Last updated on: 2026-05-08
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 uvcvideo driver. It involves a failure to properly return queued buffers when the start_streaming() function fails due to an error in uvc_pm_get(). This can cause warnings and issues related to USB video devices, particularly under workloads involving repeated streaming attempts.
How can this vulnerability impact me? :
If this vulnerability occurs, it may cause warnings and instability when using USB video devices, such as cameras, especially under heavy or repeated streaming workloads. It could lead to device disconnects or failures in video streaming operations, potentially disrupting applications relying on video input.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability relates to the Linux kernel's media subsystem, specifically the uvcvideo driver handling video streaming buffers. Detection may involve monitoring system logs for warnings related to video buffer streaming failures.
- Check kernel logs for warnings similar to: "WARNING: CPU: ... vb2_start_streaming" which indicate streaming start failures.
- Use commands like `dmesg | grep vb2_start_streaming` or `journalctl -k | grep vb2_start_streaming` to find relevant kernel warnings.
- Run a workload similar to `while :; do yavta -c3 /dev/video0; done` to attempt to reproduce the issue and observe any errors or warnings.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability has been resolved by returning queued buffers on start_streaming() failure in the uvcvideo driver. Immediate mitigation involves updating the Linux kernel to a version that includes this fix.
- Update your Linux kernel to the latest version where this issue is fixed.
- Monitor system logs for related warnings and avoid workloads that trigger the issue until the update is applied.