Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CVE-2025-68211— ksm: use range-walk function to jump over holes in scan_get_next_rmap_item

AI Predicted 5.9 Difficulty: Moderate EPSS 0.14% · P4

Possible ATT&CK Techniques 1AI

T1496 · Resource Hijacking

Affected Version Matrix 16

VendorProductVersion RangeStatus
LinuxLinux31dbd01f314364b70c2e026a5793a29a4da8a9dc< 220cb3e425e17587f560335924cba9f16a842c64affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 10644e8839544dd5699c03c8fb1aeeefc41602fdaffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 67137b715b7db28d82e4ed07a7092c2fa6ba7adbaffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 9c2f8a9b68024e5ebb4813665845ec0a95f2eac3affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 74f78421c925b6d17695566f0c5941de57fd44b3affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< f62973e0767e4fcd6799087787fca08ca2a85b8caffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< f5548c318d6520d4fa3c5ed6003eeb710763cbc5affected
2.6.32affected
… +8 more rows
Get alerts for future matching vulnerabilitiesLog in to subscribe

I. Basic Information for CVE-2025-68211

Vulnerability Information

Have questions about the vulnerability? See if Shenlong's analysis helps!
View Shenlong Deep Dive ↗

Although we use advanced large model technology, its output may still contain inaccurate or outdated information.Shenlong tries to ensure data accuracy, but please verify and judge based on the actual situation.

Vulnerability Title
ksm: use range-walk function to jump over holes in scan_get_next_rmap_item
Source: CVE Program / CVE List V5
Vulnerability 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.
Source: CVE Program / CVE List V5
CVSS Information
N/A
Source: CVE Program / CVE List V5
Vulnerability Type
N/A
Source: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
Source: CNNVD (China National Vulnerability Database)
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于ksm扫描VMA时未跳过未映射区域,可能导致CPU资源浪费。
Source: CNNVD (China National Vulnerability Database)
CVSS Information
N/A
Source: CNNVD (China National Vulnerability Database)
Vulnerability Type
N/A
Source: CNNVD (China National Vulnerability Database)

Affected Products

VendorProductAffected VersionsCPESubscribe
LinuxLinux 31dbd01f314364b70c2e026a5793a29a4da8a9dc ~ 220cb3e425e17587f560335924cba9f16a842c64 -
LinuxLinux 2.6.32 -

II. Public POCs for CVE-2025-68211

#POC DescriptionSource LinkShenlong Link
AI-Generated POCPremium

No public POC found.

Login to generate AI POC

III. Intelligence Information for CVE-2025-68211

登录查看更多情报信息。

Other References for CVE-2025-68211 (3)

Same Patch Batch · Linux · 2025-12-16 · 157 CVEs total

CVE-2025-682849.8 CRITICALlibceph: prevent potential out-of-bounds writes in handle_auth_session_key()
CVE-2025-403509.8 CRITICALnet/mlx5e: RX, Fix generating skb from non-linear xdp_buff for striding RQ
CVE-2025-682639.8 CRITICALksmbd: ipc: fix use-after-free in ipc_msg_send_request
CVE-2025-683019.8 CRITICALnet: atlantic: fix fragment overflow handling in RX path
CVE-2025-681929.8 CRITICALnet: usb: qmi_wwan: initialize MAC header offset in qmimux_rx_fixup
CVE-2025-682859.8 CRITICALlibceph: fix potential use-after-free in have_mon_and_osd_map()
CVE-2025-683159.8 CRITICALf2fs: fix to detect potential corrupted nid in free_nid_list
CVE-2025-682558.8 HIGHstaging: rtl8723bs: fix stack buffer overflow in OnAssocReq IE parsing
CVE-2025-682568.8 HIGHstaging: rtl8723bs: fix out-of-bounds read in rtw_get_ie() parser
CVE-2025-682268.8 HIGHsmb: client: fix incomplete backport in cfids_invalidation_worker()
CVE-2025-683048.8 HIGHBluetooth: hci_core: lookup hci_conn on RX path on protocol side
CVE-2025-683148.8 HIGHdrm/msm: make sure last_fence is always updated
CVE-2025-403628.8 HIGHceph: fix multifs mds auth caps issue
CVE-2025-682508.2 HIGHhung_task: fix warnings caused by unaligned lock pointers
CVE-2025-681837.8 HIGHima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr
CVE-2025-682127.8 HIGHfs: Fix uninitialized 'offp' in statmount_string()
CVE-2025-682087.8 HIGHbpf: account for current allocated stack depth in widen_imprecise_scalars()
CVE-2025-682077.8 HIGHdrm/xe/guc: Synchronize Dead CT worker with unbind
CVE-2025-683037.8 HIGHplatform/x86: intel: punit_ipc: fix memory corruption
CVE-2025-681817.8 HIGHdrm/radeon: Remove calls to drm_put_dev()

Showing top 20 of 157 CVEs. View all on vendor page &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2025-68211

No comments yet


Leave a comment