The uaccess tag on WindowsForum.com covers Linux kernel memory safety fixes, specifically the CVE-2022-49562 patch that replaced fragile PTE-mapping with the __try_cmpxchg_user primitive in KVM. This change prevents the kernel from accidentally accessing arbitrary physical frame numbers when updating guest page-table accessed/dirty bits, which could otherwise cause crashes, instability, or denial-of-service on hosts running KVM. The tag focuses on kernel-level user access hardening and hypervisor security improvements.
-
The Linux kernel fix tracked as CVE-2022-49562 closes a subtle but real KVM x86 bug that could let the hypervisor path touch the wrong physical frames while updating guest page-table accessed/dirty (A/D) bits — the upstream remedy replaced a fragile PTE-mapping trick with the safer...