Description
In the Linux kernel, the following vulnerability has been resolved:

kho: fix size calculation in kho_preserved_memory_reserve()

kho_preserved_memory_reserve() calculates the size of a preservation by
doing 1 << (order + PAGE_SHIFT). Since the '1' is a 32-bit integer, it
can only be shifted by 31. That is, it will only work for preservations
up to 2 GiB. Larger preservations will trigger undefined behaviour.

While preservations larger than 2 GiB can't be obtained via folios
currently, they can be obtained via kho_preserve_pages().

For example, memblock reserve_mem uses kho_preserve_pages().
Reservations larger than 2 GiB are valid and will trigger this bug if
properly aligned.

Fix it by using 1UL for shifting.
Published: 2026-09-11
Score: 4.4 Medium
EPSS: < 1% Very Low
KEV: No
Impact: Potential memory corruption or kernel crash due to incorrect size calculation for preserved memory exceeding 2 GiB in Linux kernel
Action: Apply Patch
AI Analysis

Impact

The vulnerability arises in the Linux kernel’s kho module, where kho_preserved_memory_reserve() calculates a preservation size by left‑shifting a 32‑bit integer. Because a 32‑bit integer can only shift up to 31 bits, the calculation works only for sizes up to 2 GiB. For larger sizes, the shift causes undefined behavior and can corrupt memory structures or crash the kernel. The weakness is categorized as CWE‑1335.

Affected Systems

The flaw impacts all Linux kernel releases that include the kho module before the fix was merged, including the stable branch. Systems that request 2 GiB through kho_preserve_pages() or memblock reserve_mem are susceptible.

Risk and Exploitability

The CVSS score of 4.4 indicates low severity. The EPSS score is below 1 %, reflecting a very low likelihood of exploitation in the wild. The vulnerability is not listed in CISA KEV. The likely attack vector is local privileged code that can request large preserved memory reservations, such as a kernel module or process running as root, which could result in memory corruption or kernel crash rather than remote code execution.

Generated by OpenCVE AI on September 13, 2026 at 04:52 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the kernel to a version that includes the fix for kho_preserved_memory_reserve().
  • If an immediate update is not possible, avoid allocating preserved memory larger than 2 GiB using kho_preserve_pages() or memblock reserve_mem until a patched kernel is deployed.
  • Monitor kernel logs for failures or crashes related to memory reservations and apply the patch as soon as feasible.

Generated by OpenCVE AI on September 13, 2026 at 04:52 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sat, 12 Sep 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-1335
References
Metrics threat_severity

None

cvssV3_1

{'score': 4.4, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Moderate


Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: kho: fix size calculation in kho_preserved_memory_reserve() kho_preserved_memory_reserve() calculates the size of a preservation by doing 1 << (order + PAGE_SHIFT). Since the '1' is a 32-bit integer, it can only be shifted by 31. That is, it will only work for preservations up to 2 GiB. Larger preservations will trigger undefined behaviour. While preservations larger than 2 GiB can't be obtained via folios currently, they can be obtained via kho_preserve_pages(). For example, memblock reserve_mem uses kho_preserve_pages(). Reservations larger than 2 GiB are valid and will trigger this bug if properly aligned. Fix it by using 1UL for shifting.
Title kho: fix size calculation in kho_preserved_memory_reserve()
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-11T19:44:38.078Z

Reserved: 2026-09-11T19:38:34.726Z

Link: CVE-2026-89568

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:40.810

Modified: 2026-09-11T20:19:40.810

Link: CVE-2026-89568

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-09-11T19:44:38Z

Links: CVE-2026-89568 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T05:00:12Z

Weaknesses
  • CWE-1335

    Incorrect Bitwise Shift of Integer