CVE-2025-68369
Uninitialized Lock in Linux ntfs3 Inode Causes Kernel Error
Publication date: 2025-12-24
Last updated on: 2025-12-24
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 in the Linux kernel's ntfs3 module occurs because the run_lock is not initialized when the inode mode of $Extend is set to a regular file and the truncate system call is executed. This leads to an uninitialized run_lock error in the do_truncate() routine, which was reported by syzbot. The issue arises because prior to the patch, if the inode mode was not set to a regular file, the do_truncate() routine would not be entered, avoiding the error. The fix involves initializing the run_lock when loading $Extend.
How can this vulnerability impact me? :
The vulnerability can cause errors in the kernel due to the uninitialized run_lock when truncating files with the inode mode of $Extend set to a regular file. This may lead to kernel instability or crashes when performing file operations on NTFS3 file systems, potentially affecting system reliability.