CVE-2026-74674
Last modified
CVE-2026-74674 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: mm: fix incorrect flush address in direct page table reclaim When zap_pte_range reclaims a page table, it does: pte_free_tlb(tlb, pmd_pgtable(pmdval), addr); and this is unconditionally wrong: if this code executes, addr *always* points one past the end of the range covered by the table. The addr parameter is used to flush the TLB (really the paging-structure-cache) to drop references to the to-be-freed table, and any architecture that cares about the parameter will flush the wrong address.
Description
In the Linux kernel, the following vulnerability has been resolved: mm: fix incorrect flush address in direct page table reclaim When zap_pte_range reclaims a page table, it does: pte_free_tlb(tlb, pmd_pgtable(pmdval), addr); and this is unconditionally wrong: if this code executes, addr *always* points one past the end of the range covered by the table. The addr parameter is used to flush the TLB (really the paging-structure-cache) to drop references to the to-be-freed table, and any architecture that cares about the parameter will flush the wrong address. (But they'll still free the correct page). I think it's worth contemplating why the kernel works at all. If we hit the offending line of code, we will first clear the PMD entry (line 1954, zap_empty_pte_table), then we will issue pending flushes if force_flush is set (tlb_flush_mmu_tlbonly(tlb)), then we will skip the retry on line 1979 (phew!), and then we will do the offending pte_free_tlb call. *Or* we will clear the PMD entry immediately before pte_free_tlb (line 1983, zap_pte_table_if_empty). If we have any pending flushes (i.e. we actually zapped any last-level entries) at the time we clear the PMD entry, then the flush really ought to flush all references to the table (Linus certainly seems to think it will on all architectures [0]). The condition under which we have no accumulated flushes at the time of the clear is very complex (the whole zap_pte_range function has absurdly complex control flow). If we do hit the bad case, then we will end up clearing the PMD entry after the last time the range is flushed, and any CPU is free to cache a reference to the (empty) page table. If this happens due to an ordinary read or write, it would segfault, so it would be rare. But the cache could be speculatively filled as well. Then we'll flush the wrong address and then free and possibly reuse the table. On x86, even flushing the wrong address works on non-KPTI Intel systems because INVLPG flushes *all* paging-structure-caches, not just the ones for the target address. But INVPCID does not, and flush_tlb_one_user will use INVPCID if it's available. And then we're toast. AMD systems are more susceptible: we set the EFER.TCE bit, which makes even INVLPG only flush the target address. I think this might fix an issue in ripgrep reported here: https://github.com/BurntSushi/ripgrep/issues/3494 [0] https://lore.kernel.org/all/CA+55aFzBggoXtNXQeng5d_mRoDnaMBE5Y+URs+PHR67nUpMtaw@mail.gmail.com/T/#u
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 4c640eb4181cf8de74c8b9e7c9cf16bf8d26b73e, < 0b8ff21cbda8808c86b18f1b0ca2d0025af9a80a; >= 4c640eb4181cf8de74c8b9e7c9cf16bf8d26b73e, < 478a1c3abebfc717db0d1281a9cdd7befafee542 |
| Linux | Linux | 7.0 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74674?
How severe is CVE-2026-74674?
How do I fix CVE-2026-74674?
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-74669In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7467The Read More & Accordion plugin for WordPress is vulnerable…8.8
- CVE-2026-74670In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74671In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74672In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74673In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74675In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74676In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74677In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74678In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74679In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7468A security vulnerability has been detected in 1024-lab smart…7.3
Are you affected by CVE-2026-74674?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
