CVE-2026-89962
Last modified
CVE-2026-89962 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: powerpc/kexec_file: Prevent kexec range truncation Sashiko AI review pointed out the following issue. The __merge_memory_ranges() function incorrectly handles overlapping memory ranges when merging them. Although sort_memory_ranges() sorts all ranges by their start address in ascending order beforehand, the merge logic remains defective in two ways: 1.
Description
In the Linux kernel, the following vulnerability has been resolved: powerpc/kexec_file: Prevent kexec range truncation Sashiko AI review pointed out the following issue. The __merge_memory_ranges() function incorrectly handles overlapping memory ranges when merging them. Although sort_memory_ranges() sorts all ranges by their start address in ascending order beforehand, the merge logic remains defective in two ways: 1. It compares the current range's start against the previous element (i-1) instead of the running target index (idx) 2. It unconditionally overwrites 'ranges[idx].end' with 'ranges[i].end'. This logic flaw leads to critical memory truncation when a larger memory range completely subsumes subsequent smaller ranges. For example, consider a sorted input array with three ranges: Range A (idx=0): [0x1000 - 0x9000] Range B (i=1): [0x2000 - 0x5000] (completely inside Range A) Range C (i=2): [0x6000 - 0x8000] (completely inside Range A) 1. When i=1 (Range B): ranges[1].start (0x2000) <= ranges[0].end + 1 (0x9001) is TRUE. The code executes: ranges[0].end = ranges[1].end, which erroneously shrinks Range A's end from 0x9000 down to 0x5000. 2. When i=2 (Range C): ranges[2].start (0x6000) <= ranges[1].end + 1 (0x5001) is FALSE. The code falls into the else block, creating a broken new range. As a result, valid memory fragments [0x5001 - 0x5fff] and [0x8001 - 0x9000] are completely lost from the kexec exclude lists, potentially allowing the crash kernel to overwrite active memory, causing data corruption or crashes. Fix this by ensuring the start of the current range is compared against the end of the active merged range (idx), and use max() to safely prevent the outer boundary from being truncated.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 180adfc532a83c1d74146449f7385f767d4b8059, < 9ef63622e6cee588ea4b763a6afc87065254b36a; >= 180adfc532a83c1d74146449f7385f767d4b8059, < da88a2a2119e4fd0e8919a7a2448682f574e1545; >= 180adfc532a83c1d74146449f7385f767d4b8059, < c4cb547f26d9b73b489c5278d0c8db837c5a174f; >= 180adfc532a83c1d74146449f7385f767d4b8059, < fa40f9dbdd4af53e7445d9135b5b207eb8adf372 |
| Linux | Linux | 5.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89962?
How severe is CVE-2026-89962?
How do I fix CVE-2026-89962?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89957In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-89958In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89959In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-8996The Backup and Staging by WP Time Capsule plugin for WordPre…6.5
- CVE-2026-89960In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-89961In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89963In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89964In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89965In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89966In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89967In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89968In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-89962?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
