summaryrefslogtreecommitdiffstats
path: root/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h')
-rw-r--r--src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h8953
1 files changed, 8953 insertions, 0 deletions
diff --git a/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h b/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
new file mode 100644
index 00000000..a3b01dae
--- /dev/null
+++ b/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
@@ -0,0 +1,8953 @@
+/* $Id: IEMAllCImplVmxInstr.cpp.h $ */
+/** @file
+ * IEM - VT-x instruction implementation.
+ */
+
+/*
+ * Copyright (C) 2011-2020 Oracle Corporation
+ *
+ * This file is part of VirtualBox Open Source Edition (OSE), as
+ * available from http://www.virtualbox.org. This file is free software;
+ * you can redistribute it and/or modify it under the terms of the GNU
+ * General Public License (GPL) as published by the Free Software
+ * Foundation, in version 2 as it comes in the "COPYING" file of the
+ * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
+ * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
+ */
+
+
+/*********************************************************************************************************************************
+* Defined Constants And Macros *
+*********************************************************************************************************************************/
+#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
+/**
+ * Gets the ModR/M, SIB and displacement byte(s) from decoded opcodes given their
+ * relative offsets.
+ */
+# ifdef IEM_WITH_CODE_TLB
+# define IEM_MODRM_GET_U8(a_pVCpu, a_bModRm, a_offModRm) do { } while (0)
+# define IEM_SIB_GET_U8(a_pVCpu, a_bSib, a_offSib) do { } while (0)
+# define IEM_DISP_GET_U16(a_pVCpu, a_u16Disp, a_offDisp) do { } while (0)
+# define IEM_DISP_GET_S8_SX_U16(a_pVCpu, a_u16Disp, a_offDisp) do { } while (0)
+# define IEM_DISP_GET_U32(a_pVCpu, a_u32Disp, a_offDisp) do { } while (0)
+# define IEM_DISP_GET_S8_SX_U32(a_pVCpu, a_u32Disp, a_offDisp) do { } while (0)
+# define IEM_DISP_GET_S32_SX_U64(a_pVCpu, a_u64Disp, a_offDisp) do { } while (0)
+# define IEM_DISP_GET_S8_SX_U64(a_pVCpu, a_u64Disp, a_offDisp) do { } while (0)
+# error "Implement me: Getting ModR/M, SIB, displacement needs to work even when instruction crosses a page boundary."
+# else /* !IEM_WITH_CODE_TLB */
+# define IEM_MODRM_GET_U8(a_pVCpu, a_bModRm, a_offModRm) \
+ do \
+ { \
+ Assert((a_offModRm) < (a_pVCpu)->iem.s.cbOpcode); \
+ (a_bModRm) = (a_pVCpu)->iem.s.abOpcode[(a_offModRm)]; \
+ } while (0)
+
+# define IEM_SIB_GET_U8(a_pVCpu, a_bSib, a_offSib) IEM_MODRM_GET_U8(a_pVCpu, a_bSib, a_offSib)
+
+# define IEM_DISP_GET_U16(a_pVCpu, a_u16Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) + 1 < (a_pVCpu)->iem.s.cbOpcode); \
+ uint8_t const bTmpLo = (a_pVCpu)->iem.s.abOpcode[(a_offDisp)]; \
+ uint8_t const bTmpHi = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 1]; \
+ (a_u16Disp) = RT_MAKE_U16(bTmpLo, bTmpHi); \
+ } while (0)
+
+# define IEM_DISP_GET_S8_SX_U16(a_pVCpu, a_u16Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) < (a_pVCpu)->iem.s.cbOpcode); \
+ (a_u16Disp) = (int8_t)((a_pVCpu)->iem.s.abOpcode[(a_offDisp)]); \
+ } while (0)
+
+# define IEM_DISP_GET_U32(a_pVCpu, a_u32Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) + 3 < (a_pVCpu)->iem.s.cbOpcode); \
+ uint8_t const bTmp0 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp)]; \
+ uint8_t const bTmp1 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 1]; \
+ uint8_t const bTmp2 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 2]; \
+ uint8_t const bTmp3 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 3]; \
+ (a_u32Disp) = RT_MAKE_U32_FROM_U8(bTmp0, bTmp1, bTmp2, bTmp3); \
+ } while (0)
+
+# define IEM_DISP_GET_S8_SX_U32(a_pVCpu, a_u32Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) + 1 < (a_pVCpu)->iem.s.cbOpcode); \
+ (a_u32Disp) = (int8_t)((a_pVCpu)->iem.s.abOpcode[(a_offDisp)]); \
+ } while (0)
+
+# define IEM_DISP_GET_S8_SX_U64(a_pVCpu, a_u64Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) + 1 < (a_pVCpu)->iem.s.cbOpcode); \
+ (a_u64Disp) = (int8_t)((a_pVCpu)->iem.s.abOpcode[(a_offDisp)]); \
+ } while (0)
+
+# define IEM_DISP_GET_S32_SX_U64(a_pVCpu, a_u64Disp, a_offDisp) \
+ do \
+ { \
+ Assert((a_offDisp) + 3 < (a_pVCpu)->iem.s.cbOpcode); \
+ uint8_t const bTmp0 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp)]; \
+ uint8_t const bTmp1 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 1]; \
+ uint8_t const bTmp2 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 2]; \
+ uint8_t const bTmp3 = (a_pVCpu)->iem.s.abOpcode[(a_offDisp) + 3]; \
+ (a_u64Disp) = (int32_t)RT_MAKE_U32_FROM_U8(bTmp0, bTmp1, bTmp2, bTmp3); \
+ } while (0)
+# endif /* !IEM_WITH_CODE_TLB */
+
+/** Gets the guest-physical address of the shadows VMCS for the given VCPU. */
+# define IEM_VMX_GET_SHADOW_VMCS(a_pVCpu) ((a_pVCpu)->cpum.GstCtx.hwvirt.vmx.GCPhysShadowVmcs)
+
+/** Whether a shadow VMCS is present for the given VCPU. */
+# define IEM_VMX_HAS_SHADOW_VMCS(a_pVCpu) RT_BOOL(IEM_VMX_GET_SHADOW_VMCS(a_pVCpu) != NIL_RTGCPHYS)
+
+/** Gets the VMXON region pointer. */
+# define IEM_VMX_GET_VMXON_PTR(a_pVCpu) ((a_pVCpu)->cpum.GstCtx.hwvirt.vmx.GCPhysVmxon)
+
+/** Gets the guest-physical address of the current VMCS for the given VCPU. */
+# define IEM_VMX_GET_CURRENT_VMCS(a_pVCpu) ((a_pVCpu)->cpum.GstCtx.hwvirt.vmx.GCPhysVmcs)
+
+/** Whether a current VMCS is present for the given VCPU. */
+# define IEM_VMX_HAS_CURRENT_VMCS(a_pVCpu) RT_BOOL(IEM_VMX_GET_CURRENT_VMCS(a_pVCpu) != NIL_RTGCPHYS)
+
+/** Assigns the guest-physical address of the current VMCS for the given VCPU. */
+# define IEM_VMX_SET_CURRENT_VMCS(a_pVCpu, a_GCPhysVmcs) \
+ do \
+ { \
+ Assert((a_GCPhysVmcs) != NIL_RTGCPHYS); \
+ (a_pVCpu)->cpum.GstCtx.hwvirt.vmx.GCPhysVmcs = (a_GCPhysVmcs); \
+ } while (0)
+
+/** Clears any current VMCS for the given VCPU. */
+# define IEM_VMX_CLEAR_CURRENT_VMCS(a_pVCpu) \
+ do \
+ { \
+ (a_pVCpu)->cpum.GstCtx.hwvirt.vmx.GCPhysVmcs = NIL_RTGCPHYS; \
+ } while (0)
+
+/** Check for VMX instructions requiring to be in VMX operation.
+ * @note Any changes here, check if IEMOP_HLP_IN_VMX_OPERATION needs updating. */
+# define IEM_VMX_IN_VMX_OPERATION(a_pVCpu, a_szInstr, a_InsDiagPrefix) \
+ do \
+ { \
+ if (IEM_VMX_IS_ROOT_MODE(a_pVCpu)) \
+ { /* likely */ } \
+ else \
+ { \
+ Log((a_szInstr ": Not in VMX operation (root mode) -> #UD\n")); \
+ (a_pVCpu)->cpum.GstCtx.hwvirt.vmx.enmDiag = a_InsDiagPrefix##_VmxRoot; \
+ return iemRaiseUndefinedOpcode(a_pVCpu); \
+ } \
+ } while (0)
+
+/** Marks a VM-entry failure with a diagnostic reason, logs and returns. */
+# define IEM_VMX_VMENTRY_FAILED_RET(a_pVCpu, a_pszInstr, a_pszFailure, a_VmxDiag) \
+ do \
+ { \
+ LogRel(("%s: VM-entry failed! enmDiag=%u (%s) -> %s\n", (a_pszInstr), (a_VmxDiag), \
+ HMGetVmxDiagDesc(a_VmxDiag), (a_pszFailure))); \
+ (a_pVCpu)->cpum.GstCtx.hwvirt.vmx.enmDiag = (a_VmxDiag); \
+ return VERR_VMX_VMENTRY_FAILED; \
+ } while (0)
+
+/** Marks a VM-exit failure with a diagnostic reason, logs and returns. */
+# define IEM_VMX_VMEXIT_FAILED_RET(a_pVCpu, a_uExitReason, a_pszFailure, a_VmxDiag) \
+ do \
+ { \
+ LogRel(("VM-exit failed! uExitReason=%u enmDiag=%u (%s) -> %s\n", (a_uExitReason), (a_VmxDiag), \
+ HMGetVmxDiagDesc(a_VmxDiag), (a_pszFailure))); \
+ (a_pVCpu)->cpum.GstCtx.hwvirt.vmx.enmDiag = (a_VmxDiag); \
+ return VERR_VMX_VMEXIT_FAILED; \
+ } while (0)
+
+
+/*********************************************************************************************************************************
+* Global Variables *
+*********************************************************************************************************************************/
+/** @todo NSTVMX: The following VM-exit intercepts are pending:
+ * VMX_EXIT_IO_SMI
+ * VMX_EXIT_SMI
+ * VMX_EXIT_GETSEC
+ * VMX_EXIT_RSM
+ * VMX_EXIT_MONITOR (APIC access VM-exit caused by MONITOR pending)
+ * VMX_EXIT_ERR_MACHINE_CHECK (we never need to raise this?)
+ * VMX_EXIT_EPT_VIOLATION
+ * VMX_EXIT_EPT_MISCONFIG
+ * VMX_EXIT_INVEPT
+ * VMX_EXIT_RDRAND
+ * VMX_EXIT_VMFUNC
+ * VMX_EXIT_ENCLS
+ * VMX_EXIT_RDSEED
+ * VMX_EXIT_PML_FULL
+ * VMX_EXIT_XSAVES
+ * VMX_EXIT_XRSTORS
+ */
+/**
+ * Map of VMCS field encodings to their virtual-VMCS structure offsets.
+ *
+ * The first array dimension is VMCS field encoding of Width OR'ed with Type and the
+ * second dimension is the Index, see VMXVMCSFIELD.
+ */
+uint16_t const g_aoffVmcsMap[16][VMX_V_VMCS_MAX_INDEX + 1] =
+{
+ /* VMX_VMCSFIELD_WIDTH_16BIT | VMX_VMCSFIELD_TYPE_CONTROL: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u16Vpid),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u16PostIntNotifyVector),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u16EptpIndex),
+ /* 3-10 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 11-18 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 19-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_16BIT | VMX_VMCSFIELD_TYPE_VMEXIT_INFO: */
+ {
+ /* 0-7 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 8-15 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 16-23 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 24-25 */ UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_16BIT | VMX_VMCSFIELD_TYPE_GUEST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, GuestEs),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, GuestCs),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, GuestSs),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, GuestDs),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, GuestFs),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, GuestGs),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, GuestLdtr),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, GuestTr),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u16GuestIntStatus),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u16PmlIndex),
+ /* 10-17 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 18-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_16BIT | VMX_VMCSFIELD_TYPE_HOST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, HostEs),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, HostCs),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, HostSs),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, HostDs),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, HostFs),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, HostGs),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, HostTr),
+ /* 7-14 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 15-22 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 23-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_64BIT | VMX_VMCSFIELD_TYPE_CONTROL: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64AddrIoBitmapA),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64AddrIoBitmapB),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64AddrMsrBitmap),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64AddrExitMsrStore),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64AddrExitMsrLoad),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64AddrEntryMsrLoad),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u64ExecVmcsPtr),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u64AddrPml),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u64TscOffset),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u64AddrVirtApic),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u64AddrApicAccess),
+ /* 11 */ RT_UOFFSETOF(VMXVVMCS, u64AddrPostedIntDesc),
+ /* 12 */ RT_UOFFSETOF(VMXVVMCS, u64VmFuncCtls),
+ /* 13 */ RT_UOFFSETOF(VMXVVMCS, u64EptpPtr),
+ /* 14 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap0),
+ /* 15 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap1),
+ /* 16 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap2),
+ /* 17 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap3),
+ /* 18 */ RT_UOFFSETOF(VMXVVMCS, u64AddrEptpList),
+ /* 19 */ RT_UOFFSETOF(VMXVVMCS, u64AddrVmreadBitmap),
+ /* 20 */ RT_UOFFSETOF(VMXVVMCS, u64AddrVmwriteBitmap),
+ /* 21 */ RT_UOFFSETOF(VMXVVMCS, u64AddrXcptVeInfo),
+ /* 22 */ RT_UOFFSETOF(VMXVVMCS, u64XssBitmap),
+ /* 23 */ RT_UOFFSETOF(VMXVVMCS, u64EnclsBitmap),
+ /* 24 */ RT_UOFFSETOF(VMXVVMCS, u64SpptPtr),
+ /* 25 */ RT_UOFFSETOF(VMXVVMCS, u64TscMultiplier)
+ },
+ /* VMX_VMCSFIELD_WIDTH_64BIT | VMX_VMCSFIELD_TYPE_VMEXIT_INFO: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64RoGuestPhysAddr),
+ /* 1-8 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 9-16 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 17-24 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 25 */ UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_64BIT | VMX_VMCSFIELD_TYPE_GUEST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64VmcsLinkPtr),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64GuestDebugCtlMsr),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPatMsr),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64GuestEferMsr),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPerfGlobalCtlMsr),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPdpte0),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPdpte1),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPdpte2),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPdpte3),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u64GuestBndcfgsMsr),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u64GuestRtitCtlMsr),
+ /* 11-18 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 19-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_64BIT | VMX_VMCSFIELD_TYPE_HOST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64HostPatMsr),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64HostEferMsr),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64HostPerfGlobalCtlMsr),
+ /* 3-10 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 11-18 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 19-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_32BIT | VMX_VMCSFIELD_TYPE_CONTROL: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u32PinCtls),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u32ProcCtls),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u32XcptBitmap),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u32XcptPFMask),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u32XcptPFMatch),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u32Cr3TargetCount),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u32ExitCtls),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u32ExitMsrStoreCount),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u32ExitMsrLoadCount),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u32EntryCtls),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u32EntryMsrLoadCount),
+ /* 11 */ RT_UOFFSETOF(VMXVVMCS, u32EntryIntInfo),
+ /* 12 */ RT_UOFFSETOF(VMXVVMCS, u32EntryXcptErrCode),
+ /* 13 */ RT_UOFFSETOF(VMXVVMCS, u32EntryInstrLen),
+ /* 14 */ RT_UOFFSETOF(VMXVVMCS, u32TprThreshold),
+ /* 15 */ RT_UOFFSETOF(VMXVVMCS, u32ProcCtls2),
+ /* 16 */ RT_UOFFSETOF(VMXVVMCS, u32PleGap),
+ /* 17 */ RT_UOFFSETOF(VMXVVMCS, u32PleWindow),
+ /* 18-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_32BIT | VMX_VMCSFIELD_TYPE_VMEXIT_INFO: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u32RoVmInstrError),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u32RoExitReason),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u32RoExitIntInfo),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u32RoExitIntErrCode),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u32RoIdtVectoringInfo),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u32RoIdtVectoringErrCode),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u32RoExitInstrLen),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u32RoExitInstrInfo),
+ /* 8-15 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 16-23 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 24-25 */ UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_32BIT | VMX_VMCSFIELD_TYPE_GUEST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u32GuestEsLimit),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u32GuestCsLimit),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u32GuestSsLimit),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u32GuestDsLimit),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u32GuestFsLimit),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u32GuestGsLimit),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u32GuestLdtrLimit),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u32GuestTrLimit),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u32GuestGdtrLimit),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u32GuestIdtrLimit),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u32GuestEsAttr),
+ /* 11 */ RT_UOFFSETOF(VMXVVMCS, u32GuestCsAttr),
+ /* 12 */ RT_UOFFSETOF(VMXVVMCS, u32GuestSsAttr),
+ /* 13 */ RT_UOFFSETOF(VMXVVMCS, u32GuestDsAttr),
+ /* 14 */ RT_UOFFSETOF(VMXVVMCS, u32GuestFsAttr),
+ /* 15 */ RT_UOFFSETOF(VMXVVMCS, u32GuestGsAttr),
+ /* 16 */ RT_UOFFSETOF(VMXVVMCS, u32GuestLdtrAttr),
+ /* 17 */ RT_UOFFSETOF(VMXVVMCS, u32GuestTrAttr),
+ /* 18 */ RT_UOFFSETOF(VMXVVMCS, u32GuestIntrState),
+ /* 19 */ RT_UOFFSETOF(VMXVVMCS, u32GuestActivityState),
+ /* 20 */ RT_UOFFSETOF(VMXVVMCS, u32GuestSmBase),
+ /* 21 */ RT_UOFFSETOF(VMXVVMCS, u32GuestSysenterCS),
+ /* 22 */ UINT16_MAX,
+ /* 23 */ RT_UOFFSETOF(VMXVVMCS, u32PreemptTimer),
+ /* 24-25 */ UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_32BIT | VMX_VMCSFIELD_TYPE_HOST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u32HostSysenterCs),
+ /* 1-8 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 9-16 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 17-24 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 25 */ UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_NATURAL | VMX_VMCSFIELD_TYPE_CONTROL: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64Cr0Mask),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64Cr4Mask),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64Cr0ReadShadow),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64Cr4ReadShadow),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64Cr3Target0),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64Cr3Target1),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u64Cr3Target2),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u64Cr3Target3),
+ /* 8-15 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 16-23 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 24-25 */ UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_NATURAL | VMX_VMCSFIELD_TYPE_VMEXIT_INFO: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64RoExitQual),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64RoIoRcx),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64RoIoRsi),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64RoIoRdi),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64RoIoRip),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64RoGuestLinearAddr),
+ /* 6-13 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 14-21 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 22-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_NATURAL | VMX_VMCSFIELD_TYPE_GUEST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64GuestCr0),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64GuestCr3),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64GuestCr4),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64GuestEsBase),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64GuestCsBase),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64GuestSsBase),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u64GuestDsBase),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u64GuestFsBase),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u64GuestGsBase),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u64GuestLdtrBase),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u64GuestTrBase),
+ /* 11 */ RT_UOFFSETOF(VMXVVMCS, u64GuestGdtrBase),
+ /* 12 */ RT_UOFFSETOF(VMXVVMCS, u64GuestIdtrBase),
+ /* 13 */ RT_UOFFSETOF(VMXVVMCS, u64GuestDr7),
+ /* 14 */ RT_UOFFSETOF(VMXVVMCS, u64GuestRsp),
+ /* 15 */ RT_UOFFSETOF(VMXVVMCS, u64GuestRip),
+ /* 16 */ RT_UOFFSETOF(VMXVVMCS, u64GuestRFlags),
+ /* 17 */ RT_UOFFSETOF(VMXVVMCS, u64GuestPendingDbgXcpts),
+ /* 18 */ RT_UOFFSETOF(VMXVVMCS, u64GuestSysenterEsp),
+ /* 19 */ RT_UOFFSETOF(VMXVVMCS, u64GuestSysenterEip),
+ /* 20-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ },
+ /* VMX_VMCSFIELD_WIDTH_NATURAL | VMX_VMCSFIELD_TYPE_HOST_STATE: */
+ {
+ /* 0 */ RT_UOFFSETOF(VMXVVMCS, u64HostCr0),
+ /* 1 */ RT_UOFFSETOF(VMXVVMCS, u64HostCr3),
+ /* 2 */ RT_UOFFSETOF(VMXVVMCS, u64HostCr4),
+ /* 3 */ RT_UOFFSETOF(VMXVVMCS, u64HostFsBase),
+ /* 4 */ RT_UOFFSETOF(VMXVVMCS, u64HostGsBase),
+ /* 5 */ RT_UOFFSETOF(VMXVVMCS, u64HostTrBase),
+ /* 6 */ RT_UOFFSETOF(VMXVVMCS, u64HostGdtrBase),
+ /* 7 */ RT_UOFFSETOF(VMXVVMCS, u64HostIdtrBase),
+ /* 8 */ RT_UOFFSETOF(VMXVVMCS, u64HostSysenterEsp),
+ /* 9 */ RT_UOFFSETOF(VMXVVMCS, u64HostSysenterEip),
+ /* 10 */ RT_UOFFSETOF(VMXVVMCS, u64HostRsp),
+ /* 11 */ RT_UOFFSETOF(VMXVVMCS, u64HostRip),
+ /* 12-19 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX,
+ /* 20-25 */ UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX
+ }
+};
+
+
+/**
+ * Gets a host selector from the VMCS.
+ *
+ * @param pVmcs Pointer to the virtual VMCS.
+ * @param iSelReg The index of the segment register (X86_SREG_XXX).
+ */
+DECLINLINE(RTSEL) iemVmxVmcsGetHostSelReg(PCVMXVVMCS pVmcs, uint8_t iSegReg)
+{
+ Assert(iSegReg < X86_SREG_COUNT);
+ RTSEL HostSel;
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_16BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_HOST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS16_HOST_ES_SEL, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ HostSel = *(uint16_t *)pbField;
+ return HostSel;
+}
+
+
+/**
+ * Sets a guest segment register in the VMCS.
+ *
+ * @param pVmcs Pointer to the virtual VMCS.
+ * @param iSegReg The index of the segment register (X86_SREG_XXX).
+ * @param pSelReg Pointer to the segment register.
+ */
+IEM_STATIC void iemVmxVmcsSetGuestSegReg(PCVMXVVMCS pVmcs, uint8_t iSegReg, PCCPUMSELREG pSelReg)
+{
+ Assert(pSelReg);
+ Assert(iSegReg < X86_SREG_COUNT);
+
+ /* Selector. */
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_16BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS16_GUEST_ES_SEL, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t *pbField = pbVmcs + offField;
+ *(uint16_t *)pbField = pSelReg->Sel;
+ }
+
+ /* Limit. */
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_32BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS32_GUEST_ES_LIMIT, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t *pbField = pbVmcs + offField;
+ *(uint32_t *)pbField = pSelReg->u32Limit;
+ }
+
+ /* Base. */
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_NATURAL;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS_GUEST_ES_BASE, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ *(uint64_t *)pbField = pSelReg->u64Base;
+ }
+
+ /* Attributes. */
+ {
+ uint32_t const fValidAttrMask = X86DESCATTR_TYPE | X86DESCATTR_DT | X86DESCATTR_DPL | X86DESCATTR_P
+ | X86DESCATTR_AVL | X86DESCATTR_L | X86DESCATTR_D | X86DESCATTR_G
+ | X86DESCATTR_UNUSABLE;
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_32BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS32_GUEST_ES_ACCESS_RIGHTS, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t *pbField = pbVmcs + offField;
+ *(uint32_t *)pbField = pSelReg->Attr.u & fValidAttrMask;
+ }
+}
+
+
+/**
+ * Gets a guest segment register from the VMCS.
+ *
+ * @returns VBox status code.
+ * @param pVmcs Pointer to the virtual VMCS.
+ * @param iSegReg The index of the segment register (X86_SREG_XXX).
+ * @param pSelReg Where to store the segment register (only updated when
+ * VINF_SUCCESS is returned).
+ *
+ * @remarks Warning! This does not validate the contents of the retrieved segment
+ * register.
+ */
+IEM_STATIC int iemVmxVmcsGetGuestSegReg(PCVMXVVMCS pVmcs, uint8_t iSegReg, PCPUMSELREG pSelReg)
+{
+ Assert(pSelReg);
+ Assert(iSegReg < X86_SREG_COUNT);
+
+ /* Selector. */
+ uint16_t u16Sel;
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_16BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS16_GUEST_ES_SEL, VMX_BF_VMCSFIELD_INDEX);
+ AssertReturn(uIndex <= VMX_V_VMCS_MAX_INDEX, VERR_IEM_IPE_3);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ u16Sel = *(uint16_t *)pbField;
+ }
+
+ /* Limit. */
+ uint32_t u32Limit;
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_32BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS32_GUEST_ES_LIMIT, VMX_BF_VMCSFIELD_INDEX);
+ AssertReturn(uIndex <= VMX_V_VMCS_MAX_INDEX, VERR_IEM_IPE_3);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ u32Limit = *(uint32_t *)pbField;
+ }
+
+ /* Base. */
+ uint64_t u64Base;
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_NATURAL;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS_GUEST_ES_BASE, VMX_BF_VMCSFIELD_INDEX);
+ AssertReturn(uIndex <= VMX_V_VMCS_MAX_INDEX, VERR_IEM_IPE_3);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ u64Base = *(uint64_t *)pbField;
+ /** @todo NSTVMX: Should we zero out high bits here for 32-bit virtual CPUs? */
+ }
+
+ /* Attributes. */
+ uint32_t u32Attr;
+ {
+ uint8_t const uWidth = VMX_VMCSFIELD_WIDTH_32BIT;
+ uint8_t const uType = VMX_VMCSFIELD_TYPE_GUEST_STATE;
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = iSegReg + RT_BF_GET(VMX_VMCS32_GUEST_ES_ACCESS_RIGHTS, VMX_BF_VMCSFIELD_INDEX);
+ AssertReturn(uIndex <= VMX_V_VMCS_MAX_INDEX, VERR_IEM_IPE_3);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ uint8_t const *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ u32Attr = *(uint32_t *)pbField;
+ }
+
+ pSelReg->Sel = u16Sel;
+ pSelReg->ValidSel = u16Sel;
+ pSelReg->fFlags = CPUMSELREG_FLAGS_VALID;
+ pSelReg->u32Limit = u32Limit;
+ pSelReg->u64Base = u64Base;
+ pSelReg->Attr.u = u32Attr;
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Converts an IEM exception event type to a VMX event type.
+ *
+ * @returns The VMX event type.
+ * @param uVector The interrupt / exception vector.
+ * @param fFlags The IEM event flag (see IEM_XCPT_FLAGS_XXX).
+ */
+DECLINLINE(uint8_t) iemVmxGetEventType(uint32_t uVector, uint32_t fFlags)
+{
+ /* Paranoia (callers may use these interchangeably). */
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_NMI == VMX_IDT_VECTORING_INFO_TYPE_NMI);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_HW_XCPT == VMX_IDT_VECTORING_INFO_TYPE_HW_XCPT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_EXT_INT == VMX_IDT_VECTORING_INFO_TYPE_EXT_INT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_SW_XCPT == VMX_IDT_VECTORING_INFO_TYPE_SW_XCPT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_SW_INT == VMX_IDT_VECTORING_INFO_TYPE_SW_INT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_PRIV_SW_XCPT == VMX_IDT_VECTORING_INFO_TYPE_PRIV_SW_XCPT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_NMI == VMX_ENTRY_INT_INFO_TYPE_NMI);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_HW_XCPT == VMX_ENTRY_INT_INFO_TYPE_HW_XCPT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_EXT_INT == VMX_ENTRY_INT_INFO_TYPE_EXT_INT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_SW_XCPT == VMX_ENTRY_INT_INFO_TYPE_SW_XCPT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_SW_INT == VMX_ENTRY_INT_INFO_TYPE_SW_INT);
+ AssertCompile(VMX_EXIT_INT_INFO_TYPE_PRIV_SW_XCPT == VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT);
+
+ if (fFlags & IEM_XCPT_FLAGS_T_CPU_XCPT)
+ {
+ if (uVector == X86_XCPT_NMI)
+ return VMX_EXIT_INT_INFO_TYPE_NMI;
+ return VMX_EXIT_INT_INFO_TYPE_HW_XCPT;
+ }
+
+ if (fFlags & IEM_XCPT_FLAGS_T_SOFT_INT)
+ {
+ if (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR))
+ return VMX_EXIT_INT_INFO_TYPE_SW_XCPT;
+ if (fFlags & IEM_XCPT_FLAGS_ICEBP_INSTR)
+ return VMX_EXIT_INT_INFO_TYPE_PRIV_SW_XCPT;
+ return VMX_EXIT_INT_INFO_TYPE_SW_INT;
+ }
+
+ Assert(fFlags & IEM_XCPT_FLAGS_T_EXT_INT);
+ return VMX_EXIT_INT_INFO_TYPE_EXT_INT;
+}
+
+
+/**
+ * Sets the Exit qualification VMCS field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param u64ExitQual The Exit qualification.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitQual(PVMCPUCC pVCpu, uint64_t u64ExitQual)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u64RoExitQual.u = u64ExitQual;
+}
+
+
+/**
+ * Sets the VM-exit interruption information field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitIntInfo The VM-exit interruption information.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitIntInfo(PVMCPUCC pVCpu, uint32_t uExitIntInfo)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoExitIntInfo = uExitIntInfo;
+}
+
+
+/**
+ * Sets the VM-exit interruption error code.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uErrCode The error code.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitIntErrCode(PVMCPUCC pVCpu, uint32_t uErrCode)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoExitIntErrCode = uErrCode;
+}
+
+
+/**
+ * Sets the IDT-vectoring information field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uIdtVectorInfo The IDT-vectoring information.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetIdtVectoringInfo(PVMCPUCC pVCpu, uint32_t uIdtVectorInfo)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoIdtVectoringInfo = uIdtVectorInfo;
+}
+
+
+/**
+ * Sets the IDT-vectoring error code field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uErrCode The error code.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetIdtVectoringErrCode(PVMCPUCC pVCpu, uint32_t uErrCode)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoIdtVectoringErrCode = uErrCode;
+}
+
+
+/**
+ * Sets the VM-exit guest-linear address VMCS field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uGuestLinearAddr The VM-exit guest-linear address.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitGuestLinearAddr(PVMCPUCC pVCpu, uint64_t uGuestLinearAddr)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u64RoGuestLinearAddr.u = uGuestLinearAddr;
+}
+
+
+/**
+ * Sets the VM-exit guest-physical address VMCS field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uGuestPhysAddr The VM-exit guest-physical address.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitGuestPhysAddr(PVMCPUCC pVCpu, uint64_t uGuestPhysAddr)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u64RoGuestPhysAddr.u = uGuestPhysAddr;
+}
+
+
+/**
+ * Sets the VM-exit instruction length VMCS field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The VM-exit instruction length in bytes.
+ *
+ * @remarks Callers may clear this field to 0. Hence, this function does not check
+ * the validity of the instruction length.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitInstrLen(PVMCPUCC pVCpu, uint32_t cbInstr)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoExitInstrLen = cbInstr;
+}
+
+
+/**
+ * Sets the VM-exit instruction info. VMCS field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitInstrInfo The VM-exit instruction information.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetExitInstrInfo(PVMCPUCC pVCpu, uint32_t uExitInstrInfo)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVmcs->u32RoExitInstrInfo = uExitInstrInfo;
+}
+
+
+/**
+ * Sets the guest pending-debug exceptions field.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uGuestPendingDbgXcpts The guest pending-debug exceptions.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmcsSetGuestPendingDbgXcpts(PVMCPUCC pVCpu, uint64_t uGuestPendingDbgXcpts)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(!(uGuestPendingDbgXcpts & VMX_VMCS_GUEST_PENDING_DEBUG_VALID_MASK));
+ pVmcs->u64GuestPendingDbgXcpts.u = uGuestPendingDbgXcpts;
+}
+
+
+/**
+ * Implements VMSucceed for VMX instruction success.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmSucceed(PVMCPUCC pVCpu)
+{
+ return CPUMSetGuestVmxVmSucceed(&pVCpu->cpum.GstCtx);
+}
+
+
+/**
+ * Implements VMFailInvalid for VMX instruction failure.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmFailInvalid(PVMCPUCC pVCpu)
+{
+ return CPUMSetGuestVmxVmFailInvalid(&pVCpu->cpum.GstCtx);
+}
+
+
+/**
+ * Implements VMFail for VMX instruction failure.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param enmInsErr The VM instruction error.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmFail(PVMCPUCC pVCpu, VMXINSTRERR enmInsErr)
+{
+ return CPUMSetGuestVmxVmFail(&pVCpu->cpum.GstCtx, enmInsErr);
+}
+
+
+/**
+ * Checks if the given auto-load/store MSR area count is valid for the
+ * implementation.
+ *
+ * @returns @c true if it's within the valid limit, @c false otherwise.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uMsrCount The MSR area count to check.
+ */
+DECL_FORCE_INLINE(bool) iemVmxIsAutoMsrCountValid(PCVMCPU pVCpu, uint32_t uMsrCount)
+{
+ uint64_t const u64VmxMiscMsr = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Misc;
+ uint32_t const cMaxSupportedMsrs = VMX_MISC_MAX_MSRS(u64VmxMiscMsr);
+ Assert(cMaxSupportedMsrs <= VMX_V_AUTOMSR_AREA_SIZE / sizeof(VMXAUTOMSR));
+ if (uMsrCount <= cMaxSupportedMsrs)
+ return true;
+ return false;
+}
+
+
+/**
+ * Flushes the current VMCS contents back to guest memory.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECL_FORCE_INLINE(int) iemVmxWriteCurrentVmcsToGstMem(PVMCPUCC pVCpu)
+{
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs));
+ Assert(IEM_VMX_HAS_CURRENT_VMCS(pVCpu));
+ int rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), IEM_VMX_GET_CURRENT_VMCS(pVCpu),
+ pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs), sizeof(VMXVVMCS));
+ return rc;
+}
+
+
+/**
+ * Populates the current VMCS contents from guest memory.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECL_FORCE_INLINE(int) iemVmxReadCurrentVmcsFromGstMem(PVMCPUCC pVCpu)
+{
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs));
+ Assert(IEM_VMX_HAS_CURRENT_VMCS(pVCpu));
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs),
+ IEM_VMX_GET_CURRENT_VMCS(pVCpu), sizeof(VMXVVMCS));
+ return rc;
+}
+
+
+/**
+ * Implements VMSucceed for the VMREAD instruction and increments the guest RIP.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECL_FORCE_INLINE(void) iemVmxVmreadSuccess(PVMCPUCC pVCpu, uint8_t cbInstr)
+{
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment base checks during VM-entry of a
+ * nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegBase(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegBaseCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegBaseDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegBaseEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegBaseFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegBaseGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegBaseSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_1);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment base checks during VM-entry of a
+ * nested-guest that is in Virtual-8086 mode.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegBaseV86(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegBaseV86Cs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegBaseV86Ds;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegBaseV86Es;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegBaseV86Fs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegBaseV86Gs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegBaseV86Ss;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_2);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment limit checks during VM-entry of a
+ * nested-guest that is in Virtual-8086 mode.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegLimitV86(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegLimitV86Cs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegLimitV86Ds;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegLimitV86Es;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegLimitV86Fs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegLimitV86Gs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegLimitV86Ss;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_3);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attribute checks during VM-entry of a
+ * nested-guest that is in Virtual-8086 mode.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrV86(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrV86Cs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrV86Ds;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrV86Es;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrV86Fs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrV86Gs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrV86Ss;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_4);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attributes reserved bits failure
+ * during VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrRsvd(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrRsvdCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrRsvdDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrRsvdEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrRsvdFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrRsvdGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrRsvdSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_5);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attributes descriptor-type
+ * (code/segment or system) failure during VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrDescType(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrDescTypeSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_6);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attributes descriptor-type
+ * (code/segment or system) failure during VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrPresent(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrPresentCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrPresentDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrPresentEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrPresentFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrPresentGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrPresentSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_7);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attribute granularity failure during
+ * VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrGran(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrGranCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrGranDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrGranEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrGranFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrGranGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrGranSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_8);
+ }
+}
+
+/**
+ * Gets the instruction diagnostic for segment attribute DPL/RPL failure during
+ * VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrDplRpl(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrDplRplCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrDplRplDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrDplRplEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrDplRplFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrDplRplGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrDplRplSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_9);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for segment attribute type accessed failure
+ * during VM-entry of a nested-guest.
+ *
+ * @param iSegReg The segment index (X86_SREG_XXX).
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentrySegAttrTypeAcc(unsigned iSegReg)
+{
+ switch (iSegReg)
+ {
+ case X86_SREG_CS: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccCs;
+ case X86_SREG_DS: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccDs;
+ case X86_SREG_ES: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccEs;
+ case X86_SREG_FS: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccFs;
+ case X86_SREG_GS: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccGs;
+ case X86_SREG_SS: return kVmxVDiag_Vmentry_GuestSegAttrTypeAccSs;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_10);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for guest CR3 referenced PDPTE reserved bits
+ * failure during VM-entry of a nested-guest.
+ *
+ * @param iSegReg The PDPTE entry index.
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmentryPdpteRsvd(unsigned iPdpte)
+{
+ Assert(iPdpte < X86_PG_PAE_PDPE_ENTRIES);
+ switch (iPdpte)
+ {
+ case 0: return kVmxVDiag_Vmentry_GuestPdpte0Rsvd;
+ case 1: return kVmxVDiag_Vmentry_GuestPdpte1Rsvd;
+ case 2: return kVmxVDiag_Vmentry_GuestPdpte2Rsvd;
+ case 3: return kVmxVDiag_Vmentry_GuestPdpte3Rsvd;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_11);
+ }
+}
+
+
+/**
+ * Gets the instruction diagnostic for host CR3 referenced PDPTE reserved bits
+ * failure during VM-exit of a nested-guest.
+ *
+ * @param iSegReg The PDPTE entry index.
+ */
+IEM_STATIC VMXVDIAG iemVmxGetDiagVmexitPdpteRsvd(unsigned iPdpte)
+{
+ Assert(iPdpte < X86_PG_PAE_PDPE_ENTRIES);
+ switch (iPdpte)
+ {
+ case 0: return kVmxVDiag_Vmexit_HostPdpte0Rsvd;
+ case 1: return kVmxVDiag_Vmexit_HostPdpte1Rsvd;
+ case 2: return kVmxVDiag_Vmexit_HostPdpte2Rsvd;
+ case 3: return kVmxVDiag_Vmexit_HostPdpte3Rsvd;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET2(kVmxVDiag_Ipe_12);
+ }
+}
+
+
+/**
+ * Saves the guest control registers, debug registers and some MSRs are part of
+ * VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmexitSaveGuestControlRegsMsrs(PVMCPUCC pVCpu)
+{
+ /*
+ * Saves the guest control registers, debug registers and some MSRs.
+ * See Intel spec. 27.3.1 "Saving Control Registers, Debug Registers and MSRs".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ /* Save control registers. */
+ pVmcs->u64GuestCr0.u = pVCpu->cpum.GstCtx.cr0;
+ pVmcs->u64GuestCr3.u = pVCpu->cpum.GstCtx.cr3;
+ pVmcs->u64GuestCr4.u = pVCpu->cpum.GstCtx.cr4;
+
+ /* Save SYSENTER CS, ESP, EIP. */
+ pVmcs->u32GuestSysenterCS = pVCpu->cpum.GstCtx.SysEnter.cs;
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ pVmcs->u64GuestSysenterEsp.u = pVCpu->cpum.GstCtx.SysEnter.esp;
+ pVmcs->u64GuestSysenterEip.u = pVCpu->cpum.GstCtx.SysEnter.eip;
+ }
+ else
+ {
+ pVmcs->u64GuestSysenterEsp.s.Lo = pVCpu->cpum.GstCtx.SysEnter.esp;
+ pVmcs->u64GuestSysenterEip.s.Lo = pVCpu->cpum.GstCtx.SysEnter.eip;
+ }
+
+ /* Save debug registers (DR7 and IA32_DEBUGCTL MSR). */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_SAVE_DEBUG)
+ {
+ pVmcs->u64GuestDr7.u = pVCpu->cpum.GstCtx.dr[7];
+ /** @todo NSTVMX: Support IA32_DEBUGCTL MSR */
+ }
+
+ /* Save PAT MSR. */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_SAVE_PAT_MSR)
+ pVmcs->u64GuestPatMsr.u = pVCpu->cpum.GstCtx.msrPAT;
+
+ /* Save EFER MSR. */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_SAVE_EFER_MSR)
+ pVmcs->u64GuestEferMsr.u = pVCpu->cpum.GstCtx.msrEFER;
+
+ /* We don't support clearing IA32_BNDCFGS MSR yet. */
+ Assert(!(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_CLEAR_BNDCFGS_MSR));
+
+ /* Nothing to do for SMBASE register - We don't support SMM yet. */
+}
+
+
+/**
+ * Saves the guest force-flags in preparation of entering the nested-guest.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmentrySaveNmiBlockingFF(PVMCPUCC pVCpu)
+{
+ /* We shouldn't be called multiple times during VM-entry. */
+ Assert(pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions == 0);
+
+ /* MTF should not be set outside VMX non-root mode. */
+ Assert(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_MTF));
+
+ /*
+ * Preserve the required force-flags.
+ *
+ * We cache and clear force-flags that would affect the execution of the
+ * nested-guest. Cached flags are then restored while returning to the guest
+ * if necessary.
+ *
+ * - VMCPU_FF_INHIBIT_INTERRUPTS need not be cached as it only affects
+ * interrupts until the completion of the current VMLAUNCH/VMRESUME
+ * instruction. Interrupt inhibition for any nested-guest instruction
+ * is supplied by the guest-interruptibility state VMCS field and will
+ * be set up as part of loading the guest state.
+ *
+ * - VMCPU_FF_BLOCK_NMIS needs to be cached as VM-exits caused before
+ * successful VM-entry (due to invalid guest-state) need to continue
+ * blocking NMIs if it was in effect before VM-entry.
+ *
+ * - MTF need not be preserved as it's used only in VMX non-root mode and
+ * is supplied through the VM-execution controls.
+ *
+ * The remaining FFs (e.g. timers, APIC updates) can stay in place so that
+ * we will be able to generate interrupts that may cause VM-exits for
+ * the nested-guest.
+ */
+ pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions = pVCpu->fLocalForcedActions & VMCPU_FF_BLOCK_NMIS;
+}
+
+
+/**
+ * Restores the guest force-flags in preparation of exiting the nested-guest.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmexitRestoreNmiBlockingFF(PVMCPUCC pVCpu)
+{
+ if (pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions)
+ {
+ VMCPU_FF_SET_MASK(pVCpu, pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions);
+ pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions = 0;
+ }
+}
+
+
+/**
+ * Perform a VMX transition updated PGM, IEM and CPUM.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC int iemVmxWorldSwitch(PVMCPUCC pVCpu)
+{
+ /*
+ * Inform PGM about paging mode changes.
+ * We include X86_CR0_PE because PGM doesn't handle paged-real mode yet,
+ * see comment in iemMemPageTranslateAndCheckAccess().
+ */
+ int rc = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0 | X86_CR0_PE, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER);
+# ifdef IN_RING3
+ Assert(rc != VINF_PGM_CHANGE_MODE);
+# endif
+ AssertRCReturn(rc, rc);
+
+ /* Inform CPUM (recompiler), can later be removed. */
+ CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_ALL);
+
+ /*
+ * Flush the TLB with new CR3. This is required in case the PGM mode change
+ * above doesn't actually change anything.
+ */
+ if (rc == VINF_SUCCESS)
+ {
+ rc = PGMFlushTLB(pVCpu, pVCpu->cpum.GstCtx.cr3, true);
+ AssertRCReturn(rc, rc);
+ }
+
+ /* Re-initialize IEM cache/state after the drastic mode switch. */
+ iemReInitExec(pVCpu);
+ return rc;
+}
+
+
+/**
+ * Calculates the current VMX-preemption timer value.
+ *
+ * @returns The current VMX-preemption timer value.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC uint32_t iemVmxCalcPreemptTimer(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /*
+ * Assume the following:
+ * PreemptTimerShift = 5
+ * VmcsPreemptTimer = 2 (i.e. need to decrement by 1 every 2 * RT_BIT(5) = 20000 TSC ticks)
+ * EntryTick = 50000 (TSC at time of VM-entry)
+ *
+ * CurTick Delta PreemptTimerVal
+ * ----------------------------------
+ * 60000 10000 2
+ * 80000 30000 1
+ * 90000 40000 0 -> VM-exit.
+ *
+ * If Delta >= VmcsPreemptTimer * RT_BIT(PreemptTimerShift) cause a VMX-preemption timer VM-exit.
+ * The saved VMX-preemption timer value is calculated as follows:
+ * PreemptTimerVal = VmcsPreemptTimer - (Delta / (VmcsPreemptTimer * RT_BIT(PreemptTimerShift)))
+ * E.g.:
+ * Delta = 10000
+ * Tmp = 10000 / (2 * 10000) = 0.5
+ * NewPt = 2 - 0.5 = 2
+ * Delta = 30000
+ * Tmp = 30000 / (2 * 10000) = 1.5
+ * NewPt = 2 - 1.5 = 1
+ * Delta = 40000
+ * Tmp = 40000 / 20000 = 2
+ * NewPt = 2 - 2 = 0
+ */
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_HWVIRT);
+ uint32_t const uVmcsPreemptVal = pVmcs->u32PreemptTimer;
+ if (uVmcsPreemptVal > 0)
+ {
+ uint64_t const uCurTick = TMCpuTickGetNoCheck(pVCpu);
+ uint64_t const uEntryTick = pVCpu->cpum.GstCtx.hwvirt.vmx.uEntryTick;
+ uint64_t const uDelta = uCurTick - uEntryTick;
+ uint32_t const uPreemptTimer = uVmcsPreemptVal
+ - ASMDivU64ByU32RetU32(uDelta, uVmcsPreemptVal * RT_BIT(VMX_V_PREEMPT_TIMER_SHIFT));
+ return uPreemptTimer;
+ }
+ return 0;
+}
+
+
+/**
+ * Saves guest segment registers, GDTR, IDTR, LDTR, TR as part of VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmexitSaveGuestSegRegs(PVMCPUCC pVCpu)
+{
+ /*
+ * Save guest segment registers, GDTR, IDTR, LDTR, TR.
+ * See Intel spec 27.3.2 "Saving Segment Registers and Descriptor-Table Registers".
+ */
+ /* CS, SS, ES, DS, FS, GS. */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ for (unsigned iSegReg = 0; iSegReg < X86_SREG_COUNT; iSegReg++)
+ {
+ PCCPUMSELREG pSelReg = &pVCpu->cpum.GstCtx.aSRegs[iSegReg];
+ if (!pSelReg->Attr.n.u1Unusable)
+ iemVmxVmcsSetGuestSegReg(pVmcs, iSegReg, pSelReg);
+ else
+ {
+ /*
+ * For unusable segments the attributes are undefined except for CS and SS.
+ * For the rest we don't bother preserving anything but the unusable bit.
+ */
+ switch (iSegReg)
+ {
+ case X86_SREG_CS:
+ pVmcs->GuestCs = pSelReg->Sel;
+ pVmcs->u64GuestCsBase.u = pSelReg->u64Base;
+ pVmcs->u32GuestCsLimit = pSelReg->u32Limit;
+ pVmcs->u32GuestCsAttr = pSelReg->Attr.u & ( X86DESCATTR_L | X86DESCATTR_D | X86DESCATTR_G
+ | X86DESCATTR_UNUSABLE);
+ break;
+
+ case X86_SREG_SS:
+ pVmcs->GuestSs = pSelReg->Sel;
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ pVmcs->u64GuestSsBase.u &= UINT32_C(0xffffffff);
+ pVmcs->u32GuestSsAttr = pSelReg->Attr.u & (X86DESCATTR_DPL | X86DESCATTR_UNUSABLE);
+ break;
+
+ case X86_SREG_DS:
+ pVmcs->GuestDs = pSelReg->Sel;
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ pVmcs->u64GuestDsBase.u &= UINT32_C(0xffffffff);
+ pVmcs->u32GuestDsAttr = X86DESCATTR_UNUSABLE;
+ break;
+
+ case X86_SREG_ES:
+ pVmcs->GuestEs = pSelReg->Sel;
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ pVmcs->u64GuestEsBase.u &= UINT32_C(0xffffffff);
+ pVmcs->u32GuestEsAttr = X86DESCATTR_UNUSABLE;
+ break;
+
+ case X86_SREG_FS:
+ pVmcs->GuestFs = pSelReg->Sel;
+ pVmcs->u64GuestFsBase.u = pSelReg->u64Base;
+ pVmcs->u32GuestFsAttr = X86DESCATTR_UNUSABLE;
+ break;
+
+ case X86_SREG_GS:
+ pVmcs->GuestGs = pSelReg->Sel;
+ pVmcs->u64GuestGsBase.u = pSelReg->u64Base;
+ pVmcs->u32GuestGsAttr = X86DESCATTR_UNUSABLE;
+ break;
+ }
+ }
+ }
+
+ /* Segment attribute bits 31:17 and 11:8 MBZ. */
+ uint32_t const fValidAttrMask = X86DESCATTR_TYPE | X86DESCATTR_DT | X86DESCATTR_DPL | X86DESCATTR_P
+ | X86DESCATTR_AVL | X86DESCATTR_L | X86DESCATTR_D | X86DESCATTR_G
+ | X86DESCATTR_UNUSABLE;
+ /* LDTR. */
+ {
+ PCCPUMSELREG pSelReg = &pVCpu->cpum.GstCtx.ldtr;
+ pVmcs->GuestLdtr = pSelReg->Sel;
+ pVmcs->u64GuestLdtrBase.u = pSelReg->u64Base;
+ Assert(X86_IS_CANONICAL(pSelReg->u64Base));
+ pVmcs->u32GuestLdtrLimit = pSelReg->u32Limit;
+ pVmcs->u32GuestLdtrAttr = pSelReg->Attr.u & fValidAttrMask;
+ }
+
+ /* TR. */
+ {
+ PCCPUMSELREG pSelReg = &pVCpu->cpum.GstCtx.tr;
+ pVmcs->GuestTr = pSelReg->Sel;
+ pVmcs->u64GuestTrBase.u = pSelReg->u64Base;
+ pVmcs->u32GuestTrLimit = pSelReg->u32Limit;
+ pVmcs->u32GuestTrAttr = pSelReg->Attr.u & fValidAttrMask;
+ }
+
+ /* GDTR. */
+ pVmcs->u64GuestGdtrBase.u = pVCpu->cpum.GstCtx.gdtr.pGdt;
+ pVmcs->u32GuestGdtrLimit = pVCpu->cpum.GstCtx.gdtr.cbGdt;
+
+ /* IDTR. */
+ pVmcs->u64GuestIdtrBase.u = pVCpu->cpum.GstCtx.idtr.pIdt;
+ pVmcs->u32GuestIdtrLimit = pVCpu->cpum.GstCtx.idtr.cbIdt;
+}
+
+
+/**
+ * Saves guest non-register state as part of VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ */
+IEM_STATIC void iemVmxVmexitSaveGuestNonRegState(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ /*
+ * Save guest non-register state.
+ * See Intel spec. 27.3.4 "Saving Non-Register State".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ /*
+ * Activity state.
+ * Most VM-exits will occur in the active state. However, if the first instruction
+ * following the VM-entry is a HLT instruction, and the MTF VM-execution control is set,
+ * the VM-exit will be from the HLT activity state.
+ *
+ * See Intel spec. 25.5.2 "Monitor Trap Flag".
+ */
+ /** @todo NSTVMX: Does triple-fault VM-exit reflect a shutdown activity state or
+ * not? */
+ EMSTATE const enmActivityState = EMGetState(pVCpu);
+ switch (enmActivityState)
+ {
+ case EMSTATE_HALTED: pVmcs->u32GuestActivityState = VMX_VMCS_GUEST_ACTIVITY_HLT; break;
+ default: pVmcs->u32GuestActivityState = VMX_VMCS_GUEST_ACTIVITY_ACTIVE; break;
+ }
+
+ /*
+ * Interruptibility-state.
+ */
+ /* NMI. */
+ pVmcs->u32GuestIntrState = 0;
+ if (pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI)
+ {
+ if (pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking)
+ pVmcs->u32GuestIntrState |= VMX_VMCS_GUEST_INT_STATE_BLOCK_NMI;
+ }
+ else
+ {
+ if (VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_BLOCK_NMIS))
+ pVmcs->u32GuestIntrState |= VMX_VMCS_GUEST_INT_STATE_BLOCK_NMI;
+ }
+
+ /* Blocking-by-STI. */
+ if ( VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS)
+ && pVCpu->cpum.GstCtx.rip == EMGetInhibitInterruptsPC(pVCpu))
+ {
+ /** @todo NSTVMX: We can't distinguish between blocking-by-MovSS and blocking-by-STI
+ * currently. */
+ pVmcs->u32GuestIntrState |= VMX_VMCS_GUEST_INT_STATE_BLOCK_STI;
+ }
+ /* Nothing to do for SMI/enclave. We don't support enclaves or SMM yet. */
+
+ /*
+ * Pending debug exceptions.
+ *
+ * For VM-exits where it is not applicable, we can safely zero out the field.
+ * For VM-exits where it is applicable, it's expected to be updated by the caller already.
+ */
+ if ( uExitReason != VMX_EXIT_INIT_SIGNAL
+ && uExitReason != VMX_EXIT_SMI
+ && uExitReason != VMX_EXIT_ERR_MACHINE_CHECK
+ && !VMXIsVmexitTrapLike(uExitReason))
+ {
+ /** @todo NSTVMX: also must exclude VM-exits caused by debug exceptions when
+ * block-by-MovSS is in effect. */
+ pVmcs->u64GuestPendingDbgXcpts.u = 0;
+ }
+
+ /*
+ * Save the VMX-preemption timer value back into the VMCS if the feature is enabled.
+ *
+ * For VMX-preemption timer VM-exits, we should have already written back 0 if the
+ * feature is supported back into the VMCS, and thus there is nothing further to do here.
+ */
+ if ( uExitReason != VMX_EXIT_PREEMPT_TIMER
+ && (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_SAVE_PREEMPT_TIMER))
+ pVmcs->u32PreemptTimer = iemVmxCalcPreemptTimer(pVCpu);
+
+ /* PDPTEs. */
+ /* We don't support EPT yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_EPT));
+ pVmcs->u64GuestPdpte0.u = 0;
+ pVmcs->u64GuestPdpte1.u = 0;
+ pVmcs->u64GuestPdpte2.u = 0;
+ pVmcs->u64GuestPdpte3.u = 0;
+}
+
+
+/**
+ * Saves the guest-state as part of VM-exit.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ */
+IEM_STATIC void iemVmxVmexitSaveGuestState(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ iemVmxVmexitSaveGuestControlRegsMsrs(pVCpu);
+ iemVmxVmexitSaveGuestSegRegs(pVCpu);
+
+ pVmcs->u64GuestRip.u = pVCpu->cpum.GstCtx.rip;
+ pVmcs->u64GuestRsp.u = pVCpu->cpum.GstCtx.rsp;
+ pVmcs->u64GuestRFlags.u = pVCpu->cpum.GstCtx.rflags.u; /** @todo NSTVMX: Check RFLAGS.RF handling. */
+
+ iemVmxVmexitSaveGuestNonRegState(pVCpu, uExitReason);
+}
+
+
+/**
+ * Saves the guest MSRs into the VM-exit MSR-store area as part of VM-exit.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason (for diagnostic purposes).
+ */
+IEM_STATIC int iemVmxVmexitSaveGuestAutoMsrs(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ /*
+ * Save guest MSRs.
+ * See Intel spec. 27.4 "Saving MSRs".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VMX-abort";
+
+ /*
+ * The VM-exit MSR-store area address need not be a valid guest-physical address if the
+ * VM-exit MSR-store count is 0. If this is the case, bail early without reading it.
+ * See Intel spec. 24.7.2 "VM-Exit Controls for MSRs".
+ */
+ uint32_t const cMsrs = pVmcs->u32ExitMsrStoreCount;
+ if (!cMsrs)
+ return VINF_SUCCESS;
+
+ /*
+ * Verify the MSR auto-store count. Physical CPUs can behave unpredictably if the count
+ * is exceeded including possibly raising #MC exceptions during VMX transition. Our
+ * implementation causes a VMX-abort followed by a triple-fault.
+ */
+ bool const fIsMsrCountValid = iemVmxIsAutoMsrCountValid(pVCpu, cMsrs);
+ if (fIsMsrCountValid)
+ { /* likely */ }
+ else
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrStoreCount);
+
+ /*
+ * Optimization if the nested hypervisor is using the same guest-physical page for both
+ * the VM-entry MSR-load area as well as the VM-exit MSR store area.
+ */
+ PVMXAUTOMSR pMsrArea;
+ RTGCPHYS const GCPhysVmEntryMsrLoadArea = pVmcs->u64AddrEntryMsrLoad.u;
+ RTGCPHYS const GCPhysVmExitMsrStoreArea = pVmcs->u64AddrExitMsrStore.u;
+ if (GCPhysVmEntryMsrLoadArea == GCPhysVmExitMsrStoreArea)
+ pMsrArea = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pEntryMsrLoadArea);
+ else
+ {
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pExitMsrStoreArea),
+ GCPhysVmExitMsrStoreArea, cMsrs * sizeof(VMXAUTOMSR));
+ if (RT_SUCCESS(rc))
+ pMsrArea = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pExitMsrStoreArea);
+ else
+ {
+ AssertMsgFailed(("VM-exit: Failed to read MSR auto-store area at %#RGp, rc=%Rrc\n", GCPhysVmExitMsrStoreArea, rc));
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrStorePtrReadPhys);
+ }
+ }
+
+ /*
+ * Update VM-exit MSR store area.
+ */
+ PVMXAUTOMSR pMsr = pMsrArea;
+ Assert(pMsr);
+ for (uint32_t idxMsr = 0; idxMsr < cMsrs; idxMsr++, pMsr++)
+ {
+ if ( !pMsr->u32Reserved
+ && pMsr->u32Msr != MSR_IA32_SMBASE
+ && pMsr->u32Msr >> 8 != MSR_IA32_X2APIC_START >> 8)
+ {
+ VBOXSTRICTRC rcStrict = CPUMQueryGuestMsr(pVCpu, pMsr->u32Msr, &pMsr->u64Value);
+ if (rcStrict == VINF_SUCCESS)
+ continue;
+
+ /*
+ * If we're in ring-0, we cannot handle returns to ring-3 at this point and continue VM-exit.
+ * If any nested hypervisor loads MSRs that require ring-3 handling, we cause a VMX-abort
+ * recording the MSR index in the auxiliary info. field and indicated further by our
+ * own, specific diagnostic code. Later, we can try implement handling of the MSR in ring-0
+ * if possible, or come up with a better, generic solution.
+ */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uAbortAux = pMsr->u32Msr;
+ VMXVDIAG const enmDiag = rcStrict == VINF_CPUM_R3_MSR_READ
+ ? kVmxVDiag_Vmexit_MsrStoreRing3
+ : kVmxVDiag_Vmexit_MsrStore;
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, enmDiag);
+ }
+ else
+ {
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uAbortAux = pMsr->u32Msr;
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrStoreRsvd);
+ }
+ }
+
+ /*
+ * Commit the VM-exit MSR store are to guest memory.
+ */
+ int rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVmExitMsrStoreArea, pMsrArea, cMsrs * sizeof(VMXAUTOMSR));
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+
+ NOREF(uExitReason);
+ NOREF(pszFailure);
+
+ AssertMsgFailed(("VM-exit: Failed to write MSR auto-store area at %#RGp, rc=%Rrc\n", GCPhysVmExitMsrStoreArea, rc));
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrStorePtrWritePhys);
+}
+
+
+/**
+ * Performs a VMX abort (due to an fatal error during VM-exit).
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param enmAbort The VMX abort reason.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxAbort(PVMCPUCC pVCpu, VMXABORT enmAbort)
+{
+ /*
+ * Perform the VMX abort.
+ * See Intel spec. 27.7 "VMX Aborts".
+ */
+ LogFunc(("enmAbort=%u (%s) -> RESET\n", enmAbort, VMXGetAbortDesc(enmAbort)));
+
+ /* We don't support SMX yet. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmAbort = enmAbort;
+ if (IEM_VMX_HAS_CURRENT_VMCS(pVCpu))
+ {
+ RTGCPHYS const GCPhysVmcs = IEM_VMX_GET_CURRENT_VMCS(pVCpu);
+ uint32_t const offVmxAbort = RT_UOFFSETOF(VMXVVMCS, enmVmxAbort);
+ PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVmcs + offVmxAbort, &enmAbort, sizeof(enmAbort));
+ }
+
+ return VINF_EM_TRIPLE_FAULT;
+}
+
+
+/**
+ * Loads host control registers, debug registers and MSRs as part of VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmexitLoadHostControlRegsMsrs(PVMCPUCC pVCpu)
+{
+ /*
+ * Load host control registers, debug registers and MSRs.
+ * See Intel spec. 27.5.1 "Loading Host Control Registers, Debug Registers, MSRs".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ bool const fHostInLongMode = RT_BOOL(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE);
+
+ /* CR0. */
+ {
+ /* Bits 63:32, 28:19, 17, 15:6, ET, CD, NW and CR0 fixed bits are not modified. */
+ uint64_t const uCr0Mb1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
+ uint64_t const uCr0Mb0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
+ uint64_t const fCr0IgnMask = VMX_EXIT_HOST_CR0_IGNORE_MASK | uCr0Mb1 | ~uCr0Mb0;
+ uint64_t const uHostCr0 = pVmcs->u64HostCr0.u;
+ uint64_t const uGuestCr0 = pVCpu->cpum.GstCtx.cr0;
+ uint64_t const uValidHostCr0 = (uHostCr0 & ~fCr0IgnMask) | (uGuestCr0 & fCr0IgnMask);
+
+ /* Verify we have not modified CR0 fixed bits in VMX non-root operation. */
+ Assert((uGuestCr0 & uCr0Mb1) == uCr0Mb1);
+ Assert((uGuestCr0 & ~uCr0Mb0) == 0);
+ CPUMSetGuestCR0(pVCpu, uValidHostCr0);
+ }
+
+ /* CR4. */
+ {
+ /* CR4 fixed bits are not modified. */
+ uint64_t const uCr4Mb1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
+ uint64_t const uCr4Mb0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
+ uint64_t const fCr4IgnMask = uCr4Mb1 | ~uCr4Mb0;
+ uint64_t const uHostCr4 = pVmcs->u64HostCr4.u;
+ uint64_t const uGuestCr4 = pVCpu->cpum.GstCtx.cr4;
+ uint64_t uValidHostCr4 = (uHostCr4 & ~fCr4IgnMask) | (uGuestCr4 & fCr4IgnMask);
+ if (fHostInLongMode)
+ uValidHostCr4 |= X86_CR4_PAE;
+ else
+ uValidHostCr4 &= ~(uint64_t)X86_CR4_PCIDE;
+
+ /* Verify we have not modified CR4 fixed bits in VMX non-root operation. */
+ Assert((uGuestCr4 & uCr4Mb1) == uCr4Mb1);
+ Assert((uGuestCr4 & ~uCr4Mb0) == 0);
+ CPUMSetGuestCR4(pVCpu, uValidHostCr4);
+ }
+
+ /* CR3 (host value validated while checking host-state during VM-entry). */
+ pVCpu->cpum.GstCtx.cr3 = pVmcs->u64HostCr3.u;
+
+ /* DR7. */
+ pVCpu->cpum.GstCtx.dr[7] = X86_DR7_INIT_VAL;
+
+ /** @todo NSTVMX: Support IA32_DEBUGCTL MSR */
+
+ /* Save SYSENTER CS, ESP, EIP (host value validated while checking host-state during VM-entry). */
+ pVCpu->cpum.GstCtx.SysEnter.eip = pVmcs->u64HostSysenterEip.u;
+ pVCpu->cpum.GstCtx.SysEnter.esp = pVmcs->u64HostSysenterEsp.u;
+ pVCpu->cpum.GstCtx.SysEnter.cs = pVmcs->u32HostSysenterCs;
+
+ /* FS, GS bases are loaded later while we load host segment registers. */
+
+ /* EFER MSR (host value validated while checking host-state during VM-entry). */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_LOAD_EFER_MSR)
+ pVCpu->cpum.GstCtx.msrEFER = pVmcs->u64HostEferMsr.u;
+ else if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ if (fHostInLongMode)
+ pVCpu->cpum.GstCtx.msrEFER |= (MSR_K6_EFER_LMA | MSR_K6_EFER_LME);
+ else
+ pVCpu->cpum.GstCtx.msrEFER &= ~(MSR_K6_EFER_LMA | MSR_K6_EFER_LME);
+ }
+
+ /* We don't support IA32_PERF_GLOBAL_CTRL MSR yet. */
+
+ /* PAT MSR (host value is validated while checking host-state during VM-entry). */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_LOAD_PAT_MSR)
+ pVCpu->cpum.GstCtx.msrPAT = pVmcs->u64HostPatMsr.u;
+
+ /* We don't support IA32_BNDCFGS MSR yet. */
+}
+
+
+/**
+ * Loads host segment registers, GDTR, IDTR, LDTR and TR as part of VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmexitLoadHostSegRegs(PVMCPUCC pVCpu)
+{
+ /*
+ * Load host segment registers, GDTR, IDTR, LDTR and TR.
+ * See Intel spec. 27.5.2 "Loading Host Segment and Descriptor-Table Registers".
+ *
+ * Warning! Be careful to not touch fields that are reserved by VT-x,
+ * e.g. segment limit high bits stored in segment attributes (in bits 11:8).
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ bool const fHostInLongMode = RT_BOOL(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE);
+
+ /* CS, SS, ES, DS, FS, GS. */
+ for (unsigned iSegReg = 0; iSegReg < X86_SREG_COUNT; iSegReg++)
+ {
+ RTSEL const HostSel = iemVmxVmcsGetHostSelReg(pVmcs, iSegReg);
+ bool const fUnusable = RT_BOOL(HostSel == 0);
+ PCPUMSELREG pSelReg = &pVCpu->cpum.GstCtx.aSRegs[iSegReg];
+
+ /* Selector. */
+ pSelReg->Sel = HostSel;
+ pSelReg->ValidSel = HostSel;
+ pSelReg->fFlags = CPUMSELREG_FLAGS_VALID;
+
+ /* Limit. */
+ pSelReg->u32Limit = 0xffffffff;
+
+ /* Base. */
+ pSelReg->u64Base = 0;
+
+ /* Attributes. */
+ if (iSegReg == X86_SREG_CS)
+ {
+ pSelReg->Attr.n.u4Type = X86_SEL_TYPE_CODE | X86_SEL_TYPE_READ | X86_SEL_TYPE_ACCESSED;
+ pSelReg->Attr.n.u1DescType = 1;
+ pSelReg->Attr.n.u2Dpl = 0;
+ pSelReg->Attr.n.u1Present = 1;
+ pSelReg->Attr.n.u1Long = fHostInLongMode;
+ pSelReg->Attr.n.u1DefBig = !fHostInLongMode;
+ pSelReg->Attr.n.u1Granularity = 1;
+ Assert(!pSelReg->Attr.n.u1Unusable);
+ Assert(!fUnusable);
+ }
+ else
+ {
+ pSelReg->Attr.n.u4Type = X86_SEL_TYPE_RW | X86_SEL_TYPE_ACCESSED;
+ pSelReg->Attr.n.u1DescType = 1;
+ pSelReg->Attr.n.u2Dpl = 0;
+ pSelReg->Attr.n.u1Present = 1;
+ pSelReg->Attr.n.u1DefBig = 1;
+ pSelReg->Attr.n.u1Granularity = 1;
+ pSelReg->Attr.n.u1Unusable = fUnusable;
+ }
+ }
+
+ /* FS base. */
+ if ( !pVCpu->cpum.GstCtx.fs.Attr.n.u1Unusable
+ || fHostInLongMode)
+ {
+ Assert(X86_IS_CANONICAL(pVmcs->u64HostFsBase.u));
+ pVCpu->cpum.GstCtx.fs.u64Base = pVmcs->u64HostFsBase.u;
+ }
+
+ /* GS base. */
+ if ( !pVCpu->cpum.GstCtx.gs.Attr.n.u1Unusable
+ || fHostInLongMode)
+ {
+ Assert(X86_IS_CANONICAL(pVmcs->u64HostGsBase.u));
+ pVCpu->cpum.GstCtx.gs.u64Base = pVmcs->u64HostGsBase.u;
+ }
+
+ /* TR. */
+ Assert(X86_IS_CANONICAL(pVmcs->u64HostTrBase.u));
+ Assert(!pVCpu->cpum.GstCtx.tr.Attr.n.u1Unusable);
+ pVCpu->cpum.GstCtx.tr.Sel = pVmcs->HostTr;
+ pVCpu->cpum.GstCtx.tr.ValidSel = pVmcs->HostTr;
+ pVCpu->cpum.GstCtx.tr.fFlags = CPUMSELREG_FLAGS_VALID;
+ pVCpu->cpum.GstCtx.tr.u32Limit = X86_SEL_TYPE_SYS_386_TSS_LIMIT_MIN;
+ pVCpu->cpum.GstCtx.tr.u64Base = pVmcs->u64HostTrBase.u;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u4Type = X86_SEL_TYPE_SYS_386_TSS_BUSY;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u1DescType = 0;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u2Dpl = 0;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u1Present = 1;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u1DefBig = 0;
+ pVCpu->cpum.GstCtx.tr.Attr.n.u1Granularity = 0;
+
+ /* LDTR (Warning! do not touch the base and limits here). */
+ pVCpu->cpum.GstCtx.ldtr.Sel = 0;
+ pVCpu->cpum.GstCtx.ldtr.ValidSel = 0;
+ pVCpu->cpum.GstCtx.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
+ pVCpu->cpum.GstCtx.ldtr.Attr.u = X86DESCATTR_UNUSABLE;
+
+ /* GDTR. */
+ Assert(X86_IS_CANONICAL(pVmcs->u64HostGdtrBase.u));
+ pVCpu->cpum.GstCtx.gdtr.pGdt = pVmcs->u64HostGdtrBase.u;
+ pVCpu->cpum.GstCtx.gdtr.cbGdt = 0xffff;
+
+ /* IDTR.*/
+ Assert(X86_IS_CANONICAL(pVmcs->u64HostIdtrBase.u));
+ pVCpu->cpum.GstCtx.idtr.pIdt = pVmcs->u64HostIdtrBase.u;
+ pVCpu->cpum.GstCtx.idtr.cbIdt = 0xffff;
+}
+
+
+/**
+ * Checks host PDPTes as part of VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason (for logging purposes).
+ */
+IEM_STATIC int iemVmxVmexitCheckHostPdptes(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ /*
+ * Check host PDPTEs.
+ * See Intel spec. 27.5.4 "Checking and Loading Host Page-Directory-Pointer-Table Entries".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VMX-abort";
+ bool const fHostInLongMode = RT_BOOL(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE);
+
+ if ( (pVCpu->cpum.GstCtx.cr4 & X86_CR4_PAE)
+ && !fHostInLongMode)
+ {
+ uint64_t const uHostCr3 = pVCpu->cpum.GstCtx.cr3 & X86_CR3_PAE_PAGE_MASK;
+ X86PDPE aPdptes[X86_PG_PAE_PDPE_ENTRIES];
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)&aPdptes[0], uHostCr3, sizeof(aPdptes));
+ if (RT_SUCCESS(rc))
+ {
+ for (unsigned iPdpte = 0; iPdpte < RT_ELEMENTS(aPdptes); iPdpte++)
+ {
+ if ( !(aPdptes[iPdpte].u & X86_PDPE_P)
+ || !(aPdptes[iPdpte].u & X86_PDPE_PAE_MBZ_MASK))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmexitPdpteRsvd(iPdpte);
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, enmDiag);
+ }
+ }
+ }
+ else
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_HostPdpteCr3ReadPhys);
+ }
+
+ NOREF(pszFailure);
+ NOREF(uExitReason);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Loads the host MSRs from the VM-exit MSR-load area as part of VM-exit.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC int iemVmxVmexitLoadHostAutoMsrs(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ /*
+ * Load host MSRs.
+ * See Intel spec. 27.6 "Loading MSRs".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VMX-abort";
+
+ /*
+ * The VM-exit MSR-load area address need not be a valid guest-physical address if the
+ * VM-exit MSR load count is 0. If this is the case, bail early without reading it.
+ * See Intel spec. 24.7.2 "VM-Exit Controls for MSRs".
+ */
+ uint32_t const cMsrs = pVmcs->u32ExitMsrLoadCount;
+ if (!cMsrs)
+ return VINF_SUCCESS;
+
+ /*
+ * Verify the MSR auto-load count. Physical CPUs can behave unpredictably if the count
+ * is exceeded including possibly raising #MC exceptions during VMX transition. Our
+ * implementation causes a VMX-abort followed by a triple-fault.
+ */
+ bool const fIsMsrCountValid = iemVmxIsAutoMsrCountValid(pVCpu, cMsrs);
+ if (fIsMsrCountValid)
+ { /* likely */ }
+ else
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrLoadCount);
+
+ RTGCPHYS const GCPhysVmExitMsrLoadArea = pVmcs->u64AddrExitMsrLoad.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pExitMsrLoadArea),
+ GCPhysVmExitMsrLoadArea, cMsrs * sizeof(VMXAUTOMSR));
+ if (RT_SUCCESS(rc))
+ {
+ PCVMXAUTOMSR pMsr = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pExitMsrLoadArea);
+ Assert(pMsr);
+ for (uint32_t idxMsr = 0; idxMsr < cMsrs; idxMsr++, pMsr++)
+ {
+ if ( !pMsr->u32Reserved
+ && pMsr->u32Msr != MSR_K8_FS_BASE
+ && pMsr->u32Msr != MSR_K8_GS_BASE
+ && pMsr->u32Msr != MSR_K6_EFER
+ && pMsr->u32Msr != MSR_IA32_SMM_MONITOR_CTL
+ && pMsr->u32Msr >> 8 != MSR_IA32_X2APIC_START >> 8)
+ {
+ VBOXSTRICTRC rcStrict = CPUMSetGuestMsr(pVCpu, pMsr->u32Msr, pMsr->u64Value);
+ if (rcStrict == VINF_SUCCESS)
+ continue;
+
+ /*
+ * If we're in ring-0, we cannot handle returns to ring-3 at this point and continue VM-exit.
+ * If any nested hypervisor loads MSRs that require ring-3 handling, we cause a VMX-abort
+ * recording the MSR index in the auxiliary info. field and indicated further by our
+ * own, specific diagnostic code. Later, we can try implement handling of the MSR in ring-0
+ * if possible, or come up with a better, generic solution.
+ */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uAbortAux = pMsr->u32Msr;
+ VMXVDIAG const enmDiag = rcStrict == VINF_CPUM_R3_MSR_WRITE
+ ? kVmxVDiag_Vmexit_MsrLoadRing3
+ : kVmxVDiag_Vmexit_MsrLoad;
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, enmDiag);
+ }
+ else
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrLoadRsvd);
+ }
+ }
+ else
+ {
+ AssertMsgFailed(("VM-exit: Failed to read MSR auto-load area at %#RGp, rc=%Rrc\n", GCPhysVmExitMsrLoadArea, rc));
+ IEM_VMX_VMEXIT_FAILED_RET(pVCpu, uExitReason, pszFailure, kVmxVDiag_Vmexit_MsrLoadPtrReadPhys);
+ }
+
+ NOREF(uExitReason);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Loads the host state as part of VM-exit.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason (for logging purposes).
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitLoadHostState(PVMCPUCC pVCpu, uint32_t uExitReason)
+{
+ /*
+ * Load host state.
+ * See Intel spec. 27.5 "Loading Host State".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ bool const fHostInLongMode = RT_BOOL(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE);
+
+ /* We cannot return from a long-mode guest to a host that is not in long mode. */
+ if ( CPUMIsGuestInLongMode(pVCpu)
+ && !fHostInLongMode)
+ {
+ Log(("VM-exit from long-mode guest to host not in long-mode -> VMX-Abort\n"));
+ return iemVmxAbort(pVCpu, VMXABORT_HOST_NOT_IN_LONG_MODE);
+ }
+
+ iemVmxVmexitLoadHostControlRegsMsrs(pVCpu);
+ iemVmxVmexitLoadHostSegRegs(pVCpu);
+
+ /*
+ * Load host RIP, RSP and RFLAGS.
+ * See Intel spec. 27.5.3 "Loading Host RIP, RSP and RFLAGS"
+ */
+ pVCpu->cpum.GstCtx.rip = pVmcs->u64HostRip.u;
+ pVCpu->cpum.GstCtx.rsp = pVmcs->u64HostRsp.u;
+ pVCpu->cpum.GstCtx.rflags.u = X86_EFL_1;
+
+ /* Clear address range monitoring. */
+ EMMonitorWaitClear(pVCpu);
+
+ /* Perform the VMX transition (PGM updates). */
+ VBOXSTRICTRC rcStrict = iemVmxWorldSwitch(pVCpu);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ /* Check host PDPTEs (only when we've fully switched page tables_. */
+ /** @todo r=ramshankar: I don't know if PGM does this for us already or not... */
+ int rc = iemVmxVmexitCheckHostPdptes(pVCpu, uExitReason);
+ if (RT_FAILURE(rc))
+ {
+ Log(("VM-exit failed while restoring host PDPTEs -> VMX-Abort\n"));
+ return iemVmxAbort(pVCpu, VMXBOART_HOST_PDPTE);
+ }
+ }
+ else if (RT_SUCCESS(rcStrict))
+ {
+ Log3(("VM-exit: iemVmxWorldSwitch returns %Rrc (uExitReason=%u) -> Setting passup status\n", VBOXSTRICTRC_VAL(rcStrict),
+ uExitReason));
+ rcStrict = iemSetPassUpStatus(pVCpu, rcStrict);
+ }
+ else
+ {
+ Log3(("VM-exit: iemVmxWorldSwitch failed! rc=%Rrc (uExitReason=%u)\n", VBOXSTRICTRC_VAL(rcStrict), uExitReason));
+ return VBOXSTRICTRC_VAL(rcStrict);
+ }
+
+ Assert(rcStrict == VINF_SUCCESS);
+
+ /* Load MSRs from the VM-exit auto-load MSR area. */
+ int rc = iemVmxVmexitLoadHostAutoMsrs(pVCpu, uExitReason);
+ if (RT_FAILURE(rc))
+ {
+ Log(("VM-exit failed while loading host MSRs -> VMX-Abort\n"));
+ return iemVmxAbort(pVCpu, VMXABORT_LOAD_HOST_MSR);
+ }
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Gets VM-exit instruction information along with any displacement for an
+ * instruction VM-exit.
+ *
+ * @returns The VM-exit instruction information.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ * @param uInstrId The VM-exit instruction identity (VMXINSTRID_XXX).
+ * @param pGCPtrDisp Where to store the displacement field. Optional, can be
+ * NULL.
+ */
+IEM_STATIC uint32_t iemVmxGetExitInstrInfo(PVMCPUCC pVCpu, uint32_t uExitReason, VMXINSTRID uInstrId, PRTGCPTR pGCPtrDisp)
+{
+ RTGCPTR GCPtrDisp;
+ VMXEXITINSTRINFO ExitInstrInfo;
+ ExitInstrInfo.u = 0;
+
+ /*
+ * Get and parse the ModR/M byte from our decoded opcodes.
+ */
+ uint8_t bRm;
+ uint8_t const offModRm = pVCpu->iem.s.offModRm;
+ IEM_MODRM_GET_U8(pVCpu, bRm, offModRm);
+ if ((bRm & X86_MODRM_MOD_MASK) == (3 << X86_MODRM_MOD_SHIFT))
+ {
+ /*
+ * ModR/M indicates register addressing.
+ *
+ * The primary/secondary register operands are reported in the iReg1 or iReg2
+ * fields depending on whether it is a read/write form.
+ */
+ uint8_t idxReg1;
+ uint8_t idxReg2;
+ if (!VMXINSTRID_IS_MODRM_PRIMARY_OP_W(uInstrId))
+ {
+ idxReg1 = ((bRm >> X86_MODRM_REG_SHIFT) & X86_MODRM_REG_SMASK) | pVCpu->iem.s.uRexReg;
+ idxReg2 = (bRm & X86_MODRM_RM_MASK) | pVCpu->iem.s.uRexB;
+ }
+ else
+ {
+ idxReg1 = (bRm & X86_MODRM_RM_MASK) | pVCpu->iem.s.uRexB;
+ idxReg2 = ((bRm >> X86_MODRM_REG_SHIFT) & X86_MODRM_REG_SMASK) | pVCpu->iem.s.uRexReg;
+ }
+ ExitInstrInfo.All.u2Scaling = 0;
+ ExitInstrInfo.All.iReg1 = idxReg1;
+ ExitInstrInfo.All.u3AddrSize = pVCpu->iem.s.enmEffAddrMode;
+ ExitInstrInfo.All.fIsRegOperand = 1;
+ ExitInstrInfo.All.uOperandSize = pVCpu->iem.s.enmEffOpSize;
+ ExitInstrInfo.All.iSegReg = 0;
+ ExitInstrInfo.All.iIdxReg = 0;
+ ExitInstrInfo.All.fIdxRegInvalid = 1;
+ ExitInstrInfo.All.iBaseReg = 0;
+ ExitInstrInfo.All.fBaseRegInvalid = 1;
+ ExitInstrInfo.All.iReg2 = idxReg2;
+
+ /* Displacement not applicable for register addressing. */
+ GCPtrDisp = 0;
+ }
+ else
+ {
+ /*
+ * ModR/M indicates memory addressing.
+ */
+ uint8_t uScale = 0;
+ bool fBaseRegValid = false;
+ bool fIdxRegValid = false;
+ uint8_t iBaseReg = 0;
+ uint8_t iIdxReg = 0;
+ if (pVCpu->iem.s.enmEffAddrMode == IEMMODE_16BIT)
+ {
+ /*
+ * Parse the ModR/M, displacement for 16-bit addressing mode.
+ * See Intel instruction spec. Table 2-1. "16-Bit Addressing Forms with the ModR/M Byte".
+ */
+ uint16_t u16Disp = 0;
+ uint8_t const offDisp = offModRm + sizeof(bRm);
+ if ((bRm & (X86_MODRM_MOD_MASK | X86_MODRM_RM_MASK)) == 6)
+ {
+ /* Displacement without any registers. */
+ IEM_DISP_GET_U16(pVCpu, u16Disp, offDisp);
+ }
+ else
+ {
+ /* Register (index and base). */
+ switch (bRm & X86_MODRM_RM_MASK)
+ {
+ case 0: fBaseRegValid = true; iBaseReg = X86_GREG_xBX; fIdxRegValid = true; iIdxReg = X86_GREG_xSI; break;
+ case 1: fBaseRegValid = true; iBaseReg = X86_GREG_xBX; fIdxRegValid = true; iIdxReg = X86_GREG_xDI; break;
+ case 2: fBaseRegValid = true; iBaseReg = X86_GREG_xBP; fIdxRegValid = true; iIdxReg = X86_GREG_xSI; break;
+ case 3: fBaseRegValid = true; iBaseReg = X86_GREG_xBP; fIdxRegValid = true; iIdxReg = X86_GREG_xDI; break;
+ case 4: fIdxRegValid = true; iIdxReg = X86_GREG_xSI; break;
+ case 5: fIdxRegValid = true; iIdxReg = X86_GREG_xDI; break;
+ case 6: fBaseRegValid = true; iBaseReg = X86_GREG_xBP; break;
+ case 7: fBaseRegValid = true; iBaseReg = X86_GREG_xBX; break;
+ }
+
+ /* Register + displacement. */
+ switch ((bRm >> X86_MODRM_MOD_SHIFT) & X86_MODRM_MOD_SMASK)
+ {
+ case 0: break;
+ case 1: IEM_DISP_GET_S8_SX_U16(pVCpu, u16Disp, offDisp); break;
+ case 2: IEM_DISP_GET_U16(pVCpu, u16Disp, offDisp); break;
+ default:
+ {
+ /* Register addressing, handled at the beginning. */
+ AssertMsgFailed(("ModR/M %#x implies register addressing, memory addressing expected!", bRm));
+ break;
+ }
+ }
+ }
+
+ Assert(!uScale); /* There's no scaling/SIB byte for 16-bit addressing. */
+ GCPtrDisp = (int16_t)u16Disp; /* Sign-extend the displacement. */
+ }
+ else if (pVCpu->iem.s.enmEffAddrMode == IEMMODE_32BIT)
+ {
+ /*
+ * Parse the ModR/M, SIB, displacement for 32-bit addressing mode.
+ * See Intel instruction spec. Table 2-2. "32-Bit Addressing Forms with the ModR/M Byte".
+ */
+ uint32_t u32Disp = 0;
+ if ((bRm & (X86_MODRM_MOD_MASK | X86_MODRM_RM_MASK)) == 5)
+ {
+ /* Displacement without any registers. */
+ uint8_t const offDisp = offModRm + sizeof(bRm);
+ IEM_DISP_GET_U32(pVCpu, u32Disp, offDisp);
+ }
+ else
+ {
+ /* Register (and perhaps scale, index and base). */
+ uint8_t offDisp = offModRm + sizeof(bRm);
+ iBaseReg = (bRm & X86_MODRM_RM_MASK);
+ if (iBaseReg == 4)
+ {
+ /* An SIB byte follows the ModR/M byte, parse it. */
+ uint8_t bSib;
+ uint8_t const offSib = offModRm + sizeof(bRm);
+ IEM_SIB_GET_U8(pVCpu, bSib, offSib);
+
+ /* A displacement may follow SIB, update its offset. */
+ offDisp += sizeof(bSib);
+
+ /* Get the scale. */
+ uScale = (bSib >> X86_SIB_SCALE_SHIFT) & X86_SIB_SCALE_SMASK;
+
+ /* Get the index register. */
+ iIdxReg = (bSib >> X86_SIB_INDEX_SHIFT) & X86_SIB_INDEX_SMASK;
+ fIdxRegValid = RT_BOOL(iIdxReg != 4);
+
+ /* Get the base register. */
+ iBaseReg = bSib & X86_SIB_BASE_MASK;
+ fBaseRegValid = true;
+ if (iBaseReg == 5)
+ {
+ if ((bRm & X86_MODRM_MOD_MASK) == 0)
+ {
+ /* Mod is 0 implies a 32-bit displacement with no base. */
+ fBaseRegValid = false;
+ IEM_DISP_GET_U32(pVCpu, u32Disp, offDisp);
+ }
+ else
+ {
+ /* Mod is not 0 implies an 8-bit/32-bit displacement (handled below) with an EBP base. */
+ iBaseReg = X86_GREG_xBP;
+ }
+ }
+ }
+
+ /* Register + displacement. */
+ switch ((bRm >> X86_MODRM_MOD_SHIFT) & X86_MODRM_MOD_SMASK)
+ {
+ case 0: /* Handled above */ break;
+ case 1: IEM_DISP_GET_S8_SX_U32(pVCpu, u32Disp, offDisp); break;
+ case 2: IEM_DISP_GET_U32(pVCpu, u32Disp, offDisp); break;
+ default:
+ {
+ /* Register addressing, handled at the beginning. */
+ AssertMsgFailed(("ModR/M %#x implies register addressing, memory addressing expected!", bRm));
+ break;
+ }
+ }
+ }
+
+ GCPtrDisp = (int32_t)u32Disp; /* Sign-extend the displacement. */
+ }
+ else
+ {
+ Assert(pVCpu->iem.s.enmEffAddrMode == IEMMODE_64BIT);
+
+ /*
+ * Parse the ModR/M, SIB, displacement for 64-bit addressing mode.
+ * See Intel instruction spec. 2.2 "IA-32e Mode".
+ */
+ uint64_t u64Disp = 0;
+ bool const fRipRelativeAddr = RT_BOOL((bRm & (X86_MODRM_MOD_MASK | X86_MODRM_RM_MASK)) == 5);
+ if (fRipRelativeAddr)
+ {
+ /*
+ * RIP-relative addressing mode.
+ *
+ * The displacement is 32-bit signed implying an offset range of +/-2G.
+ * See Intel instruction spec. 2.2.1.6 "RIP-Relative Addressing".
+ */
+ uint8_t const offDisp = offModRm + sizeof(bRm);
+ IEM_DISP_GET_S32_SX_U64(pVCpu, u64Disp, offDisp);
+ }
+ else
+ {
+ uint8_t offDisp = offModRm + sizeof(bRm);
+
+ /*
+ * Register (and perhaps scale, index and base).
+ *
+ * REX.B extends the most-significant bit of the base register. However, REX.B
+ * is ignored while determining whether an SIB follows the opcode. Hence, we
+ * shall OR any REX.B bit -after- inspecting for an SIB byte below.
+ *
+ * See Intel instruction spec. Table 2-5. "Special Cases of REX Encodings".
+ */
+ iBaseReg = (bRm & X86_MODRM_RM_MASK);
+ if (iBaseReg == 4)
+ {
+ /* An SIB byte follows the ModR/M byte, parse it. Displacement (if any) follows SIB. */
+ uint8_t bSib;
+ uint8_t const offSib = offModRm + sizeof(bRm);
+ IEM_SIB_GET_U8(pVCpu, bSib, offSib);
+
+ /* Displacement may follow SIB, update its offset. */
+ offDisp += sizeof(bSib);
+
+ /* Get the scale. */
+ uScale = (bSib >> X86_SIB_SCALE_SHIFT) & X86_SIB_SCALE_SMASK;
+
+ /* Get the index. */
+ iIdxReg = ((bSib >> X86_SIB_INDEX_SHIFT) & X86_SIB_INDEX_SMASK) | pVCpu->iem.s.uRexIndex;
+ fIdxRegValid = RT_BOOL(iIdxReg != 4); /* R12 -can- be used as an index register. */
+
+ /* Get the base. */
+ iBaseReg = (bSib & X86_SIB_BASE_MASK);
+ fBaseRegValid = true;
+ if (iBaseReg == 5)
+ {
+ if ((bRm & X86_MODRM_MOD_MASK) == 0)
+ {
+ /* Mod is 0 implies a signed 32-bit displacement with no base. */
+ IEM_DISP_GET_S32_SX_U64(pVCpu, u64Disp, offDisp);
+ }
+ else
+ {
+ /* Mod is non-zero implies an 8-bit/32-bit displacement (handled below) with RBP or R13 as base. */
+ iBaseReg = pVCpu->iem.s.uRexB ? X86_GREG_x13 : X86_GREG_xBP;
+ }
+ }
+ }
+ iBaseReg |= pVCpu->iem.s.uRexB;
+
+ /* Register + displacement. */
+ switch ((bRm >> X86_MODRM_MOD_SHIFT) & X86_MODRM_MOD_SMASK)
+ {
+ case 0: /* Handled above */ break;
+ case 1: IEM_DISP_GET_S8_SX_U64(pVCpu, u64Disp, offDisp); break;
+ case 2: IEM_DISP_GET_S32_SX_U64(pVCpu, u64Disp, offDisp); break;
+ default:
+ {
+ /* Register addressing, handled at the beginning. */
+ AssertMsgFailed(("ModR/M %#x implies register addressing, memory addressing expected!", bRm));
+ break;
+ }
+ }
+ }
+
+ GCPtrDisp = fRipRelativeAddr ? pVCpu->cpum.GstCtx.rip + u64Disp : u64Disp;
+ }
+
+ /*
+ * The primary or secondary register operand is reported in iReg2 depending
+ * on whether the primary operand is in read/write form.
+ */
+ uint8_t idxReg2;
+ if (!VMXINSTRID_IS_MODRM_PRIMARY_OP_W(uInstrId))
+ {
+ idxReg2 = bRm & X86_MODRM_RM_MASK;
+ if (pVCpu->iem.s.enmEffAddrMode == IEMMODE_64BIT)
+ idxReg2 |= pVCpu->iem.s.uRexB;
+ }
+ else
+ {
+ idxReg2 = (bRm >> X86_MODRM_REG_SHIFT) & X86_MODRM_REG_SMASK;
+ if (pVCpu->iem.s.enmEffAddrMode == IEMMODE_64BIT)
+ idxReg2 |= pVCpu->iem.s.uRexReg;
+ }
+ ExitInstrInfo.All.u2Scaling = uScale;
+ ExitInstrInfo.All.iReg1 = 0; /* Not applicable for memory addressing. */
+ ExitInstrInfo.All.u3AddrSize = pVCpu->iem.s.enmEffAddrMode;
+ ExitInstrInfo.All.fIsRegOperand = 0;
+ ExitInstrInfo.All.uOperandSize = pVCpu->iem.s.enmEffOpSize;
+ ExitInstrInfo.All.iSegReg = pVCpu->iem.s.iEffSeg;
+ ExitInstrInfo.All.iIdxReg = iIdxReg;
+ ExitInstrInfo.All.fIdxRegInvalid = !fIdxRegValid;
+ ExitInstrInfo.All.iBaseReg = iBaseReg;
+ ExitInstrInfo.All.iIdxReg = !fBaseRegValid;
+ ExitInstrInfo.All.iReg2 = idxReg2;
+ }
+
+ /*
+ * Handle exceptions to the norm for certain instructions.
+ * (e.g. some instructions convey an instruction identity in place of iReg2).
+ */
+ switch (uExitReason)
+ {
+ case VMX_EXIT_GDTR_IDTR_ACCESS:
+ {
+ Assert(VMXINSTRID_IS_VALID(uInstrId));
+ Assert(VMXINSTRID_GET_ID(uInstrId) == (uInstrId & 0x3));
+ ExitInstrInfo.GdtIdt.u2InstrId = VMXINSTRID_GET_ID(uInstrId);
+ ExitInstrInfo.GdtIdt.u2Undef0 = 0;
+ break;
+ }
+
+ case VMX_EXIT_LDTR_TR_ACCESS:
+ {
+ Assert(VMXINSTRID_IS_VALID(uInstrId));
+ Assert(VMXINSTRID_GET_ID(uInstrId) == (uInstrId & 0x3));
+ ExitInstrInfo.LdtTr.u2InstrId = VMXINSTRID_GET_ID(uInstrId);
+ ExitInstrInfo.LdtTr.u2Undef0 = 0;
+ break;
+ }
+
+ case VMX_EXIT_RDRAND:
+ case VMX_EXIT_RDSEED:
+ {
+ Assert(ExitInstrInfo.RdrandRdseed.u2OperandSize != 3);
+ break;
+ }
+ }
+
+ /* Update displacement and return the constructed VM-exit instruction information field. */
+ if (pGCPtrDisp)
+ *pGCPtrDisp = GCPtrDisp;
+
+ return ExitInstrInfo.u;
+}
+
+
+/**
+ * VMX VM-exit handler.
+ *
+ * @returns Strict VBox status code.
+ * @retval VINF_VMX_VMEXIT when the VM-exit is successful.
+ * @retval VINF_EM_TRIPLE_FAULT when VM-exit is unsuccessful and leads to a
+ * triple-fault.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ * @param u64ExitQual The Exit qualification.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexit(PVMCPUCC pVCpu, uint32_t uExitReason, uint64_t u64ExitQual)
+{
+# if defined(VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM) && !defined(IN_RING3)
+ RT_NOREF3(pVCpu, uExitReason, u64ExitQual);
+ AssertMsgFailed(("VM-exit should only be invoked from ring-3 when nested-guest executes only in ring-3!\n"));
+ return VERR_IEM_IPE_7;
+# else
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /*
+ * Import all the guest-CPU state.
+ *
+ * HM on returning to guest execution would have to reset up a whole lot of state
+ * anyway, (e.g., VM-entry/VM-exit controls) and we do not ever import a part of
+ * the state and flag reloading the entire state on re-entry. So import the entire
+ * state here, see HMNotifyVmxNstGstVmexit() for more comments.
+ */
+ IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_ALL);
+
+ /*
+ * Ensure VM-entry interruption information valid bit is cleared.
+ *
+ * We do it here on every VM-exit so that even premature VM-exits (e.g. those caused
+ * by invalid-guest state or machine-check exceptions) also clear this bit.
+ *
+ * See Intel spec. 27.2 "Recording VM-exit Information And Updating VM-entry control fields".
+ */
+ if (VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo))
+ pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID;
+
+ /*
+ * Update the VM-exit reason and Exit qualification.
+ * Other VMCS read-only data fields are expected to be updated by the caller already.
+ */
+ pVmcs->u32RoExitReason = uExitReason;
+ pVmcs->u64RoExitQual.u = u64ExitQual;
+
+ Log3(("vmexit: reason=%#RX32 qual=%#RX64 cs:rip=%04x:%#RX64 cr0=%#RX64 cr3=%#RX64 cr4=%#RX64\n", uExitReason,
+ pVmcs->u64RoExitQual.u, pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.cr0,
+ pVCpu->cpum.GstCtx.cr3, pVCpu->cpum.GstCtx.cr4));
+
+ /*
+ * Update the IDT-vectoring information fields if the VM-exit is triggered during delivery of an event.
+ * See Intel spec. 27.2.4 "Information for VM Exits During Event Delivery".
+ */
+ {
+ uint8_t uVector;
+ uint32_t fFlags;
+ uint32_t uErrCode;
+ bool const fInEventDelivery = IEMGetCurrentXcpt(pVCpu, &uVector, &fFlags, &uErrCode, NULL /* puCr2 */);
+ if (fInEventDelivery)
+ {
+ /*
+ * A VM-exit is not considered to occur during event delivery when the VM-exit is
+ * caused by a triple-fault or the original event results in a double-fault that
+ * causes the VM exit directly (exception bitmap). Therefore, we must not set the
+ * original event information into the IDT-vectoring information fields.
+ *
+ * See Intel spec. 27.2.4 "Information for VM Exits During Event Delivery".
+ */
+ if ( uExitReason != VMX_EXIT_TRIPLE_FAULT
+ && ( uExitReason != VMX_EXIT_XCPT_OR_NMI
+ || !VMX_EXIT_INT_INFO_IS_XCPT_DF(pVmcs->u32RoExitIntInfo)))
+ {
+ uint8_t const uIdtVectoringType = iemVmxGetEventType(uVector, fFlags);
+ uint8_t const fErrCodeValid = RT_BOOL(fFlags & IEM_XCPT_FLAGS_ERR);
+ uint32_t const uIdtVectoringInfo = RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VECTOR, uVector)
+ | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_TYPE, uIdtVectoringType)
+ | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_ERR_CODE_VALID, fErrCodeValid)
+ | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VALID, 1);
+ iemVmxVmcsSetIdtVectoringInfo(pVCpu, uIdtVectoringInfo);
+ iemVmxVmcsSetIdtVectoringErrCode(pVCpu, uErrCode);
+ LogFlow(("vmexit: idt_info=%#RX32 idt_err_code=%#RX32 cr2=%#RX64\n", uIdtVectoringInfo, uErrCode,
+ pVCpu->cpum.GstCtx.cr2));
+ }
+ }
+ }
+
+ /* The following VMCS fields should always be zero since we don't support injecting SMIs into a guest. */
+ Assert(pVmcs->u64RoIoRcx.u == 0);
+ Assert(pVmcs->u64RoIoRsi.u == 0);
+ Assert(pVmcs->u64RoIoRdi.u == 0);
+ Assert(pVmcs->u64RoIoRip.u == 0);
+
+ /* We should not cause an NMI-window/interrupt-window VM-exit when injecting events as part of VM-entry. */
+ if (!CPUMIsGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx))
+ {
+ Assert(uExitReason != VMX_EXIT_NMI_WINDOW);
+ Assert(uExitReason != VMX_EXIT_INT_WINDOW);
+ }
+
+ /* For exception or NMI VM-exits the VM-exit interruption info. field must be valid. */
+ Assert(uExitReason != VMX_EXIT_XCPT_OR_NMI || VMX_EXIT_INT_INFO_IS_VALID(pVmcs->u32RoExitIntInfo));
+
+ /*
+ * Save the guest state back into the VMCS.
+ * We only need to save the state when the VM-entry was successful.
+ */
+ bool const fVmentryFailed = VMX_EXIT_REASON_HAS_ENTRY_FAILED(uExitReason);
+ if (!fVmentryFailed)
+ {
+ /*
+ * If we support storing EFER.LMA into IA32e-mode guest field on VM-exit, we need to do that now.
+ * See Intel spec. 27.2 "Recording VM-exit Information And Updating VM-entry Control".
+ *
+ * It is not clear from the Intel spec. if this is done only when VM-entry succeeds.
+ * If a VM-exit happens before loading guest EFER, we risk restoring the host EFER.LMA
+ * as guest-CPU state would not been modified. Hence for now, we do this only when
+ * the VM-entry succeeded.
+ */
+ /** @todo r=ramshankar: Figure out if this bit gets set to host EFER.LMA on real
+ * hardware when VM-exit fails during VM-entry (e.g. VERR_VMX_INVALID_GUEST_STATE). */
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxExitSaveEferLma)
+ {
+ if (pVCpu->cpum.GstCtx.msrEFER & MSR_K6_EFER_LMA)
+ pVmcs->u32EntryCtls |= VMX_ENTRY_CTLS_IA32E_MODE_GUEST;
+ else
+ pVmcs->u32EntryCtls &= ~VMX_ENTRY_CTLS_IA32E_MODE_GUEST;
+ }
+
+ /*
+ * The rest of the high bits of the VM-exit reason are only relevant when the VM-exit
+ * occurs in enclave mode/SMM which we don't support yet.
+ *
+ * If we ever add support for it, we can pass just the lower bits to the functions
+ * below, till then an assert should suffice.
+ */
+ Assert(!RT_HI_U16(uExitReason));
+
+ /* Save the guest state into the VMCS and restore guest MSRs from the auto-store guest MSR area. */
+ iemVmxVmexitSaveGuestState(pVCpu, uExitReason);
+ int rc = iemVmxVmexitSaveGuestAutoMsrs(pVCpu, uExitReason);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ return iemVmxAbort(pVCpu, VMXABORT_SAVE_GUEST_MSRS);
+
+ /* Clear any saved NMI-blocking state so we don't assert on next VM-entry (if it was in effect on the previous one). */
+ pVCpu->cpum.GstCtx.hwvirt.fLocalForcedActions &= ~VMCPU_FF_BLOCK_NMIS;
+ }
+ else
+ {
+ /* Restore the NMI-blocking state if VM-entry failed due to invalid guest state or while loading MSRs. */
+ uint32_t const uExitReasonBasic = VMX_EXIT_REASON_BASIC(uExitReason);
+ if ( uExitReasonBasic == VMX_EXIT_ERR_INVALID_GUEST_STATE
+ || uExitReasonBasic == VMX_EXIT_ERR_MSR_LOAD)
+ iemVmxVmexitRestoreNmiBlockingFF(pVCpu);
+ }
+
+ /*
+ * Stop any running VMX-preemption timer if necessary.
+ */
+ if (pVmcs->u32PinCtls & VMX_PIN_CTLS_PREEMPT_TIMER)
+ CPUMStopGuestVmxPremptTimer(pVCpu);
+
+ /*
+ * Clear any pending VMX nested-guest force-flags.
+ * These force-flags have no effect on (outer) guest execution and will
+ * be re-evaluated and setup on the next nested-guest VM-entry.
+ */
+ VMCPU_FF_CLEAR_MASK(pVCpu, VMCPU_FF_VMX_ALL_MASK);
+
+ /* Restore the host (outer guest) state. */
+ VBOXSTRICTRC rcStrict = iemVmxVmexitLoadHostState(pVCpu, uExitReason);
+ if (RT_SUCCESS(rcStrict))
+ {
+ Assert(rcStrict == VINF_SUCCESS);
+ rcStrict = VINF_VMX_VMEXIT;
+ }
+ else
+ Log3(("vmexit: Loading host-state failed. uExitReason=%u rc=%Rrc\n", uExitReason, VBOXSTRICTRC_VAL(rcStrict)));
+
+ /* We're no longer in nested-guest execution mode. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fInVmxNonRootMode = false;
+
+ /* Notify HM that the current VMCS fields have been modified. */
+ HMNotifyVmxNstGstCurrentVmcsChanged(pVCpu);
+
+ /* Notify HM that we've completed the VM-exit. */
+ HMNotifyVmxNstGstVmexit(pVCpu);
+
+# if defined(VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM) && defined(IN_RING3)
+ /* Revert any IEM-only nested-guest execution policy, otherwise return rcStrict. */
+ Log(("vmexit: Disabling IEM-only EM execution policy!\n"));
+ int rcSched = EMR3SetExecutionPolicy(pVCpu->CTX_SUFF(pVM)->pUVM, EMEXECPOLICY_IEM_ALL, false);
+ if (rcSched != VINF_SUCCESS)
+ iemSetPassUpStatus(pVCpu, rcSched);
+# endif
+ return rcStrict;
+# endif
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to instruction execution.
+ *
+ * This is intended for instructions where the caller provides all the relevant
+ * VM-exit information.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pExitInfo Pointer to the VM-exit information.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrWithInfo(PVMCPUCC pVCpu, PCVMXVEXITINFO pExitInfo)
+{
+ /*
+ * For instructions where any of the following fields are not applicable:
+ * - Exit qualification must be cleared.
+ * - VM-exit instruction info. is undefined.
+ * - Guest-linear address is undefined.
+ * - Guest-physical address is undefined.
+ *
+ * The VM-exit instruction length is mandatory for all VM-exits that are caused by
+ * instruction execution. For VM-exits that are not due to instruction execution this
+ * field is undefined.
+ *
+ * In our implementation in IEM, all undefined fields are generally cleared. However,
+ * if the caller supplies information (from say the physical CPU directly) it is
+ * then possible that the undefined fields are not cleared.
+ *
+ * See Intel spec. 27.2.1 "Basic VM-Exit Information".
+ * See Intel spec. 27.2.4 "Information for VM Exits Due to Instruction Execution".
+ */
+ Assert(pExitInfo);
+ AssertMsg(pExitInfo->uReason <= VMX_EXIT_MAX, ("uReason=%u\n", pExitInfo->uReason));
+ AssertMsg(pExitInfo->cbInstr >= 1 && pExitInfo->cbInstr <= 15,
+ ("uReason=%u cbInstr=%u\n", pExitInfo->uReason, pExitInfo->cbInstr));
+
+ /* Update all the relevant fields from the VM-exit instruction information struct. */
+ iemVmxVmcsSetExitInstrInfo(pVCpu, pExitInfo->InstrInfo.u);
+ iemVmxVmcsSetExitGuestLinearAddr(pVCpu, pExitInfo->u64GuestLinearAddr);
+ iemVmxVmcsSetExitGuestPhysAddr(pVCpu, pExitInfo->u64GuestPhysAddr);
+ iemVmxVmcsSetExitInstrLen(pVCpu, pExitInfo->cbInstr);
+
+ /* Perform the VM-exit. */
+ return iemVmxVmexit(pVCpu, pExitInfo->uReason, pExitInfo->u64Qual);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to instruction execution.
+ *
+ * This is intended for instructions that only provide the VM-exit instruction
+ * length.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstr(PVMCPUCC pVCpu, uint32_t uExitReason, uint8_t cbInstr)
+{
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = uExitReason;
+ ExitInfo.cbInstr = cbInstr;
+
+#ifdef VBOX_STRICT
+ /*
+ * To prevent us from shooting ourselves in the foot.
+ * The follow instructions should convey more than just the instruction length.
+ */
+ switch (uExitReason)
+ {
+ case VMX_EXIT_INVEPT:
+ case VMX_EXIT_INVPCID:
+ case VMX_EXIT_INVVPID:
+ case VMX_EXIT_LDTR_TR_ACCESS:
+ case VMX_EXIT_GDTR_IDTR_ACCESS:
+ case VMX_EXIT_VMCLEAR:
+ case VMX_EXIT_VMPTRLD:
+ case VMX_EXIT_VMPTRST:
+ case VMX_EXIT_VMREAD:
+ case VMX_EXIT_VMWRITE:
+ case VMX_EXIT_VMXON:
+ case VMX_EXIT_XRSTORS:
+ case VMX_EXIT_XSAVES:
+ case VMX_EXIT_RDRAND:
+ case VMX_EXIT_RDSEED:
+ case VMX_EXIT_IO_INSTR:
+ AssertMsgFailedReturn(("Use iemVmxVmexitInstrNeedsInfo for uExitReason=%u\n", uExitReason), VERR_IEM_IPE_5);
+ break;
+ }
+#endif
+
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to instruction execution.
+ *
+ * This is intended for instructions that have a ModR/M byte and update the VM-exit
+ * instruction information and Exit qualification fields.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason.
+ * @param uInstrid The instruction identity (VMXINSTRID_XXX).
+ * @param cbInstr The instruction length in bytes.
+ *
+ * @remarks Do not use this for INS/OUTS instruction.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrNeedsInfo(PVMCPUCC pVCpu, uint32_t uExitReason, VMXINSTRID uInstrId, uint8_t cbInstr)
+{
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = uExitReason;
+ ExitInfo.cbInstr = cbInstr;
+
+ /*
+ * Update the Exit qualification field with displacement bytes.
+ * See Intel spec. 27.2.1 "Basic VM-Exit Information".
+ */
+ switch (uExitReason)
+ {
+ case VMX_EXIT_INVEPT:
+ case VMX_EXIT_INVPCID:
+ case VMX_EXIT_INVVPID:
+ case VMX_EXIT_LDTR_TR_ACCESS:
+ case VMX_EXIT_GDTR_IDTR_ACCESS:
+ case VMX_EXIT_VMCLEAR:
+ case VMX_EXIT_VMPTRLD:
+ case VMX_EXIT_VMPTRST:
+ case VMX_EXIT_VMREAD:
+ case VMX_EXIT_VMWRITE:
+ case VMX_EXIT_VMXON:
+ case VMX_EXIT_XRSTORS:
+ case VMX_EXIT_XSAVES:
+ case VMX_EXIT_RDRAND:
+ case VMX_EXIT_RDSEED:
+ {
+ /* Construct the VM-exit instruction information. */
+ RTGCPTR GCPtrDisp;
+ uint32_t const uInstrInfo = iemVmxGetExitInstrInfo(pVCpu, uExitReason, uInstrId, &GCPtrDisp);
+
+ /* Update the VM-exit instruction information. */
+ ExitInfo.InstrInfo.u = uInstrInfo;
+
+ /* Update the Exit qualification. */
+ ExitInfo.u64Qual = GCPtrDisp;
+ break;
+ }
+
+ default:
+ AssertMsgFailedReturn(("Use instruction-specific handler\n"), VERR_IEM_IPE_5);
+ break;
+ }
+
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to INVLPG.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param GCPtrPage The guest-linear address of the page being invalidated.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrInvlpg(PVMCPUCC pVCpu, RTGCPTR GCPtrPage, uint8_t cbInstr)
+{
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_INVLPG;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = GCPtrPage;
+ Assert(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode || !RT_HI_U32(ExitInfo.u64Qual));
+
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to LMSW.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uGuestCr0 The current guest CR0.
+ * @param pu16NewMsw The machine-status word specified in LMSW's source
+ * operand. This will be updated depending on the VMX
+ * guest/host CR0 mask if LMSW is not intercepted.
+ * @param GCPtrEffDst The guest-linear address of the source operand in case
+ * of a memory operand. For register operand, pass
+ * NIL_RTGCPTR.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrLmsw(PVMCPUCC pVCpu, uint32_t uGuestCr0, uint16_t *pu16NewMsw, RTGCPTR GCPtrEffDst,
+ uint8_t cbInstr)
+{
+ Assert(pu16NewMsw);
+
+ uint16_t const uNewMsw = *pu16NewMsw;
+ if (CPUMIsGuestVmxLmswInterceptSet(&pVCpu->cpum.GstCtx, uNewMsw))
+ {
+ Log2(("lmsw: Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+
+ bool const fMemOperand = RT_BOOL(GCPtrEffDst != NIL_RTGCPTR);
+ if (fMemOperand)
+ {
+ Assert(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode || !RT_HI_U32(GCPtrEffDst));
+ ExitInfo.u64GuestLinearAddr = GCPtrEffDst;
+ }
+
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 0) /* CR0 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_LMSW)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_LMSW_OP, fMemOperand)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_LMSW_DATA, uNewMsw);
+
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ /*
+ * If LMSW did not cause a VM-exit, any CR0 bits in the range 0:3 that is set in the
+ * CR0 guest/host mask must be left unmodified.
+ *
+ * See Intel Spec. 25.3 "Changes To Instruction Behavior In VMX Non-root Operation".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ uint32_t const fGstHostMask = pVmcs->u64Cr0Mask.u;
+ uint32_t const fGstHostLmswMask = fGstHostMask & (X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
+ *pu16NewMsw = (uGuestCr0 & fGstHostLmswMask) | (uNewMsw & ~fGstHostLmswMask);
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to CLTS.
+ *
+ * @returns Strict VBox status code.
+ * @retval VINF_VMX_MODIFIES_BEHAVIOR if the CLTS instruction did not cause a
+ * VM-exit but must not modify the guest CR0.TS bit.
+ * @retval VINF_VMX_INTERCEPT_NOT_ACTIVE if the CLTS instruction did not cause a
+ * VM-exit and modification to the guest CR0.TS bit is allowed (subject to
+ * CR0 fixed bits in VMX operation).
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrClts(PVMCPUCC pVCpu, uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ uint32_t const fGstHostMask = pVmcs->u64Cr0Mask.u;
+ uint32_t const fReadShadow = pVmcs->u64Cr0ReadShadow.u;
+
+ /*
+ * If CR0.TS is owned by the host:
+ * - If CR0.TS is set in the read-shadow, we must cause a VM-exit.
+ * - If CR0.TS is cleared in the read-shadow, no VM-exit is caused and the
+ * CLTS instruction completes without clearing CR0.TS.
+ *
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ if (fGstHostMask & X86_CR0_TS)
+ {
+ if (fReadShadow & X86_CR0_TS)
+ {
+ Log2(("clts: Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 0) /* CR0 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_CLTS);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+ }
+
+ /*
+ * If CR0.TS is not owned by the host, the CLTS instructions operates normally
+ * and may modify CR0.TS (subject to CR0 fixed bits in VMX operation).
+ */
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov CR0,GReg' and 'Mov CR4,GReg'
+ * (CR0/CR4 write).
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param iCrReg The control register (either CR0 or CR4).
+ * @param uGuestCrX The current guest CR0/CR4.
+ * @param puNewCrX Pointer to the new CR0/CR4 value. Will be updated if no
+ * VM-exit is caused.
+ * @param iGReg The general register from which the CR0/CR4 value is being
+ * loaded.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovToCr0Cr4(PVMCPUCC pVCpu, uint8_t iCrReg, uint64_t *puNewCrX, uint8_t iGReg,
+ uint8_t cbInstr)
+{
+ Assert(puNewCrX);
+ Assert(iCrReg == 0 || iCrReg == 4);
+ Assert(iGReg < X86_GREG_COUNT);
+
+ uint64_t const uNewCrX = *puNewCrX;
+ if (CPUMIsGuestVmxMovToCr0Cr4InterceptSet(&pVCpu->cpum.GstCtx, iCrReg, uNewCrX))
+ {
+ Log2(("mov_Cr_Rd: (CR%u) Guest intercept -> VM-exit\n", iCrReg));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, iCrReg)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_WRITE)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ /*
+ * If the Mov-to-CR0/CR4 did not cause a VM-exit, any bits owned by the host
+ * must not be modified the instruction.
+ *
+ * See Intel Spec. 25.3 "Changes To Instruction Behavior In VMX Non-root Operation".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ uint64_t uGuestCrX;
+ uint64_t fGstHostMask;
+ if (iCrReg == 0)
+ {
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
+ uGuestCrX = pVCpu->cpum.GstCtx.cr0;
+ fGstHostMask = pVmcs->u64Cr0Mask.u;
+ }
+ else
+ {
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR4);
+ uGuestCrX = pVCpu->cpum.GstCtx.cr4;
+ fGstHostMask = pVmcs->u64Cr4Mask.u;
+ }
+
+ *puNewCrX = (uGuestCrX & fGstHostMask) | (*puNewCrX & ~fGstHostMask);
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov GReg,CR3' (CR3 read).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param iGReg The general register to which the CR3 value is being stored.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovFromCr3(PVMCPUCC pVCpu, uint8_t iGReg, uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(iGReg < X86_GREG_COUNT);
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR3);
+
+ /*
+ * If the CR3-store exiting control is set, we must cause a VM-exit.
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_CR3_STORE_EXIT)
+ {
+ Log2(("mov_Rd_Cr: (CR3) Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 3) /* CR3 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_READ)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov CR3,GReg' (CR3 write).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uNewCr3 The new CR3 value.
+ * @param iGReg The general register from which the CR3 value is being
+ * loaded.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovToCr3(PVMCPUCC pVCpu, uint64_t uNewCr3, uint8_t iGReg, uint8_t cbInstr)
+{
+ Assert(iGReg < X86_GREG_COUNT);
+
+ /*
+ * If the CR3-load exiting control is set and the new CR3 value does not
+ * match any of the CR3-target values in the VMCS, we must cause a VM-exit.
+ *
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ if (CPUMIsGuestVmxMovToCr3InterceptSet(pVCpu, uNewCr3))
+ {
+ Log2(("mov_Cr_Rd: (CR3) Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 3) /* CR3 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_WRITE)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov GReg,CR8' (CR8 read).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param iGReg The general register to which the CR8 value is being stored.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovFromCr8(PVMCPUCC pVCpu, uint8_t iGReg, uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(iGReg < X86_GREG_COUNT);
+
+ /*
+ * If the CR8-store exiting control is set, we must cause a VM-exit.
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_CR8_STORE_EXIT)
+ {
+ Log2(("mov_Rd_Cr: (CR8) Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 8) /* CR8 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_READ)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov CR8,GReg' (CR8 write).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param iGReg The general register from which the CR8 value is being
+ * loaded.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovToCr8(PVMCPUCC pVCpu, uint8_t iGReg, uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(iGReg < X86_GREG_COUNT);
+
+ /*
+ * If the CR8-load exiting control is set, we must cause a VM-exit.
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_CR8_LOAD_EXIT)
+ {
+ Log2(("mov_Cr_Rd: (CR8) Guest intercept -> VM-exit\n"));
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_CRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_REGISTER, 8) /* CR8 */
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_ACCESS, VMX_EXIT_QUAL_CRX_ACCESS_WRITE)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_CRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to 'Mov DRx,GReg' (DRx write) and 'Mov
+ * GReg,DRx' (DRx read).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uInstrid The instruction identity (VMXINSTRID_MOV_TO_DRX or
+ * VMXINSTRID_MOV_FROM_DRX).
+ * @param iDrReg The debug register being accessed.
+ * @param iGReg The general register to/from which the DRx value is being
+ * store/loaded.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMovDrX(PVMCPUCC pVCpu, VMXINSTRID uInstrId, uint8_t iDrReg, uint8_t iGReg,
+ uint8_t cbInstr)
+{
+ Assert(iDrReg <= 7);
+ Assert(uInstrId == VMXINSTRID_MOV_TO_DRX || uInstrId == VMXINSTRID_MOV_FROM_DRX);
+ Assert(iGReg < X86_GREG_COUNT);
+
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_MOV_DR_EXIT)
+ {
+ uint32_t const uDirection = uInstrId == VMXINSTRID_MOV_TO_DRX ? VMX_EXIT_QUAL_DRX_DIRECTION_WRITE
+ : VMX_EXIT_QUAL_DRX_DIRECTION_READ;
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MOV_DRX;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_DRX_REGISTER, iDrReg)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_DRX_DIRECTION, uDirection)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_DRX_GENREG, iGReg);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to I/O instructions (IN and OUT).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uInstrId The VM-exit instruction identity (VMXINSTRID_IO_IN or
+ * VMXINSTRID_IO_OUT).
+ * @param u16Port The I/O port being accessed.
+ * @param fImm Whether the I/O port was encoded using an immediate operand
+ * or the implicit DX register.
+ * @param cbAccess The size of the I/O access in bytes (1, 2 or 4 bytes).
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrIo(PVMCPUCC pVCpu, VMXINSTRID uInstrId, uint16_t u16Port, bool fImm, uint8_t cbAccess,
+ uint8_t cbInstr)
+{
+ Assert(uInstrId == VMXINSTRID_IO_IN || uInstrId == VMXINSTRID_IO_OUT);
+ Assert(cbAccess == 1 || cbAccess == 2 || cbAccess == 4);
+
+ bool const fIntercept = CPUMIsGuestVmxIoInterceptSet(pVCpu, u16Port, cbAccess);
+ if (fIntercept)
+ {
+ uint32_t const uDirection = uInstrId == VMXINSTRID_IO_IN ? VMX_EXIT_QUAL_IO_DIRECTION_IN
+ : VMX_EXIT_QUAL_IO_DIRECTION_OUT;
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_IO_INSTR;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_WIDTH, cbAccess - 1)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_DIRECTION, uDirection)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_ENCODING, fImm)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_PORT, u16Port);
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to string I/O instructions (INS and OUTS).
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uInstrId The VM-exit instruction identity (VMXINSTRID_IO_INS or
+ * VMXINSTRID_IO_OUTS).
+ * @param u16Port The I/O port being accessed.
+ * @param cbAccess The size of the I/O access in bytes (1, 2 or 4 bytes).
+ * @param fRep Whether the instruction has a REP prefix or not.
+ * @param ExitInstrInfo The VM-exit instruction info. field.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrStrIo(PVMCPUCC pVCpu, VMXINSTRID uInstrId, uint16_t u16Port, uint8_t cbAccess, bool fRep,
+ VMXEXITINSTRINFO ExitInstrInfo, uint8_t cbInstr)
+{
+ Assert(uInstrId == VMXINSTRID_IO_INS || uInstrId == VMXINSTRID_IO_OUTS);
+ Assert(cbAccess == 1 || cbAccess == 2 || cbAccess == 4);
+ Assert(ExitInstrInfo.StrIo.iSegReg < X86_SREG_COUNT);
+ Assert(ExitInstrInfo.StrIo.u3AddrSize == 0 || ExitInstrInfo.StrIo.u3AddrSize == 1 || ExitInstrInfo.StrIo.u3AddrSize == 2);
+ Assert(uInstrId != VMXINSTRID_IO_INS || ExitInstrInfo.StrIo.iSegReg == X86_SREG_ES);
+
+ bool const fIntercept = CPUMIsGuestVmxIoInterceptSet(pVCpu, u16Port, cbAccess);
+ if (fIntercept)
+ {
+ /*
+ * Figure out the guest-linear address and the direction bit (INS/OUTS).
+ */
+ /** @todo r=ramshankar: Is there something in IEM that already does this? */
+ static uint64_t const s_auAddrSizeMasks[] = { UINT64_C(0xffff), UINT64_C(0xffffffff), UINT64_C(0xffffffffffffffff) };
+ uint8_t const iSegReg = ExitInstrInfo.StrIo.iSegReg;
+ uint8_t const uAddrSize = ExitInstrInfo.StrIo.u3AddrSize;
+ uint64_t const uAddrSizeMask = s_auAddrSizeMasks[uAddrSize];
+
+ uint32_t uDirection;
+ uint64_t uGuestLinearAddr;
+ if (uInstrId == VMXINSTRID_IO_INS)
+ {
+ uDirection = VMX_EXIT_QUAL_IO_DIRECTION_IN;
+ uGuestLinearAddr = pVCpu->cpum.GstCtx.aSRegs[iSegReg].u64Base + (pVCpu->cpum.GstCtx.rdi & uAddrSizeMask);
+ }
+ else
+ {
+ uDirection = VMX_EXIT_QUAL_IO_DIRECTION_OUT;
+ uGuestLinearAddr = pVCpu->cpum.GstCtx.aSRegs[iSegReg].u64Base + (pVCpu->cpum.GstCtx.rsi & uAddrSizeMask);
+ }
+
+ /*
+ * If the segment is unusable, the guest-linear address in undefined.
+ * We shall clear it for consistency.
+ *
+ * See Intel spec. 27.2.1 "Basic VM-Exit Information".
+ */
+ if (pVCpu->cpum.GstCtx.aSRegs[iSegReg].Attr.n.u1Unusable)
+ uGuestLinearAddr = 0;
+
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_IO_INSTR;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64GuestLinearAddr = uGuestLinearAddr;
+ ExitInfo.u64Qual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_WIDTH, cbAccess - 1)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_DIRECTION, uDirection)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_IS_STRING, 1)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_IS_REP, fRep)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_ENCODING, VMX_EXIT_QUAL_IO_ENCODING_DX)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_IO_PORT, u16Port);
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxInsOutInfo)
+ ExitInfo.InstrInfo = ExitInstrInfo;
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to MWAIT.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param fMonitorHwArmed Whether the address-range monitor hardware is armed.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrMwait(PVMCPUCC pVCpu, bool fMonitorHwArmed, uint8_t cbInstr)
+{
+ VMXVEXITINFO ExitInfo;
+ RT_ZERO(ExitInfo);
+ ExitInfo.uReason = VMX_EXIT_MWAIT;
+ ExitInfo.cbInstr = cbInstr;
+ ExitInfo.u64Qual = fMonitorHwArmed;
+ return iemVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to PAUSE.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitInstrPause(PVMCPUCC pVCpu, uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /*
+ * The PAUSE VM-exit is controlled by the "PAUSE exiting" control and the
+ * "PAUSE-loop exiting" control.
+ *
+ * The PLE-Gap is the maximum number of TSC ticks between two successive executions of
+ * the PAUSE instruction before we cause a VM-exit. The PLE-Window is the maximum amount
+ * of TSC ticks the guest is allowed to execute in a pause loop before we must cause
+ * a VM-exit.
+ *
+ * See Intel spec. 24.6.13 "Controls for PAUSE-Loop Exiting".
+ * See Intel spec. 25.1.3 "Instructions That Cause VM Exits Conditionally".
+ */
+ bool fIntercept = false;
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_PAUSE_EXIT)
+ fIntercept = true;
+ else if ( (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_PAUSE_LOOP_EXIT)
+ && pVCpu->iem.s.uCpl == 0)
+ {
+ IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_HWVIRT);
+
+ /*
+ * A previous-PAUSE-tick value of 0 is used to identify the first time
+ * execution of a PAUSE instruction after VM-entry at CPL 0. We must
+ * consider this to be the first execution of PAUSE in a loop according
+ * to the Intel.
+ *
+ * All subsequent records for the previous-PAUSE-tick we ensure that it
+ * cannot be zero by OR'ing 1 to rule out the TSC wrap-around cases at 0.
+ */
+ uint64_t *puFirstPauseLoopTick = &pVCpu->cpum.GstCtx.hwvirt.vmx.uFirstPauseLoopTick;
+ uint64_t *puPrevPauseTick = &pVCpu->cpum.GstCtx.hwvirt.vmx.uPrevPauseTick;
+ uint64_t const uTick = TMCpuTickGet(pVCpu);
+ uint32_t const uPleGap = pVmcs->u32PleGap;
+ uint32_t const uPleWindow = pVmcs->u32PleWindow;
+ if ( *puPrevPauseTick == 0
+ || uTick - *puPrevPauseTick > uPleGap)
+ *puFirstPauseLoopTick = uTick;
+ else if (uTick - *puFirstPauseLoopTick > uPleWindow)
+ fIntercept = true;
+
+ *puPrevPauseTick = uTick | 1;
+ }
+
+ if (fIntercept)
+ return iemVmxVmexitInstr(pVCpu, VMX_EXIT_PAUSE, cbInstr);
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to task switches.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param enmTaskSwitch The cause of the task switch.
+ * @param SelNewTss The selector of the new TSS.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitTaskSwitch(PVMCPUCC pVCpu, IEMTASKSWITCH enmTaskSwitch, RTSEL SelNewTss, uint8_t cbInstr)
+{
+ /*
+ * Task-switch VM-exits are unconditional and provide the Exit qualification.
+ *
+ * If the cause of the task switch is due to execution of CALL, IRET or the JMP
+ * instruction or delivery of the exception generated by one of these instructions
+ * lead to a task switch through a task gate in the IDT, we need to provide the
+ * VM-exit instruction length. Any other means of invoking a task switch VM-exit
+ * leaves the VM-exit instruction length field undefined.
+ *
+ * See Intel spec. 25.2 "Other Causes Of VM Exits".
+ * See Intel spec. 27.2.4 "Information for VM Exits Due to Instruction Execution".
+ */
+ Assert(cbInstr <= 15);
+
+ uint8_t uType;
+ switch (enmTaskSwitch)
+ {
+ case IEMTASKSWITCH_CALL: uType = VMX_EXIT_QUAL_TASK_SWITCH_TYPE_CALL; break;
+ case IEMTASKSWITCH_IRET: uType = VMX_EXIT_QUAL_TASK_SWITCH_TYPE_IRET; break;
+ case IEMTASKSWITCH_JUMP: uType = VMX_EXIT_QUAL_TASK_SWITCH_TYPE_JMP; break;
+ case IEMTASKSWITCH_INT_XCPT: uType = VMX_EXIT_QUAL_TASK_SWITCH_TYPE_IDT; break;
+ IEM_NOT_REACHED_DEFAULT_CASE_RET();
+ }
+
+ uint64_t const u64ExitQual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_TASK_SWITCH_NEW_TSS, SelNewTss)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_TASK_SWITCH_SOURCE, uType);
+ iemVmxVmcsSetExitInstrLen(pVCpu, cbInstr);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_TASK_SWITCH, u64ExitQual);
+}
+
+
+/**
+ * VMX VM-exit handler for trap-like VM-exits.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pExitInfo Pointer to the VM-exit information.
+ * @param pExitEventInfo Pointer to the VM-exit event information.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitTrapLikeWithInfo(PVMCPUCC pVCpu, PCVMXVEXITINFO pExitInfo)
+{
+ Assert(VMXIsVmexitTrapLike(pExitInfo->uReason));
+ iemVmxVmcsSetGuestPendingDbgXcpts(pVCpu, pExitInfo->u64GuestPendingDbgXcpts);
+ return iemVmxVmexit(pVCpu, pExitInfo->uReason, pExitInfo->u64Qual);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to task switches.
+ *
+ * This is intended for task switches where the caller provides all the relevant
+ * VM-exit information.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pExitInfo Pointer to the VM-exit information.
+ * @param pExitEventInfo Pointer to the VM-exit event information.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitTaskSwitchWithInfo(PVMCPUCC pVCpu, PCVMXVEXITINFO pExitInfo,
+ PCVMXVEXITEVENTINFO pExitEventInfo)
+{
+ Assert(pExitInfo->uReason == VMX_EXIT_TASK_SWITCH);
+ iemVmxVmcsSetExitInstrLen(pVCpu, pExitInfo->cbInstr);
+ iemVmxVmcsSetIdtVectoringInfo(pVCpu, pExitEventInfo->uIdtVectoringInfo);
+ iemVmxVmcsSetIdtVectoringErrCode(pVCpu, pExitEventInfo->uIdtVectoringErrCode);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_TASK_SWITCH, pExitInfo->u64Qual);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to expiring of the preemption timer.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitPreemptTimer(PVMCPUCC pVCpu)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_PREEMPT_TIMER));
+ Assert(pVmcs->u32PinCtls & VMX_PIN_CTLS_PREEMPT_TIMER);
+
+ /* Import the hardware virtualization state (for nested-guest VM-entry TSC-tick). */
+ IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_HWVIRT);
+
+ /* Save the VMX-preemption timer value (of 0) back in to the VMCS if the CPU supports this feature. */
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_SAVE_PREEMPT_TIMER)
+ pVmcs->u32PreemptTimer = 0;
+
+ /* Cause the VMX-preemption timer VM-exit. The Exit qualification MBZ. */
+ return iemVmxVmexit(pVCpu, VMX_EXIT_PREEMPT_TIMER, 0 /* u64ExitQual */);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to external interrupts.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uVector The external interrupt vector (pass 0 if the interrupt
+ * is still pending since we typically won't know the
+ * vector).
+ * @param fIntPending Whether the external interrupt is pending or
+ * acknowledged in the interrupt controller.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitExtInt(PVMCPUCC pVCpu, uint8_t uVector, bool fIntPending)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(!fIntPending || uVector == 0);
+
+ /* The VM-exit is subject to "External interrupt exiting" being set. */
+ if (pVmcs->u32PinCtls & VMX_PIN_CTLS_EXT_INT_EXIT)
+ {
+ if (fIntPending)
+ {
+ /*
+ * If the interrupt is pending and we don't need to acknowledge the
+ * interrupt on VM-exit, cause the VM-exit immediately.
+ *
+ * See Intel spec 25.2 "Other Causes Of VM Exits".
+ */
+ if (!(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_ACK_EXT_INT))
+ return iemVmxVmexit(pVCpu, VMX_EXIT_EXT_INT, 0 /* u64ExitQual */);
+
+ /*
+ * If the interrupt is pending and we -do- need to acknowledge the interrupt
+ * on VM-exit, postpone VM-exit till after the interrupt controller has been
+ * acknowledged that the interrupt has been consumed. Callers would have to call
+ * us again after getting the vector (and ofc, with fIntPending with false).
+ */
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+ }
+
+ /*
+ * If the interrupt is no longer pending (i.e. it has been acknowledged) and the
+ * "External interrupt exiting" and "Acknowledge interrupt on VM-exit" controls are
+ * all set, we need to record the vector of the external interrupt in the
+ * VM-exit interruption information field. Otherwise, mark this field as invalid.
+ *
+ * See Intel spec. 27.2.2 "Information for VM Exits Due to Vectored Events".
+ */
+ uint32_t uExitIntInfo;
+ if (pVmcs->u32ExitCtls & VMX_EXIT_CTLS_ACK_EXT_INT)
+ {
+ bool const fNmiUnblocking = pVCpu->cpum.GstCtx.hwvirt.vmx.fNmiUnblockingIret;
+ uExitIntInfo = RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, uVector)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_EXT_INT)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_NMI_UNBLOCK_IRET, fNmiUnblocking)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1);
+ }
+ else
+ uExitIntInfo = 0;
+ iemVmxVmcsSetExitIntInfo(pVCpu, uExitIntInfo);
+
+ /*
+ * Cause the VM-exit whether or not the vector has been stored
+ * in the VM-exit interruption-information field.
+ */
+ return iemVmxVmexit(pVCpu, VMX_EXIT_EXT_INT, 0 /* u64ExitQual */);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to a double fault caused during delivery of
+ * an event.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitEventDoubleFault(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ uint32_t const fXcptBitmap = pVmcs->u32XcptBitmap;
+ if (fXcptBitmap & RT_BIT(X86_XCPT_DF))
+ {
+ /*
+ * The NMI-unblocking due to IRET field need not be set for double faults.
+ * See Intel spec. 31.7.1.2 "Resuming Guest Software After Handling An Exception".
+ */
+ uint32_t const uExitIntInfo = RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, X86_XCPT_DF)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_HW_XCPT)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_ERR_CODE_VALID, 1)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_NMI_UNBLOCK_IRET, 0)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1);
+ iemVmxVmcsSetExitIntInfo(pVCpu, uExitIntInfo);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_XCPT_OR_NMI, 0 /* u64ExitQual */);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exit due to delivery of an events.
+ *
+ * This is intended for VM-exit due to exceptions or NMIs where the caller provides
+ * all the relevant VM-exit information.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pExitInfo Pointer to the VM-exit information.
+ * @param pExitEventInfo Pointer to the VM-exit event information.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitEventWithInfo(PVMCPUCC pVCpu, PCVMXVEXITINFO pExitInfo, PCVMXVEXITEVENTINFO pExitEventInfo)
+{
+ Assert(pExitInfo);
+ Assert(pExitEventInfo);
+ Assert(pExitInfo->uReason == VMX_EXIT_XCPT_OR_NMI);
+ Assert(VMX_EXIT_INT_INFO_IS_VALID(pExitEventInfo->uExitIntInfo));
+
+ iemVmxVmcsSetExitInstrLen(pVCpu, pExitInfo->cbInstr);
+ iemVmxVmcsSetExitIntInfo(pVCpu, pExitEventInfo->uExitIntInfo);
+ iemVmxVmcsSetExitIntErrCode(pVCpu, pExitEventInfo->uExitIntErrCode);
+ iemVmxVmcsSetIdtVectoringInfo(pVCpu, pExitEventInfo->uIdtVectoringInfo);
+ iemVmxVmcsSetIdtVectoringErrCode(pVCpu, pExitEventInfo->uIdtVectoringErrCode);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_XCPT_OR_NMI, pExitInfo->u64Qual);
+}
+
+
+/**
+ * VMX VM-exit handler for VM-exits due to delivery of an event.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uVector The interrupt / exception vector.
+ * @param fFlags The flags (see IEM_XCPT_FLAGS_XXX).
+ * @param uErrCode The error code associated with the event.
+ * @param uCr2 The CR2 value in case of a \#PF exception.
+ * @param cbInstr The instruction length in bytes.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitEvent(PVMCPUCC pVCpu, uint8_t uVector, uint32_t fFlags, uint32_t uErrCode, uint64_t uCr2,
+ uint8_t cbInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /*
+ * If the event is being injected as part of VM-entry, it is -not- subject to event
+ * intercepts in the nested-guest. However, secondary exceptions that occur during
+ * injection of any event -are- subject to event interception.
+ *
+ * See Intel spec. 26.5.1.2 "VM Exits During Event Injection".
+ */
+ if (!CPUMIsGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx))
+ {
+ /*
+ * If the event is a virtual-NMI (which is an NMI being inject during VM-entry)
+ * virtual-NMI blocking must be set in effect rather than physical NMI blocking.
+ *
+ * See Intel spec. 24.6.1 "Pin-Based VM-Execution Controls".
+ */
+ if ( uVector == X86_XCPT_NMI
+ && (fFlags & IEM_XCPT_FLAGS_T_CPU_XCPT)
+ && (pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI))
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking = true;
+ else
+ Assert(!pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking);
+
+ CPUMSetGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx, true);
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+ }
+
+ /*
+ * We are injecting an external interrupt, check if we need to cause a VM-exit now.
+ * If not, the caller will continue delivery of the external interrupt as it would
+ * normally. The interrupt is no longer pending in the interrupt controller at this
+ * point.
+ */
+ if (fFlags & IEM_XCPT_FLAGS_T_EXT_INT)
+ {
+ Assert(!VMX_IDT_VECTORING_INFO_IS_VALID(pVmcs->u32RoIdtVectoringInfo));
+ return iemVmxVmexitExtInt(pVCpu, uVector, false /* fIntPending */);
+ }
+
+ /*
+ * Evaluate intercepts for hardware exceptions, software exceptions (#BP, #OF),
+ * and privileged software exceptions (#DB generated by INT1/ICEBP) and software
+ * interrupts.
+ */
+ Assert(fFlags & (IEM_XCPT_FLAGS_T_CPU_XCPT | IEM_XCPT_FLAGS_T_SOFT_INT));
+ bool fIntercept;
+ if ( !(fFlags & IEM_XCPT_FLAGS_T_SOFT_INT)
+ || (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR)))
+ {
+ fIntercept = CPUMIsGuestVmxXcptInterceptSet(&pVCpu->cpum.GstCtx, uVector, uErrCode);
+ }
+ else
+ {
+ /* Software interrupts cannot be intercepted and therefore do not cause a VM-exit. */
+ fIntercept = false;
+ }
+
+ /*
+ * Now that we've determined whether the event causes a VM-exit, we need to construct the
+ * relevant VM-exit information and cause the VM-exit.
+ */
+ if (fIntercept)
+ {
+ Assert(!(fFlags & IEM_XCPT_FLAGS_T_EXT_INT));
+
+ /* Construct the rest of the event related information fields and cause the VM-exit. */
+ uint64_t u64ExitQual;
+ if (uVector == X86_XCPT_PF)
+ {
+ Assert(fFlags & IEM_XCPT_FLAGS_CR2);
+ u64ExitQual = uCr2;
+ }
+ else if (uVector == X86_XCPT_DB)
+ {
+ IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_DR6);
+ u64ExitQual = pVCpu->cpum.GstCtx.dr[6] & VMX_VMCS_EXIT_QUAL_VALID_MASK;
+ }
+ else
+ u64ExitQual = 0;
+
+ uint8_t const fNmiUnblocking = pVCpu->cpum.GstCtx.hwvirt.vmx.fNmiUnblockingIret;
+ bool const fErrCodeValid = RT_BOOL(fFlags & IEM_XCPT_FLAGS_ERR);
+ uint8_t const uIntInfoType = iemVmxGetEventType(uVector, fFlags);
+ uint32_t const uExitIntInfo = RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, uVector)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, uIntInfoType)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_ERR_CODE_VALID, fErrCodeValid)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_NMI_UNBLOCK_IRET, fNmiUnblocking)
+ | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1);
+ iemVmxVmcsSetExitIntInfo(pVCpu, uExitIntInfo);
+ iemVmxVmcsSetExitIntErrCode(pVCpu, uErrCode);
+
+ /*
+ * For VM-exits due to software exceptions (those generated by INT3 or INTO) or privileged
+ * software exceptions (those generated by INT1/ICEBP) we need to supply the VM-exit instruction
+ * length.
+ */
+ if ( (fFlags & IEM_XCPT_FLAGS_T_SOFT_INT)
+ || (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR)))
+ iemVmxVmcsSetExitInstrLen(pVCpu, cbInstr);
+ else
+ iemVmxVmcsSetExitInstrLen(pVCpu, 0);
+
+ return iemVmxVmexit(pVCpu, VMX_EXIT_XCPT_OR_NMI, u64ExitQual);
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * VMX VM-exit handler for APIC accesses.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offAccess The offset of the register being accessed.
+ * @param fAccess The type of access (must contain IEM_ACCESS_TYPE_READ or
+ * IEM_ACCESS_TYPE_WRITE or IEM_ACCESS_INSTRUCTION).
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitApicAccess(PVMCPUCC pVCpu, uint16_t offAccess, uint32_t fAccess)
+{
+ Assert((fAccess & IEM_ACCESS_TYPE_READ) || (fAccess & IEM_ACCESS_TYPE_WRITE) || (fAccess & IEM_ACCESS_INSTRUCTION));
+
+ VMXAPICACCESS enmAccess;
+ bool const fInEventDelivery = IEMGetCurrentXcpt(pVCpu, NULL, NULL, NULL, NULL);
+ if (fInEventDelivery)
+ enmAccess = VMXAPICACCESS_LINEAR_EVENT_DELIVERY;
+ else if (fAccess & IEM_ACCESS_INSTRUCTION)
+ enmAccess = VMXAPICACCESS_LINEAR_INSTR_FETCH;
+ else if (fAccess & IEM_ACCESS_TYPE_WRITE)
+ enmAccess = VMXAPICACCESS_LINEAR_WRITE;
+ else
+ enmAccess = VMXAPICACCESS_LINEAR_READ;
+
+ uint64_t const u64ExitQual = RT_BF_MAKE(VMX_BF_EXIT_QUAL_APIC_ACCESS_OFFSET, offAccess)
+ | RT_BF_MAKE(VMX_BF_EXIT_QUAL_APIC_ACCESS_TYPE, enmAccess);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_APIC_ACCESS, u64ExitQual);
+}
+
+
+/**
+ * VMX VM-exit handler for APIC accesses.
+ *
+ * This is intended for APIC accesses where the caller provides all the
+ * relevant VM-exit information.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pExitInfo Pointer to the VM-exit information.
+ * @param pExitEventInfo Pointer to the VM-exit event information.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitApicAccessWithInfo(PVMCPUCC pVCpu, PCVMXVEXITINFO pExitInfo,
+ PCVMXVEXITEVENTINFO pExitEventInfo)
+{
+ /* VM-exit interruption information should not be valid for APIC-access VM-exits. */
+ Assert(!VMX_EXIT_INT_INFO_IS_VALID(pExitEventInfo->uExitIntInfo));
+ Assert(pExitInfo->uReason == VMX_EXIT_APIC_ACCESS);
+ iemVmxVmcsSetExitIntInfo(pVCpu, 0);
+ iemVmxVmcsSetExitIntErrCode(pVCpu, 0);
+ iemVmxVmcsSetExitInstrLen(pVCpu, pExitInfo->cbInstr);
+ iemVmxVmcsSetIdtVectoringInfo(pVCpu, pExitEventInfo->uIdtVectoringInfo);
+ iemVmxVmcsSetIdtVectoringErrCode(pVCpu, pExitEventInfo->uIdtVectoringErrCode);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_APIC_ACCESS, pExitInfo->u64Qual);
+}
+
+
+/**
+ * VMX VM-exit handler for APIC-write VM-exits.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offApic The write to the virtual-APIC page offset that caused this
+ * VM-exit.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmexitApicWrite(PVMCPUCC pVCpu, uint16_t offApic)
+{
+ Assert(offApic < XAPIC_OFF_END + 4);
+ /* Write only bits 11:0 of the APIC offset into the Exit qualification field. */
+ offApic &= UINT16_C(0xfff);
+ return iemVmxVmexit(pVCpu, VMX_EXIT_APIC_WRITE, offApic);
+}
+
+
+/**
+ * Sets virtual-APIC write emulation as pending.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offApic The offset in the virtual-APIC page that was written.
+ */
+DECLINLINE(void) iemVmxVirtApicSetPendingWrite(PVMCPUCC pVCpu, uint16_t offApic)
+{
+ Assert(offApic < XAPIC_OFF_END + 4);
+
+ /*
+ * Record the currently updated APIC offset, as we need this later for figuring
+ * out whether to perform TPR, EOI or self-IPI virtualization as well as well
+ * as for supplying the exit qualification when causing an APIC-write VM-exit.
+ */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.offVirtApicWrite = offApic;
+
+ /*
+ * Flag that we need to perform virtual-APIC write emulation (TPR/PPR/EOI/Self-IPI
+ * virtualization or APIC-write emulation).
+ */
+ if (!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_APIC_WRITE))
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_APIC_WRITE);
+}
+
+
+/**
+ * Clears any pending virtual-APIC write emulation.
+ *
+ * @returns The virtual-APIC offset that was written before clearing it.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+DECLINLINE(uint16_t) iemVmxVirtApicClearPendingWrite(PVMCPUCC pVCpu)
+{
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_HWVIRT);
+ uint8_t const offVirtApicWrite = pVCpu->cpum.GstCtx.hwvirt.vmx.offVirtApicWrite;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.offVirtApicWrite = 0;
+ Assert(VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_APIC_WRITE));
+ VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_VMX_APIC_WRITE);
+ return offVirtApicWrite;
+}
+
+
+/**
+ * Reads a 32-bit register from the virtual-APIC page at the given offset.
+ *
+ * @returns The register from the virtual-APIC page.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the register being read.
+ */
+IEM_STATIC uint32_t iemVmxVirtApicReadRaw32(PVMCPUCC pVCpu, uint16_t offReg)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(offReg <= VMX_V_VIRT_APIC_SIZE - sizeof(uint32_t));
+
+ uint32_t uReg;
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &uReg, GCPhysVirtApic + offReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to read %u bytes at offset %#x of the virtual-APIC page at %#RGp\n", sizeof(uReg), offReg,
+ GCPhysVirtApic));
+ uReg = 0;
+ }
+ return uReg;
+}
+
+
+/**
+ * Reads a 64-bit register from the virtual-APIC page at the given offset.
+ *
+ * @returns The register from the virtual-APIC page.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the register being read.
+ */
+IEM_STATIC uint64_t iemVmxVirtApicReadRaw64(PVMCPUCC pVCpu, uint16_t offReg)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(offReg <= VMX_V_VIRT_APIC_SIZE - sizeof(uint64_t));
+
+ uint64_t uReg;
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &uReg, GCPhysVirtApic + offReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to read %u bytes at offset %#x of the virtual-APIC page at %#RGp\n", sizeof(uReg), offReg,
+ GCPhysVirtApic));
+ uReg = 0;
+ }
+ return uReg;
+}
+
+
+/**
+ * Writes a 32-bit register to the virtual-APIC page at the given offset.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the register being written.
+ * @param uReg The register value to write.
+ */
+IEM_STATIC void iemVmxVirtApicWriteRaw32(PVMCPUCC pVCpu, uint16_t offReg, uint32_t uReg)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(offReg <= VMX_V_VIRT_APIC_SIZE - sizeof(uint32_t));
+
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVirtApic + offReg, &uReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to write %u bytes at offset %#x of the virtual-APIC page at %#RGp\n", sizeof(uReg), offReg,
+ GCPhysVirtApic));
+ }
+}
+
+
+/**
+ * Writes a 64-bit register to the virtual-APIC page at the given offset.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the register being written.
+ * @param uReg The register value to write.
+ */
+IEM_STATIC void iemVmxVirtApicWriteRaw64(PVMCPUCC pVCpu, uint16_t offReg, uint64_t uReg)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(offReg <= VMX_V_VIRT_APIC_SIZE - sizeof(uint64_t));
+
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVirtApic + offReg, &uReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to write %u bytes at offset %#x of the virtual-APIC page at %#RGp\n", sizeof(uReg), offReg,
+ GCPhysVirtApic));
+ }
+}
+
+
+/**
+ * Sets the vector in a virtual-APIC 256-bit sparse register.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the 256-bit spare register.
+ * @param uVector The vector to set.
+ *
+ * @remarks This is based on our APIC device code.
+ */
+IEM_STATIC void iemVmxVirtApicSetVectorInReg(PVMCPUCC pVCpu, uint16_t offReg, uint8_t uVector)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /* Determine the vector offset within the chunk. */
+ uint16_t const offVector = (uVector & UINT32_C(0xe0)) >> 1;
+
+ /* Read the chunk at the offset. */
+ uint32_t uReg;
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &uReg, GCPhysVirtApic + offReg + offVector, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ {
+ /* Modify the chunk. */
+ uint16_t const idxVectorBit = uVector & UINT32_C(0x1f);
+ uReg |= RT_BIT(idxVectorBit);
+
+ /* Write the chunk. */
+ rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVirtApic + offReg + offVector, &uReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to set vector %#x in 256-bit register at %#x of the virtual-APIC page at %#RGp\n",
+ uVector, offReg, GCPhysVirtApic));
+ }
+ }
+ else
+ {
+ AssertMsgFailed(("Failed to get vector %#x in 256-bit register at %#x of the virtual-APIC page at %#RGp\n",
+ uVector, offReg, GCPhysVirtApic));
+ }
+}
+
+
+/**
+ * Clears the vector in a virtual-APIC 256-bit sparse register.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the 256-bit spare register.
+ * @param uVector The vector to clear.
+ *
+ * @remarks This is based on our APIC device code.
+ */
+IEM_STATIC void iemVmxVirtApicClearVectorInReg(PVMCPUCC pVCpu, uint16_t offReg, uint8_t uVector)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /* Determine the vector offset within the chunk. */
+ uint16_t const offVector = (uVector & UINT32_C(0xe0)) >> 1;
+
+ /* Read the chunk at the offset. */
+ uint32_t uReg;
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &uReg, GCPhysVirtApic + offReg + offVector, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ {
+ /* Modify the chunk. */
+ uint16_t const idxVectorBit = uVector & UINT32_C(0x1f);
+ uReg &= ~RT_BIT(idxVectorBit);
+
+ /* Write the chunk. */
+ rc = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVirtApic + offReg + offVector, &uReg, sizeof(uReg));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ AssertMsgFailed(("Failed to clear vector %#x in 256-bit register at %#x of the virtual-APIC page at %#RGp\n",
+ uVector, offReg, GCPhysVirtApic));
+ }
+ }
+ else
+ {
+ AssertMsgFailed(("Failed to get vector %#x in 256-bit register at %#x of the virtual-APIC page at %#RGp\n",
+ uVector, offReg, GCPhysVirtApic));
+ }
+}
+
+
+/**
+ * Checks if a memory access to the APIC-access page must causes an APIC-access
+ * VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offAccess The offset of the register being accessed.
+ * @param cbAccess The size of the access in bytes.
+ * @param fAccess The type of access (must be IEM_ACCESS_TYPE_READ or
+ * IEM_ACCESS_TYPE_WRITE).
+ *
+ * @remarks This must not be used for MSR-based APIC-access page accesses!
+ * @sa iemVmxVirtApicAccessMsrWrite, iemVmxVirtApicAccessMsrRead.
+ */
+IEM_STATIC bool iemVmxVirtApicIsMemAccessIntercepted(PVMCPUCC pVCpu, uint16_t offAccess, size_t cbAccess, uint32_t fAccess)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(fAccess == IEM_ACCESS_TYPE_READ || fAccess == IEM_ACCESS_TYPE_WRITE);
+
+ /*
+ * We must cause a VM-exit if any of the following are true:
+ * - TPR shadowing isn't active.
+ * - The access size exceeds 32-bits.
+ * - The access is not contained within low 4 bytes of a 16-byte aligned offset.
+ *
+ * See Intel spec. 29.4.2 "Virtualizing Reads from the APIC-Access Page".
+ * See Intel spec. 29.4.3.1 "Determining Whether a Write Access is Virtualized".
+ */
+ if ( !(pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW)
+ || cbAccess > sizeof(uint32_t)
+ || ((offAccess + cbAccess - 1) & 0xc)
+ || offAccess >= XAPIC_OFF_END + 4)
+ return true;
+
+ /*
+ * If the access is part of an operation where we have already
+ * virtualized a virtual-APIC write, we must cause a VM-exit.
+ */
+ if (VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_APIC_WRITE))
+ return true;
+
+ /*
+ * Check write accesses to the APIC-access page that cause VM-exits.
+ */
+ if (fAccess & IEM_ACCESS_TYPE_WRITE)
+ {
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_APIC_REG_VIRT)
+ {
+ /*
+ * With APIC-register virtualization, a write access to any of the
+ * following registers are virtualized. Accessing any other register
+ * causes a VM-exit.
+ */
+ uint16_t const offAlignedAccess = offAccess & 0xfffc;
+ switch (offAlignedAccess)
+ {
+ case XAPIC_OFF_ID:
+ case XAPIC_OFF_TPR:
+ case XAPIC_OFF_EOI:
+ case XAPIC_OFF_LDR:
+ case XAPIC_OFF_DFR:
+ case XAPIC_OFF_SVR:
+ case XAPIC_OFF_ESR:
+ case XAPIC_OFF_ICR_LO:
+ case XAPIC_OFF_ICR_HI:
+ case XAPIC_OFF_LVT_TIMER:
+ case XAPIC_OFF_LVT_THERMAL:
+ case XAPIC_OFF_LVT_PERF:
+ case XAPIC_OFF_LVT_LINT0:
+ case XAPIC_OFF_LVT_LINT1:
+ case XAPIC_OFF_LVT_ERROR:
+ case XAPIC_OFF_TIMER_ICR:
+ case XAPIC_OFF_TIMER_DCR:
+ break;
+ default:
+ return true;
+ }
+ }
+ else if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY)
+ {
+ /*
+ * With virtual-interrupt delivery, a write access to any of the
+ * following registers are virtualized. Accessing any other register
+ * causes a VM-exit.
+ *
+ * Note! The specification does not allow writing to offsets in-between
+ * these registers (e.g. TPR + 1 byte) unlike read accesses.
+ */
+ switch (offAccess)
+ {
+ case XAPIC_OFF_TPR:
+ case XAPIC_OFF_EOI:
+ case XAPIC_OFF_ICR_LO:
+ break;
+ default:
+ return true;
+ }
+ }
+ else
+ {
+ /*
+ * Without APIC-register virtualization or virtual-interrupt delivery,
+ * only TPR accesses are virtualized.
+ */
+ if (offAccess == XAPIC_OFF_TPR)
+ { /* likely */ }
+ else
+ return true;
+ }
+ }
+ else
+ {
+ /*
+ * Check read accesses to the APIC-access page that cause VM-exits.
+ */
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_APIC_REG_VIRT)
+ {
+ /*
+ * With APIC-register virtualization, a read access to any of the
+ * following registers are virtualized. Accessing any other register
+ * causes a VM-exit.
+ */
+ uint16_t const offAlignedAccess = offAccess & 0xfffc;
+ switch (offAlignedAccess)
+ {
+ /** @todo r=ramshankar: What about XAPIC_OFF_LVT_CMCI? */
+ case XAPIC_OFF_ID:
+ case XAPIC_OFF_VERSION:
+ case XAPIC_OFF_TPR:
+ case XAPIC_OFF_EOI:
+ case XAPIC_OFF_LDR:
+ case XAPIC_OFF_DFR:
+ case XAPIC_OFF_SVR:
+ case XAPIC_OFF_ISR0: case XAPIC_OFF_ISR1: case XAPIC_OFF_ISR2: case XAPIC_OFF_ISR3:
+ case XAPIC_OFF_ISR4: case XAPIC_OFF_ISR5: case XAPIC_OFF_ISR6: case XAPIC_OFF_ISR7:
+ case XAPIC_OFF_TMR0: case XAPIC_OFF_TMR1: case XAPIC_OFF_TMR2: case XAPIC_OFF_TMR3:
+ case XAPIC_OFF_TMR4: case XAPIC_OFF_TMR5: case XAPIC_OFF_TMR6: case XAPIC_OFF_TMR7:
+ case XAPIC_OFF_IRR0: case XAPIC_OFF_IRR1: case XAPIC_OFF_IRR2: case XAPIC_OFF_IRR3:
+ case XAPIC_OFF_IRR4: case XAPIC_OFF_IRR5: case XAPIC_OFF_IRR6: case XAPIC_OFF_IRR7:
+ case XAPIC_OFF_ESR:
+ case XAPIC_OFF_ICR_LO:
+ case XAPIC_OFF_ICR_HI:
+ case XAPIC_OFF_LVT_TIMER:
+ case XAPIC_OFF_LVT_THERMAL:
+ case XAPIC_OFF_LVT_PERF:
+ case XAPIC_OFF_LVT_LINT0:
+ case XAPIC_OFF_LVT_LINT1:
+ case XAPIC_OFF_LVT_ERROR:
+ case XAPIC_OFF_TIMER_ICR:
+ case XAPIC_OFF_TIMER_DCR:
+ break;
+ default:
+ return true;
+ }
+ }
+ else
+ {
+ /* Without APIC-register virtualization, only TPR accesses are virtualized. */
+ if (offAccess == XAPIC_OFF_TPR)
+ { /* likely */ }
+ else
+ return true;
+ }
+ }
+
+ /* The APIC access is virtualized, does not cause a VM-exit. */
+ return false;
+}
+
+
+/**
+ * Virtualizes a memory-based APIC access where the address is not used to access
+ * memory.
+ *
+ * This is for instructions like MONITOR, CLFLUSH, CLFLUSHOPT, ENTER which may cause
+ * page-faults but do not use the address to access memory.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pGCPhysAccess Pointer to the guest-physical address used.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVirtApicAccessUnused(PVMCPUCC pVCpu, PRTGCPHYS pGCPhysAccess)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS);
+ Assert(pGCPhysAccess);
+
+ RTGCPHYS const GCPhysAccess = *pGCPhysAccess & ~(RTGCPHYS)PAGE_OFFSET_MASK;
+ RTGCPHYS const GCPhysApic = pVmcs->u64AddrApicAccess.u;
+ Assert(!(GCPhysApic & PAGE_OFFSET_MASK));
+
+ if (GCPhysAccess == GCPhysApic)
+ {
+ uint16_t const offAccess = *pGCPhysAccess & PAGE_OFFSET_MASK;
+ uint32_t const fAccess = IEM_ACCESS_TYPE_READ;
+ uint16_t const cbAccess = 1;
+ bool const fIntercept = iemVmxVirtApicIsMemAccessIntercepted(pVCpu, offAccess, cbAccess, fAccess);
+ if (fIntercept)
+ return iemVmxVmexitApicAccess(pVCpu, offAccess, fAccess);
+
+ *pGCPhysAccess = GCPhysApic | offAccess;
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * Virtualizes a memory-based APIC access.
+ *
+ * @returns VBox strict status code.
+ * @retval VINF_VMX_MODIFIES_BEHAVIOR if the access was virtualized.
+ * @retval VINF_VMX_VMEXIT if the access causes a VM-exit.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offAccess The offset of the register being accessed (within the
+ * APIC-access page).
+ * @param cbAccess The size of the access in bytes.
+ * @param pvData Pointer to the data being written or where to store the data
+ * being read.
+ * @param fAccess The type of access (must contain IEM_ACCESS_TYPE_READ or
+ * IEM_ACCESS_TYPE_WRITE or IEM_ACCESS_INSTRUCTION).
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVirtApicAccessMem(PVMCPUCC pVCpu, uint16_t offAccess, size_t cbAccess, void *pvData,
+ uint32_t fAccess)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS); NOREF(pVmcs);
+ Assert(pvData);
+ Assert( (fAccess & IEM_ACCESS_TYPE_READ)
+ || (fAccess & IEM_ACCESS_TYPE_WRITE)
+ || (fAccess & IEM_ACCESS_INSTRUCTION));
+
+ bool const fIntercept = iemVmxVirtApicIsMemAccessIntercepted(pVCpu, offAccess, cbAccess, fAccess);
+ if (fIntercept)
+ return iemVmxVmexitApicAccess(pVCpu, offAccess, fAccess);
+
+ if (fAccess & IEM_ACCESS_TYPE_WRITE)
+ {
+ /*
+ * A write access to the APIC-access page that is virtualized (rather than
+ * causing a VM-exit) writes data to the virtual-APIC page.
+ */
+ uint32_t const u32Data = *(uint32_t *)pvData;
+ iemVmxVirtApicWriteRaw32(pVCpu, offAccess, u32Data);
+
+ /*
+ * Record the currently updated APIC offset, as we need this later for figuring
+ * out whether to perform TPR, EOI or self-IPI virtualization as well as well
+ * as for supplying the exit qualification when causing an APIC-write VM-exit.
+ *
+ * After completion of the current operation, we need to perform TPR virtualization,
+ * EOI virtualization or APIC-write VM-exit depending on which register was written.
+ *
+ * The current operation may be a REP-prefixed string instruction, execution of any
+ * other instruction, or delivery of an event through the IDT.
+ *
+ * Thus things like clearing bytes 3:1 of the VTPR, clearing VEOI are not to be
+ * performed now but later after completion of the current operation.
+ *
+ * See Intel spec. 29.4.3.2 "APIC-Write Emulation".
+ */
+ iemVmxVirtApicSetPendingWrite(pVCpu, offAccess);
+ }
+ else
+ {
+ /*
+ * A read access from the APIC-access page that is virtualized (rather than
+ * causing a VM-exit) returns data from the virtual-APIC page.
+ *
+ * See Intel spec. 29.4.2 "Virtualizing Reads from the APIC-Access Page".
+ */
+ Assert(cbAccess <= 4);
+ Assert(offAccess < XAPIC_OFF_END + 4);
+ static uint32_t const s_auAccessSizeMasks[] = { 0, 0xff, 0xffff, 0xffffff, 0xffffffff };
+
+ uint32_t u32Data = iemVmxVirtApicReadRaw32(pVCpu, offAccess);
+ u32Data &= s_auAccessSizeMasks[cbAccess];
+ *(uint32_t *)pvData = u32Data;
+ }
+
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+}
+
+
+/**
+ * Virtualizes an MSR-based APIC read access.
+ *
+ * @returns VBox strict status code.
+ * @retval VINF_VMX_MODIFIES_BEHAVIOR if the MSR read was virtualized.
+ * @retval VINF_VMX_INTERCEPT_NOT_ACTIVE if the MSR read access must be
+ * handled by the x2APIC device.
+ * @retval VERR_OUT_RANGE if the MSR read was supposed to be virtualized but was
+ * not within the range of valid MSRs, caller must raise \#GP(0).
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param idMsr The x2APIC MSR being read.
+ * @param pu64Value Where to store the read x2APIC MSR value (only valid when
+ * VINF_VMX_MODIFIES_BEHAVIOR is returned).
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVirtApicAccessMsrRead(PVMCPUCC pVCpu, uint32_t idMsr, uint64_t *pu64Value)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_X2APIC_MODE);
+ Assert(pu64Value);
+
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_APIC_REG_VIRT)
+ {
+ if ( idMsr >= MSR_IA32_X2APIC_START
+ && idMsr <= MSR_IA32_X2APIC_END)
+ {
+ uint16_t const offReg = (idMsr & 0xff) << 4;
+ uint64_t const u64Value = iemVmxVirtApicReadRaw64(pVCpu, offReg);
+ *pu64Value = u64Value;
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+ }
+ return VERR_OUT_OF_RANGE;
+ }
+
+ if (idMsr == MSR_IA32_X2APIC_TPR)
+ {
+ uint16_t const offReg = (idMsr & 0xff) << 4;
+ uint64_t const u64Value = iemVmxVirtApicReadRaw64(pVCpu, offReg);
+ *pu64Value = u64Value;
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * Virtualizes an MSR-based APIC write access.
+ *
+ * @returns VBox strict status code.
+ * @retval VINF_VMX_MODIFIES_BEHAVIOR if the MSR write was virtualized.
+ * @retval VERR_OUT_RANGE if the MSR read was supposed to be virtualized but was
+ * not within the range of valid MSRs, caller must raise \#GP(0).
+ * @retval VINF_VMX_INTERCEPT_NOT_ACTIVE if the MSR must be written normally.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param idMsr The x2APIC MSR being written.
+ * @param u64Value The value of the x2APIC MSR being written.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVirtApicAccessMsrWrite(PVMCPUCC pVCpu, uint32_t idMsr, uint64_t u64Value)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /*
+ * Check if the access is to be virtualized.
+ * See Intel spec. 29.5 "Virtualizing MSR-based APIC Accesses".
+ */
+ if ( idMsr == MSR_IA32_X2APIC_TPR
+ || ( (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY)
+ && ( idMsr == MSR_IA32_X2APIC_EOI
+ || idMsr == MSR_IA32_X2APIC_SELF_IPI)))
+ {
+ /* Validate the MSR write depending on the register. */
+ switch (idMsr)
+ {
+ case MSR_IA32_X2APIC_TPR:
+ case MSR_IA32_X2APIC_SELF_IPI:
+ {
+ if (u64Value & UINT64_C(0xffffffffffffff00))
+ return VERR_OUT_OF_RANGE;
+ break;
+ }
+ case MSR_IA32_X2APIC_EOI:
+ {
+ if (u64Value != 0)
+ return VERR_OUT_OF_RANGE;
+ break;
+ }
+ }
+
+ /* Write the MSR to the virtual-APIC page. */
+ uint16_t const offReg = (idMsr & 0xff) << 4;
+ iemVmxVirtApicWriteRaw64(pVCpu, offReg, u64Value);
+
+ /*
+ * Record the currently updated APIC offset, as we need this later for figuring
+ * out whether to perform TPR, EOI or self-IPI virtualization as well as well
+ * as for supplying the exit qualification when causing an APIC-write VM-exit.
+ */
+ iemVmxVirtApicSetPendingWrite(pVCpu, offReg);
+
+ return VINF_VMX_MODIFIES_BEHAVIOR;
+ }
+
+ return VINF_VMX_INTERCEPT_NOT_ACTIVE;
+}
+
+
+/**
+ * Finds the most significant set bit in a virtual-APIC 256-bit sparse register.
+ *
+ * @returns VBox status code.
+ * @retval VINF_SUCCESS when the highest set bit is found.
+ * @retval VERR_NOT_FOUND when no bit is set.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param offReg The offset of the APIC 256-bit sparse register.
+ * @param pidxHighestBit Where to store the highest bit (most significant bit)
+ * set in the register. Only valid when VINF_SUCCESS is
+ * returned.
+ *
+ * @remarks The format of the 256-bit sparse register here mirrors that found in
+ * real APIC hardware.
+ */
+static int iemVmxVirtApicGetHighestSetBitInReg(PVMCPUCC pVCpu, uint16_t offReg, uint8_t *pidxHighestBit)
+{
+ Assert(offReg < XAPIC_OFF_END + 4);
+ Assert(pidxHighestBit);
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs));
+
+ /*
+ * There are 8 contiguous fragments (of 16-bytes each) in the sparse register.
+ * However, in each fragment only the first 4 bytes are used.
+ */
+ uint8_t const cFrags = 8;
+ for (int8_t iFrag = cFrags; iFrag >= 0; iFrag--)
+ {
+ uint16_t const offFrag = iFrag * 16;
+ uint32_t const u32Frag = iemVmxVirtApicReadRaw32(pVCpu, offReg + offFrag);
+ if (!u32Frag)
+ continue;
+
+ unsigned idxHighestBit = ASMBitLastSetU32(u32Frag);
+ Assert(idxHighestBit > 0);
+ --idxHighestBit;
+ Assert(idxHighestBit <= UINT8_MAX);
+ *pidxHighestBit = idxHighestBit;
+ return VINF_SUCCESS;
+ }
+ return VERR_NOT_FOUND;
+}
+
+
+/**
+ * Evaluates pending virtual interrupts.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxEvalPendingVirtIntrs(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY);
+
+ if (!(pVmcs->u32ProcCtls & VMX_PROC_CTLS_INT_WINDOW_EXIT))
+ {
+ uint8_t const uRvi = RT_LO_U8(pVmcs->u16GuestIntStatus);
+ uint8_t const uPpr = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_PPR);
+
+ if ((uRvi >> 4) > (uPpr >> 4))
+ {
+ Log2(("eval_virt_intrs: uRvi=%#x uPpr=%#x - Signalling pending interrupt\n", uRvi, uPpr));
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_NESTED_GUEST);
+ }
+ else
+ Log2(("eval_virt_intrs: uRvi=%#x uPpr=%#x - Nothing to do\n", uRvi, uPpr));
+ }
+}
+
+
+/**
+ * Performs PPR virtualization.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxPprVirtualization(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY);
+
+ /*
+ * PPR virtualization is caused in response to a VM-entry, TPR-virtualization,
+ * or EOI-virtualization.
+ *
+ * See Intel spec. 29.1.3 "PPR Virtualization".
+ */
+ uint32_t const uTpr = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_TPR);
+ uint32_t const uSvi = RT_HI_U8(pVmcs->u16GuestIntStatus);
+
+ uint32_t uPpr;
+ if (((uTpr >> 4) & 0xf) >= ((uSvi >> 4) & 0xf))
+ uPpr = uTpr & 0xff;
+ else
+ uPpr = uSvi & 0xf0;
+
+ Log2(("ppr_virt: uTpr=%#x uSvi=%#x uPpr=%#x\n", uTpr, uSvi, uPpr));
+ iemVmxVirtApicWriteRaw32(pVCpu, XAPIC_OFF_PPR, uPpr);
+}
+
+
+/**
+ * Performs VMX TPR virtualization.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxTprVirtualization(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW);
+
+ /*
+ * We should have already performed the virtual-APIC write to the TPR offset
+ * in the virtual-APIC page. We now perform TPR virtualization.
+ *
+ * See Intel spec. 29.1.2 "TPR Virtualization".
+ */
+ if (!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY))
+ {
+ uint32_t const uTprThreshold = pVmcs->u32TprThreshold;
+ uint32_t const uTpr = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_TPR);
+
+ /*
+ * If the VTPR falls below the TPR threshold, we must cause a VM-exit.
+ * See Intel spec. 29.1.2 "TPR Virtualization".
+ */
+ if (((uTpr >> 4) & 0xf) < uTprThreshold)
+ {
+ Log2(("tpr_virt: uTpr=%u uTprThreshold=%u -> VM-exit\n", uTpr, uTprThreshold));
+ return iemVmxVmexit(pVCpu, VMX_EXIT_TPR_BELOW_THRESHOLD, 0 /* u64ExitQual */);
+ }
+ }
+ else
+ {
+ iemVmxPprVirtualization(pVCpu);
+ iemVmxEvalPendingVirtIntrs(pVCpu);
+ }
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks whether an EOI write for the given interrupt vector causes a VM-exit or
+ * not.
+ *
+ * @returns @c true if the EOI write is intercepted, @c false otherwise.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uVector The interrupt that was acknowledged using an EOI.
+ */
+IEM_STATIC bool iemVmxIsEoiInterceptSet(PCVMCPU pVCpu, uint8_t uVector)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY);
+
+ if (uVector < 64)
+ return RT_BOOL(pVmcs->u64EoiExitBitmap0.u & RT_BIT_64(uVector));
+ if (uVector < 128)
+ return RT_BOOL(pVmcs->u64EoiExitBitmap1.u & RT_BIT_64(uVector));
+ if (uVector < 192)
+ return RT_BOOL(pVmcs->u64EoiExitBitmap2.u & RT_BIT_64(uVector));
+ return RT_BOOL(pVmcs->u64EoiExitBitmap3.u & RT_BIT_64(uVector));
+}
+
+
+/**
+ * Performs EOI virtualization.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxEoiVirtualization(PVMCPUCC pVCpu)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY);
+
+ /*
+ * Clear the interrupt guest-interrupt as no longer in-service (ISR)
+ * and get the next guest-interrupt that's in-service (if any).
+ *
+ * See Intel spec. 29.1.4 "EOI Virtualization".
+ */
+ uint8_t const uRvi = RT_LO_U8(pVmcs->u16GuestIntStatus);
+ uint8_t const uSvi = RT_HI_U8(pVmcs->u16GuestIntStatus);
+ Log2(("eoi_virt: uRvi=%#x uSvi=%#x\n", uRvi, uSvi));
+
+ uint8_t uVector = uSvi;
+ iemVmxVirtApicClearVectorInReg(pVCpu, XAPIC_OFF_ISR0, uVector);
+
+ uVector = 0;
+ iemVmxVirtApicGetHighestSetBitInReg(pVCpu, XAPIC_OFF_ISR0, &uVector);
+
+ if (uVector)
+ Log2(("eoi_virt: next interrupt %#x\n", uVector));
+ else
+ Log2(("eoi_virt: no interrupt pending in ISR\n"));
+
+ /* Update guest-interrupt status SVI (leave RVI portion as it is) in the VMCS. */
+ pVmcs->u16GuestIntStatus = RT_MAKE_U16(uRvi, uVector);
+
+ iemVmxPprVirtualization(pVCpu);
+ if (iemVmxIsEoiInterceptSet(pVCpu, uVector))
+ return iemVmxVmexit(pVCpu, VMX_EXIT_VIRTUALIZED_EOI, uVector);
+ iemVmxEvalPendingVirtIntrs(pVCpu);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Performs self-IPI virtualization.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxSelfIpiVirtualization(PVMCPUCC pVCpu)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW);
+
+ /*
+ * We should have already performed the virtual-APIC write to the self-IPI offset
+ * in the virtual-APIC page. We now perform self-IPI virtualization.
+ *
+ * See Intel spec. 29.1.5 "Self-IPI Virtualization".
+ */
+ uint8_t const uVector = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_ICR_LO);
+ Log2(("self_ipi_virt: uVector=%#x\n", uVector));
+ iemVmxVirtApicSetVectorInReg(pVCpu, XAPIC_OFF_IRR0, uVector);
+ uint8_t const uRvi = RT_LO_U8(pVmcs->u16GuestIntStatus);
+ uint8_t const uSvi = RT_HI_U8(pVmcs->u16GuestIntStatus);
+ if (uVector > uRvi)
+ pVmcs->u16GuestIntStatus = RT_MAKE_U16(uVector, uSvi);
+ iemVmxEvalPendingVirtIntrs(pVCpu);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Performs VMX APIC-write emulation.
+ *
+ * @returns VBox strict status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxApicWriteEmulation(PVMCPUCC pVCpu)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /* Import the virtual-APIC write offset (part of the hardware-virtualization state). */
+ IEM_CTX_IMPORT_RET(pVCpu, CPUMCTX_EXTRN_HWVIRT);
+
+ /*
+ * Perform APIC-write emulation based on the virtual-APIC register written.
+ * See Intel spec. 29.4.3.2 "APIC-Write Emulation".
+ */
+ uint16_t const offApicWrite = iemVmxVirtApicClearPendingWrite(pVCpu);
+ VBOXSTRICTRC rcStrict;
+ switch (offApicWrite)
+ {
+ case XAPIC_OFF_TPR:
+ {
+ /* Clear bytes 3:1 of the VTPR and perform TPR virtualization. */
+ uint32_t uTpr = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_TPR);
+ uTpr &= UINT32_C(0x000000ff);
+ iemVmxVirtApicWriteRaw32(pVCpu, XAPIC_OFF_TPR, uTpr);
+ Log2(("iemVmxApicWriteEmulation: TPR write %#x\n", uTpr));
+ rcStrict = iemVmxTprVirtualization(pVCpu);
+ break;
+ }
+
+ case XAPIC_OFF_EOI:
+ {
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY)
+ {
+ /* Clear VEOI and perform EOI virtualization. */
+ iemVmxVirtApicWriteRaw32(pVCpu, XAPIC_OFF_EOI, 0);
+ Log2(("iemVmxApicWriteEmulation: EOI write\n"));
+ rcStrict = iemVmxEoiVirtualization(pVCpu);
+ }
+ else
+ rcStrict = iemVmxVmexitApicWrite(pVCpu, offApicWrite);
+ break;
+ }
+
+ case XAPIC_OFF_ICR_LO:
+ {
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY)
+ {
+ /* If the ICR_LO is valid, write it and perform self-IPI virtualization. */
+ uint32_t const uIcrLo = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_TPR);
+ uint32_t const fIcrLoMb0 = UINT32_C(0xfffbb700);
+ uint32_t const fIcrLoMb1 = UINT32_C(0x000000f0);
+ if ( !(uIcrLo & fIcrLoMb0)
+ && (uIcrLo & fIcrLoMb1))
+ {
+ Log2(("iemVmxApicWriteEmulation: Self-IPI virtualization with vector %#x\n", (uIcrLo & 0xff)));
+ rcStrict = iemVmxSelfIpiVirtualization(pVCpu);
+ }
+ else
+ rcStrict = iemVmxVmexitApicWrite(pVCpu, offApicWrite);
+ }
+ else
+ rcStrict = iemVmxVmexitApicWrite(pVCpu, offApicWrite);
+ break;
+ }
+
+ case XAPIC_OFF_ICR_HI:
+ {
+ /* Clear bytes 2:0 of VICR_HI. No other virtualization or VM-exit must occur. */
+ uint32_t uIcrHi = iemVmxVirtApicReadRaw32(pVCpu, XAPIC_OFF_ICR_HI);
+ uIcrHi &= UINT32_C(0xff000000);
+ iemVmxVirtApicWriteRaw32(pVCpu, XAPIC_OFF_ICR_HI, uIcrHi);
+ rcStrict = VINF_SUCCESS;
+ break;
+ }
+
+ default:
+ {
+ /* Writes to any other virtual-APIC register causes an APIC-write VM-exit. */
+ rcStrict = iemVmxVmexitApicWrite(pVCpu, offApicWrite);
+ break;
+ }
+ }
+
+ return rcStrict;
+}
+
+
+/**
+ * Checks guest control registers, debug registers and MSRs as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestControlRegsMsrs(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Guest Control Registers, Debug Registers, and MSRs.
+ * See Intel spec. 26.3.1.1 "Checks on Guest Control Registers, Debug Registers, and MSRs".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+ bool const fUnrestrictedGuest = RT_BOOL(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_UNRESTRICTED_GUEST);
+
+ /* CR0 reserved bits. */
+ {
+ /* CR0 MB1 bits. */
+ uint64_t u64Cr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
+ Assert(!(u64Cr0Fixed0 & (X86_CR0_NW | X86_CR0_CD)));
+ if (fUnrestrictedGuest)
+ u64Cr0Fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
+ if ((pVmcs->u64GuestCr0.u & u64Cr0Fixed0) == u64Cr0Fixed0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr0Fixed0);
+
+ /* CR0 MBZ bits. */
+ uint64_t const u64Cr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
+ if (!(pVmcs->u64GuestCr0.u & ~u64Cr0Fixed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr0Fixed1);
+
+ /* Without unrestricted guest support, VT-x supports does not support unpaged protected mode. */
+ if ( !fUnrestrictedGuest
+ && (pVmcs->u64GuestCr0.u & X86_CR0_PG)
+ && !(pVmcs->u64GuestCr0.u & X86_CR0_PE))
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr0PgPe);
+ }
+
+ /* CR4 reserved bits. */
+ {
+ /* CR4 MB1 bits. */
+ uint64_t const u64Cr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
+ if ((pVmcs->u64GuestCr4.u & u64Cr4Fixed0) == u64Cr4Fixed0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr4Fixed0);
+
+ /* CR4 MBZ bits. */
+ uint64_t const u64Cr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
+ if (!(pVmcs->u64GuestCr4.u & ~u64Cr4Fixed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr4Fixed1);
+ }
+
+ /* DEBUGCTL MSR. */
+ if ( !(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_DEBUG)
+ || !(pVmcs->u64GuestDebugCtlMsr.u & ~MSR_IA32_DEBUGCTL_VALID_MASK_INTEL))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestDebugCtl);
+
+ /* 64-bit CPU checks. */
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ if (fGstInLongMode)
+ {
+ /* PAE must be set. */
+ if ( (pVmcs->u64GuestCr0.u & X86_CR0_PG)
+ && (pVmcs->u64GuestCr0.u & X86_CR4_PAE))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPae);
+ }
+ else
+ {
+ /* PCIDE should not be set. */
+ if (!(pVmcs->u64GuestCr4.u & X86_CR4_PCIDE))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPcide);
+ }
+
+ /* CR3. */
+ if (!(pVmcs->u64GuestCr3.u >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxPhysAddrWidth))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestCr3);
+
+ /* DR7. */
+ if ( !(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_DEBUG)
+ || !(pVmcs->u64GuestDr7.u & X86_DR7_MBZ_MASK))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestDr7);
+
+ /* SYSENTER ESP and SYSENTER EIP. */
+ if ( X86_IS_CANONICAL(pVmcs->u64GuestSysenterEsp.u)
+ && X86_IS_CANONICAL(pVmcs->u64GuestSysenterEip.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSysenterEspEip);
+ }
+
+ /* We don't support IA32_PERF_GLOBAL_CTRL MSR yet. */
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_PERF_MSR));
+
+ /* PAT MSR. */
+ if ( !(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_PAT_MSR)
+ || CPUMIsPatMsrValid(pVmcs->u64GuestPatMsr.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPatMsr);
+
+ /* EFER MSR. */
+ if (pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_EFER_MSR)
+ {
+ uint64_t const uValidEferMask = CPUMGetGuestEferMsrValidMask(pVCpu->CTX_SUFF(pVM));
+ if (!(pVmcs->u64GuestEferMsr.u & ~uValidEferMask))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestEferMsrRsvd);
+
+ bool const fGstLma = RT_BOOL(pVmcs->u64GuestEferMsr.u & MSR_K6_EFER_LMA);
+ bool const fGstLme = RT_BOOL(pVmcs->u64GuestEferMsr.u & MSR_K6_EFER_LME);
+ if ( fGstLma == fGstInLongMode
+ && ( !(pVmcs->u64GuestCr0.u & X86_CR0_PG)
+ || fGstLma == fGstLme))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestEferMsr);
+ }
+
+ /* We don't support IA32_BNDCFGS MSR yet. */
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_BNDCFGS_MSR));
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks guest segment registers, LDTR and TR as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestSegRegs(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Segment registers.
+ * See Intel spec. 26.3.1.2 "Checks on Guest Segment Registers".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+ bool const fGstInV86Mode = RT_BOOL(pVmcs->u64GuestRFlags.u & X86_EFL_VM);
+ bool const fUnrestrictedGuest = RT_BOOL(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_UNRESTRICTED_GUEST);
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+
+ /* Selectors. */
+ if ( !fGstInV86Mode
+ && !fUnrestrictedGuest
+ && (pVmcs->GuestSs & X86_SEL_RPL) != (pVmcs->GuestCs & X86_SEL_RPL))
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegSelCsSsRpl);
+
+ for (unsigned iSegReg = 0; iSegReg < X86_SREG_COUNT; iSegReg++)
+ {
+ CPUMSELREG SelReg;
+ int rc = iemVmxVmcsGetGuestSegReg(pVmcs, iSegReg, &SelReg);
+ if (RT_LIKELY(rc == VINF_SUCCESS))
+ { /* likely */ }
+ else
+ return rc;
+
+ /*
+ * Virtual-8086 mode checks.
+ */
+ if (fGstInV86Mode)
+ {
+ /* Base address. */
+ if (SelReg.u64Base == (uint64_t)SelReg.Sel << 4)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegBaseV86(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* Limit. */
+ if (SelReg.u32Limit == 0xffff)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegLimitV86(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* Attribute. */
+ if (SelReg.Attr.u == 0xf3)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrV86(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* We're done; move to checking the next segment. */
+ continue;
+ }
+
+ /* Checks done by 64-bit CPUs. */
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ /* Base address. */
+ if ( iSegReg == X86_SREG_FS
+ || iSegReg == X86_SREG_GS)
+ {
+ if (X86_IS_CANONICAL(SelReg.u64Base))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegBase(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ }
+ else if (iSegReg == X86_SREG_CS)
+ {
+ if (!RT_HI_U32(SelReg.u64Base))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegBaseCs);
+ }
+ else
+ {
+ if ( SelReg.Attr.n.u1Unusable
+ || !RT_HI_U32(SelReg.u64Base))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegBase(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ }
+ }
+
+ /*
+ * Checks outside Virtual-8086 mode.
+ */
+ uint8_t const uSegType = SelReg.Attr.n.u4Type;
+ uint8_t const fCodeDataSeg = SelReg.Attr.n.u1DescType;
+ uint8_t const fUsable = !SelReg.Attr.n.u1Unusable;
+ uint8_t const uDpl = SelReg.Attr.n.u2Dpl;
+ uint8_t const fPresent = SelReg.Attr.n.u1Present;
+ uint8_t const uGranularity = SelReg.Attr.n.u1Granularity;
+ uint8_t const uDefBig = SelReg.Attr.n.u1DefBig;
+ uint8_t const fSegLong = SelReg.Attr.n.u1Long;
+
+ /* Code or usable segment. */
+ if ( iSegReg == X86_SREG_CS
+ || fUsable)
+ {
+ /* Reserved bits (bits 31:17 and bits 11:8). */
+ if (!(SelReg.Attr.u & 0xfffe0f00))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrRsvd(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* Descriptor type. */
+ if (fCodeDataSeg)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrDescType(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* Present. */
+ if (fPresent)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrPresent(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ /* Granularity. */
+ if ( ((SelReg.u32Limit & 0x00000fff) == 0x00000fff || !uGranularity)
+ && ((SelReg.u32Limit & 0xfff00000) == 0x00000000 || uGranularity))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrGran(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ }
+
+ if (iSegReg == X86_SREG_CS)
+ {
+ /* Segment Type and DPL. */
+ if ( uSegType == (X86_SEL_TYPE_RW | X86_SEL_TYPE_ACCESSED)
+ && fUnrestrictedGuest)
+ {
+ if (uDpl == 0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsDplZero);
+ }
+ else if ( uSegType == (X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
+ || uSegType == (X86_SEL_TYPE_CODE | X86_SEL_TYPE_READ | X86_SEL_TYPE_ACCESSED))
+ {
+ X86DESCATTR AttrSs; AttrSs.u = pVmcs->u32GuestSsAttr;
+ if (uDpl == AttrSs.n.u2Dpl)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsDplEqSs);
+ }
+ else if ((uSegType & (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF | X86_SEL_TYPE_ACCESSED))
+ == (X86_SEL_TYPE_CODE | X86_SEL_TYPE_CONF | X86_SEL_TYPE_ACCESSED))
+ {
+ X86DESCATTR AttrSs; AttrSs.u = pVmcs->u32GuestSsAttr;
+ if (uDpl <= AttrSs.n.u2Dpl)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsDplLtSs);
+ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsType);
+
+ /* Def/Big. */
+ if ( fGstInLongMode
+ && fSegLong)
+ {
+ if (uDefBig == 0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsDefBig);
+ }
+ }
+ else if (iSegReg == X86_SREG_SS)
+ {
+ /* Segment Type. */
+ if ( !fUsable
+ || uSegType == (X86_SEL_TYPE_RW | X86_SEL_TYPE_ACCESSED)
+ || uSegType == (X86_SEL_TYPE_DOWN | X86_SEL_TYPE_RW | X86_SEL_TYPE_ACCESSED))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrSsType);
+
+ /* DPL. */
+ if (!fUnrestrictedGuest)
+ {
+ if (uDpl == (SelReg.Sel & X86_SEL_RPL))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrSsDplEqRpl);
+ }
+ X86DESCATTR AttrCs; AttrCs.u = pVmcs->u32GuestCsAttr;
+ if ( AttrCs.n.u4Type == (X86_SEL_TYPE_RW | X86_SEL_TYPE_ACCESSED)
+ || !(pVmcs->u64GuestCr0.u & X86_CR0_PE))
+ {
+ if (uDpl == 0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrSsDplZero);
+ }
+ }
+ else
+ {
+ /* DS, ES, FS, GS. */
+ if (fUsable)
+ {
+ /* Segment type. */
+ if (uSegType & X86_SEL_TYPE_ACCESSED)
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrTypeAcc(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+
+ if ( !(uSegType & X86_SEL_TYPE_CODE)
+ || (uSegType & X86_SEL_TYPE_READ))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrCsTypeRead);
+
+ /* DPL. */
+ if ( !fUnrestrictedGuest
+ && uSegType <= (X86_SEL_TYPE_CODE | X86_SEL_TYPE_READ | X86_SEL_TYPE_ACCESSED))
+ {
+ if (uDpl >= (SelReg.Sel & X86_SEL_RPL))
+ { /* likely */ }
+ else
+ {
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentrySegAttrDplRpl(iSegReg);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ }
+ }
+ }
+ }
+
+ /*
+ * LDTR.
+ */
+ {
+ CPUMSELREG Ldtr;
+ Ldtr.Sel = pVmcs->GuestLdtr;
+ Ldtr.u32Limit = pVmcs->u32GuestLdtrLimit;
+ Ldtr.u64Base = pVmcs->u64GuestLdtrBase.u;
+ Ldtr.Attr.u = pVmcs->u32GuestLdtrAttr;
+
+ if (!Ldtr.Attr.n.u1Unusable)
+ {
+ /* Selector. */
+ if (!(Ldtr.Sel & X86_SEL_LDT))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegSelLdtr);
+
+ /* Base. */
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ if (X86_IS_CANONICAL(Ldtr.u64Base))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegBaseLdtr);
+ }
+
+ /* Attributes. */
+ /* Reserved bits (bits 31:17 and bits 11:8). */
+ if (!(Ldtr.Attr.u & 0xfffe0f00))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrLdtrRsvd);
+
+ if (Ldtr.Attr.n.u4Type == X86_SEL_TYPE_SYS_LDT)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrLdtrType);
+
+ if (!Ldtr.Attr.n.u1DescType)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrLdtrDescType);
+
+ if (Ldtr.Attr.n.u1Present)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrLdtrPresent);
+
+ if ( ((Ldtr.u32Limit & 0x00000fff) == 0x00000fff || !Ldtr.Attr.n.u1Granularity)
+ && ((Ldtr.u32Limit & 0xfff00000) == 0x00000000 || Ldtr.Attr.n.u1Granularity))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrLdtrGran);
+ }
+ }
+
+ /*
+ * TR.
+ */
+ {
+ CPUMSELREG Tr;
+ Tr.Sel = pVmcs->GuestTr;
+ Tr.u32Limit = pVmcs->u32GuestTrLimit;
+ Tr.u64Base = pVmcs->u64GuestTrBase.u;
+ Tr.Attr.u = pVmcs->u32GuestTrAttr;
+
+ /* Selector. */
+ if (!(Tr.Sel & X86_SEL_LDT))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegSelTr);
+
+ /* Base. */
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ if (X86_IS_CANONICAL(Tr.u64Base))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegBaseTr);
+ }
+
+ /* Attributes. */
+ /* Reserved bits (bits 31:17 and bits 11:8). */
+ if (!(Tr.Attr.u & 0xfffe0f00))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrRsvd);
+
+ if (!Tr.Attr.n.u1Unusable)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrUnusable);
+
+ if ( Tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_386_TSS_BUSY
+ || ( !fGstInLongMode
+ && Tr.Attr.n.u4Type == X86_SEL_TYPE_SYS_286_TSS_BUSY))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrType);
+
+ if (!Tr.Attr.n.u1DescType)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrDescType);
+
+ if (Tr.Attr.n.u1Present)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrPresent);
+
+ if ( ((Tr.u32Limit & 0x00000fff) == 0x00000fff || !Tr.Attr.n.u1Granularity)
+ && ((Tr.u32Limit & 0xfff00000) == 0x00000000 || Tr.Attr.n.u1Granularity))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestSegAttrTrGran);
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks guest GDTR and IDTR as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestGdtrIdtr(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * GDTR and IDTR.
+ * See Intel spec. 26.3.1.3 "Checks on Guest Descriptor-Table Registers".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ /* Base. */
+ if (X86_IS_CANONICAL(pVmcs->u64GuestGdtrBase.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestGdtrBase);
+
+ if (X86_IS_CANONICAL(pVmcs->u64GuestIdtrBase.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIdtrBase);
+ }
+
+ /* Limit. */
+ if (!RT_HI_U16(pVmcs->u32GuestGdtrLimit))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestGdtrLimit);
+
+ if (!RT_HI_U16(pVmcs->u32GuestIdtrLimit))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIdtrLimit);
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks guest RIP and RFLAGS as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestRipRFlags(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * RIP and RFLAGS.
+ * See Intel spec. 26.3.1.4 "Checks on Guest RIP and RFLAGS".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+
+ /* RIP. */
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ X86DESCATTR AttrCs;
+ AttrCs.u = pVmcs->u32GuestCsAttr;
+ if ( !fGstInLongMode
+ || !AttrCs.n.u1Long)
+ {
+ if (!RT_HI_U32(pVmcs->u64GuestRip.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestRipRsvd);
+ }
+
+ if ( fGstInLongMode
+ && AttrCs.n.u1Long)
+ {
+ Assert(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxLinearAddrWidth == 48); /* Canonical. */
+ if ( IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxLinearAddrWidth < 64
+ && X86_IS_CANONICAL(pVmcs->u64GuestRip.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestRip);
+ }
+ }
+
+ /* RFLAGS (bits 63:22 (or 31:22), bits 15, 5, 3 are reserved, bit 1 MB1). */
+ uint64_t const uGuestRFlags = IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode ? pVmcs->u64GuestRFlags.u
+ : pVmcs->u64GuestRFlags.s.Lo;
+ if ( !(uGuestRFlags & ~(X86_EFL_LIVE_MASK | X86_EFL_RA1_MASK))
+ && (uGuestRFlags & X86_EFL_RA1_MASK) == X86_EFL_RA1_MASK)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestRFlagsRsvd);
+
+ if ( fGstInLongMode
+ || !(pVmcs->u64GuestCr0.u & X86_CR0_PE))
+ {
+ if (!(uGuestRFlags & X86_EFL_VM))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestRFlagsVm);
+ }
+
+ if (VMX_ENTRY_INT_INFO_IS_EXT_INT(pVmcs->u32EntryIntInfo))
+ {
+ if (uGuestRFlags & X86_EFL_IF)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestRFlagsIf);
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks guest non-register state as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestNonRegState(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Guest non-register state.
+ * See Intel spec. 26.3.1.5 "Checks on Guest Non-Register State".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+
+ /*
+ * Activity state.
+ */
+ uint64_t const u64GuestVmxMiscMsr = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Misc;
+ uint32_t const fActivityStateMask = RT_BF_GET(u64GuestVmxMiscMsr, VMX_BF_MISC_ACTIVITY_STATES);
+ if (!(pVmcs->u32GuestActivityState & fActivityStateMask))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestActStateRsvd);
+
+ X86DESCATTR AttrSs; AttrSs.u = pVmcs->u32GuestSsAttr;
+ if ( !AttrSs.n.u2Dpl
+ || pVmcs->u32GuestActivityState != VMX_VMCS_GUEST_ACTIVITY_HLT)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestActStateSsDpl);
+
+ if ( pVmcs->u32GuestIntrState == VMX_VMCS_GUEST_INT_STATE_BLOCK_STI
+ || pVmcs->u32GuestIntrState == VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS)
+ {
+ if (pVmcs->u32GuestActivityState == VMX_VMCS_GUEST_ACTIVITY_ACTIVE)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestActStateStiMovSs);
+ }
+
+ if (VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo))
+ {
+ uint8_t const uType = VMX_ENTRY_INT_INFO_TYPE(pVmcs->u32EntryIntInfo);
+ uint8_t const uVector = VMX_ENTRY_INT_INFO_VECTOR(pVmcs->u32EntryIntInfo);
+ AssertCompile(VMX_V_GUEST_ACTIVITY_STATE_MASK == (VMX_VMCS_GUEST_ACTIVITY_HLT | VMX_VMCS_GUEST_ACTIVITY_SHUTDOWN));
+ switch (pVmcs->u32GuestActivityState)
+ {
+ case VMX_VMCS_GUEST_ACTIVITY_HLT:
+ {
+ if ( uType == VMX_ENTRY_INT_INFO_TYPE_EXT_INT
+ || uType == VMX_ENTRY_INT_INFO_TYPE_NMI
+ || ( uType == VMX_ENTRY_INT_INFO_TYPE_HW_XCPT
+ && ( uVector == X86_XCPT_DB
+ || uVector == X86_XCPT_MC))
+ || ( uType == VMX_ENTRY_INT_INFO_TYPE_OTHER_EVENT
+ && uVector == VMX_ENTRY_INT_INFO_VECTOR_MTF))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestActStateHlt);
+ break;
+ }
+
+ case VMX_VMCS_GUEST_ACTIVITY_SHUTDOWN:
+ {
+ if ( uType == VMX_ENTRY_INT_INFO_TYPE_NMI
+ || ( uType == VMX_ENTRY_INT_INFO_TYPE_HW_XCPT
+ && uVector == X86_XCPT_MC))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestActStateShutdown);
+ break;
+ }
+
+ case VMX_VMCS_GUEST_ACTIVITY_ACTIVE:
+ default:
+ break;
+ }
+ }
+
+ /*
+ * Interruptibility state.
+ */
+ if (!(pVmcs->u32GuestIntrState & ~VMX_VMCS_GUEST_INT_STATE_MASK))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateRsvd);
+
+ if ((pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI))
+ != (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateStiMovSs);
+
+ if ( (pVmcs->u64GuestRFlags.u & X86_EFL_IF)
+ || !(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_STI))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateRFlagsSti);
+
+ if (VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo))
+ {
+ uint8_t const uType = VMX_ENTRY_INT_INFO_TYPE(pVmcs->u32EntryIntInfo);
+ if (uType == VMX_ENTRY_INT_INFO_TYPE_EXT_INT)
+ {
+ if (!(pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI)))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateExtInt);
+ }
+ else if (uType == VMX_ENTRY_INT_INFO_TYPE_NMI)
+ {
+ if (!(pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI)))
+ { /* likely */ }
+ else
+ {
+ /*
+ * We don't support injecting NMIs when blocking-by-STI would be in effect.
+ * We update the Exit qualification only when blocking-by-STI is set
+ * without blocking-by-MovSS being set. Although in practise it does not
+ * make much difference since the order of checks are implementation defined.
+ */
+ if (!(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS))
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_NMI_INJECT);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateNmi);
+ }
+
+ if ( !(pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI)
+ || !(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_NMI))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateVirtNmi);
+ }
+ }
+
+ /* We don't support SMM yet. So blocking-by-SMIs must not be set. */
+ if (!(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_SMI))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateSmi);
+
+ /* We don't support SGX yet. So enclave-interruption must not be set. */
+ if (!(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_ENCLAVE))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestIntStateEnclave);
+
+ /*
+ * Pending debug exceptions.
+ */
+ uint64_t const uPendingDbgXcpts = IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode
+ ? pVmcs->u64GuestPendingDbgXcpts.u
+ : pVmcs->u64GuestPendingDbgXcpts.s.Lo;
+ if (!(uPendingDbgXcpts & ~VMX_VMCS_GUEST_PENDING_DEBUG_VALID_MASK))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPndDbgXcptRsvd);
+
+ if ( (pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI))
+ || pVmcs->u32GuestActivityState == VMX_VMCS_GUEST_ACTIVITY_HLT)
+ {
+ if ( (pVmcs->u64GuestRFlags.u & X86_EFL_TF)
+ && !(pVmcs->u64GuestDebugCtlMsr.u & MSR_IA32_DEBUGCTL_BTF)
+ && !(uPendingDbgXcpts & VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS))
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPndDbgXcptBsTf);
+
+ if ( ( !(pVmcs->u64GuestRFlags.u & X86_EFL_TF)
+ || (pVmcs->u64GuestDebugCtlMsr.u & MSR_IA32_DEBUGCTL_BTF))
+ && (uPendingDbgXcpts & VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS))
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPndDbgXcptBsNoTf);
+ }
+
+ /* We don't support RTM (Real-time Transactional Memory) yet. */
+ if (!(uPendingDbgXcpts & VMX_VMCS_GUEST_PENDING_DEBUG_RTM))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPndDbgXcptRtm);
+
+ /*
+ * VMCS link pointer.
+ */
+ if (pVmcs->u64VmcsLinkPtr.u != UINT64_C(0xffffffffffffffff))
+ {
+ RTGCPHYS const GCPhysShadowVmcs = pVmcs->u64VmcsLinkPtr.u;
+ /* We don't support SMM yet (so VMCS link pointer cannot be the current VMCS). */
+ if (GCPhysShadowVmcs != IEM_VMX_GET_CURRENT_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmcsLinkPtrCurVmcs);
+ }
+
+ /* Validate the address. */
+ if ( !(GCPhysShadowVmcs & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysShadowVmcs >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysShadowVmcs))
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrVmcsLinkPtr);
+ }
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks if the PDPTEs referenced by the nested-guest CR3 are valid as part of
+ * VM-entry.
+ *
+ * @returns @c true if all PDPTEs are valid, @c false otherwise.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ * @param pVmcs Pointer to the virtual VMCS.
+ */
+IEM_STATIC int iemVmxVmentryCheckGuestPdptesForCr3(PVMCPUCC pVCpu, const char *pszInstr, PVMXVVMCS pVmcs)
+{
+ /*
+ * Check PDPTEs.
+ * See Intel spec. 4.4.1 "PDPTE Registers".
+ */
+ uint64_t const uGuestCr3 = pVmcs->u64GuestCr3.u & X86_CR3_PAE_PAGE_MASK;
+ const char *const pszFailure = "VM-exit";
+
+ X86PDPE aPdptes[X86_PG_PAE_PDPE_ENTRIES];
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)&aPdptes[0], uGuestCr3, sizeof(aPdptes));
+ if (RT_SUCCESS(rc))
+ {
+ for (unsigned iPdpte = 0; iPdpte < RT_ELEMENTS(aPdptes); iPdpte++)
+ {
+ if ( !(aPdptes[iPdpte].u & X86_PDPE_P)
+ || !(aPdptes[iPdpte].u & X86_PDPE_PAE_MBZ_MASK))
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_PDPTE);
+ VMXVDIAG const enmDiag = iemVmxGetDiagVmentryPdpteRsvd(iPdpte);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ }
+ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_PDPTE);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_GuestPdpteCr3ReadPhys);
+ }
+
+ NOREF(pszFailure);
+ NOREF(pszInstr);
+ return rc;
+}
+
+
+/**
+ * Checks guest PDPTEs as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+DECLINLINE(int) iemVmxVmentryCheckGuestPdptes(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Guest PDPTEs.
+ * See Intel spec. 26.3.1.5 "Checks on Guest Page-Directory-Pointer-Table Entries".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+
+ /* Check PDPTes if the VM-entry is to a guest using PAE paging. */
+ int rc;
+ if ( !fGstInLongMode
+ && (pVmcs->u64GuestCr4.u & X86_CR4_PAE)
+ && (pVmcs->u64GuestCr0.u & X86_CR0_PG))
+ {
+ /*
+ * We don't support nested-paging for nested-guests yet.
+ *
+ * Without nested-paging for nested-guests, PDPTEs in the VMCS are not used,
+ * rather we need to check the PDPTEs referenced by the guest CR3.
+ */
+ rc = iemVmxVmentryCheckGuestPdptesForCr3(pVCpu, pszInstr, pVmcs);
+ }
+ else
+ rc = VINF_SUCCESS;
+ return rc;
+}
+
+
+/**
+ * Checks guest-state as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC int iemVmxVmentryCheckGuestState(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ int rc = iemVmxVmentryCheckGuestControlRegsMsrs(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryCheckGuestSegRegs(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryCheckGuestGdtrIdtr(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryCheckGuestRipRFlags(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryCheckGuestNonRegState(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ return iemVmxVmentryCheckGuestPdptes(pVCpu, pszInstr);
+ }
+ }
+ }
+ }
+ return rc;
+}
+
+
+/**
+ * Checks host-state as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC int iemVmxVmentryCheckHostState(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Host Control Registers and MSRs.
+ * See Intel spec. 26.2.2 "Checks on Host Control Registers and MSRs".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char * const pszFailure = "VMFail";
+
+ /* CR0 reserved bits. */
+ {
+ /* CR0 MB1 bits. */
+ uint64_t const u64Cr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
+ if ((pVmcs->u64HostCr0.u & u64Cr0Fixed0) == u64Cr0Fixed0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr0Fixed0);
+
+ /* CR0 MBZ bits. */
+ uint64_t const u64Cr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
+ if (!(pVmcs->u64HostCr0.u & ~u64Cr0Fixed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr0Fixed1);
+ }
+
+ /* CR4 reserved bits. */
+ {
+ /* CR4 MB1 bits. */
+ uint64_t const u64Cr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
+ if ((pVmcs->u64HostCr4.u & u64Cr4Fixed0) == u64Cr4Fixed0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr4Fixed0);
+
+ /* CR4 MBZ bits. */
+ uint64_t const u64Cr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
+ if (!(pVmcs->u64HostCr4.u & ~u64Cr4Fixed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr4Fixed1);
+ }
+
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ /* CR3 reserved bits. */
+ if (!(pVmcs->u64HostCr3.u >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxPhysAddrWidth))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr3);
+
+ /* SYSENTER ESP and SYSENTER EIP. */
+ if ( X86_IS_CANONICAL(pVmcs->u64HostSysenterEsp.u)
+ && X86_IS_CANONICAL(pVmcs->u64HostSysenterEip.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostSysenterEspEip);
+ }
+
+ /* We don't support IA32_PERF_GLOBAL_CTRL MSR yet. */
+ Assert(!(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_LOAD_PERF_MSR));
+
+ /* PAT MSR. */
+ if ( !(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_LOAD_PAT_MSR)
+ || CPUMIsPatMsrValid(pVmcs->u64HostPatMsr.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostPatMsr);
+
+ /* EFER MSR. */
+ uint64_t const uValidEferMask = CPUMGetGuestEferMsrValidMask(pVCpu->CTX_SUFF(pVM));
+ if ( !(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_LOAD_EFER_MSR)
+ || !(pVmcs->u64HostEferMsr.u & ~uValidEferMask))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostEferMsrRsvd);
+
+ bool const fHostInLongMode = RT_BOOL(pVmcs->u32ExitCtls & VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE);
+ bool const fHostLma = RT_BOOL(pVmcs->u64HostEferMsr.u & MSR_K6_EFER_LMA);
+ bool const fHostLme = RT_BOOL(pVmcs->u64HostEferMsr.u & MSR_K6_EFER_LME);
+ if ( fHostInLongMode == fHostLma
+ && fHostInLongMode == fHostLme)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostEferMsr);
+
+ /*
+ * Host Segment and Descriptor-Table Registers.
+ * See Intel spec. 26.2.3 "Checks on Host Segment and Descriptor-Table Registers".
+ */
+ /* Selector RPL and TI. */
+ if ( !(pVmcs->HostCs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostSs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostDs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostEs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostFs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostGs & (X86_SEL_RPL | X86_SEL_LDT))
+ && !(pVmcs->HostTr & (X86_SEL_RPL | X86_SEL_LDT)))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostSel);
+
+ /* CS and TR selectors cannot be 0. */
+ if ( pVmcs->HostCs
+ && pVmcs->HostTr)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCsTr);
+
+ /* SS cannot be 0 if 32-bit host. */
+ if ( fHostInLongMode
+ || pVmcs->HostSs)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostSs);
+
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ /* FS, GS, GDTR, IDTR, TR base address. */
+ if ( X86_IS_CANONICAL(pVmcs->u64HostFsBase.u)
+ && X86_IS_CANONICAL(pVmcs->u64HostFsBase.u)
+ && X86_IS_CANONICAL(pVmcs->u64HostGdtrBase.u)
+ && X86_IS_CANONICAL(pVmcs->u64HostIdtrBase.u)
+ && X86_IS_CANONICAL(pVmcs->u64HostTrBase.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostSegBase);
+ }
+
+ /*
+ * Host address-space size for 64-bit CPUs.
+ * See Intel spec. 26.2.4 "Checks Related to Address-Space Size".
+ */
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ bool const fCpuInLongMode = CPUMIsGuestInLongMode(pVCpu);
+
+ /* Logical processor in IA-32e mode. */
+ if (fCpuInLongMode)
+ {
+ if (fHostInLongMode)
+ {
+ /* PAE must be set. */
+ if (pVmcs->u64HostCr4.u & X86_CR4_PAE)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr4Pae);
+
+ /* RIP must be canonical. */
+ if (X86_IS_CANONICAL(pVmcs->u64HostRip.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostRip);
+ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostLongMode);
+ }
+ else
+ {
+ /* Logical processor is outside IA-32e mode. */
+ if ( !fGstInLongMode
+ && !fHostInLongMode)
+ {
+ /* PCIDE should not be set. */
+ if (!(pVmcs->u64HostCr4.u & X86_CR4_PCIDE))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostCr4Pcide);
+
+ /* The high 32-bits of RIP MBZ. */
+ if (!pVmcs->u64HostRip.s.Hi)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostRipRsvd);
+ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostGuestLongMode);
+ }
+ }
+ else
+ {
+ /* Host address-space size for 32-bit CPUs. */
+ if ( !fGstInLongMode
+ && !fHostInLongMode)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_HostGuestLongModeNoCpu);
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Checks VMCS controls fields as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ *
+ * @remarks This may update secondary-processor based VM-execution control fields
+ * in the current VMCS if necessary.
+ */
+IEM_STATIC int iemVmxVmentryCheckCtls(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char * const pszFailure = "VMFail";
+
+ /*
+ * VM-execution controls.
+ * See Intel spec. 26.2.1.1 "VM-Execution Control Fields".
+ */
+ {
+ /* Pin-based VM-execution controls. */
+ {
+ VMXCTLSMSR const PinCtls = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.PinCtls;
+ if (!(~pVmcs->u32PinCtls & PinCtls.n.allowed0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_PinCtlsDisallowed0);
+
+ if (!(pVmcs->u32PinCtls & ~PinCtls.n.allowed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_PinCtlsAllowed1);
+ }
+
+ /* Processor-based VM-execution controls. */
+ {
+ VMXCTLSMSR const ProcCtls = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.ProcCtls;
+ if (!(~pVmcs->u32ProcCtls & ProcCtls.n.allowed0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ProcCtlsDisallowed0);
+
+ if (!(pVmcs->u32ProcCtls & ~ProcCtls.n.allowed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ProcCtlsAllowed1);
+ }
+
+ /* Secondary processor-based VM-execution controls. */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_SECONDARY_CTLS)
+ {
+ VMXCTLSMSR const ProcCtls2 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.ProcCtls2;
+ if (!(~pVmcs->u32ProcCtls2 & ProcCtls2.n.allowed0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ProcCtls2Disallowed0);
+
+ if (!(pVmcs->u32ProcCtls2 & ~ProcCtls2.n.allowed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ProcCtls2Allowed1);
+ }
+ else
+ Assert(!pVmcs->u32ProcCtls2);
+
+ /* CR3-target count. */
+ if (pVmcs->u32Cr3TargetCount <= VMX_V_CR3_TARGET_COUNT)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_Cr3TargetCount);
+
+ /* I/O bitmaps physical addresses. */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_IO_BITMAPS)
+ {
+ RTGCPHYS const GCPhysIoBitmapA = pVmcs->u64AddrIoBitmapA.u;
+ if ( !(GCPhysIoBitmapA & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysIoBitmapA >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysIoBitmapA))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrIoBitmapA);
+
+ RTGCPHYS const GCPhysIoBitmapB = pVmcs->u64AddrIoBitmapB.u;
+ if ( !(GCPhysIoBitmapB & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysIoBitmapB >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysIoBitmapB))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrIoBitmapB);
+ }
+
+ /* MSR bitmap physical address. */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_MSR_BITMAPS)
+ {
+ RTGCPHYS const GCPhysMsrBitmap = pVmcs->u64AddrMsrBitmap.u;
+ if ( !(GCPhysMsrBitmap & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysMsrBitmap >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysMsrBitmap))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrMsrBitmap);
+ }
+
+ /* TPR shadow related controls. */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW)
+ {
+ /* Virtual-APIC page physical address. */
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ if ( !(GCPhysVirtApic & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysVirtApic >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVirtApic))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrVirtApicPage);
+
+ /* TPR threshold bits 31:4 MBZ without virtual-interrupt delivery. */
+ if ( !(pVmcs->u32TprThreshold & ~VMX_TPR_THRESHOLD_MASK)
+ || (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_TprThresholdRsvd);
+
+ /* The rest done XXX document */
+ }
+ else
+ {
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_X2APIC_MODE)
+ && !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_APIC_REG_VIRT)
+ && !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY))
+ { /* likely */ }
+ else
+ {
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_X2APIC_MODE)
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtX2ApicTprShadow);
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_APIC_REG_VIRT)
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ApicRegVirt);
+ Assert(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtIntDelivery);
+ }
+ }
+
+ /* NMI exiting and virtual-NMIs. */
+ if ( (pVmcs->u32PinCtls & VMX_PIN_CTLS_NMI_EXIT)
+ || !(pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtNmi);
+
+ /* Virtual-NMIs and NMI-window exiting. */
+ if ( (pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI)
+ || !(pVmcs->u32ProcCtls & VMX_PROC_CTLS_NMI_WINDOW_EXIT))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_NmiWindowExit);
+
+ /* Virtualize APIC accesses. */
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS)
+ {
+ /* APIC-access physical address. */
+ RTGCPHYS const GCPhysApicAccess = pVmcs->u64AddrApicAccess.u;
+ if ( !(GCPhysApicAccess & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysApicAccess >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysApicAccess))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrApicAccess);
+
+ /*
+ * Disallow APIC-access page and virtual-APIC page from being the same address.
+ * Note! This is not an Intel requirement, but one imposed by our implementation.
+ */
+ /** @todo r=ramshankar: This is done primarily to simplify recursion scenarios while
+ * redirecting accesses between the APIC-access page and the virtual-APIC
+ * page. If any nested hypervisor requires this, we can implement it later. */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW)
+ {
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ if (GCPhysVirtApic != GCPhysApicAccess)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrApicAccessEqVirtApic);
+ }
+ }
+
+ /* Virtualize-x2APIC mode is mutually exclusive with virtualize-APIC accesses. */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_X2APIC_MODE)
+ || !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtX2ApicVirtApic);
+
+ /* Virtual-interrupt delivery requires external interrupt exiting. */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY)
+ || (pVmcs->u32PinCtls & VMX_PIN_CTLS_EXT_INT_EXIT))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtX2ApicVirtApic);
+
+ /* VPID. */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VPID)
+ || pVmcs->u16Vpid != 0)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_Vpid);
+
+ Assert(!(pVmcs->u32PinCtls & VMX_PIN_CTLS_POSTED_INT)); /* We don't support posted interrupts yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_EPT)); /* We don't support EPT yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_PML)); /* We don't support PML yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_UNRESTRICTED_GUEST)); /* We don't support Unrestricted-guests yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VMFUNC)); /* We don't support VM functions yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_EPT_VE)); /* We don't support EPT-violation #VE yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_PAUSE_LOOP_EXIT)); /* We don't support Pause-loop exiting yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_TSC_SCALING)); /* We don't support TSC-scaling yet. */
+
+ /* VMCS shadowing. */
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VMCS_SHADOWING)
+ {
+ /* VMREAD-bitmap physical address. */
+ RTGCPHYS const GCPhysVmreadBitmap = pVmcs->u64AddrVmreadBitmap.u;
+ if ( !(GCPhysVmreadBitmap & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysVmreadBitmap >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVmreadBitmap))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrVmreadBitmap);
+
+ /* VMWRITE-bitmap physical address. */
+ RTGCPHYS const GCPhysVmwriteBitmap = pVmcs->u64AddrVmreadBitmap.u;
+ if ( !(GCPhysVmwriteBitmap & X86_PAGE_4K_OFFSET_MASK)
+ && !(GCPhysVmwriteBitmap >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVmwriteBitmap))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrVmwriteBitmap);
+ }
+ }
+
+ /*
+ * VM-exit controls.
+ * See Intel spec. 26.2.1.2 "VM-Exit Control Fields".
+ */
+ {
+ VMXCTLSMSR const ExitCtls = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.ExitCtls;
+ if (!(~pVmcs->u32ExitCtls & ExitCtls.n.allowed0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ExitCtlsDisallowed0);
+
+ if (!(pVmcs->u32ExitCtls & ~ExitCtls.n.allowed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_ExitCtlsAllowed1);
+
+ /* Save preemption timer without activating it. */
+ if ( (pVmcs->u32PinCtls & VMX_PIN_CTLS_PREEMPT_TIMER)
+ || !(pVmcs->u32ProcCtls & VMX_EXIT_CTLS_SAVE_PREEMPT_TIMER))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_SavePreemptTimer);
+
+ /* VM-exit MSR-store count and VM-exit MSR-store area address. */
+ if (pVmcs->u32ExitMsrStoreCount)
+ {
+ if ( !(pVmcs->u64AddrExitMsrStore.u & VMX_AUTOMSR_OFFSET_MASK)
+ && !(pVmcs->u64AddrExitMsrStore.u >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), pVmcs->u64AddrExitMsrStore.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrExitMsrStore);
+ }
+
+ /* VM-exit MSR-load count and VM-exit MSR-load area address. */
+ if (pVmcs->u32ExitMsrLoadCount)
+ {
+ if ( !(pVmcs->u64AddrExitMsrLoad.u & VMX_AUTOMSR_OFFSET_MASK)
+ && !(pVmcs->u64AddrExitMsrLoad.u >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), pVmcs->u64AddrExitMsrLoad.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrExitMsrLoad);
+ }
+ }
+
+ /*
+ * VM-entry controls.
+ * See Intel spec. 26.2.1.3 "VM-Entry Control Fields".
+ */
+ {
+ VMXCTLSMSR const EntryCtls = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.EntryCtls;
+ if (!(~pVmcs->u32EntryCtls & EntryCtls.n.allowed0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryCtlsDisallowed0);
+
+ if (!(pVmcs->u32EntryCtls & ~EntryCtls.n.allowed1))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryCtlsAllowed1);
+
+ /* Event injection. */
+ uint32_t const uIntInfo = pVmcs->u32EntryIntInfo;
+ if (RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_VALID))
+ {
+ /* Type and vector. */
+ uint8_t const uType = RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_TYPE);
+ uint8_t const uVector = RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_VECTOR);
+ uint8_t const uRsvd = RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_RSVD_12_30);
+ if ( !uRsvd
+ && VMXIsEntryIntInfoTypeValid(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxMonitorTrapFlag, uType)
+ && VMXIsEntryIntInfoVectorValid(uVector, uType))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryIntInfoTypeVecRsvd);
+
+ /* Exception error code. */
+ if (RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_ERR_CODE_VALID))
+ {
+ /* Delivery possible only in Unrestricted-guest mode when CR0.PE is set. */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_UNRESTRICTED_GUEST)
+ || (pVmcs->u64GuestCr0.s.Lo & X86_CR0_PE))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryIntInfoErrCodePe);
+
+ /* Exceptions that provide an error code. */
+ if ( uType == VMX_ENTRY_INT_INFO_TYPE_HW_XCPT
+ && ( uVector == X86_XCPT_DF
+ || uVector == X86_XCPT_TS
+ || uVector == X86_XCPT_NP
+ || uVector == X86_XCPT_SS
+ || uVector == X86_XCPT_GP
+ || uVector == X86_XCPT_PF
+ || uVector == X86_XCPT_AC))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryIntInfoErrCodeVec);
+
+ /* Exception error-code reserved bits. */
+ if (!(pVmcs->u32EntryXcptErrCode & ~VMX_ENTRY_INT_XCPT_ERR_CODE_VALID_MASK))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryXcptErrCodeRsvd);
+
+ /* Injecting a software interrupt, software exception or privileged software exception. */
+ if ( uType == VMX_ENTRY_INT_INFO_TYPE_SW_INT
+ || uType == VMX_ENTRY_INT_INFO_TYPE_SW_XCPT
+ || uType == VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT)
+ {
+ /* Instruction length must be in the range 0-15. */
+ if (pVmcs->u32EntryInstrLen <= VMX_ENTRY_INSTR_LEN_MAX)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryInstrLen);
+
+ /* However, instruction length of 0 is allowed only when its CPU feature is present. */
+ if ( pVmcs->u32EntryInstrLen != 0
+ || IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxEntryInjectSoftInt)
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryInstrLenZero);
+ }
+ }
+ }
+
+ /* VM-entry MSR-load count and VM-entry MSR-load area address. */
+ if (pVmcs->u32EntryMsrLoadCount)
+ {
+ if ( !(pVmcs->u64AddrEntryMsrLoad.u & VMX_AUTOMSR_OFFSET_MASK)
+ && !(pVmcs->u64AddrEntryMsrLoad.u >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth)
+ && PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), pVmcs->u64AddrEntryMsrLoad.u))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrEntryMsrLoad);
+ }
+
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_ENTRY_TO_SMM)); /* We don't support SMM yet. */
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_DEACTIVATE_DUAL_MON)); /* We don't support dual-monitor treatment yet. */
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Loads the guest control registers, debug register and some MSRs as part of
+ * VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmentryLoadGuestControlRegsMsrs(PVMCPUCC pVCpu)
+{
+ /*
+ * Load guest control registers, debug registers and MSRs.
+ * See Intel spec. 26.3.2.1 "Loading Guest Control Registers, Debug Registers and MSRs".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR0);
+ uint64_t const uGstCr0 = (pVmcs->u64GuestCr0.u & ~VMX_ENTRY_GUEST_CR0_IGNORE_MASK)
+ | (pVCpu->cpum.GstCtx.cr0 & VMX_ENTRY_GUEST_CR0_IGNORE_MASK);
+ CPUMSetGuestCR0(pVCpu, uGstCr0);
+ CPUMSetGuestCR4(pVCpu, pVmcs->u64GuestCr4.u);
+ pVCpu->cpum.GstCtx.cr3 = pVmcs->u64GuestCr3.u;
+
+ if (pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_DEBUG)
+ pVCpu->cpum.GstCtx.dr[7] = (pVmcs->u64GuestDr7.u & ~VMX_ENTRY_GUEST_DR7_MBZ_MASK) | VMX_ENTRY_GUEST_DR7_MB1_MASK;
+
+ pVCpu->cpum.GstCtx.SysEnter.eip = pVmcs->u64GuestSysenterEip.s.Lo;
+ pVCpu->cpum.GstCtx.SysEnter.esp = pVmcs->u64GuestSysenterEsp.s.Lo;
+ pVCpu->cpum.GstCtx.SysEnter.cs = pVmcs->u32GuestSysenterCS;
+
+ if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fLongMode)
+ {
+ /* FS base and GS base are loaded while loading the rest of the guest segment registers. */
+
+ /* EFER MSR. */
+ if (!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_EFER_MSR))
+ {
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_EFER);
+ uint64_t const uHostEfer = pVCpu->cpum.GstCtx.msrEFER;
+ bool const fGstInLongMode = RT_BOOL(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_IA32E_MODE_GUEST);
+ bool const fGstPaging = RT_BOOL(uGstCr0 & X86_CR0_PG);
+ if (fGstInLongMode)
+ {
+ /* If the nested-guest is in long mode, LMA and LME are both set. */
+ Assert(fGstPaging);
+ pVCpu->cpum.GstCtx.msrEFER = uHostEfer | (MSR_K6_EFER_LMA | MSR_K6_EFER_LME);
+ }
+ else
+ {
+ /*
+ * If the nested-guest is outside long mode:
+ * - With paging: LMA is cleared, LME is cleared.
+ * - Without paging: LMA is cleared, LME is left unmodified.
+ */
+ uint64_t const fLmaLmeMask = MSR_K6_EFER_LMA | (fGstPaging ? MSR_K6_EFER_LME : 0);
+ pVCpu->cpum.GstCtx.msrEFER = uHostEfer & ~fLmaLmeMask;
+ }
+ }
+ /* else: see below. */
+ }
+
+ /* PAT MSR. */
+ if (pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_PAT_MSR)
+ pVCpu->cpum.GstCtx.msrPAT = pVmcs->u64GuestPatMsr.u;
+
+ /* EFER MSR. */
+ if (pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_EFER_MSR)
+ pVCpu->cpum.GstCtx.msrEFER = pVmcs->u64GuestEferMsr.u;
+
+ /* We don't support IA32_PERF_GLOBAL_CTRL MSR yet. */
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_PERF_MSR));
+
+ /* We don't support IA32_BNDCFGS MSR yet. */
+ Assert(!(pVmcs->u32EntryCtls & VMX_ENTRY_CTLS_LOAD_BNDCFGS_MSR));
+
+ /* Nothing to do for SMBASE register - We don't support SMM yet. */
+}
+
+
+/**
+ * Loads the guest segment registers, GDTR, IDTR, LDTR and TR as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmentryLoadGuestSegRegs(PVMCPUCC pVCpu)
+{
+ /*
+ * Load guest segment registers, GDTR, IDTR, LDTR and TR.
+ * See Intel spec. 26.3.2.2 "Loading Guest Segment Registers and Descriptor-Table Registers".
+ */
+ /* CS, SS, ES, DS, FS, GS. */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ for (unsigned iSegReg = 0; iSegReg < X86_SREG_COUNT; iSegReg++)
+ {
+ PCPUMSELREG pGstSelReg = &pVCpu->cpum.GstCtx.aSRegs[iSegReg];
+ CPUMSELREG VmcsSelReg;
+ int rc = iemVmxVmcsGetGuestSegReg(pVmcs, iSegReg, &VmcsSelReg);
+ AssertRC(rc); NOREF(rc);
+ if (!(VmcsSelReg.Attr.u & X86DESCATTR_UNUSABLE))
+ {
+ pGstSelReg->Sel = VmcsSelReg.Sel;
+ pGstSelReg->ValidSel = VmcsSelReg.Sel;
+ pGstSelReg->fFlags = CPUMSELREG_FLAGS_VALID;
+ pGstSelReg->u64Base = VmcsSelReg.u64Base;
+ pGstSelReg->u32Limit = VmcsSelReg.u32Limit;
+ pGstSelReg->Attr.u = VmcsSelReg.Attr.u;
+ }
+ else
+ {
+ pGstSelReg->Sel = VmcsSelReg.Sel;
+ pGstSelReg->ValidSel = VmcsSelReg.Sel;
+ pGstSelReg->fFlags = CPUMSELREG_FLAGS_VALID;
+ switch (iSegReg)
+ {
+ case X86_SREG_CS:
+ pGstSelReg->u64Base = VmcsSelReg.u64Base;
+ pGstSelReg->u32Limit = VmcsSelReg.u32Limit;
+ pGstSelReg->Attr.u = VmcsSelReg.Attr.u;
+ break;
+
+ case X86_SREG_SS:
+ pGstSelReg->u64Base = VmcsSelReg.u64Base & UINT32_C(0xfffffff0);
+ pGstSelReg->u32Limit = 0;
+ pGstSelReg->Attr.u = (VmcsSelReg.Attr.u & X86DESCATTR_DPL) | X86DESCATTR_D | X86DESCATTR_UNUSABLE;
+ break;
+
+ case X86_SREG_ES:
+ case X86_SREG_DS:
+ pGstSelReg->u64Base = 0;
+ pGstSelReg->u32Limit = 0;
+ pGstSelReg->Attr.u = X86DESCATTR_UNUSABLE;
+ break;
+
+ case X86_SREG_FS:
+ case X86_SREG_GS:
+ pGstSelReg->u64Base = VmcsSelReg.u64Base;
+ pGstSelReg->u32Limit = 0;
+ pGstSelReg->Attr.u = X86DESCATTR_UNUSABLE;
+ break;
+ }
+ Assert(pGstSelReg->Attr.n.u1Unusable);
+ }
+ }
+
+ /* LDTR. */
+ pVCpu->cpum.GstCtx.ldtr.Sel = pVmcs->GuestLdtr;
+ pVCpu->cpum.GstCtx.ldtr.ValidSel = pVmcs->GuestLdtr;
+ pVCpu->cpum.GstCtx.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
+ if (!(pVmcs->u32GuestLdtrAttr & X86DESCATTR_UNUSABLE))
+ {
+ pVCpu->cpum.GstCtx.ldtr.u64Base = pVmcs->u64GuestLdtrBase.u;
+ pVCpu->cpum.GstCtx.ldtr.u32Limit = pVmcs->u32GuestLdtrLimit;
+ pVCpu->cpum.GstCtx.ldtr.Attr.u = pVmcs->u32GuestLdtrAttr;
+ }
+ else
+ {
+ pVCpu->cpum.GstCtx.ldtr.u64Base = 0;
+ pVCpu->cpum.GstCtx.ldtr.u32Limit = 0;
+ pVCpu->cpum.GstCtx.ldtr.Attr.u = X86DESCATTR_UNUSABLE;
+ }
+
+ /* TR. */
+ Assert(!(pVmcs->u32GuestTrAttr & X86DESCATTR_UNUSABLE));
+ pVCpu->cpum.GstCtx.tr.Sel = pVmcs->GuestTr;
+ pVCpu->cpum.GstCtx.tr.ValidSel = pVmcs->GuestTr;
+ pVCpu->cpum.GstCtx.tr.fFlags = CPUMSELREG_FLAGS_VALID;
+ pVCpu->cpum.GstCtx.tr.u64Base = pVmcs->u64GuestTrBase.u;
+ pVCpu->cpum.GstCtx.tr.u32Limit = pVmcs->u32GuestTrLimit;
+ pVCpu->cpum.GstCtx.tr.Attr.u = pVmcs->u32GuestTrAttr;
+
+ /* GDTR. */
+ pVCpu->cpum.GstCtx.gdtr.cbGdt = pVmcs->u32GuestGdtrLimit;
+ pVCpu->cpum.GstCtx.gdtr.pGdt = pVmcs->u64GuestGdtrBase.u;
+
+ /* IDTR. */
+ pVCpu->cpum.GstCtx.idtr.cbIdt = pVmcs->u32GuestIdtrLimit;
+ pVCpu->cpum.GstCtx.idtr.pIdt = pVmcs->u64GuestIdtrBase.u;
+}
+
+
+/**
+ * Loads the guest MSRs from the VM-entry MSR-load area as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC int iemVmxVmentryLoadGuestAutoMsrs(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Load guest MSRs.
+ * See Intel spec. 26.4 "Loading MSRs".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ const char *const pszFailure = "VM-exit";
+
+ /*
+ * The VM-entry MSR-load area address need not be a valid guest-physical address if the
+ * VM-entry MSR load count is 0. If this is the case, bail early without reading it.
+ * See Intel spec. 24.8.2 "VM-Entry Controls for MSRs".
+ */
+ uint32_t const cMsrs = pVmcs->u32EntryMsrLoadCount;
+ if (!cMsrs)
+ return VINF_SUCCESS;
+
+ /*
+ * Verify the MSR auto-load count. Physical CPUs can behave unpredictably if the count is
+ * exceeded including possibly raising #MC exceptions during VMX transition. Our
+ * implementation shall fail VM-entry with an VMX_EXIT_ERR_MSR_LOAD VM-exit.
+ */
+ bool const fIsMsrCountValid = iemVmxIsAutoMsrCountValid(pVCpu, cMsrs);
+ if (fIsMsrCountValid)
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_V_AUTOMSR_AREA_SIZE / sizeof(VMXAUTOMSR));
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_MsrLoadCount);
+ }
+
+ RTGCPHYS const GCPhysVmEntryMsrLoadArea = pVmcs->u64AddrEntryMsrLoad.u;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pEntryMsrLoadArea),
+ GCPhysVmEntryMsrLoadArea, cMsrs * sizeof(VMXAUTOMSR));
+ if (RT_SUCCESS(rc))
+ {
+ PCVMXAUTOMSR pMsr = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pEntryMsrLoadArea);
+ Assert(pMsr);
+ for (uint32_t idxMsr = 0; idxMsr < cMsrs; idxMsr++, pMsr++)
+ {
+ if ( !pMsr->u32Reserved
+ && pMsr->u32Msr != MSR_K8_FS_BASE
+ && pMsr->u32Msr != MSR_K8_GS_BASE
+ && pMsr->u32Msr != MSR_K6_EFER
+ && pMsr->u32Msr != MSR_IA32_SMM_MONITOR_CTL
+ && pMsr->u32Msr >> 8 != MSR_IA32_X2APIC_START >> 8)
+ {
+ VBOXSTRICTRC rcStrict = CPUMSetGuestMsr(pVCpu, pMsr->u32Msr, pMsr->u64Value);
+ if (rcStrict == VINF_SUCCESS)
+ continue;
+
+ /*
+ * If we're in ring-0, we cannot handle returns to ring-3 at this point and continue VM-entry.
+ * If any nested hypervisor loads MSRs that require ring-3 handling, we cause a VM-entry failure
+ * recording the MSR index in the Exit qualification (as per the Intel spec.) and indicated
+ * further by our own, specific diagnostic code. Later, we can try implement handling of the
+ * MSR in ring-0 if possible, or come up with a better, generic solution.
+ */
+ iemVmxVmcsSetExitQual(pVCpu, idxMsr);
+ VMXVDIAG const enmDiag = rcStrict == VINF_CPUM_R3_MSR_WRITE
+ ? kVmxVDiag_Vmentry_MsrLoadRing3
+ : kVmxVDiag_Vmentry_MsrLoad;
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, enmDiag);
+ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, idxMsr);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_MsrLoadRsvd);
+ }
+ }
+ }
+ else
+ {
+ AssertMsgFailed(("%s: Failed to read MSR auto-load area at %#RGp, rc=%Rrc\n", pszInstr, GCPhysVmEntryMsrLoadArea, rc));
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_MsrLoadPtrReadPhys);
+ }
+
+ NOREF(pszInstr);
+ NOREF(pszFailure);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Loads the guest-state non-register state as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ *
+ * @remarks This must be called only after loading the nested-guest register state
+ * (especially nested-guest RIP).
+ */
+IEM_STATIC void iemVmxVmentryLoadGuestNonRegState(PVMCPUCC pVCpu)
+{
+ /*
+ * Load guest non-register state.
+ * See Intel spec. 26.6 "Special Features of VM Entry"
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ /*
+ * If VM-entry is not vectoring, block-by-STI and block-by-MovSS state must be loaded.
+ * If VM-entry is vectoring, there is no block-by-STI or block-by-MovSS.
+ *
+ * See Intel spec. 26.6.1 "Interruptibility State".
+ */
+ bool const fEntryVectoring = VMXIsVmentryVectoring(pVmcs->u32EntryIntInfo, NULL /* puEntryIntInfoType */);
+ if ( !fEntryVectoring
+ && (pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_STI | VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS)))
+ EMSetInhibitInterruptsPC(pVCpu, pVmcs->u64GuestRip.u);
+ else if (VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS))
+ VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS);
+
+ /* NMI blocking. */
+ if (pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_NMI)
+ {
+ if (pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI)
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking = true;
+ else
+ {
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking = false;
+ if (!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_BLOCK_NMIS))
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_BLOCK_NMIS);
+ }
+ }
+ else
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fVirtNmiBlocking = false;
+
+ /* SMI blocking is irrelevant. We don't support SMIs yet. */
+
+ /* Loading PDPTEs will be taken care when we switch modes. We don't support EPT yet. */
+ Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_EPT));
+
+ /* VPID is irrelevant. We don't support VPID yet. */
+
+ /* Clear address-range monitoring. */
+ EMMonitorWaitClear(pVCpu);
+}
+
+
+/**
+ * Loads the guest VMCS referenced state (such as MSR bitmaps, I/O bitmaps etc).
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ *
+ * @remarks This assumes various VMCS related data structure pointers have already
+ * been verified prior to calling this function.
+ */
+IEM_STATIC int iemVmxVmentryLoadGuestVmcsRefState(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ const char *const pszFailure = "VM-exit";
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ /*
+ * Virtualize APIC accesses.
+ */
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS)
+ {
+ /* APIC-access physical address. */
+ RTGCPHYS const GCPhysApicAccess = pVmcs->u64AddrApicAccess.u;
+
+ /*
+ * Register the handler for the APIC-access page.
+ *
+ * We don't deregister the APIC-access page handler during the VM-exit as a different
+ * nested-VCPU might be using the same guest-physical address for its APIC-access page.
+ *
+ * We leave the page registered until the first access that happens outside VMX non-root
+ * mode. Guest software is allowed to access structures such as the APIC-access page
+ * only when no logical processor with a current VMCS references it in VMX non-root mode,
+ * otherwise it can lead to unpredictable behavior including guest triple-faults.
+ *
+ * See Intel spec. 24.11.4 "Software Access to Related Structures".
+ */
+ if (!PGMHandlerPhysicalIsRegistered(pVCpu->CTX_SUFF(pVM), GCPhysApicAccess))
+ {
+ PVMCC pVM = pVCpu->CTX_SUFF(pVM);
+ PVMCPUCC pVCpu0 = VMCC_GET_CPU_0(pVM);
+ int rc = PGMHandlerPhysicalRegister(pVM, GCPhysApicAccess, GCPhysApicAccess + X86_PAGE_4K_SIZE - 1,
+ pVCpu0->iem.s.hVmxApicAccessPage, NIL_RTR3PTR /* pvUserR3 */,
+ NIL_RTR0PTR /* pvUserR0 */, NIL_RTRCPTR /* pvUserRC */, NULL /* pszDesc */);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_AddrApicAccessHandlerReg);
+ }
+ }
+
+ /*
+ * VMCS shadowing.
+ */
+ if (pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VMCS_SHADOWING)
+ {
+ /* Read the VMREAD-bitmap. */
+ RTGCPHYS const GCPhysVmreadBitmap = pVmcs->u64AddrVmreadBitmap.u;
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvVmreadBitmap));
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvVmreadBitmap),
+ GCPhysVmreadBitmap, VMX_V_VMREAD_VMWRITE_BITMAP_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmreadBitmapPtrReadPhys);
+
+ /* Read the VMWRITE-bitmap. */
+ RTGCPHYS const GCPhysVmwriteBitmap = pVmcs->u64AddrVmwriteBitmap.u;
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvVmwriteBitmap));
+ rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvVmwriteBitmap),
+ GCPhysVmwriteBitmap, VMX_V_VMREAD_VMWRITE_BITMAP_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmwriteBitmapPtrReadPhys);
+ }
+
+ /*
+ * I/O bitmaps.
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_IO_BITMAPS)
+ {
+ /* Read the IO bitmap A. */
+ RTGCPHYS const GCPhysIoBitmapA = pVmcs->u64AddrIoBitmapA.u;
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvIoBitmap));
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvIoBitmap),
+ GCPhysIoBitmapA, VMX_V_IO_BITMAP_A_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_IoBitmapAPtrReadPhys);
+
+ /* Read the IO bitmap B. */
+ RTGCPHYS const GCPhysIoBitmapB = pVmcs->u64AddrIoBitmapB.u;
+ uint8_t *pbIoBitmapB = (uint8_t *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvIoBitmap) + VMX_V_IO_BITMAP_A_SIZE;
+ rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pbIoBitmapB, GCPhysIoBitmapB, VMX_V_IO_BITMAP_B_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_IoBitmapBPtrReadPhys);
+ }
+
+ /*
+ * TPR shadow and Virtual-APIC page.
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW)
+ {
+ /* Verify TPR threshold and VTPR when both virtualize-APIC accesses and virtual-interrupt delivery aren't used. */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS)
+ && !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY))
+ {
+ /* Read the VTPR from the virtual-APIC page. */
+ RTGCPHYS const GCPhysVirtApic = pVmcs->u64AddrVirtApic.u;
+ uint8_t u8VTpr;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &u8VTpr, GCPhysVirtApic + XAPIC_OFF_TPR, sizeof(u8VTpr));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VirtApicPagePtrReadPhys);
+
+ /* Bits 3:0 of the TPR-threshold must not be greater than bits 7:4 of VTPR. */
+ if ((uint8_t)RT_BF_GET(pVmcs->u32TprThreshold, VMX_BF_TPR_THRESHOLD_TPR) <= (u8VTpr & 0xf0))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_TprThresholdVTpr);
+ }
+ }
+
+ /*
+ * VMCS link pointer.
+ */
+ if (pVmcs->u64VmcsLinkPtr.u != UINT64_C(0xffffffffffffffff))
+ {
+ /* Read the VMCS-link pointer from guest memory. */
+ RTGCPHYS const GCPhysShadowVmcs = pVmcs->u64VmcsLinkPtr.u;
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs));
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs),
+ GCPhysShadowVmcs, VMX_V_SHADOW_VMCS_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmcsLinkPtrReadPhys);
+ }
+
+ /* Verify the VMCS revision specified by the guest matches what we reported to the guest. */
+ if (pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs)->u32VmcsRevId.n.u31RevisionId == VMX_V_VMCS_REVISION_ID)
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmcsLinkPtrRevId);
+ }
+
+ /* Verify the shadow bit is set if VMCS shadowing is enabled . */
+ if ( !(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VMCS_SHADOWING)
+ || pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs)->u32VmcsRevId.n.fIsShadowVmcs)
+ { /* likely */ }
+ else
+ {
+ iemVmxVmcsSetExitQual(pVCpu, VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR);
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_VmcsLinkPtrShadow);
+ }
+
+ /* Update our cache of the guest physical address of the shadow VMCS. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.GCPhysShadowVmcs = GCPhysShadowVmcs;
+ }
+
+ /*
+ * MSR bitmap.
+ */
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_MSR_BITMAPS)
+ {
+ /* Read the MSR bitmap. */
+ RTGCPHYS const GCPhysMsrBitmap = pVmcs->u64AddrMsrBitmap.u;
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvMsrBitmap));
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvMsrBitmap),
+ GCPhysMsrBitmap, VMX_V_MSR_BITMAP_SIZE);
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_MsrBitmapPtrReadPhys);
+ }
+
+ NOREF(pszFailure);
+ NOREF(pszInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Loads the guest-state as part of VM-entry.
+ *
+ * @returns VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ *
+ * @remarks This must be done after all the necessary steps prior to loading of
+ * guest-state (e.g. checking various VMCS state).
+ */
+IEM_STATIC int iemVmxVmentryLoadGuestState(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /* Load guest control registers, MSRs (that are directly part of the VMCS). */
+ iemVmxVmentryLoadGuestControlRegsMsrs(pVCpu);
+
+ /* Load guest segment registers. */
+ iemVmxVmentryLoadGuestSegRegs(pVCpu);
+
+ /*
+ * Load guest RIP, RSP and RFLAGS.
+ * See Intel spec. 26.3.2.3 "Loading Guest RIP, RSP and RFLAGS".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ pVCpu->cpum.GstCtx.rsp = pVmcs->u64GuestRsp.u;
+ pVCpu->cpum.GstCtx.rip = pVmcs->u64GuestRip.u;
+ pVCpu->cpum.GstCtx.rflags.u = pVmcs->u64GuestRFlags.u;
+
+ /* Initialize the PAUSE-loop controls as part of VM-entry. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uFirstPauseLoopTick = 0;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uPrevPauseTick = 0;
+
+ /* Load guest non-register state (such as interrupt shadows, NMI blocking etc). */
+ iemVmxVmentryLoadGuestNonRegState(pVCpu);
+
+ /* Load VMX related structures and state referenced by the VMCS. */
+ int rc = iemVmxVmentryLoadGuestVmcsRefState(pVCpu, pszInstr);
+ if (rc == VINF_SUCCESS)
+ { /* likely */ }
+ else
+ return rc;
+
+ NOREF(pszInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Returns whether there are is a pending debug exception on VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC bool iemVmxVmentryIsPendingDebugXcpt(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ /*
+ * Pending debug exceptions.
+ * See Intel spec. 26.6.3 "Delivery of Pending Debug Exceptions after VM Entry".
+ */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ bool fPendingDbgXcpt = RT_BOOL(pVmcs->u64GuestPendingDbgXcpts.u & ( VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS
+ | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_EN_BP));
+ if (fPendingDbgXcpt)
+ {
+ uint8_t uEntryIntInfoType;
+ bool const fEntryVectoring = VMXIsVmentryVectoring(pVmcs->u32EntryIntInfo, &uEntryIntInfoType);
+ if (fEntryVectoring)
+ {
+ switch (uEntryIntInfoType)
+ {
+ case VMX_ENTRY_INT_INFO_TYPE_EXT_INT:
+ case VMX_ENTRY_INT_INFO_TYPE_NMI:
+ case VMX_ENTRY_INT_INFO_TYPE_HW_XCPT:
+ case VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT:
+ fPendingDbgXcpt = false;
+ break;
+
+ case VMX_ENTRY_INT_INFO_TYPE_SW_XCPT:
+ {
+ /*
+ * Whether the pending debug exception for software exceptions other than
+ * #BP and #OF is delivered after injecting the exception or is discard
+ * is CPU implementation specific. We will discard them (easier).
+ */
+ uint8_t const uVector = VMX_ENTRY_INT_INFO_VECTOR(pVmcs->u32EntryIntInfo);
+ if ( uVector != X86_XCPT_BP
+ && uVector != X86_XCPT_OF)
+ fPendingDbgXcpt = false;
+ RT_FALL_THRU();
+ }
+ case VMX_ENTRY_INT_INFO_TYPE_SW_INT:
+ {
+ if (!(pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS))
+ fPendingDbgXcpt = false;
+ break;
+ }
+ }
+ }
+ else
+ {
+ /*
+ * When the VM-entry is not vectoring but there is blocking-by-MovSS, whether the
+ * pending debug exception is held pending or is discarded is CPU implementation
+ * specific. We will discard them (easier).
+ */
+ if (pVmcs->u32GuestIntrState & VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS)
+ fPendingDbgXcpt = false;
+
+ /* There's no pending debug exception in the shutdown or wait-for-SIPI state. */
+ if (pVmcs->u32GuestActivityState & (VMX_VMCS_GUEST_ACTIVITY_SHUTDOWN | VMX_VMCS_GUEST_ACTIVITY_SIPI_WAIT))
+ fPendingDbgXcpt = false;
+ }
+ }
+
+ NOREF(pszInstr);
+ return fPendingDbgXcpt;
+}
+
+
+/**
+ * Set up the monitor-trap flag (MTF).
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC void iemVmxVmentrySetupMtf(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_MONITOR_TRAP_FLAG)
+ {
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_MTF);
+ Log(("%s: Monitor-trap flag set on VM-entry\n", pszInstr));
+ }
+ else
+ Assert(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_MTF));
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Sets up NMI-window exiting.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC void iemVmxVmentrySetupNmiWindow(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_NMI_WINDOW_EXIT)
+ {
+ Assert(pVmcs->u32PinCtls & VMX_PIN_CTLS_VIRT_NMI);
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_NMI_WINDOW);
+ Log(("%s: NMI-window set on VM-entry\n", pszInstr));
+ }
+ else
+ Assert(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_NMI_WINDOW));
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Sets up interrupt-window exiting.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC void iemVmxVmentrySetupIntWindow(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_INT_WINDOW_EXIT)
+ {
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_INT_WINDOW);
+ Log(("%s: Interrupt-window set on VM-entry\n", pszInstr));
+ }
+ else
+ Assert(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_INT_WINDOW));
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Set up the VMX-preemption timer.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC void iemVmxVmentrySetupPreemptTimer(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ if (pVmcs->u32PinCtls & VMX_PIN_CTLS_PREEMPT_TIMER)
+ {
+ /*
+ * If the timer is 0, we must cause a VM-exit before executing the first
+ * nested-guest instruction. So we can flag as though the timer has already
+ * expired and we will check and cause a VM-exit at the right priority elsewhere
+ * in the code.
+ */
+ uint64_t uEntryTick;
+ uint32_t const uPreemptTimer = pVmcs->u32PreemptTimer;
+ if (uPreemptTimer)
+ {
+ int rc = CPUMStartGuestVmxPremptTimer(pVCpu, uPreemptTimer, VMX_V_PREEMPT_TIMER_SHIFT, &uEntryTick);
+ AssertRC(rc);
+ Log(("%s: VM-entry set up VMX-preemption timer at %#RX64\n", pszInstr, uEntryTick));
+ }
+ else
+ {
+ uEntryTick = TMCpuTickGetNoCheck(pVCpu);
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_PREEMPT_TIMER);
+ Log(("%s: VM-entry set up VMX-preemption timer at %#RX64 to expire immediately!\n", pszInstr, uEntryTick));
+ }
+
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uEntryTick = uEntryTick;
+ }
+ else
+ Assert(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_VMX_PREEMPT_TIMER));
+
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Injects an event using TRPM given a VM-entry interruption info. and related
+ * fields.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ * @param uEntryIntInfo The VM-entry interruption info.
+ * @param uErrCode The error code associated with the event if any.
+ * @param cbInstr The VM-entry instruction length (for software
+ * interrupts and software exceptions). Pass 0
+ * otherwise.
+ * @param GCPtrFaultAddress The guest CR2 if this is a \#PF event.
+ */
+IEM_STATIC void iemVmxVmentryInjectTrpmEvent(PVMCPUCC pVCpu, const char *pszInstr, uint32_t uEntryIntInfo, uint32_t uErrCode,
+ uint32_t cbInstr, RTGCUINTPTR GCPtrFaultAddress)
+{
+ Assert(VMX_ENTRY_INT_INFO_IS_VALID(uEntryIntInfo));
+
+ uint8_t const uType = VMX_ENTRY_INT_INFO_TYPE(uEntryIntInfo);
+ uint8_t const uVector = VMX_ENTRY_INT_INFO_VECTOR(uEntryIntInfo);
+ TRPMEVENT const enmTrpmEvent = HMVmxEventTypeToTrpmEventType(uEntryIntInfo);
+
+ Assert(uType != VMX_ENTRY_INT_INFO_TYPE_OTHER_EVENT);
+
+ int rc = TRPMAssertTrap(pVCpu, uVector, enmTrpmEvent);
+ AssertRC(rc);
+ Log(("%s: Injecting: vector=%#x type=%#x (%s)\n", pszInstr, uVector, uType, VMXGetEntryIntInfoTypeDesc(uType)));
+
+ if (VMX_ENTRY_INT_INFO_IS_ERROR_CODE_VALID(uEntryIntInfo))
+ {
+ TRPMSetErrorCode(pVCpu, uErrCode);
+ Log(("%s: Injecting: err_code=%#x\n", pszInstr, uErrCode));
+ }
+
+ if (VMX_ENTRY_INT_INFO_IS_XCPT_PF(uEntryIntInfo))
+ {
+ TRPMSetFaultAddress(pVCpu, GCPtrFaultAddress);
+ Log(("%s: Injecting: fault_addr=%RGp\n", pszInstr, GCPtrFaultAddress));
+ }
+ else
+ {
+ if ( uType == VMX_ENTRY_INT_INFO_TYPE_SW_INT
+ || uType == VMX_ENTRY_INT_INFO_TYPE_SW_XCPT
+ || uType == VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT)
+ {
+ TRPMSetInstrLength(pVCpu, cbInstr);
+ Log(("%s: Injecting: instr_len=%u\n", pszInstr, cbInstr));
+ }
+ }
+
+ if (VMX_ENTRY_INT_INFO_TYPE(uEntryIntInfo) == VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT)
+ {
+ TRPMSetTrapDueToIcebp(pVCpu);
+ Log(("%s: Injecting: icebp\n", pszInstr));
+ }
+
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Performs event injection (if any) as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param pszInstr The VMX instruction name (for logging purposes).
+ */
+IEM_STATIC void iemVmxVmentryInjectEvent(PVMCPUCC pVCpu, const char *pszInstr)
+{
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+
+ /*
+ * Inject events.
+ * The event that is going to be made pending for injection is not subject to VMX intercepts,
+ * thus we flag ignoring of intercepts. However, recursive exceptions if any during delivery
+ * of the current event -are- subject to intercepts, hence this flag will be flipped during
+ * the actually delivery of this event.
+ *
+ * See Intel spec. 26.5 "Event Injection".
+ */
+ uint32_t const uEntryIntInfo = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->u32EntryIntInfo;
+ bool const fEntryIntInfoValid = VMX_ENTRY_INT_INFO_IS_VALID(uEntryIntInfo);
+
+ CPUMSetGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx, !fEntryIntInfoValid);
+ if (fEntryIntInfoValid)
+ {
+ if (VMX_ENTRY_INT_INFO_TYPE(uEntryIntInfo) == VMX_ENTRY_INT_INFO_TYPE_OTHER_EVENT)
+ {
+ Assert(VMX_ENTRY_INT_INFO_VECTOR(uEntryIntInfo) == VMX_ENTRY_INT_INFO_VECTOR_MTF);
+ VMCPU_FF_SET(pVCpu, VMCPU_FF_VMX_MTF);
+ }
+ else
+ iemVmxVmentryInjectTrpmEvent(pVCpu, pszInstr, uEntryIntInfo, pVmcs->u32EntryXcptErrCode, pVmcs->u32EntryInstrLen,
+ pVCpu->cpum.GstCtx.cr2);
+
+ /*
+ * We need to clear the VM-entry interruption information field's valid bit on VM-exit.
+ *
+ * However, we do it here on VM-entry as well because while it isn't visible to guest
+ * software until VM-exit, when and if HM looks at the VMCS to continue nested-guest
+ * execution using hardware-assisted VMX, it will not be try to inject the event again.
+ *
+ * See Intel spec. 24.8.3 "VM-Entry Controls for Event Injection".
+ */
+ pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID;
+ }
+ else
+ {
+ /*
+ * Inject any pending guest debug exception.
+ * Unlike injecting events, this #DB injection on VM-entry is subject to #DB VMX intercept.
+ * See Intel spec. 26.6.3 "Delivery of Pending Debug Exceptions after VM Entry".
+ */
+ bool const fPendingDbgXcpt = iemVmxVmentryIsPendingDebugXcpt(pVCpu, pszInstr);
+ if (fPendingDbgXcpt)
+ {
+ uint32_t const uDbgXcptInfo = RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VECTOR, X86_XCPT_DB)
+ | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_TYPE, VMX_ENTRY_INT_INFO_TYPE_HW_XCPT)
+ | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VALID, 1);
+ iemVmxVmentryInjectTrpmEvent(pVCpu, pszInstr, uDbgXcptInfo, 0 /* uErrCode */, pVmcs->u32EntryInstrLen,
+ 0 /* GCPtrFaultAddress */);
+ }
+ }
+
+ NOREF(pszInstr);
+}
+
+
+/**
+ * Initializes all read-only VMCS fields as part of VM-entry.
+ *
+ * @param pVCpu The cross context virtual CPU structure.
+ */
+IEM_STATIC void iemVmxVmentryInitReadOnlyFields(PVMCPUCC pVCpu)
+{
+ /*
+ * Any VMCS field which we do not establish on every VM-exit but may potentially
+ * be used on the VM-exit path of a nested hypervisor -and- is not explicitly
+ * specified to be undefined, needs to be initialized here.
+ *
+ * Thus, it is especially important to clear the Exit qualification field
+ * since it must be zero for VM-exits where it is not used. Similarly, the
+ * VM-exit interruption information field's valid bit needs to be cleared for
+ * the same reasons.
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+
+ /* 16-bit (none currently). */
+ /* 32-bit. */
+ pVmcs->u32RoVmInstrError = 0;
+ pVmcs->u32RoExitReason = 0;
+ pVmcs->u32RoExitIntInfo = 0;
+ pVmcs->u32RoExitIntErrCode = 0;
+ pVmcs->u32RoIdtVectoringInfo = 0;
+ pVmcs->u32RoIdtVectoringErrCode = 0;
+ pVmcs->u32RoExitInstrLen = 0;
+ pVmcs->u32RoExitInstrInfo = 0;
+
+ /* 64-bit. */
+ pVmcs->u64RoGuestPhysAddr.u = 0;
+
+ /* Natural-width. */
+ pVmcs->u64RoExitQual.u = 0;
+ pVmcs->u64RoIoRcx.u = 0;
+ pVmcs->u64RoIoRsi.u = 0;
+ pVmcs->u64RoIoRdi.u = 0;
+ pVmcs->u64RoIoRip.u = 0;
+ pVmcs->u64RoGuestLinearAddr.u = 0;
+}
+
+
+/**
+ * VMLAUNCH/VMRESUME instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param uInstrId The instruction identity (VMXINSTRID_VMLAUNCH or
+ * VMXINSTRID_VMRESUME).
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmlaunchVmresume(PVMCPUCC pVCpu, uint8_t cbInstr, VMXINSTRID uInstrId)
+{
+# if defined(VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM) && !defined(IN_RING3)
+ RT_NOREF3(pVCpu, cbInstr, uInstrId);
+ return VINF_EM_RAW_EMULATE_INSTR;
+# else
+ Assert( uInstrId == VMXINSTRID_VMLAUNCH
+ || uInstrId == VMXINSTRID_VMRESUME);
+ const char *pszInstr = uInstrId == VMXINSTRID_VMRESUME ? "vmresume" : "vmlaunch";
+
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ return iemVmxVmexitInstr(pVCpu, uInstrId == VMXINSTRID_VMRESUME ? VMX_EXIT_VMRESUME : VMX_EXIT_VMLAUNCH, cbInstr);
+
+ Assert(IEM_VMX_IS_ROOT_MODE(pVCpu));
+
+ /*
+ * Basic VM-entry checks.
+ * The order of the CPL, current and shadow VMCS and block-by-MovSS are important.
+ * The checks following that do not have to follow a specific order.
+ *
+ * See Intel spec. 26.1 "Basic VM-entry Checks".
+ */
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("%s: CPL %u -> #GP(0)\n", pszInstr, pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Current VMCS valid. */
+ if (IEM_VMX_HAS_CURRENT_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("%s: VMCS pointer %#RGp invalid -> VMFailInvalid\n", pszInstr, IEM_VMX_GET_CURRENT_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_PtrInvalid;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Current VMCS is not a shadow VMCS. */
+ if (!pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->u32VmcsRevId.n.fIsShadowVmcs)
+ { /* likely */ }
+ else
+ {
+ Log(("%s: VMCS pointer %#RGp is a shadow VMCS -> VMFailInvalid\n", pszInstr, IEM_VMX_GET_CURRENT_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_PtrShadowVmcs;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /** @todo Distinguish block-by-MovSS from block-by-STI. Currently we
+ * use block-by-STI here which is not quite correct. */
+ if ( !VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS)
+ || pVCpu->cpum.GstCtx.rip != EMGetInhibitInterruptsPC(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("%s: VM entry with events blocked by MOV SS -> VMFail\n", pszInstr));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_BlocKMovSS;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMENTRY_BLOCK_MOVSS);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ if (uInstrId == VMXINSTRID_VMLAUNCH)
+ {
+ /* VMLAUNCH with non-clear VMCS. */
+ if (pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->fVmcsState == VMX_V_VMCS_LAUNCH_STATE_CLEAR)
+ { /* likely */ }
+ else
+ {
+ Log(("vmlaunch: VMLAUNCH with non-clear VMCS -> VMFail\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_VmcsClear;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMLAUNCH_NON_CLEAR_VMCS);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+ }
+ else
+ {
+ /* VMRESUME with non-launched VMCS. */
+ if (pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->fVmcsState == VMX_V_VMCS_LAUNCH_STATE_LAUNCHED)
+ { /* likely */ }
+ else
+ {
+ Log(("vmresume: VMRESUME with non-launched VMCS -> VMFail\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmentry_VmcsLaunch;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMRESUME_NON_LAUNCHED_VMCS);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+ }
+
+ /*
+ * We are allowed to cache VMCS related data structures (such as I/O bitmaps, MSR bitmaps)
+ * while entering VMX non-root mode. We do some of this while checking VM-execution
+ * controls. The nested hypervisor should not make assumptions and cannot expect
+ * predictable behavior if changes to these structures are made in guest memory while
+ * executing in VMX non-root mode. As far as VirtualBox is concerned, the guest cannot
+ * modify them anyway as we cache them in host memory.
+ *
+ * See Intel spec. 24.11.4 "Software Access to Related Structures".
+ */
+ PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ Assert(IEM_VMX_HAS_CURRENT_VMCS(pVCpu));
+
+ int rc = iemVmxVmentryCheckCtls(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryCheckHostState(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Initialize read-only VMCS fields before VM-entry since we don't update all of them
+ * for every VM-exit. This needs to be done before invoking a VM-exit (even those
+ * ones that may occur during VM-entry below).
+ */
+ iemVmxVmentryInitReadOnlyFields(pVCpu);
+
+ /*
+ * Blocking of NMIs need to be restored if VM-entry fails due to invalid-guest state.
+ * So we save the VMCPU_FF_BLOCK_NMI force-flag here so we can restore it on
+ * VM-exit when required.
+ * See Intel spec. 26.7 "VM-entry Failures During or After Loading Guest State"
+ */
+ iemVmxVmentrySaveNmiBlockingFF(pVCpu);
+
+ rc = iemVmxVmentryCheckGuestState(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryLoadGuestState(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ rc = iemVmxVmentryLoadGuestAutoMsrs(pVCpu, pszInstr);
+ if (RT_SUCCESS(rc))
+ {
+ Assert(rc != VINF_CPUM_R3_MSR_WRITE);
+
+ /* VMLAUNCH instruction must update the VMCS launch state. */
+ if (uInstrId == VMXINSTRID_VMLAUNCH)
+ pVmcs->fVmcsState = VMX_V_VMCS_LAUNCH_STATE_LAUNCHED;
+
+ /* Perform the VMX transition (PGM updates). */
+ VBOXSTRICTRC rcStrict = iemVmxWorldSwitch(pVCpu);
+ if (rcStrict == VINF_SUCCESS)
+ { /* likely */ }
+ else if (RT_SUCCESS(rcStrict))
+ {
+ Log3(("%s: iemVmxWorldSwitch returns %Rrc -> Setting passup status\n", pszInstr,
+ VBOXSTRICTRC_VAL(rcStrict)));
+ rcStrict = iemSetPassUpStatus(pVCpu, rcStrict);
+ }
+ else
+ {
+ Log3(("%s: iemVmxWorldSwitch failed! rc=%Rrc\n", pszInstr, VBOXSTRICTRC_VAL(rcStrict)));
+ return rcStrict;
+ }
+
+ /* Paranoia. */
+ Assert(rcStrict == VINF_SUCCESS);
+
+ /* We've now entered nested-guest execution. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fInVmxNonRootMode = true;
+
+ /*
+ * The priority of potential VM-exits during VM-entry is important.
+ * The priorities of VM-exits and events are listed from highest
+ * to lowest as follows:
+ *
+ * 1. Event injection.
+ * 2. Trap on task-switch (T flag set in TSS).
+ * 3. TPR below threshold / APIC-write.
+ * 4. SMI, INIT.
+ * 5. MTF exit.
+ * 6. Debug-trap exceptions (EFLAGS.TF), pending debug exceptions.
+ * 7. VMX-preemption timer.
+ * 9. NMI-window exit.
+ * 10. NMI injection.
+ * 11. Interrupt-window exit.
+ * 12. Virtual-interrupt injection.
+ * 13. Interrupt injection.
+ * 14. Process next instruction (fetch, decode, execute).
+ */
+
+ /* Setup VMX-preemption timer. */
+ iemVmxVmentrySetupPreemptTimer(pVCpu, pszInstr);
+
+ /* Setup monitor-trap flag. */
+ iemVmxVmentrySetupMtf(pVCpu, pszInstr);
+
+ /* Setup NMI-window exiting. */
+ iemVmxVmentrySetupNmiWindow(pVCpu, pszInstr);
+
+ /* Setup interrupt-window exiting. */
+ iemVmxVmentrySetupIntWindow(pVCpu, pszInstr);
+
+ /*
+ * Inject any event that the nested hypervisor wants to inject.
+ * Note! We cannot immediately perform the event injection here as we may have
+ * pending PGM operations to perform due to switching page tables and/or
+ * mode.
+ */
+ iemVmxVmentryInjectEvent(pVCpu, pszInstr);
+
+# if defined(VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM) && defined(IN_RING3)
+ /* Reschedule to IEM-only execution of the nested-guest. */
+ Log(("%s: Enabling IEM-only EM execution policy!\n", pszInstr));
+ int rcSched = EMR3SetExecutionPolicy(pVCpu->CTX_SUFF(pVM)->pUVM, EMEXECPOLICY_IEM_ALL, true);
+ if (rcSched != VINF_SUCCESS)
+ iemSetPassUpStatus(pVCpu, rcSched);
+# endif
+
+ /* Finally, done. */
+ Log3(("%s: cs:rip=%#04x:%#RX64 cr0=%#RX64 (%#RX64) cr4=%#RX64 (%#RX64) efer=%#RX64\n",
+ pszInstr, pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.cr0,
+ pVmcs->u64Cr0ReadShadow.u, pVCpu->cpum.GstCtx.cr4, pVmcs->u64Cr4ReadShadow.u,
+ pVCpu->cpum.GstCtx.msrEFER));
+ return VINF_SUCCESS;
+ }
+ return iemVmxVmexit(pVCpu, VMX_EXIT_ERR_MSR_LOAD | VMX_EXIT_REASON_ENTRY_FAILED,
+ pVmcs->u64RoExitQual.u);
+ }
+ }
+ return iemVmxVmexit(pVCpu, VMX_EXIT_ERR_INVALID_GUEST_STATE | VMX_EXIT_REASON_ENTRY_FAILED,
+ pVmcs->u64RoExitQual.u);
+ }
+
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMENTRY_INVALID_HOST_STATE);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMENTRY_INVALID_CTLS);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+# endif
+}
+
+
+/**
+ * Checks whether an RDMSR or WRMSR instruction for the given MSR is intercepted
+ * (causes a VM-exit) or not.
+ *
+ * @returns @c true if the instruction is intercepted, @c false otherwise.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param uExitReason The VM-exit reason (VMX_EXIT_RDMSR or
+ * VMX_EXIT_WRMSR).
+ * @param idMsr The MSR.
+ */
+IEM_STATIC bool iemVmxIsRdmsrWrmsrInterceptSet(PCVMCPU pVCpu, uint32_t uExitReason, uint32_t idMsr)
+{
+ Assert(IEM_VMX_IS_NON_ROOT_MODE(pVCpu));
+ Assert( uExitReason == VMX_EXIT_RDMSR
+ || uExitReason == VMX_EXIT_WRMSR);
+
+ /* Consult the MSR bitmap if the feature is supported. */
+ PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
+ Assert(pVmcs);
+ if (pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_MSR_BITMAPS)
+ {
+ Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvMsrBitmap));
+ uint32_t const fMsrpm = CPUMGetVmxMsrPermission(pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pvMsrBitmap), idMsr);
+ if (uExitReason == VMX_EXIT_RDMSR)
+ return RT_BOOL(fMsrpm & VMXMSRPM_EXIT_RD);
+ return RT_BOOL(fMsrpm & VMXMSRPM_EXIT_WR);
+ }
+
+ /* Without MSR bitmaps, all MSR accesses are intercepted. */
+ return true;
+}
+
+
+/**
+ * VMREAD instruction execution worker that does not perform any validation checks.
+ *
+ * Callers are expected to have performed the necessary checks and to ensure the
+ * VMREAD will succeed.
+ *
+ * @param pVmcs Pointer to the virtual VMCS.
+ * @param pu64Dst Where to write the VMCS value.
+ * @param u64VmcsField The VMCS field.
+ *
+ * @remarks May be called with interrupts disabled.
+ */
+IEM_STATIC void iemVmxVmreadNoCheck(PCVMXVVMCS pVmcs, uint64_t *pu64Dst, uint64_t u64VmcsField)
+{
+ VMXVMCSFIELD VmcsField;
+ VmcsField.u = u64VmcsField;
+ uint8_t const uWidth = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_WIDTH);
+ uint8_t const uType = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_TYPE);
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ AssertMsg(offField < VMX_V_VMCS_SIZE, ("off=%u field=%#RX64 width=%#x type=%#x index=%#x (%u)\n", offField, u64VmcsField,
+ uWidth, uType, uIndex, uIndex));
+ AssertCompile(VMX_V_SHADOW_VMCS_SIZE == VMX_V_VMCS_SIZE);
+
+ /*
+ * Read the VMCS component based on the field's effective width.
+ *
+ * The effective width is 64-bit fields adjusted to 32-bits if the access-type
+ * indicates high bits (little endian).
+ *
+ * Note! The caller is responsible to trim the result and update registers
+ * or memory locations are required. Here we just zero-extend to the largest
+ * type (i.e. 64-bits).
+ */
+ uint8_t const *pbVmcs = (uint8_t const *)pVmcs;
+ uint8_t const *pbField = pbVmcs + offField;
+ uint8_t const uEffWidth = VMXGetVmcsFieldWidthEff(VmcsField.u);
+ switch (uEffWidth)
+ {
+ case VMX_VMCSFIELD_WIDTH_64BIT:
+ case VMX_VMCSFIELD_WIDTH_NATURAL: *pu64Dst = *(uint64_t const *)pbField; break;
+ case VMX_VMCSFIELD_WIDTH_32BIT: *pu64Dst = *(uint32_t const *)pbField; break;
+ case VMX_VMCSFIELD_WIDTH_16BIT: *pu64Dst = *(uint16_t const *)pbField; break;
+ }
+}
+
+
+/**
+ * VMREAD common (memory/register) instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param pu64Dst Where to write the VMCS value (only updated when
+ * VINF_SUCCESS is returned).
+ * @param u64VmcsField The VMCS field.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmreadCommon(PVMCPUCC pVCpu, uint8_t cbInstr, uint64_t *pu64Dst, uint64_t u64VmcsField,
+ PCVMXVEXITINFO pExitInfo)
+{
+ /* Nested-guest intercept. */
+ if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
+ && CPUMIsGuestVmxVmreadVmwriteInterceptSet(pVCpu, VMX_EXIT_VMREAD, u64VmcsField))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMREAD, VMXINSTRID_VMREAD, cbInstr);
+ }
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmread: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmread_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* VMCS pointer in root mode. */
+ if ( !IEM_VMX_IS_ROOT_MODE(pVCpu)
+ || IEM_VMX_HAS_CURRENT_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("vmread: VMCS pointer %#RGp invalid -> VMFailInvalid\n", IEM_VMX_GET_CURRENT_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmread_PtrInvalid;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS-link pointer in non-root mode. */
+ if ( !IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
+ || IEM_VMX_HAS_SHADOW_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("vmread: VMCS-link pointer %#RGp invalid -> VMFailInvalid\n", IEM_VMX_GET_SHADOW_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmread_LinkPtrInvalid;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Supported VMCS field. */
+ if (CPUMIsGuestVmxVmcsFieldValid(pVCpu->CTX_SUFF(pVM), u64VmcsField))
+ { /* likely */ }
+ else
+ {
+ Log(("vmread: VMCS field %#RX64 invalid -> VMFail\n", u64VmcsField));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmread_FieldInvalid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64VmcsField;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMREAD_INVALID_COMPONENT);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * Reading from the current or shadow VMCS.
+ */
+ PCVMXVVMCS pVmcs = !IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
+ ? pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)
+ : pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs);
+ Assert(pVmcs);
+ iemVmxVmreadNoCheck(pVmcs, pu64Dst, u64VmcsField);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * VMREAD (64-bit register) instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param pu64Dst Where to store the VMCS field's value.
+ * @param u64VmcsField The VMCS field.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmreadReg64(PVMCPUCC pVCpu, uint8_t cbInstr, uint64_t *pu64Dst, uint64_t u64VmcsField,
+ PCVMXVEXITINFO pExitInfo)
+{
+ VBOXSTRICTRC rcStrict = iemVmxVmreadCommon(pVCpu, cbInstr, pu64Dst, u64VmcsField, pExitInfo);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ iemVmxVmreadSuccess(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ Log(("vmread/reg: iemVmxVmreadCommon failed rc=%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)));
+ return rcStrict;
+}
+
+
+/**
+ * VMREAD (32-bit register) instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param pu32Dst Where to store the VMCS field's value.
+ * @param u32VmcsField The VMCS field.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmreadReg32(PVMCPUCC pVCpu, uint8_t cbInstr, uint32_t *pu32Dst, uint64_t u32VmcsField,
+ PCVMXVEXITINFO pExitInfo)
+{
+ uint64_t u64Dst;
+ VBOXSTRICTRC rcStrict = iemVmxVmreadCommon(pVCpu, cbInstr, &u64Dst, u32VmcsField, pExitInfo);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ *pu32Dst = u64Dst;
+ iemVmxVmreadSuccess(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ Log(("vmread/reg: iemVmxVmreadCommon failed rc=%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)));
+ return rcStrict;
+}
+
+
+/**
+ * VMREAD (memory) instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The effective segment register to use with @a u64Val.
+ * Pass UINT8_MAX if it is a register access.
+ * @param GCPtrDst The guest linear address to store the VMCS field's
+ * value.
+ * @param u64VmcsField The VMCS field.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmreadMem(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPTR GCPtrDst, uint64_t u64VmcsField,
+ PCVMXVEXITINFO pExitInfo)
+{
+ uint64_t u64Dst;
+ VBOXSTRICTRC rcStrict = iemVmxVmreadCommon(pVCpu, cbInstr, &u64Dst, u64VmcsField, pExitInfo);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ /*
+ * Write the VMCS field's value to the location specified in guest-memory.
+ */
+ if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
+ rcStrict = iemMemStoreDataU64(pVCpu, iEffSeg, GCPtrDst, u64Dst);
+ else
+ rcStrict = iemMemStoreDataU32(pVCpu, iEffSeg, GCPtrDst, u64Dst);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ iemVmxVmreadSuccess(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ Log(("vmread/mem: Failed to write to memory operand at %#RGv, rc=%Rrc\n", GCPtrDst, VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmread_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrDst;
+ return rcStrict;
+ }
+
+ Log(("vmread/mem: iemVmxVmreadCommon failed rc=%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)));
+ return rcStrict;
+}
+
+
+/**
+ * VMWRITE instruction execution worker that does not perform any validation
+ * checks.
+ *
+ * Callers are expected to have performed the necessary checks and to ensure the
+ * VMWRITE will succeed.
+ *
+ * @param pVmcs Pointer to the virtual VMCS.
+ * @param u64Val The value to write.
+ * @param u64VmcsField The VMCS field.
+ *
+ * @remarks May be called with interrupts disabled.
+ */
+IEM_STATIC void iemVmxVmwriteNoCheck(PVMXVVMCS pVmcs, uint64_t u64Val, uint64_t u64VmcsField)
+{
+ VMXVMCSFIELD VmcsField;
+ VmcsField.u = u64VmcsField;
+ uint8_t const uWidth = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_WIDTH);
+ uint8_t const uType = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_TYPE);
+ uint8_t const uWidthType = (uWidth << 2) | uType;
+ uint8_t const uIndex = RT_BF_GET(VmcsField.u, VMX_BF_VMCSFIELD_INDEX);
+ Assert(uIndex <= VMX_V_VMCS_MAX_INDEX);
+ uint16_t const offField = g_aoffVmcsMap[uWidthType][uIndex];
+ Assert(offField < VMX_V_VMCS_SIZE);
+ AssertCompile(VMX_V_SHADOW_VMCS_SIZE == VMX_V_VMCS_SIZE);
+
+ /*
+ * Write the VMCS component based on the field's effective width.
+ *
+ * The effective width is 64-bit fields adjusted to 32-bits if the access-type
+ * indicates high bits (little endian).
+ */
+ uint8_t *pbVmcs = (uint8_t *)pVmcs;
+ uint8_t *pbField = pbVmcs + offField;
+ uint8_t const uEffWidth = VMXGetVmcsFieldWidthEff(VmcsField.u);
+ switch (uEffWidth)
+ {
+ case VMX_VMCSFIELD_WIDTH_64BIT:
+ case VMX_VMCSFIELD_WIDTH_NATURAL: *(uint64_t *)pbField = u64Val; break;
+ case VMX_VMCSFIELD_WIDTH_32BIT: *(uint32_t *)pbField = u64Val; break;
+ case VMX_VMCSFIELD_WIDTH_16BIT: *(uint16_t *)pbField = u64Val; break;
+ }
+}
+
+
+/**
+ * VMWRITE instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The effective segment register to use with @a u64Val.
+ * Pass UINT8_MAX if it is a register access.
+ * @param u64Val The value to write (or guest linear address to the
+ * value), @a iEffSeg will indicate if it's a memory
+ * operand.
+ * @param u64VmcsField The VMCS field.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmwrite(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, uint64_t u64Val, uint64_t u64VmcsField,
+ PCVMXVEXITINFO pExitInfo)
+{
+ /* Nested-guest intercept. */
+ if ( IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
+ && CPUMIsGuestVmxVmreadVmwriteInterceptSet(pVCpu, VMX_EXIT_VMWRITE, u64VmcsField))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMWRITE, VMXINSTRID_VMWRITE, cbInstr);
+ }
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmwrite: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* VMCS pointer in root mode. */
+ if ( !IEM_VMX_IS_ROOT_MODE(pVCpu)
+ || IEM_VMX_HAS_CURRENT_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("vmwrite: VMCS pointer %#RGp invalid -> VMFailInvalid\n", IEM_VMX_GET_CURRENT_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_PtrInvalid;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS-link pointer in non-root mode. */
+ if ( !IEM_VMX_IS_NON_ROOT_MODE(pVCpu)
+ || IEM_VMX_HAS_SHADOW_VMCS(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("vmwrite: VMCS-link pointer %#RGp invalid -> VMFailInvalid\n", IEM_VMX_GET_SHADOW_VMCS(pVCpu)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_LinkPtrInvalid;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* If the VMWRITE instruction references memory, access the specified memory operand. */
+ bool const fIsRegOperand = iEffSeg == UINT8_MAX;
+ if (!fIsRegOperand)
+ {
+ /* Read the value from the specified guest memory location. */
+ VBOXSTRICTRC rcStrict;
+ RTGCPTR const GCPtrVal = u64Val;
+ if (pVCpu->iem.s.enmCpuMode == IEMMODE_64BIT)
+ rcStrict = iemMemFetchDataU64(pVCpu, &u64Val, iEffSeg, GCPtrVal);
+ else
+ rcStrict = iemMemFetchDataU32_ZX_U64(pVCpu, &u64Val, iEffSeg, GCPtrVal);
+ if (RT_UNLIKELY(rcStrict != VINF_SUCCESS))
+ {
+ Log(("vmwrite: Failed to read value from memory operand at %#RGv, rc=%Rrc\n", GCPtrVal, VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrVal;
+ return rcStrict;
+ }
+ }
+ else
+ Assert(!pExitInfo || pExitInfo->InstrInfo.VmreadVmwrite.fIsRegOperand);
+
+ /* Supported VMCS field. */
+ if (CPUMIsGuestVmxVmcsFieldValid(pVCpu->CTX_SUFF(pVM), u64VmcsField))
+ { /* likely */ }
+ else
+ {
+ Log(("vmwrite: VMCS field %#RX64 invalid -> VMFail\n", u64VmcsField));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_FieldInvalid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64VmcsField;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMWRITE_INVALID_COMPONENT);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Read-only VMCS field. */
+ bool const fIsFieldReadOnly = VMXIsVmcsFieldReadOnly(u64VmcsField);
+ if ( !fIsFieldReadOnly
+ || IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxVmwriteAll)
+ { /* likely */ }
+ else
+ {
+ Log(("vmwrite: Write to read-only VMCS component %#RX64 -> VMFail\n", u64VmcsField));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmwrite_FieldRo;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64VmcsField;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMWRITE_RO_COMPONENT);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * Write to the current or shadow VMCS.
+ */
+ bool const fInVmxNonRootMode = IEM_VMX_IS_NON_ROOT_MODE(pVCpu);
+ PVMXVVMCS pVmcs = !fInVmxNonRootMode
+ ? pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)
+ : pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pShadowVmcs);
+ Assert(pVmcs);
+ iemVmxVmwriteNoCheck(pVmcs, u64Val, u64VmcsField);
+
+ /* Notify HM that the VMCS content might have changed. */
+ if (!fInVmxNonRootMode)
+ HMNotifyVmxNstGstCurrentVmcsChanged(pVCpu);
+
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * VMCLEAR instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The effective segment register to use with @a GCPtrVmcs.
+ * @param GCPtrVmcs The linear address of the VMCS pointer.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be NULL.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. VMX operation, CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmclear(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs,
+ PCVMXVEXITINFO pExitInfo)
+{
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMCLEAR, VMXINSTRID_NONE, cbInstr);
+ }
+
+ Assert(IEM_VMX_IS_ROOT_MODE(pVCpu));
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Get the VMCS pointer from the location specified by the source memory operand. */
+ RTGCPHYS GCPhysVmcs;
+ VBOXSTRICTRC rcStrict = iemMemFetchDataU64(pVCpu, &GCPhysVmcs, iEffSeg, GCPtrVmcs);
+ if (RT_LIKELY(rcStrict == VINF_SUCCESS))
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: Failed to read VMCS physaddr from %#RGv, rc=%Rrc\n", GCPtrVmcs, VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrVmcs;
+ return rcStrict;
+ }
+
+ /* VMCS pointer alignment. */
+ if (!(GCPhysVmcs & X86_PAGE_4K_OFFSET_MASK))
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: VMCS pointer not page-aligned -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_PtrAlign;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMCLEAR_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS physical-address width limits. */
+ if (!(GCPhysVmcs >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth))
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: VMCS pointer extends beyond physical-address width -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_PtrWidth;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMCLEAR_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS is not the VMXON region. */
+ if (GCPhysVmcs != pVCpu->cpum.GstCtx.hwvirt.vmx.GCPhysVmxon)
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: VMCS pointer cannot be identical to VMXON region pointer -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_PtrVmxon;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMCLEAR_VMXON_PTR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Ensure VMCS is not MMIO, ROM etc. This is not an Intel requirement but a
+ restriction imposed by our implementation. */
+ if (PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVmcs))
+ { /* likely */ }
+ else
+ {
+ Log(("vmclear: VMCS not normal memory -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmclear_PtrAbnormal;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMCLEAR_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * VMCLEAR allows committing and clearing any valid VMCS pointer.
+ *
+ * If the current VMCS is the one being cleared, set its state to 'clear' and commit
+ * to guest memory. Otherwise, set the state of the VMCS referenced in guest memory
+ * to 'clear'.
+ */
+ uint8_t const fVmcsLaunchStateClear = VMX_V_VMCS_LAUNCH_STATE_CLEAR;
+ if ( IEM_VMX_HAS_CURRENT_VMCS(pVCpu)
+ && IEM_VMX_GET_CURRENT_VMCS(pVCpu) == GCPhysVmcs)
+ {
+ pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->fVmcsState = fVmcsLaunchStateClear;
+ iemVmxWriteCurrentVmcsToGstMem(pVCpu);
+ IEM_VMX_CLEAR_CURRENT_VMCS(pVCpu);
+ }
+ else
+ {
+ AssertCompileMemberSize(VMXVVMCS, fVmcsState, sizeof(fVmcsLaunchStateClear));
+ rcStrict = PGMPhysSimpleWriteGCPhys(pVCpu->CTX_SUFF(pVM), GCPhysVmcs + RT_UOFFSETOF(VMXVVMCS, fVmcsState),
+ (const void *)&fVmcsLaunchStateClear, sizeof(fVmcsLaunchStateClear));
+ if (RT_FAILURE(rcStrict))
+ return rcStrict;
+ }
+
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * VMPTRST instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The effective segment register to use with @a GCPtrVmcs.
+ * @param GCPtrVmcs The linear address of where to store the current VMCS
+ * pointer.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be NULL.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. VMX operation, CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmptrst(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs,
+ PCVMXVEXITINFO pExitInfo)
+{
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMPTRST, VMXINSTRID_NONE, cbInstr);
+ }
+
+ Assert(IEM_VMX_IS_ROOT_MODE(pVCpu));
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrst: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrst_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Set the VMCS pointer to the location specified by the destination memory operand. */
+ AssertCompile(NIL_RTGCPHYS == ~(RTGCPHYS)0U);
+ VBOXSTRICTRC rcStrict = iemMemStoreDataU64(pVCpu, iEffSeg, GCPtrVmcs, IEM_VMX_GET_CURRENT_VMCS(pVCpu));
+ if (RT_LIKELY(rcStrict == VINF_SUCCESS))
+ {
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return rcStrict;
+ }
+
+ Log(("vmptrst: Failed to store VMCS pointer to memory at destination operand %#Rrc\n", VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrst_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrVmcs;
+ return rcStrict;
+}
+
+
+/**
+ * VMPTRLD instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param GCPtrVmcs The linear address of the current VMCS pointer.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be NULL.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. VMX operation, CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmptrld(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs,
+ PCVMXVEXITINFO pExitInfo)
+{
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMPTRLD, VMXINSTRID_NONE, cbInstr);
+ }
+
+ Assert(IEM_VMX_IS_ROOT_MODE(pVCpu));
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Get the VMCS pointer from the location specified by the source memory operand. */
+ RTGCPHYS GCPhysVmcs;
+ VBOXSTRICTRC rcStrict = iemMemFetchDataU64(pVCpu, &GCPhysVmcs, iEffSeg, GCPtrVmcs);
+ if (RT_LIKELY(rcStrict == VINF_SUCCESS))
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: Failed to read VMCS physaddr from %#RGv, rc=%Rrc\n", GCPtrVmcs, VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrVmcs;
+ return rcStrict;
+ }
+
+ /* VMCS pointer alignment. */
+ if (!(GCPhysVmcs & X86_PAGE_4K_OFFSET_MASK))
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: VMCS pointer not page-aligned -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrAlign;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS physical-address width limits. */
+ if (!(GCPhysVmcs >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth))
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: VMCS pointer extends beyond physical-address width -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrWidth;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMCS is not the VMXON region. */
+ if (GCPhysVmcs != pVCpu->cpum.GstCtx.hwvirt.vmx.GCPhysVmxon)
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: VMCS pointer cannot be identical to VMXON region pointer -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrVmxon;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_VMXON_PTR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Ensure VMCS is not MMIO, ROM etc. This is not an Intel requirement but a
+ restriction imposed by our implementation. */
+ if (PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVmcs))
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: VMCS not normal memory -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrAbnormal;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_INVALID_PHYSADDR);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Read just the VMCS revision from the VMCS. */
+ VMXVMCSREVID VmcsRevId;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &VmcsRevId, GCPhysVmcs, sizeof(VmcsRevId));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ Log(("vmptrld: Failed to read revision identifier from VMCS at %#RGp, rc=%Rrc\n", GCPhysVmcs, rc));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_RevPtrReadPhys;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ return rc;
+ }
+
+ /*
+ * Verify the VMCS revision specified by the guest matches what we reported to the guest.
+ * Verify the VMCS is not a shadow VMCS, if the VMCS shadowing feature is supported.
+ */
+ if ( VmcsRevId.n.u31RevisionId == VMX_V_VMCS_REVISION_ID
+ && ( !VmcsRevId.n.fIsShadowVmcs
+ || IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxVmcsShadowing))
+ { /* likely */ }
+ else
+ {
+ if (VmcsRevId.n.u31RevisionId != VMX_V_VMCS_REVISION_ID)
+ {
+ Log(("vmptrld: VMCS revision mismatch, expected %#RX32 got %#RX32, GCPtrVmcs=%#RGv GCPhysVmcs=%#RGp -> VMFail()\n",
+ VMX_V_VMCS_REVISION_ID, VmcsRevId.n.u31RevisionId, GCPtrVmcs, GCPhysVmcs));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_VmcsRevId;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_INCORRECT_VMCS_REV);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ Log(("vmptrld: Shadow VMCS -> VMFail()\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_ShadowVmcs;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMPTRLD_INCORRECT_VMCS_REV);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * We cache only the current VMCS in CPUMCTX. Therefore, VMPTRLD should always flush
+ * the cache of an existing, current VMCS back to guest memory before loading a new,
+ * different current VMCS.
+ */
+ if (IEM_VMX_GET_CURRENT_VMCS(pVCpu) != GCPhysVmcs)
+ {
+ if (IEM_VMX_HAS_CURRENT_VMCS(pVCpu))
+ {
+ iemVmxWriteCurrentVmcsToGstMem(pVCpu);
+ IEM_VMX_CLEAR_CURRENT_VMCS(pVCpu);
+ }
+
+ /* Set the new VMCS as the current VMCS and read it from guest memory. */
+ IEM_VMX_SET_CURRENT_VMCS(pVCpu, GCPhysVmcs);
+ rc = iemVmxReadCurrentVmcsFromGstMem(pVCpu);
+ if (RT_SUCCESS(rc))
+ {
+ /* Notify HM that a new, current VMCS is loaded. */
+ HMNotifyVmxNstGstCurrentVmcsChanged(pVCpu);
+ }
+ else
+ {
+ Log(("vmptrld: Failed to read VMCS at %#RGp, rc=%Rrc\n", GCPhysVmcs, rc));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmptrld_PtrReadPhys;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmcs;
+ return rc;
+ }
+ }
+
+ Assert(IEM_VMX_HAS_CURRENT_VMCS(pVCpu));
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * INVVPID instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The segment of the invvpid descriptor.
+ * @param GCPtrInvvpidDesc The address of invvpid descriptor.
+ * @param u64InvvpidType The invalidation type.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be
+ * NULL.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. VMX operation, CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxInvvpid(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPTR GCPtrInvvpidDesc,
+ uint64_t u64InvvpidType, PCVMXVEXITINFO pExitInfo)
+{
+ /* Check if INVVPID instruction is supported, otherwise raise #UD. */
+ if (!IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxVpid)
+ return iemRaiseUndefinedOpcode(pVCpu);
+
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_INVVPID, VMXINSTRID_NONE, cbInstr);
+ }
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl != 0)
+ {
+ Log(("invvpid: CPL != 0 -> #GP(0)\n"));
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /*
+ * Validate INVVPID invalidation type.
+ *
+ * The instruction specifies exactly ONE of the supported invalidation types.
+ *
+ * Each of the types has a bit in IA32_VMX_EPT_VPID_CAP MSR specifying if it is
+ * supported. In theory, it's possible for a CPU to not support flushing individual
+ * addresses but all the other types or any other combination. We do not take any
+ * shortcuts here by assuming the types we currently expose to the guest.
+ */
+ uint64_t const fCaps = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64EptVpidCaps;
+ uint8_t const fTypeIndivAddr = RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_INVVPID_INDIV_ADDR);
+ uint8_t const fTypeSingleCtx = RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX);
+ uint8_t const fTypeAllCtx = RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_INVVPID_ALL_CTX);
+ uint8_t const fTypeSingleCtxRetainGlobals = RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX_RETAIN_GLOBALS);
+ if ( (fTypeIndivAddr && u64InvvpidType == VMXTLBFLUSHVPID_INDIV_ADDR)
+ || (fTypeSingleCtx && u64InvvpidType == VMXTLBFLUSHVPID_SINGLE_CONTEXT)
+ || (fTypeAllCtx && u64InvvpidType == VMXTLBFLUSHVPID_ALL_CONTEXTS)
+ || (fTypeSingleCtxRetainGlobals && u64InvvpidType == VMXTLBFLUSHVPID_SINGLE_CONTEXT_RETAIN_GLOBALS))
+ { /* likely */ }
+ else
+ {
+ Log(("invvpid: invalid/unsupported invvpid type %#x -> VMFail\n", u64InvvpidType));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_TypeInvalid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64InvvpidType;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * Fetch the invvpid descriptor from guest memory.
+ */
+ RTUINT128U uDesc;
+ VBOXSTRICTRC rcStrict = iemMemFetchDataU128(pVCpu, &uDesc, iEffSeg, GCPtrInvvpidDesc);
+ if (rcStrict == VINF_SUCCESS)
+ {
+ /*
+ * Validate the descriptor.
+ */
+ if (uDesc.s.Lo > 0xfff)
+ {
+ Log(("invvpid: reserved bits set in invvpid descriptor %#RX64 -> #GP(0)\n", uDesc.s.Lo));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_DescRsvd;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = uDesc.s.Lo;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ IEM_CTX_ASSERT(pVCpu, CPUMCTX_EXTRN_CR3);
+ RTGCUINTPTR64 const GCPtrInvAddr = uDesc.s.Hi;
+ uint8_t const uVpid = uDesc.s.Lo & UINT64_C(0xfff);
+ uint64_t const uCr3 = pVCpu->cpum.GstCtx.cr3;
+ switch (u64InvvpidType)
+ {
+ case VMXTLBFLUSHVPID_INDIV_ADDR:
+ {
+ if (uVpid != 0)
+ {
+ if (IEM_IS_CANONICAL(GCPtrInvAddr))
+ {
+ /* Invalidate mappings for the linear address tagged with VPID. */
+ /** @todo PGM support for VPID? Currently just flush everything. */
+ PGMFlushTLB(pVCpu, uCr3, true /* fGlobal */);
+ iemVmxVmSucceed(pVCpu);
+ }
+ else
+ {
+ Log(("invvpid: invalidation address %#RGP is not canonical -> VMFail\n", GCPtrInvAddr));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_Type0InvalidAddr;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrInvAddr;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ }
+ }
+ else
+ {
+ Log(("invvpid: invalid VPID %#x for invalidation type %u -> VMFail\n", uVpid, u64InvvpidType));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_Type0InvalidVpid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64InvvpidType;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ }
+ break;
+ }
+
+ case VMXTLBFLUSHVPID_SINGLE_CONTEXT:
+ {
+ if (uVpid != 0)
+ {
+ /* Invalidate all mappings with VPID. */
+ /** @todo PGM support for VPID? Currently just flush everything. */
+ PGMFlushTLB(pVCpu, uCr3, true /* fGlobal */);
+ iemVmxVmSucceed(pVCpu);
+ }
+ else
+ {
+ Log(("invvpid: invalid VPID %#x for invalidation type %u -> VMFail\n", uVpid, u64InvvpidType));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_Type1InvalidVpid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = u64InvvpidType;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ }
+ break;
+ }
+
+ case VMXTLBFLUSHVPID_ALL_CONTEXTS:
+ {
+ /* Invalidate all mappings with non-zero VPIDs. */
+ /** @todo PGM support for VPID? Currently just flush everything. */
+ PGMFlushTLB(pVCpu, uCr3, true /* fGlobal */);
+ iemVmxVmSucceed(pVCpu);
+ break;
+ }
+
+ case VMXTLBFLUSHVPID_SINGLE_CONTEXT_RETAIN_GLOBALS:
+ {
+ if (uVpid != 0)
+ {
+ /* Invalidate all mappings with VPID except global translations. */
+ /** @todo PGM support for VPID? Currently just flush everything. */
+ PGMFlushTLB(pVCpu, uCr3, true /* fGlobal */);
+ iemVmxVmSucceed(pVCpu);
+ }
+ else
+ {
+ Log(("invvpid: invalid VPID %#x for invalidation type %u -> VMFail\n", uVpid, u64InvvpidType));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Invvpid_Type3InvalidVpid;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = uVpid;
+ iemVmxVmFail(pVCpu, VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND);
+ }
+ break;
+ }
+ IEM_NOT_REACHED_DEFAULT_CASE_RET();
+ }
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ }
+ return rcStrict;
+}
+
+
+/**
+ * VMXON instruction execution worker.
+ *
+ * @returns Strict VBox status code.
+ * @param pVCpu The cross context virtual CPU structure.
+ * @param cbInstr The instruction length in bytes.
+ * @param iEffSeg The effective segment register to use with @a
+ * GCPtrVmxon.
+ * @param GCPtrVmxon The linear address of the VMXON pointer.
+ * @param pExitInfo Pointer to the VM-exit information. Optional, can be NULL.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_STATIC VBOXSTRICTRC iemVmxVmxon(PVMCPUCC pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmxon,
+ PCVMXVEXITINFO pExitInfo)
+{
+ if (!IEM_VMX_IS_ROOT_MODE(pVCpu))
+ {
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* A20M (A20 Masked) mode. */
+ if (PGMPhysIsA20Enabled(pVCpu))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: A20M mode -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_A20M;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* CR0. */
+ {
+ /* CR0 MB1 bits. */
+ uint64_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
+ if ((pVCpu->cpum.GstCtx.cr0 & uCr0Fixed0) == uCr0Fixed0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: CR0 fixed0 bits cleared -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_Cr0Fixed0;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* CR0 MBZ bits. */
+ uint64_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
+ if (!(pVCpu->cpum.GstCtx.cr0 & ~uCr0Fixed1))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: CR0 fixed1 bits set -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_Cr0Fixed1;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+ }
+
+ /* CR4. */
+ {
+ /* CR4 MB1 bits. */
+ uint64_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
+ if ((pVCpu->cpum.GstCtx.cr4 & uCr4Fixed0) == uCr4Fixed0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: CR4 fixed0 bits cleared -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_Cr4Fixed0;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* CR4 MBZ bits. */
+ uint64_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
+ if (!(pVCpu->cpum.GstCtx.cr4 & ~uCr4Fixed1))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: CR4 fixed1 bits set -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_Cr4Fixed1;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+ }
+
+ /* Feature control MSR's LOCK and VMXON bits. */
+ uint64_t const uMsrFeatCtl = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64FeatCtrl;
+ if ((uMsrFeatCtl & (MSR_IA32_FEATURE_CONTROL_LOCK | MSR_IA32_FEATURE_CONTROL_VMXON))
+ == (MSR_IA32_FEATURE_CONTROL_LOCK | MSR_IA32_FEATURE_CONTROL_VMXON))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: Feature control lock bit or VMXON bit cleared -> #GP(0)\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_MsrFeatCtl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Get the VMXON pointer from the location specified by the source memory operand. */
+ RTGCPHYS GCPhysVmxon;
+ VBOXSTRICTRC rcStrict = iemMemFetchDataU64(pVCpu, &GCPhysVmxon, iEffSeg, GCPtrVmxon);
+ if (RT_LIKELY(rcStrict == VINF_SUCCESS))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: Failed to read VMXON region physaddr from %#RGv, rc=%Rrc\n", GCPtrVmxon, VBOXSTRICTRC_VAL(rcStrict)));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_PtrMap;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPtrVmxon;
+ return rcStrict;
+ }
+
+ /* VMXON region pointer alignment. */
+ if (!(GCPhysVmxon & X86_PAGE_4K_OFFSET_MASK))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: VMXON region pointer not page-aligned -> VMFailInvalid\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_PtrAlign;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmxon;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* VMXON physical-address width limits. */
+ if (!(GCPhysVmxon >> IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cVmxMaxPhysAddrWidth))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: VMXON region pointer extends beyond physical-address width -> VMFailInvalid\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_PtrWidth;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmxon;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Ensure VMXON region is not MMIO, ROM etc. This is not an Intel requirement but a
+ restriction imposed by our implementation. */
+ if (PGMPhysIsGCPhysNormal(pVCpu->CTX_SUFF(pVM), GCPhysVmxon))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: VMXON region not normal memory -> VMFailInvalid\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_PtrAbnormal;
+ pVCpu->cpum.GstCtx.hwvirt.vmx.uDiagAux = GCPhysVmxon;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Read the VMCS revision ID from the VMXON region. */
+ VMXVMCSREVID VmcsRevId;
+ int rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), &VmcsRevId, GCPhysVmxon, sizeof(VmcsRevId));
+ if (RT_SUCCESS(rc))
+ { /* likely */ }
+ else
+ {
+ Log(("vmxon: Failed to read VMXON region at %#RGp, rc=%Rrc\n", GCPhysVmxon, rc));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_PtrReadPhys;
+ return rc;
+ }
+
+ /* Verify the VMCS revision specified by the guest matches what we reported to the guest. */
+ if (RT_LIKELY(VmcsRevId.u == VMX_V_VMCS_REVISION_ID))
+ { /* likely */ }
+ else
+ {
+ /* Revision ID mismatch. */
+ if (!VmcsRevId.n.fIsShadowVmcs)
+ {
+ Log(("vmxon: VMCS revision mismatch, expected %#RX32 got %#RX32 -> VMFailInvalid\n", VMX_V_VMCS_REVISION_ID,
+ VmcsRevId.n.u31RevisionId));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_VmcsRevId;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Shadow VMCS disallowed. */
+ Log(("vmxon: Shadow VMCS -> VMFailInvalid\n"));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_ShadowVmcs;
+ iemVmxVmFailInvalid(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /*
+ * Record that we're in VMX operation, block INIT, block and disable A20M.
+ */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.GCPhysVmxon = GCPhysVmxon;
+ IEM_VMX_CLEAR_CURRENT_VMCS(pVCpu);
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fInVmxRootMode = true;
+
+ /* Clear address-range monitoring. */
+ EMMonitorWaitClear(pVCpu);
+ /** @todo NSTVMX: Intel PT. */
+
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+ else if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ /* Nested-guest intercept. */
+ if (pExitInfo)
+ return iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo);
+ return iemVmxVmexitInstrNeedsInfo(pVCpu, VMX_EXIT_VMXON, VMXINSTRID_NONE, cbInstr);
+ }
+
+ Assert(IEM_VMX_IS_ROOT_MODE(pVCpu));
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl > 0)
+ {
+ Log(("vmxon: In VMX root mode: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_VmxRootCpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* VMXON when already in VMX root mode. */
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMXON_IN_VMXROOTMODE);
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxon_VmxAlreadyRoot;
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Implements 'VMXOFF'.
+ *
+ * @remarks Common VMX instruction checks are already expected to by the caller,
+ * i.e. CR4.VMXE, Real/V86 mode, EFER/CS.L checks.
+ */
+IEM_CIMPL_DEF_0(iemCImpl_vmxoff)
+{
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ return iemVmxVmexitInstr(pVCpu, VMX_EXIT_VMXOFF, cbInstr);
+
+ /* CPL. */
+ if (pVCpu->iem.s.uCpl == 0)
+ { /* likely */ }
+ else
+ {
+ Log(("vmxoff: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
+ pVCpu->cpum.GstCtx.hwvirt.vmx.enmDiag = kVmxVDiag_Vmxoff_Cpl;
+ return iemRaiseGeneralProtectionFault0(pVCpu);
+ }
+
+ /* Dual monitor treatment of SMIs and SMM. */
+ uint64_t const fSmmMonitorCtl = CPUMGetGuestIa32SmmMonitorCtl(pVCpu);
+ if (!(fSmmMonitorCtl & MSR_IA32_SMM_MONITOR_VALID))
+ { /* likely */ }
+ else
+ {
+ iemVmxVmFail(pVCpu, VMXINSTRERR_VMXOFF_DUAL_MON);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+ }
+
+ /* Record that we're no longer in VMX root operation, block INIT, block and disable A20M. */
+ pVCpu->cpum.GstCtx.hwvirt.vmx.fInVmxRootMode = false;
+ Assert(!pVCpu->cpum.GstCtx.hwvirt.vmx.fInVmxNonRootMode);
+
+ if (fSmmMonitorCtl & MSR_IA32_SMM_MONITOR_VMXOFF_UNBLOCK_SMI)
+ { /** @todo NSTVMX: Unblock SMI. */ }
+
+ EMMonitorWaitClear(pVCpu);
+ /** @todo NSTVMX: Unblock and enable A20M. */
+
+ iemVmxVmSucceed(pVCpu);
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Implements 'VMXON'.
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmxon, uint8_t, iEffSeg, RTGCPTR, GCPtrVmxon)
+{
+ return iemVmxVmxon(pVCpu, cbInstr, iEffSeg, GCPtrVmxon, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMLAUNCH'.
+ */
+IEM_CIMPL_DEF_0(iemCImpl_vmlaunch)
+{
+ return iemVmxVmlaunchVmresume(pVCpu, cbInstr, VMXINSTRID_VMLAUNCH);
+}
+
+
+/**
+ * Implements 'VMRESUME'.
+ */
+IEM_CIMPL_DEF_0(iemCImpl_vmresume)
+{
+ return iemVmxVmlaunchVmresume(pVCpu, cbInstr, VMXINSTRID_VMRESUME);
+}
+
+
+/**
+ * Implements 'VMPTRLD'.
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmptrld, uint8_t, iEffSeg, RTGCPTR, GCPtrVmcs)
+{
+ return iemVmxVmptrld(pVCpu, cbInstr, iEffSeg, GCPtrVmcs, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMPTRST'.
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmptrst, uint8_t, iEffSeg, RTGCPTR, GCPtrVmcs)
+{
+ return iemVmxVmptrst(pVCpu, cbInstr, iEffSeg, GCPtrVmcs, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMCLEAR'.
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmclear, uint8_t, iEffSeg, RTGCPTR, GCPtrVmcs)
+{
+ return iemVmxVmclear(pVCpu, cbInstr, iEffSeg, GCPtrVmcs, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMWRITE' register.
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmwrite_reg, uint64_t, u64Val, uint64_t, u64VmcsField)
+{
+ return iemVmxVmwrite(pVCpu, cbInstr, UINT8_MAX /* iEffSeg */, u64Val, u64VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMWRITE' memory.
+ */
+IEM_CIMPL_DEF_3(iemCImpl_vmwrite_mem, uint8_t, iEffSeg, RTGCPTR, GCPtrVal, uint32_t, u64VmcsField)
+{
+ return iemVmxVmwrite(pVCpu, cbInstr, iEffSeg, GCPtrVal, u64VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMREAD' register (64-bit).
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmread_reg64, uint64_t *, pu64Dst, uint64_t, u64VmcsField)
+{
+ return iemVmxVmreadReg64(pVCpu, cbInstr, pu64Dst, u64VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMREAD' register (32-bit).
+ */
+IEM_CIMPL_DEF_2(iemCImpl_vmread_reg32, uint32_t *, pu32Dst, uint32_t, u32VmcsField)
+{
+ return iemVmxVmreadReg32(pVCpu, cbInstr, pu32Dst, u32VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMREAD' memory, 64-bit register.
+ */
+IEM_CIMPL_DEF_3(iemCImpl_vmread_mem_reg64, uint8_t, iEffSeg, RTGCPTR, GCPtrDst, uint32_t, u64VmcsField)
+{
+ return iemVmxVmreadMem(pVCpu, cbInstr, iEffSeg, GCPtrDst, u64VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'VMREAD' memory, 32-bit register.
+ */
+IEM_CIMPL_DEF_3(iemCImpl_vmread_mem_reg32, uint8_t, iEffSeg, RTGCPTR, GCPtrDst, uint32_t, u32VmcsField)
+{
+ return iemVmxVmreadMem(pVCpu, cbInstr, iEffSeg, GCPtrDst, u32VmcsField, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements 'INVVPID'.
+ */
+IEM_CIMPL_DEF_3(iemCImpl_invvpid, uint8_t, iEffSeg, RTGCPTR, GCPtrInvvpidDesc, uint64_t, uInvvpidType)
+{
+ return iemVmxInvvpid(pVCpu, cbInstr, iEffSeg, GCPtrInvvpidDesc, uInvvpidType, NULL /* pExitInfo */);
+}
+
+
+/**
+ * Implements VMX's implementation of PAUSE.
+ */
+IEM_CIMPL_DEF_0(iemCImpl_vmx_pause)
+{
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ {
+ VBOXSTRICTRC rcStrict = iemVmxVmexitInstrPause(pVCpu, cbInstr);
+ if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
+ return rcStrict;
+ }
+
+ /*
+ * Outside VMX non-root operation or if the PAUSE instruction does not cause
+ * a VM-exit, the instruction operates normally.
+ */
+ iemRegAddToRipAndClearRF(pVCpu, cbInstr);
+ return VINF_SUCCESS;
+}
+
+#endif /* VBOX_WITH_NESTED_HWVIRT_VMX */
+
+
+/**
+ * Implements 'VMCALL'.
+ */
+IEM_CIMPL_DEF_0(iemCImpl_vmcall)
+{
+#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
+ /* Nested-guest intercept. */
+ if (IEM_VMX_IS_NON_ROOT_MODE(pVCpu))
+ return iemVmxVmexitInstr(pVCpu, VMX_EXIT_VMCALL, cbInstr);
+#endif
+
+ /* Join forces with vmmcall. */
+ return IEM_CIMPL_CALL_1(iemCImpl_Hypercall, OP_VMCALL);
+}
+