CVE-2025-39842
BaseFortify
Publication date: 2025-09-19
Last updated on: 2025-11-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.1.153 |
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 ocfs2 filesystem involves a null pointer dereference. Specifically, after the journal shutdown function ocfs2_journal_shutdown() is called during volume dismount, the journal pointer (osb->journal) should be NULL. However, the code attempts to release the journal inode without checking if the journal pointer is NULL, leading to a potential null pointer dereference and failure in the calltrace. The fix involves adding checks to ensure osb->journal is not NULL before attempting to release the journal inode.
How can this vulnerability impact me? :
This vulnerability can cause a null pointer dereference in the Linux kernel's ocfs2 filesystem, which may lead to system crashes or instability when dismounting volumes. This could result in denial of service or data loss if the filesystem becomes corrupted or inaccessible due to the failure.