OvmfPkg/ResetVector: Perform a simple SEV-ES sanity check
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3108 If a hypervisor incorrectly reports through CPUID that SEV-ES is not active, ensure that a #VC exception was not taken. If it is found that a #VC was taken, then the code enters a HLT loop. Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Cc: Brijesh Singh <brijesh.singh@amd.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Message-Id: <afa2030b95b852313b13982df82d472187e59b92.1610045305.git.thomas.lendacky@amd.com>
This commit is contained in:
parent
7cb96c47a9
commit
bd0c1c8e22
|
@ -154,6 +154,22 @@ SevEncBitLowHlt:
|
||||||
jmp SevEncBitLowHlt
|
jmp SevEncBitLowHlt
|
||||||
|
|
||||||
NoSev:
|
NoSev:
|
||||||
|
;
|
||||||
|
; Perform an SEV-ES sanity check by seeing if a #VC exception occurred.
|
||||||
|
;
|
||||||
|
cmp byte[SEV_ES_WORK_AREA], 0
|
||||||
|
jz NoSevPass
|
||||||
|
|
||||||
|
;
|
||||||
|
; A #VC was received, yet CPUID indicates no SEV-ES support, something
|
||||||
|
; isn't right.
|
||||||
|
;
|
||||||
|
NoSevEsVcHlt:
|
||||||
|
cli
|
||||||
|
hlt
|
||||||
|
jmp NoSevEsVcHlt
|
||||||
|
|
||||||
|
NoSevPass:
|
||||||
xor eax, eax
|
xor eax, eax
|
||||||
|
|
||||||
SevExit:
|
SevExit:
|
||||||
|
|
Loading…
Reference in New Issue