CVE-2023-53848
BaseFortify
Publication date: 2025-12-09
Last updated on: 2025-12-09
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 a deadlock issue in the Linux kernel's md/raid5-cache component, specifically in the r5l_exit_log() function. A recent commit introduced a problem where a wait_event() call in r5c_disable_writeback_async() can never pass because conf->log is not set to NULL before wake_up() is called. This causes the system to hang waiting indefinitely. The fix involves setting conf->log to NULL before wake_up(), allowing the wait_event() to complete and preventing the deadlock.
How can this vulnerability impact me? :
This vulnerability can cause a deadlock in the Linux kernel's RAID5 cache management, potentially leading to system hangs or unresponsiveness when the affected code path is executed. This can impact system stability and availability, especially on systems using RAID5 caching features.