Answer in brief
CVE-2026-74599 records a Unknown severity vulnerability in mm/ptdump: always stabilise against page table freeing using init_mm. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=b6bdb7517c3d3f41f20e5c2948d6bc3f8897394e <7f740664aec1f832953c2e6d9b8920cd6c8bcc0c || >=b6bdb7517c3d3f41f20e5c2948d6bc3f8897394e <4adc4c9a9a43d61fe476dfe10811f3df2e7e4106 || >=b6bdb7517c3d3f41f20e5c2948d6bc3f8897394e <27c32e5538344b13c1505a08861e04620c125d47 || 31895cfd79564111cdd5a9f48c5d491ae26a238e || 9c7f7bdb1932f8c1e5f80d32c717184701afe701 || acdb4981644c8e31ccee294bdefff475c0cf587b || 0454e2fad9306961540ee7e84da47a8e345b7d22 || >=4.4.125 <4.5 || >=4.9.91 <4.10 || >=4.14.31 <4.15 || >=4.15.14 <4.16 | 7f740664aec1f832953c2e6d9b8920cd6c8bcc0c, 4adc4c9a9a43d61fe476dfe10811f3df2e7e4106, 27c32e5538344b13c1505a08861e04620c125d47, 4.5, 4.10, 4.15, 4.16 |
| Linux/Linuxgeneric | 4.16 | Not reported |
Published upstream
Aug 22, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 22, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 22, 2026
In the Linux kernel, the following vulnerability has been resolved: mm/ptdump: always stabilise against page table freeing using init_mm Previous commits have established the invariant that kernel page table freeing is performed while an mmap read lock on init_mm is held, which fixes races between ptdump and kernel page table freeing over init_mm. However, x86 and arm64 can perform a ptdump over an mm other than init_mm via ptdump_walk_pgd() and since kernel memory ranges are shared across non-kernel mm's, this means that the race still exists for these cases. Fix this by acquiring a nested mmap write lock for init_mm in ptdump_walk_pgd(). This is safe as we take this after mmap write locking the mm, and nothing acquires the init_mm lock first before locking an arbitrary mm, so no deadlock is possible. Also update walk_page_range_debug() to assert that init_mm is write locked, add a comment explaining why and remove some redundant code, and eliminate the unnecessary and confusing invocation of walk_kernel_page_table_range(). We can safely remove the non-NULL check for walk.mm, as the mmap lock asserts would NULL pointer deref if it was (and of course no callers do this). The first point at which ptdump can race kernel page table freeing is commit b6bdb7517c3d ("mm/vmalloc: add interfaces to free unmapped page table"), so we target this in the Fixes tag.
Quoted source text, attributed separately from HOL analysis.