VirtualBox

Changeset 76310 in vbox for trunk/src


Ignore:
Timestamp:
Dec 20, 2018 9:57:15 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
127598
Message:

VMM/CPUM: Nested VMX: bugref:9180 Initialize VMX CPU features as part of CPUMR3Init now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUM.cpp

    r76207 r76310  
    802802static void cpumR3FreeSvmHwVirtState(PVM pVM)
    803803{
    804     Assert(pVM->cpum.ro.GuestFeatures.fSvm);
     804    Assert(pVM->cpum.s.GuestFeatures.fSvm);
    805805    for (VMCPUID i = 0; i < pVM->cCpus; i++)
    806806    {
     
    836836static int cpumR3AllocSvmHwVirtState(PVM pVM)
    837837{
    838     Assert(pVM->cpum.ro.GuestFeatures.fSvm);
     838    Assert(pVM->cpum.s.GuestFeatures.fSvm);
    839839
    840840    int rc = VINF_SUCCESS;
     
    925925static void cpumR3FreeVmxHwVirtState(PVM pVM)
    926926{
    927     Assert(pVM->cpum.ro.GuestFeatures.fVmx);
     927    Assert(pVM->cpum.s.GuestFeatures.fVmx);
    928928    for (VMCPUID i = 0; i < pVM->cCpus; i++)
    929929    {
     
    16741674    PCPUMFEATURES pHostFeat = &pVM->cpum.s.HostFeatures;
    16751675    VMXMSRS VmxMsrs;
    1676     int rc = HMVmxGetHostMsrs(pVM, &VmxMsrs);
    1677     if (RT_SUCCESS(rc))
    1678         cpumR3ExplodeVmxFeatures(&VmxMsrs, pHostFeat);
     1676    if (cpumR3IsHwAssistVmxNstGstExecAllowed(pVM))
     1677    {
     1678        /** @todo NSTVMX: When NEM support for nested-VMX is there, we'll need to fetch
     1679         *        the MSRs from NEM or do the support driver IOCTL route, see patch in
     1680         *        @bugref{9180}. */
     1681        if (HMIsEnabled(pVM))
     1682        {
     1683            int rc = HMVmxGetHostMsrs(pVM, &VmxMsrs);
     1684            if (RT_SUCCESS(rc))
     1685                cpumR3ExplodeVmxFeatures(&VmxMsrs, pHostFeat);
     1686        }
     1687        else
     1688            AssertMsgFailed(("NEM support for nested-VMX is not implemented yet\n"));
     1689    }
    16791690
    16801691    /*
     
    20382049     * Allocate memory required by the guest hardware virtualization state.
    20392050     */
    2040     if (pVM->cpum.ro.GuestFeatures.fVmx)
     2051    if (pVM->cpum.s.GuestFeatures.fVmx)
    20412052        rc = cpumR3AllocVmxHwVirtState(pVM);
    2042     else if (pVM->cpum.ro.GuestFeatures.fSvm)
     2053    else if (pVM->cpum.s.GuestFeatures.fSvm)
    20432054        rc = cpumR3AllocSvmHwVirtState(pVM);
    20442055    else
     
    20552066        for (VMCPUID i = 0; i < pVM->cCpus; i++)
    20562067            cpumR3InitVmxHwVirtState(&pVM->aCpus[i]);
     2068
     2069        /* Initialize VMX features. */
     2070        cpumR3InitVmxCpuFeatures(pVM);
     2071        DBGFR3Info(pVM->pUVM, "cpumvmxfeat", "default", DBGFR3InfoLogRelHlp());
    20572072    }
    20582073    else if (enmHwvirt == CPUMHWVIRT_SVM)
     
    21372152#endif
    21382153
    2139     if (pVM->cpum.ro.GuestFeatures.fVmx)
     2154    if (pVM->cpum.s.GuestFeatures.fVmx)
    21402155        cpumR3FreeVmxHwVirtState(pVM);
    2141     else if (pVM->cpum.ro.GuestFeatures.fSvm)
     2156    else if (pVM->cpum.s.GuestFeatures.fSvm)
    21422157        cpumR3FreeSvmHwVirtState(pVM);
    21432158    return VINF_SUCCESS;
     
    22972312     */
    22982313    CPUMSetGuestGif(pCtx, true);
    2299     Assert(!pVM->cpum.ro.GuestFeatures.fVmx || !pVM->cpum.ro.GuestFeatures.fSvm);   /* Paranoia. */
    2300     if (pVM->cpum.ro.GuestFeatures.fVmx)
     2314    Assert(!pVM->cpum.s.GuestFeatures.fVmx || !pVM->cpum.s.GuestFeatures.fSvm);   /* Paranoia. */
     2315    if (pVM->cpum.s.GuestFeatures.fVmx)
    23012316        cpumR3InitVmxHwVirtState(pVCpu);
    2302     else if (pVM->cpum.ro.GuestFeatures.fSvm)
     2317    else if (pVM->cpum.s.GuestFeatures.fSvm)
    23032318        cpumR3InitSvmHwVirtState(pVCpu);
    23042319}
     
    23972412            SSMR3PutStructEx(pSSM, pZmm16Hi, sizeof(*pZmm16Hi), SSMSTRUCT_FLAGS_FULL_STRUCT, g_aCpumZmm16HiFields, NULL);
    23982413        }
    2399         if (pVM->cpum.ro.GuestFeatures.fSvm)
     2414        if (pVM->cpum.s.GuestFeatures.fSvm)
    24002415        {
    24012416            Assert(pGstCtx->hwvirt.svm.CTX_SUFF(pVmcb));
     
    26372652                if (uVersion >= CPUM_SAVED_STATE_VERSION_HWVIRT_SVM)
    26382653                {
    2639                     if (pVM->cpum.ro.GuestFeatures.fSvm)
     2654                    if (pVM->cpum.s.GuestFeatures.fSvm)
    26402655                    {
    26412656                        Assert(pGstCtx->hwvirt.svm.CTX_SUFF(pVmcb));
     
    34553470    PCPUMCTX pCtx = &pVCpu->cpum.s.Guest;
    34563471    static const char *const s_aHwvirtModes[] = { "No/inactive", "SVM", "VMX", "Common" };
    3457     bool const fSvm = pVM->cpum.ro.GuestFeatures.fSvm;
    3458     bool const fVmx = pVM->cpum.ro.GuestFeatures.fVmx;
     3472    bool const fSvm = pVM->cpum.s.GuestFeatures.fSvm;
     3473    bool const fVmx = pVM->cpum.s.GuestFeatures.fVmx;
    34593474    uint8_t const idxHwvirtState = fSvm ? CPUMHWVIRTDUMP_SVM : (fVmx ? CPUMHWVIRTDUMP_VMX : CPUMHWVIRTDUMP_NONE);
    34603475    AssertCompile(CPUMHWVIRTDUMP_LAST <= RT_ELEMENTS(s_aHwvirtModes));
     
    39864001        }
    39874002
    3988         case VMINITCOMPLETED_HM:
    3989         {
    3990             /*
    3991              * Currently, nested VMX/SVM both derives their guest VMX/SVM CPUID bit from the host
    3992              * CPUID bit. This could be later changed if we need to support nested-VMX on CPUs
    3993              * that are not capable of VMX.
    3994              */
    3995             if (pVM->cpum.s.GuestFeatures.fVmx)
    3996             {
    3997                 Assert(   pVM->cpum.s.GuestFeatures.enmCpuVendor == CPUMCPUVENDOR_INTEL
    3998                        || pVM->cpum.s.GuestFeatures.enmCpuVendor == CPUMCPUVENDOR_VIA);
    3999                 cpumR3InitVmxCpuFeatures(pVM);
    4000                 DBGFR3Info(pVM->pUVM, "cpumvmxfeat", "default", DBGFR3InfoLogRelHlp());
    4001             }
    4002 
    4003             if (pVM->cpum.s.GuestFeatures.fVmx)
    4004                 LogRel(("CPUM: Enabled guest VMX support\n"));
    4005             else if (pVM->cpum.s.GuestFeatures.fSvm)
    4006                 LogRel(("CPUM: Enabled guest SVM support\n"));
    4007             break;
    4008         }
    4009 
    40104003        default:
    40114004            break;
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