CVE-2026-74518
Last modified
CVE-2026-74518 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: mm/hugetlb: fix list corruption in allocate_file_region_entries() allocate_file_region_entries() tops up resv->region_cache with freshly allocated file_region descriptors. The allocation uses GFP_KERNEL, so resv->lock is dropped around it: the new entries are gathered on a stack-local list head, allocated_regions, and spliced into resv->region_cache once the lock is re-acquired. The splice used list_splice(), which moves the entries but does not re-initialize the source head, so allocated_regions is left pointing at an entry that now lives on resv->region_cache. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: mm/hugetlb: fix list corruption in allocate_file_region_entries() allocate_file_region_entries() tops up resv->region_cache with freshly allocated file_region descriptors. The allocation uses GFP_KERNEL, so resv->lock is dropped around it: the new entries are gathered on a stack-local list head, allocated_regions, and spliced into resv->region_cache once the lock is re-acquired. The splice used list_splice(), which moves the entries but does not re-initialize the source head, so allocated_regions is left pointing at an entry that now lives on resv->region_cache. The top-up runs in a while loop that re-checks the cache deficit after re-acquiring the lock. For a shared mapping the resv_map is shared by every mapper of the hugetlbfs inode, so a concurrent region_chg()/region_add()/region_del() on the same resv_map can consume cache entries during the unlocked window and force a second iteration. That iteration calls list_add() on the stale head and corrupts the list; with CONFIG_DEBUG_LIST the __list_add_valid() check trips: list_add corruption. next->prev should be prev (ffffc900011ff7f8), but was ffff88814c281460. (next=ffff88814c545640). kernel BUG at lib/list_debug.c:31! allocate_file_region_entries+0x191/0x420 region_chg+0x267/0x300 hugetlb_reserve_pages+0x387/0xc80 hugetlbfs_file_mmap+0x2ce/0x3f0 mmap_region+0x1348/0x1a80 do_mmap+0x85e/0xb90 vm_mmap_pgoff+0x18c/0x330 ksys_mmap_pgoff+0x2a1/0x3e0 do_syscall_64+0xd7/0x420 Without CONFIG_DEBUG_LIST the bad list_add() silently links a kernel-stack address into resv->region_cache, leading to later use-after-free. This was observed as a real host panic on a dense KVM host where a QEMU guest-RAM hugetlbfs file was mapped MAP_SHARED by both QEMU and a separate SPDK/DPDK vhost-user target, generating concurrent region_* traffic on one shared resv_map. Use list_splice_init() so the source head is re-initialized empty after each splice, making the retry loop safe.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < 01b8569233e47693d6ff7efa96d9854c55f936fc; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < 9c5fdffc5e1ce84403c58289ee72697051803bf7; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < f3e54f6a5e1681f83d13e8716bc92ef5ecf121d3; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < 62e1c2741a4d923d9854efd5927a6212aad7a187; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < 587a0accc2b4fccc5cf7baf0fe34e50efde51f9c; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < 126a70bf1a08ddc9d79c471ebdaa2b08cfbab8df; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < ac1bb7fd45088d0db57a22ce7729f258ebd63cf5; >= d3ec7b6e09e512ba902b86bcca2c512fb06d492f, < dd9623f58ec702a07b2d67179d6fcea79c52231a |
| Linux | Linux | 5.10 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74518?
How severe is CVE-2026-74518?
How do I fix CVE-2026-74518?
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 2026
- CVE-2026-74512In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74513In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74514In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74515In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74516In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-74517In the Linux kernel, the following vulnerability has been re…9.3
- CVE-2026-74519In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-7452A maliciously crafted WRL file, when parsed through Autodesk…7.8
- CVE-2026-74520In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74521In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-74522In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74523In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-74518?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
