CVE-2025-38720
BaseFortify
Publication date: 2025-09-04
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 | 6.17 |
| 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 hibmcge network driver. During the PCI reset process, two devices using the hibmcge driver can sequentially request the rtnl_lock, causing a deadlock. The problem arises because the driver acquires the rtnl_lock in pci_error_handlers.reset_prepare() and releases it in reset_done(), but the PCI framework iterates through devices and calls reset_prepare() on each, leading to multiple requests for the same lock. The fix removes the need to hold the rtnl_lock during the reset process by detaching the network device beforehand, preventing concurrent netdev API calls and avoiding deadlock.
How can this vulnerability impact me? :
This vulnerability can cause a deadlock in the Linux kernel's network driver during PCI device reset operations. A deadlock can halt or severely delay system processes related to network device resets, potentially leading to system instability, degraded network performance, or unresponsiveness in affected systems.
What immediate steps should I take to mitigate this vulnerability?
Apply the patch that removes the rtnl_lock during the reset process in the hibmcge driver and adjusts the reset state handling to prevent concurrent resets. This involves updating the Linux kernel to a version that includes this fix, ensuring that the hibmcge driver no longer holds the rtnl_lock during pci_error_handlers.reset_prepare() and reset_done().