CVE-2025-68211
Last modified
CVE-2025-68211 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. 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(). EPSS estimates a 0.12% chance of exploitation in the next 30 days.
Description
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.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 2.6.32, < 5.10.249 | — |
| Linux | Linux Kernel | >= 5.11, < 5.15.199 | — |
| Linux | Linux Kernel | >= 5.16, < 6.1.161 | — |
| Linux | Linux Kernel | >= 6.2, < 6.6.121 | — |
| Linux | Linux Kernel | >= 6.7, < 6.12.59 | — |
| Linux | Linux Kernel | >= 6.13, < 6.17.9 | — |
| Linux | Linux Kernel | 6.18 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2025-68211?
How severe is CVE-2025-68211?
How do I fix CVE-2025-68211?
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 2025
- CVE-2025-68206In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2025-68207In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2025-68208In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2025-68209In the Linux kernel, the following vulnerability has been re…
- CVE-2025-6821A vulnerability was found in code-projects Inventory Managem…9.8
- CVE-2025-68210In the Linux kernel, the following vulnerability has been re…
- CVE-2025-68212In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2025-68213In the Linux kernel, the following vulnerability has been re…
- CVE-2025-68214In the Linux kernel, the following vulnerability has been re…4.7
- CVE-2025-68215In the Linux kernel, the following vulnerability has been re…7
- CVE-2025-68216In the Linux kernel, the following vulnerability has been re…
- CVE-2025-68217In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2025-68211?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
