CVE-2025-38119
BaseFortify
Publication date: 2025-07-03
Last updated on: 2026-01-19
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 3.12 (inc) to 5.15.186 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.142 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.94 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.34 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.15.3 (exc) |
| linux | linux_kernel | 6.16 |
| debian | debian_linux | 11.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-NVD-CWE-noinfo |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a hang issue in the Linux kernel's SCSI core, specifically related to the UFS (Universal Flash Storage) driver error handler. The problem occurs because the function ufshcd_err_handling_prepare() calls ufshcd_rpm_get_sync(), which can only succeed if a certain flag (UFSHCD_EH_IN_PROGRESS) is not set. However, the flag was being set before the call, causing the system to hang as it waits indefinitely. The fix involved changing the order to set the flag after the call, preventing the hang.
How can this vulnerability impact me? :
This vulnerability can cause the system to hang during error handling in the UFS storage driver, potentially leading to system unresponsiveness or degraded performance when the error handler is triggered.