Skip to content

Commit 29de732

Browse files
aiksean-jc
authored andcommitted
KVM: SEV: Move SEV's GP_VECTOR intercept setup to SEV
Currently SVM setup is done sequentially in init_vmcb() -> sev_init_vmcb() -> sev_es_init_vmcb() and tries keeping SVM/SEV/SEV-ES bits separated. One of the exceptions is #GP intercept which init_vmcb() skips setting for SEV guests and then sev_es_init_vmcb() needlessly clears it. Remove the SEV check from init_vmcb(). Clear the #GP intercept in sev_init_vmcb(). SEV-ES will use the SEV setting. No functional change intended. Suggested-by: Sean Christopherson <seanjc@google.com> Signed-off-by: Alexey Kardashevskiy <aik@amd.com> Reviewed-by: Carlos Bilbao <carlos.bilbao@amd.com> Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com> Reviewed-by: Santosh Shukla <santosh.shukla@amd.com> Link: https://lore.kernel.org/r/20230615063757.3039121-3-aik@amd.com Signed-off-by: Sean Christopherson <seanjc@google.com>
1 parent b265ee7 commit 29de732

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

arch/x86/kvm/svm/sev.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2974,9 +2974,6 @@ static void sev_es_init_vmcb(struct vcpu_svm *svm)
29742974
svm_set_intercept(svm, TRAP_CR4_WRITE);
29752975
svm_set_intercept(svm, TRAP_CR8_WRITE);
29762976

2977-
/* No support for enable_vmware_backdoor */
2978-
clr_exception_intercept(svm, GP_VECTOR);
2979-
29802977
/* Can't intercept XSETBV, HV can't modify XCR0 directly */
29812978
svm_clr_intercept(svm, INTERCEPT_XSETBV);
29822979

@@ -3002,6 +2999,12 @@ void sev_init_vmcb(struct vcpu_svm *svm)
30022999
svm->vmcb->control.nested_ctl |= SVM_NESTED_CTL_SEV_ENABLE;
30033000
clr_exception_intercept(svm, UD_VECTOR);
30043001

3002+
/*
3003+
* Don't intercept #GP for SEV guests, e.g. for the VMware backdoor, as
3004+
* KVM can't decrypt guest memory to decode the faulting instruction.
3005+
*/
3006+
clr_exception_intercept(svm, GP_VECTOR);
3007+
30053008
if (sev_es_guest(svm->vcpu.kvm))
30063009
sev_es_init_vmcb(svm);
30073010
}

arch/x86/kvm/svm/svm.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,10 +1243,9 @@ static void init_vmcb(struct kvm_vcpu *vcpu)
12431243
* Guest access to VMware backdoor ports could legitimately
12441244
* trigger #GP because of TSS I/O permission bitmap.
12451245
* We intercept those #GP and allow access to them anyway
1246-
* as VMware does. Don't intercept #GP for SEV guests as KVM can't
1247-
* decrypt guest memory to decode the faulting instruction.
1246+
* as VMware does.
12481247
*/
1249-
if (enable_vmware_backdoor && !sev_guest(vcpu->kvm))
1248+
if (enable_vmware_backdoor)
12501249
set_exception_intercept(svm, GP_VECTOR);
12511250

12521251
svm_set_intercept(svm, INTERCEPT_INTR);

0 commit comments

Comments
 (0)