{"id":"AZL-101387","summary":"CVE-2026-89962 affecting package kernel 6.6.150.1-1","details":"In the Linux kernel, the following vulnerability has been resolved:\n\npowerpc/kexec_file: Prevent kexec range truncation\n\nSashiko AI review pointed out the following issue.\n\nThe __merge_memory_ranges() function incorrectly handles overlapping\nmemory ranges when merging them. Although sort_memory_ranges() sorts all\nranges by their start address in ascending order beforehand, the merge\nlogic remains defective in two ways:\n\n1. It compares the current range's start against the previous element (i-1)\n   instead of the running target index (idx)\n\n2. It unconditionally overwrites 'ranges[idx].end' with 'ranges[i].end'.\n\nThis logic flaw leads to critical memory truncation when a larger memory\nrange completely subsumes subsequent smaller ranges.\n\nFor example, consider a sorted input array with three ranges:\n  Range A (idx=0): [0x1000 - 0x9000]\n  Range B (i=1):   [0x2000 - 0x5000] (completely inside Range A)\n  Range C (i=2):   [0x6000 - 0x8000] (completely inside Range A)\n\n1. When i=1 (Range B):\n   ranges[1].start (0x2000) \u003c= ranges[0].end + 1 (0x9001) is TRUE.\n   The code executes: ranges[0].end = ranges[1].end, which erroneously\n   shrinks Range A's end from 0x9000 down to 0x5000.\n\n2. When i=2 (Range C):\n   ranges[2].start (0x6000) \u003c= ranges[1].end + 1 (0x5001) is FALSE.\n   The code falls into the else block, creating a broken new range.\n\nAs a result, valid memory fragments [0x5001 - 0x5fff] and [0x8001 - 0x9000]\nare completely lost from the kexec exclude lists, potentially allowing\nthe crash kernel to overwrite active memory, causing data corruption\nor crashes.\n\nFix this by ensuring the start of the current range is compared against the\nend of the active merged range (idx), and use max() to safely prevent the\nouter boundary from being truncated.","modified":"2026-09-18T05:37:08Z","published":"2026-09-16T11:17:06Z","upstream":["CVE-2026-89962"],"references":[{"type":"WEB","url":"https://nvd.nist.gov/vuln/detail/CVE-2026-89962"}],"affected":[{"package":{"name":"kernel","ecosystem":"Azure Linux:3","purl":"pkg:rpm/azure-linux/kernel"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"last_affected":"6.6.150.1-1"}]}],"database_specific":{"source":"https://github.com/microsoft/AzureLinuxVulnerabilityData/blob/main/osv/AZL-101387.json"}}],"schema_version":"1.9.0"}