[PATCH] KVM: SVM: Clear VMCB save area instead of entire VMCB on shutdown intercept
Shivansh Dhiman <[email protected]>
| Newsgroups | org.kernel.vger.kvm |
|---|---|
| Message-ID | <[email protected]> |
The AMD APM previously stated that after an intercepted shutdown, the entire VMCB state is undefined. In practice, only the save area is undefined and most of the control area remains valid. Revision 3.45 of the APM now makes this explicit: "After an intercepted shutdown, the VMCB control area is valid (with the exception of offsets 60h, 61h, and 68h) and the VMCB state save area is undefined." KVM zeroes the entire VMCB before INITing the vCPU based on the old wording, discarding control area state that hardware preserves. Clear only the save area and the three undefined control area fields (int_ctl[15:0] and int_state) in line with the updated APM. Signed-off-by: Shivansh Dhiman <[email protected]> --- arch/x86/kvm/svm/svm.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/arch/x86/kvm/svm/svm.c b/arch/x86/kvm/svm/svm.c index 9d607b98bd06..cb5e04fd518f 100644 --- a/arch/x86/kvm/svm/svm.c +++ b/arch/x86/kvm/svm/svm.c @@ -2164,18 +2164,23 @@ static int shutdown_interception(struct kvm_vcpu *vcpu) /* - * VMCB is undefined after a SHUTDOWN intercept. INIT the vCPU to put - * the VMCB in a known good state. Unfortuately, KVM doesn't have - * KVM_MP_STATE_SHUTDOWN and can't add it without potentially breaking - * userspace. At a platform view, INIT is acceptable behavior as - * there exist bare metal platforms that automatically INIT the CPU - * in response to shutdown. + * The VMCB save area is undefined after a SHUTDOWN intercept, as are + * control area offsets 60h, 61h, and 68h (int_ctl[15:0] and int_state). + * INIT the vCPU to put the VMCB in a known good state. Unfortuately, + * KVM doesn't have KVM_MP_STATE_SHUTDOWN and can't add it without + * potentially breaking userspace. At a platform view, INIT is + * acceptable behavior as there exist bare metal platforms that + * automatically INIT the CPU in response to shutdown. * * The VM save area for SEV-ES guests has already been encrypted so it * cannot be reinitialized, i.e. synthesizing INIT is futile. */ if (!is_sev_es_guest(vcpu)) { - clear_page(svm->vmcb); + struct vmcb_control_area *control = &svm->vmcb->control; + + memset(&svm->vmcb->save, 0, sizeof(svm->vmcb->save)); + control->int_ctl &= ~GENMASK(15, 0); + control->int_state = 0; #ifdef CONFIG_KVM_SMM if (is_smm(vcpu)) kvm_smm_changed(vcpu, false); base-commit: 1b731e5ded480bd1e5546aed35584238661ce72e -- 2.43.0