VirtualBox

Changeset 79380 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jun 27, 2019 9:16:35 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
131618
Message:

VMM/HMVMXR0: Nested VMX: bugref:9180 Don't pickup VMCS shadowing control from the outer guest control while merging controls.
We enable/disable VMCS shadowing only while exporting the guest state so it can be left active when we transition from guest to
nested-guest (vmlaunch/vmresume). Currently we do not allow VMCS shadowing to the nested-guest. The alternative fix is to
explicitly disable the VMCS shadowing control on vmlaunch/vmresume VM-exit.
Some assertion adjustments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp

    r79378 r79380  
    1106811068                                | (pVmcsInfoGst->u32ProcCtls2 & ~(  VMX_PROC_CTLS2_VIRT_APIC_ACCESS
    1106911069                                                                  | VMX_PROC_CTLS2_INVPCID
     11070                                                                  | VMX_PROC_CTLS2_VMCS_SHADOWING
    1107011071                                                                  | VMX_PROC_CTLS2_RDTSCP
    1107111072                                                                  | VMX_PROC_CTLS2_XSAVES_XRSTORS
     
    1403014031    STAM_PROFILE_ADV_START(&pVCpu->hm.s.StatExitXcptNmi, y3);
    1403114032
     14033    Assert(!pVmxTransient->fIsNestedGuest);
    1403214034    PVMXVMCSINFO pVmcsInfo = pVmxTransient->pVmcsInfo;
    1403314035    int rc = hmR0VmxReadExitIntInfoVmcs(pVmxTransient);
     
    1403514037
    1403614038    uint32_t const uIntType = VMX_EXIT_INT_INFO_TYPE(pVmxTransient->uExitIntInfo);
     14039    Assert(VMX_EXIT_INT_INFO_IS_VALID(pVmxTransient->uExitIntInfo));
    1403714040    Assert(   !(pVmcsInfo->u32ExitCtls & VMX_EXIT_CTLS_ACK_EXT_INT)
    1403814041           && uIntType != VMX_EXIT_INT_INFO_TYPE_EXT_INT);
    14039     Assert(VMX_EXIT_INT_INFO_IS_VALID(pVmxTransient->uExitIntInfo));
    1404014042
    1404114043    if (uIntType == VMX_EXIT_INT_INFO_TYPE_NMI)
     
    1679616798
    1679716799    uint64_t const uExitIntInfo = pVmxTransient->uExitIntInfo;
     16800    uint32_t const uExtIntType  = VMX_EXIT_INT_INFO_TYPE(uExitIntInfo);
    1679816801    Assert(VMX_EXIT_INT_INFO_IS_VALID(uExitIntInfo));
    16799     uint32_t const uExtIntType = VMX_EXIT_INT_INFO_TYPE(uExitIntInfo);
    1680016802
    1680116803    /*
     
    1681016812        /*
    1681116813         * Physical NMIs:
    16812          *    We shouldn't direct host physical NMIs to the nested-guest. Dispatch it to the
    16813          *    host.
     16814         *    We shouldn't direct host physical NMIs to the nested-guest. Dispatch it to the host.
    1681416815         */
    1681516816        case VMX_EXIT_INT_INFO_TYPE_NMI:
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