CVE-2026-93066
Last modified
CVE-2026-93066 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: x86/mm/pat: Take cpa_lock around large-page collapse Loading and unloading modules concurrently on several CPUs on a KASAN build, with a short delay injected at the CPA page-table lookup to widen the window, faults within minutes: BUG: KASAN: use-after-free in __change_page_attr+0x7cc/0x7e0 Write of size 8 at addr ffff888181139718 by task modprobe ... The buggy address belongs to the physical page: pfn:0x181139 ... page_type: f2(table) cpa_collapse_large_pages() rebuilds a leaf PMD from its 4K PTEs and frees the old PTE-table pages, while __change_page_attr() fetches a PTE pointer from a lockless lookup_address_in_pgd_attr() and writes it with set_pte_atomic() only later.
Description
In the Linux kernel, the following vulnerability has been resolved: x86/mm/pat: Take cpa_lock around large-page collapse Loading and unloading modules concurrently on several CPUs on a KASAN build, with a short delay injected at the CPA page-table lookup to widen the window, faults within minutes: BUG: KASAN: use-after-free in __change_page_attr+0x7cc/0x7e0 Write of size 8 at addr ffff888181139718 by task modprobe ... The buggy address belongs to the physical page: pfn:0x181139 ... page_type: f2(table) cpa_collapse_large_pages() rebuilds a leaf PMD from its 4K PTEs and frees the old PTE-table pages, while __change_page_attr() fetches a PTE pointer from a lockless lookup_address_in_pgd_attr() and writes it with set_pte_atomic() only later. When module text is served from a shared large ROX mapping the two run on the same PMD: CPU A (module load) CPU B (module finalize) ------------------- ----------------------- execmem_make_temp_rw set_memory_nx __change_page_attr split 2M -> 4K table P kpte = &P[i] (lockless) execmem_restore_rox set_memory_rox (CPA_COLLAPSE) cpa_collapse_large_pages rebuild leaf PMD flush_tlb_all pagetable_free(P) set_pte_atomic(kpte, ...) -> writes into freed P P is a page-table page (page_type: table), reused at once, so the write corrupts whatever got the page next: a bad-pte or bad-page splat, or a fatal fault once P has been turned into read-only text. The flush_tlb_all() before the free does not close this: its IPI only serializes against page-table walkers that run with interrupts off (e.g. GUP-fast); the walk in __change_page_attr() runs with interrupts on, so nothing stops it from holding a stale pointer into P. Serialize the collapse - the PMD rebuild, TLB flush and PTE-table free - under cpa_lock, the same lock __change_page_attr() now takes unconditionally since commit ("x86/mm/pat: stop gating cpa_lock on debug_pagealloc_enabled()"), so a concurrent walker can no longer hold a pointer into a table the collapse is about to free.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 41d88484c71cd4f659348da41b7b5b3dbd3be1f6, < 591b6fac9df3f43522e8ff6eed8662f8b6f1a124; >= 41d88484c71cd4f659348da41b7b5b3dbd3be1f6, < fb97d1d6c20692e15247fa5c8b894b2325e38aee; >= 41d88484c71cd4f659348da41b7b5b3dbd3be1f6, < 1aac65f3e651334259ecb2a5f5ddb81c01f02599 |
| Linux | Linux | 6.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93066?
How severe is CVE-2026-93066?
How do I fix CVE-2026-93066?
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-93060In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93061In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93062In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93063In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93064In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93065In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93067In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93068In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93069In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9307A sensitive information disclosure security issue exists wit…6.3
- CVE-2026-93070In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93071In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-93066?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
