First published: Tue Oct 15 2024(Updated: )
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.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Linux kernel | <5.15.168 | |
Linux Linux kernel | >=5.16<6.1.111 | |
Linux Linux kernel | >=6.2<6.6.52 | |
Linux Linux kernel | >=6.7<6.10.11 | |
Linux Linux kernel | =6.11-rc1 | |
Linux Linux kernel | =6.11-rc2 | |
Linux Linux kernel | =6.11-rc3 | |
Linux Linux kernel | =6.11-rc4 | |
Linux Linux kernel | =6.11-rc5 | |
Linux Linux kernel | =6.11-rc6 | |
Linux Linux kernel | =6.11-rc7 | |
debian/linux | <=5.10.223-1<=5.10.226-1 | 6.1.115-1 6.1.119-1 6.11.10-1 6.12.5-1 |
<5.15.168 | ||
>=5.16<6.1.111 | ||
>=6.2<6.6.52 | ||
>=6.7<6.10.11 | ||
=6.11-rc1 | ||
=6.11-rc2 | ||
=6.11-rc3 | ||
=6.11-rc4 | ||
=6.11-rc5 | ||
=6.11-rc6 | ||
=6.11-rc7 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.