CVE-2025-68250
BaseFortify
Publication date: 2025-12-16
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability involves the Linux kernel's blocker tracking mechanism, which assumes that lock pointers are at least 4-byte aligned to encode type information in their lower bits. However, on some architectures like m68k, 32-bit values are only guaranteed 2-byte alignment, breaking this assumption and causing warnings (WARN_ON_ONCE) to trigger. The fix adjusts runtime checks to ignore any lock that is not 4-byte aligned, disabling the feature in those cases and preventing the warnings.
How can this vulnerability impact me? :
This vulnerability causes warnings in the Linux kernel due to misaligned lock pointers on certain architectures, which could lead to unnecessary log noise or debugging difficulties. The fix disables the blocker tracking feature for unaligned locks to avoid these warnings, so the impact is primarily related to kernel diagnostics rather than security or functionality.