CVE-2025-39712
BaseFortify
Publication date: 2025-09-05
Last updated on: 2025-11-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-667 | The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a deadlock issue in the Linux kernel's media driver for the mt9m114 device. Specifically, when getting or setting the frame interval using V4L2 sub-device pad operations (get_frame_interval/set_frame_interval), the sub-device state lock is acquired both in the core and again in the driver, causing a deadlock. The correct approach is that the caller should manage the locking, so the driver should not acquire the lock again. The fix removes the redundant lock acquisitions/releases in the driver functions.
How can this vulnerability impact me? :
This vulnerability can cause the system to hang or become unresponsive when accessing the frame interval settings of the mt9m114 media device due to a deadlock. This can disrupt media processing or video capture functionality relying on this driver, potentially affecting system stability and availability.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version where the mt9m114 driver has removed the incorrect lock acquisitions/releases in the get_frame_interval and set_frame_interval functions. This fix prevents the deadlock by ensuring the caller manages the locking as intended.