SEV guests fail to boot on systems that support the PCID feature. The problem is observed with SMM enabled OVMF bios is used. The guest crashes with the following messages on the console while loading.
---------------------------------------------------------------------- [ 0.264224] tsc: Marking TSC unstable due to TSCs unsynchronized [ 0.264946] Calibrating delay loop (skipped) preset value.. 3194.00 BogoMIPS (lpj=1597000) [ 0.265946] pid_max: default: 65536 minimum: 512 KVM internal error. Suberror: 1 emulation failure EAX=00000000 EBX=00000000 ECX=00000000 EDX=00000000 ESI=00000000 EDI=7ffac000 EBP=00000000 ESP=7ffa1ff8 EIP=7ffb4280 EFL=00000002 [-------] CPL=0 II=0 A20=1 SMM=0 HLT=0 ES =0020 00000000 ffffffff 00c09300 DPL=0 DS [-WA] CS =0000 00000000 00000fff 00009b00 DPL=0 CS16 [-RA] SS =0020 00000000 ffffffff 00c09300 DPL=0 DS [-WA] DS =0020 00000000 ffffffff 00c09300 DPL=0 DS [-WA] FS =0020 00000000 ffffffff 00c09300 DPL=0 DS [-WA] GS =0020 00000000 ffffffff 00c09300 DPL=0 DS [-WA] LDT=0000 00000000 00000000 00000000 TR =0040 00003000 00004087 00008b00 DPL=0 TSS64-busy GDT= fffffe0000001000 0000007f IDT= fffffe0000000000 00000fff CR0=80050033 CR2=ffff88817ffff000 CR3=0008000107e12000 CR4=000606b0 DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000 DR6=00000000ffff0ff0 DR7=0000000000000400 EFER=0000000000000d01 ---------------------------------------------------------------------- The issue is root caused to the way kvm tries to validate the cr3 address in kvm_set_cr3(). The cr3 address in SEV guests have the encryption bit set. KVM fails because the reserved bit check fails on this address. This series fixes the problem by introducing a new field in kvm_vcpu_arch structure. The new field cr3_lm_rsvd_bits is initialized to rsvd_bits(cpuid_maxphyaddr(vcpu), 63) in kvm_vcpu_after_set_cpuid and clear the any reserved bit specific to vendor in kvm_x86_ops.vcpu_after_set_cpuid --- v2: Changed the code suggested by Paolo. Added a new field in kvm_vcpu_arch to hold the reserved bits in cr3_lm_rsvd_bits. v1: https://lore.kernel.org/lkml/160514082171.31583.9995411273370528911.stgit@bmoger-ubuntu/ Babu Moger (2): KVM: x86: Introduce cr3_lm_rsvd_bits in kvm_vcpu_arch KVM:SVM: Update cr3_lm_rsvd_bits for AMD SEV guests arch/x86/include/asm/kvm_host.h | 1 + arch/x86/kvm/cpuid.c | 2 ++ arch/x86/kvm/svm/svm.c | 11 +++++++++++ arch/x86/kvm/x86.c | 2 +- 4 files changed, 15 insertions(+), 1 deletion(-) --