Message ID | 20240831001538.336683-1-seanjc@google.com (mailing list archive) |
---|---|
Headers | show |
Series | KVM: x86: Fix multiple #PF RO infinite loop bugs | expand |
On Fri, 30 Aug 2024 17:15:15 -0700, Sean Christopherson wrote: > Fix an amusing number of minor bugs that can lead to KVM putting the guest into > an infinite "retry #PF" loop, and cleanup and consolidate the unprotect+retry > paths (there are four-ish). > > As a bonus, adding RET_PF_WRITE_PROTECTED obviates the need for > kvm_lookup_pfn()[*]. > > [...] Applied to kvm-x86 mmu, except for patch 1, which I put at the end of "vmx" in case Paolo wants to take it through his tree for the CoCo stuff. [01/22] KVM: VMX: Set PFERR_GUEST_{FINAL,PAGE}_MASK if and only if the GVA is valid https://github.com/kvm-x86/linux/commit/f3009482512e [02/22] KVM: x86/mmu: Replace PFERR_NESTED_GUEST_PAGE with a more descriptive helper https://github.com/kvm-x86/linux/commit/4ececec19a09 [03/22] KVM: x86/mmu: Trigger unprotect logic only on write-protection page faults https://github.com/kvm-x86/linux/commit/989a84c93f59 [04/22] KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were unprotected https://github.com/kvm-x86/linux/commit/2fb2b7877b3a [05/22] KVM: x86: Retry to-be-emulated insn in "slow" unprotect path iff sp is zapped https://github.com/kvm-x86/linux/commit/c1edcc41c360 [06/22] KVM: x86: Get RIP from vCPU state when storing it to last_retry_eip https://github.com/kvm-x86/linux/commit/019f3f84a40c [07/22] KVM: x86: Store gpa as gpa_t, not unsigned long, when unprotecting for retry https://github.com/kvm-x86/linux/commit/9c19129e535b [08/22] KVM: x86/mmu: Apply retry protection to "fast nTDP unprotect" path https://github.com/kvm-x86/linux/commit/01dd4d319207 [09/22] KVM: x86/mmu: Try "unprotect for retry" iff there are indirect SPs https://github.com/kvm-x86/linux/commit/dfaae8447c53 [10/22] KVM: x86: Move EMULTYPE_ALLOW_RETRY_PF to x86_emulate_instruction() https://github.com/kvm-x86/linux/commit/41e6e367d576 [11/22] KVM: x86: Fold retry_instruction() into x86_emulate_instruction() https://github.com/kvm-x86/linux/commit/2df354e37c13 [12/22] KVM: x86/mmu: Don't try to unprotect an INVALID_GPA https://github.com/kvm-x86/linux/commit/b7e948898e77 [13/22] KVM: x86/mmu: Always walk guest PTEs with WRITE access when unprotecting https://github.com/kvm-x86/linux/commit/29e495bdf847 [14/22] KVM: x86/mmu: Move event re-injection unprotect+retry into common path https://github.com/kvm-x86/linux/commit/b299c273c06f [15/22] KVM: x86: Remove manual pfn lookup when retrying #PF after failed emulation https://github.com/kvm-x86/linux/commit/620525739521 [16/22] KVM: x86: Check EMULTYPE_WRITE_PF_TO_SP before unprotecting gfn https://github.com/kvm-x86/linux/commit/19ab2c8be070 [17/22] KVM: x86: Apply retry protection to "unprotect on failure" path https://github.com/kvm-x86/linux/commit/dabc4ff70c35 [18/22] KVM: x86: Update retry protection fields when forcing retry on emulation failure https://github.com/kvm-x86/linux/commit/4df685664bed [19/22] KVM: x86: Rename reexecute_instruction()=>kvm_unprotect_and_retry_on_failure() https://github.com/kvm-x86/linux/commit/2876624e1adc [20/22] KVM: x86/mmu: Subsume kvm_mmu_unprotect_page() into the and_retry() version https://github.com/kvm-x86/linux/commit/6b3dcabc1091 [21/22] KVM: x86/mmu: Detect if unprotect will do anything based on invalid_list https://github.com/kvm-x86/linux/commit/d859b16161c8 [22/22] KVM: x86/mmu: WARN on MMIO cache hit when emulating write-protected gfn https://github.com/kvm-x86/linux/commit/98a69b96caca -- https://github.com/kvm-x86/linux/tree/next