VirtualBox

Changeset 77879 in vbox


Ignore:
Timestamp:
Mar 26, 2019 2:45:09 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
129581
Message:

VMM/IEM: Nested VMX: bugref:9180 Clear VM-entry interruption info. valid bit as soon as we inject the event on VM-entry. This is
because if we continue execution using hardware-assisted VT-x, HM cannot easily distinguish if the event was already delivered
in IEM. Also fix updating the instruction length for software exception and privileged software exception VM-exits (typo).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r77746 r77879  
    27952795    Assert(pVmcs);
    27962796
     2797    /* Ensure VM-entry interruption information valid bit isn't set. */
     2798    Assert(!VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo);
     2799
    27972800    /* Update the VM-exit reason, the other relevant data fields are expected to be updated by the caller already. */
    27982801    pVmcs->u32RoExitReason = uExitReason;
    27992802    Log3(("vmexit: uExitReason=%#RX32 uExitQual=%#RX64 cs:rip=%04x:%#RX64\n", uExitReason, pVmcs->u64RoExitQual,
    28002803          IEM_GET_CTX(pVCpu)->cs.Sel,  IEM_GET_CTX(pVCpu)->rip));
    2801 
    2802     /*
    2803      * We need to clear the VM-entry interruption information field's valid bit on VM-exit.
    2804      * See Intel spec. 24.8.3 "VM-Entry Controls for Event Injection".
    2805      */
    2806     pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID;
    28072804
    28082805    /*
     
    39273924    Assert(pVmcs->u32PinCtls & VMX_PIN_CTLS_NMI_EXIT);
    39283925    Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.fInterceptEvents);
     3926    NOREF(pVmcs);
    39293927    return iemVmxVmexitEvent(pVCpu, X86_XCPT_NMI, IEM_XCPT_FLAGS_T_CPU_XCPT, 0 /* uErrCode */, 0 /* uCr2 */, 0 /* cbInstr */);
    39303928}
     
    41684166         */
    41694167        if (   (fFlags & IEM_XCPT_FLAGS_T_SOFT_INT)
    4170             && (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR)))
     4168            || (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR)))
    41714169            iemVmxVmcsSetExitInstrLen(pVCpu, cbInstr);
    41724170        else
     
    74147412        }
    74157413
    7416         return iemVmxVmentryInjectTrpmEvent(pVCpu, uEntryIntInfo, pVmcs->u32EntryXcptErrCode, pVmcs->u32EntryInstrLen,
    7417                                             pVCpu->cpum.GstCtx.cr2);
     7414        int rc = iemVmxVmentryInjectTrpmEvent(pVCpu, uEntryIntInfo, pVmcs->u32EntryXcptErrCode, pVmcs->u32EntryInstrLen,
     7415                                              pVCpu->cpum.GstCtx.cr2);
     7416        if (RT_SUCCESS(rc))
     7417        {
     7418            /*
     7419             * We need to clear the VM-entry interruption information field's valid bit on VM-exit.
     7420             *
     7421             * However, we do it here on VM-entry because while it continues to not be visible to
     7422             * guest software until VM-exit, when HM looks at the VMCS to continue nested-guest
     7423             * execution using hardware-assisted VT-x, it can simply copy the VM-entry interruption
     7424             * information field.
     7425             *
     7426             * See Intel spec. 24.8.3 "VM-Entry Controls for Event Injection".
     7427             */
     7428            pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID;
     7429        }
     7430        return rc;
    74187431    }
    74197432
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette