CVE-2025-68211

In the Linux kernel, the following vulnerability has been resolved: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item Currently, scan_get_next_rmap_item() walks every page address in a VMA to locate mergeable pages. This becomes highly inefficient when scanning large virtual memory areas that contain mostly unmapped regions, causing ksmd to use large amount of cpu without deduplicating much pages. This patch replaces the per-address lookup with a range walk using walk_page_range(). The range walker allows KSM to skip over entire unmapped holes in a VMA, avoiding unnecessary lookups. This problem was previously discussed in [1]. Consider the following test program which creates a 32 TiB mapping in the virtual address space but only populates a single page: #include <unistd.h> #include <stdio.h> #include <sys/mman.h> /* 32 TiB */ const size_t size = 32ul * 1024 * 1024 * 1024 * 1024; int main() { char *area = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_NORESERVE | MAP_PRIVATE | MAP_ANON, -1, 0); if (area == MAP_FAILED) { perror("mmap() failed\n"); return -1; } /* Populate a single page such that we get an anon_vma. */ *area = 0; /* Enable KSM. */ madvise(area, size, MADV_MERGEABLE); pause(); return 0; } $ ./ksm-sparse & $ echo 1 > /sys/kernel/mm/ksm/run Without this patch ksmd uses 100% of the cpu for a long time (more then 1 hour in my test machine) scanning all the 32 TiB virtual address space that contain only one mapped page. This makes ksmd essentially deadlocked not able to deduplicate anything of value. With this patch ksmd walks only the one mapped page and skips the rest of the 32 TiB virtual address space, making the scan fast using little cpu.
Configurations

Configuration 1 (hide)

OR cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc1:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc2:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc3:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc4:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc5:*:*:*:*:*:*

History

26 Feb 2026, 15:52

Type Values Removed Values Added
CWE NVD-CWE-noinfo
CPE cpe:2.3:o:linux:linux_kernel:6.18:rc5:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc2:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc3:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc1:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.18:rc4:*:*:*:*:*:*
References () https://git.kernel.org/stable/c/10644e8839544dd5699c03c8fb1aeeefc41602fd - () https://git.kernel.org/stable/c/10644e8839544dd5699c03c8fb1aeeefc41602fd - Patch
References () https://git.kernel.org/stable/c/220cb3e425e17587f560335924cba9f16a842c64 - () https://git.kernel.org/stable/c/220cb3e425e17587f560335924cba9f16a842c64 - Patch
References () https://git.kernel.org/stable/c/67137b715b7db28d82e4ed07a7092c2fa6ba7adb - () https://git.kernel.org/stable/c/67137b715b7db28d82e4ed07a7092c2fa6ba7adb - Patch
References () https://git.kernel.org/stable/c/74f78421c925b6d17695566f0c5941de57fd44b3 - () https://git.kernel.org/stable/c/74f78421c925b6d17695566f0c5941de57fd44b3 - Patch
References () https://git.kernel.org/stable/c/9c2f8a9b68024e5ebb4813665845ec0a95f2eac3 - () https://git.kernel.org/stable/c/9c2f8a9b68024e5ebb4813665845ec0a95f2eac3 - Patch
References () https://git.kernel.org/stable/c/f5548c318d6520d4fa3c5ed6003eeb710763cbc5 - () https://git.kernel.org/stable/c/f5548c318d6520d4fa3c5ed6003eeb710763cbc5 - Patch
References () https://git.kernel.org/stable/c/f62973e0767e4fcd6799087787fca08ca2a85b8c - () https://git.kernel.org/stable/c/f62973e0767e4fcd6799087787fca08ca2a85b8c - Patch
First Time Linux
Linux linux Kernel
CVSS v2 : unknown
v3 : unknown
v2 : unknown
v3 : 5.5

06 Feb 2026, 17:16

Type Values Removed Values Added
References
  • () https://git.kernel.org/stable/c/10644e8839544dd5699c03c8fb1aeeefc41602fd -
  • () https://git.kernel.org/stable/c/220cb3e425e17587f560335924cba9f16a842c64 -

17 Jan 2026, 16:16

Type Values Removed Values Added
References
  • () https://git.kernel.org/stable/c/67137b715b7db28d82e4ed07a7092c2fa6ba7adb -
  • () https://git.kernel.org/stable/c/9c2f8a9b68024e5ebb4813665845ec0a95f2eac3 -

16 Dec 2025, 14:15

Type Values Removed Values Added
New CVE

Information

Published : 2025-12-16 14:15

Updated : 2026-02-26 15:52


NVD link : CVE-2025-68211

Mitre link : CVE-2025-68211

CVE.ORG link : CVE-2025-68211


JSON object : View

Products Affected

linux

  • linux_kernel