]> git.proxmox.com Git - mirror_edk2.git/commitdiff
OvmfPkg/VmgExitLib: Set the SW exit fields when performing VMGEXIT
authorTom Lendacky <thomas.lendacky@amd.com>
Fri, 6 Nov 2020 17:53:06 +0000 (11:53 -0600)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Tue, 10 Nov 2020 19:07:55 +0000 (19:07 +0000)
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3008

All fields that are set in the GHCB should have their associated bit in
the GHCB ValidBitmap field set. Add support to set the bits for the
software exit information fields when performing a VMGEXIT (SwExitCode,
SwExitInfo1, SwExitInfo2).

Fixes: 61bacc0fa16fd6f595a2c4222425cb6286e19977
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>
Cc: Tom Lendacky <thomas.lendacky@amd.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: <986e157c13bf33e529b1d16ab1b52e99a74a734f.1604685192.git.thomas.lendacky@amd.com>

OvmfPkg/Library/VmgExitLib/VmgExitLib.c

index 21f68b19c94e2ce645b79ed7035d62e4b7056fad..0540df8a04d4bbb4c096377155a6a492ba8b02e3 100644 (file)
@@ -110,6 +110,10 @@ VmgExit (
   Ghcb->SaveArea.SwExitInfo1 = ExitInfo1;\r
   Ghcb->SaveArea.SwExitInfo2 = ExitInfo2;\r
 \r
+  VmgSetOffsetValid (Ghcb, GhcbSwExitCode);\r
+  VmgSetOffsetValid (Ghcb, GhcbSwExitInfo1);\r
+  VmgSetOffsetValid (Ghcb, GhcbSwExitInfo2);\r
+\r
   //\r
   // Guest memory is used for the guest-hypervisor communication, so fence\r
   // the invocation of the VMGEXIT instruction to ensure GHCB accesses are\r