CVE-2024-47674: mm: avoid leaving partial pfn mappings around in error case
In the Linux kernel, the following vulnerability has been resolved:
mm: avoid leaving partial pfn mappings around in error case
As Jann points out, PFN mappings are special, because unlike normal memory mappings, there is no lifetime information associated with the mapping - it is just a raw mapping of PFNs with no reference counting of a 'struct page'.
That's all very much intentional, but it does mean that it's easy to mess up the cleanup in case of errors. Yes, a failed mmap() will always eventually clean up any partial mappings, but without any explicit lifetime in the page table mapping itself, it's very easy to do the error handling in the wrong order.
In particular, it's easy to mistakenly free the physical backing store before the page tables are actually cleaned up and (temporarily) have stale dangling PTE entries.
To make this situation less error-prone, just make sure that any partial pfn mapping is torn down early, before any other error handling.
Other sources
This CVE was automatically created from a reference found in an email or other text. If you are reading this, then this CVE entry is probably erroneous, since this text should be replaced by the official CVE description automatically.
— Launchpad
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
debian/linuxto a version that resolves this vulnerability.Fixed in 5.10.234-1Fixed in 6.1.129-1Fixed in 6.1.135-1Fixed in 6.12.25-1Fixed in 6.12.27-1 - Upgrade
Upgrade
debian/linux-6.1to a version that resolves this vulnerability.Fixed in 6.1.129-1~deb11u1
Event History
Frequently Asked Questions
What is the severity of CVE-2024-47674?
CVE-2024-47674 is categorized as a medium severity vulnerability in the Linux kernel.
How do I fix CVE-2024-47674?
To mitigate CVE-2024-47674, upgrade to the recommended kernel version or apply the appropriate patches from your distribution.
Which Linux kernel versions are affected by CVE-2024-47674?
CVE-2024-47674 affects Linux kernel versions from 5.16 up to 6.10.11, as well as several release candidates.
What does CVE-2024-47674 exploit in the Linux kernel?
CVE-2024-47674 exploits a vulnerability related to partial page frame number mappings in the memory management subsystem.
Is CVE-2024-47674 a remote or local vulnerability?
CVE-2024-47674 is considered a local vulnerability as it requires local access to the affected system to exploit.