CVE-2025-38643
BaseFortify
Publication date: 2025-08-22
Last updated on: 2026-03-17
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.14.170 (inc) to 4.15 (exc) |
| linux | linux_kernel | From 4.19.102 (inc) to 4.20 (exc) |
| linux | linux_kernel | From 5.4.18 (inc) to 5.5 (exc) |
| linux | linux_kernel | From 5.5.1 (inc) to 6.6.118 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.57 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.15.10 (exc) |
| linux | linux_kernel | From 6.16 (inc) to 6.16.1 (exc) |
| linux | linux_kernel | 5.5 |
| linux | linux_kernel | 5.5 |
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 in the Linux kernel involves a missing lock in the wifi cfg80211 component, specifically in the function cfg80211_check_and_end_cac(). Callers of the function wdev_chandef() are required to hold the wiphy mutex lock, but the worker function cfg80211_propagate_cac_done_wk() does not take this lock. This leads to a warning and potential issues related to concurrency and synchronization in wireless device channel definition handling.
How can this vulnerability impact me? :
The impact of this vulnerability could include instability or unexpected behavior in the wireless networking stack of the Linux kernel due to improper locking. This might cause warnings, potential race conditions, or crashes related to wireless device channel management, especially when using features involving DFS (Dynamic Frequency Selection) and mesh networking.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring the system logs for the specific warning message triggered by the issue. Look for the warning: "WARNING: CPU: ... wdev_chandef+0x60/0x165" related to cfg80211 and cfg80211_propagate_cac_done_wk workqueue. You can use commands like `dmesg | grep wdev_chandef` or `journalctl -k | grep wdev_chandef` to find these warnings in kernel logs.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating the Linux kernel to a version where this issue is fixed, as the vulnerability is due to a missing lock in the kernel code. Until an update is applied, monitoring logs for the warning and avoiding triggering the mesh_peer_connected_dfs test or related functionality may reduce exposure.