VirtualBox

Changeset 98644 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Feb 20, 2023 12:05:56 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
155944
Message:

VMM,SUPLib: Adjustments for running tstPDMQueue in driverless mode on hardened windows builds. This adds a fFlags parameter to VMR3Create and defines VMCREATE_F_DRIVERLESS, allowing it to switch between default and driverless suplib initialization. The default CFGM config constructor was amended to enable the IEM fallback option by default (only relevant to amd64/x86).

Location:
trunk/src/VBox/VMM/VMMR3
Files:
2 edited

Legend:

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

    r98103 r98644  
    10851085    rc = CFGMR3InsertInteger(pRoot, "TimerMillies",         10);
    10861086    UPDATERC();
     1087
     1088    /*
     1089     * HM.
     1090     */
     1091    PCFGMNODE pHm;
     1092    rc = CFGMR3InsertNode(pRoot, "HM", &pHm);
     1093    UPDATERC();
     1094    rc = CFGMR3InsertInteger(pHm, "FallbackToIEM",          1); /* boolean */
     1095    UPDATERC();
     1096
    10871097
    10881098    /*
     
    32933303    LogRel(("************************* CFGM dump *************************\n"));
    32943304    cfgmR3Dump(pRoot, 0, DBGFR3InfoLogRelHlp());
     3305#ifdef LOG_ENABLED
     3306    if (LogIsEnabled())
     3307        cfgmR3Dump(pRoot, 0, DBGFR3InfoLogHlp());
     3308#endif
    32953309    LogRel(("********************* End of CFGM dump **********************\n"));
    32963310    RTLogRelSetBuffering(fOldBuffered);
  • trunk/src/VBox/VMM/VMMR3/VM.cpp

    r98103 r98644  
    133133 *                              to make the user perform various action, like
    134134 *                              for instance state saving.
     135 * @param   fFlags              VMCREATE_F_XXX
    135136 * @param   pfnVMAtError        Pointer to callback function for setting VM
    136137 *                              errors.  This was added as an implicit call to
     
    151152 *                              VMR3ReleaseUVM() once done with the handle.
    152153 */
    153 VMMR3DECL(int)   VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods,
     154VMMR3DECL(int)   VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods, uint64_t fFlags,
    154155                            PFNVMATERROR pfnVMAtError, void *pvUserVM,
    155156                            PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM,
    156157                            PVM *ppVM, PUVM *ppUVM)
    157158{
    158     LogFlow(("VMR3Create: cCpus=%RU32 pVmm2UserMethods=%p pfnVMAtError=%p pvUserVM=%p  pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p ppUVM=%p\n",
    159              cCpus, pVmm2UserMethods, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM, ppUVM));
     159    LogFlow(("VMR3Create: cCpus=%RU32 pVmm2UserMethods=%p fFlags=%#RX64 pfnVMAtError=%p pvUserVM=%p  pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p ppUVM=%p\n",
     160             cCpus, pVmm2UserMethods, fFlags, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM, ppUVM));
    160161
    161162    if (pVmm2UserMethods)
     
    177178    AssertPtrNullReturn(ppUVM, VERR_INVALID_POINTER);
    178179    AssertReturn(ppVM || ppUVM, VERR_INVALID_PARAMETER);
     180    AssertMsgReturn(!(fFlags & ~VMCREATE_F_DRIVERLESS), ("%#RX64\n", fFlags), VERR_INVALID_FLAGS);
    179181
    180182    /*
     
    198200         * Initialize the support library creating the session for this VM.
    199201         */
    200         rc = SUPR3Init(&pUVM->vm.s.pSession);
     202        if (fFlags & VMCREATE_F_DRIVERLESS)
     203            rc = SUPR3InitEx(SUPR3INIT_F_DRIVERLESS | SUPR3INIT_F_DRIVERLESS_IEM_ALLOWED, &pUVM->vm.s.pSession);
     204        else
     205            rc = SUPR3Init(&pUVM->vm.s.pSession);
    201206        if (RT_SUCCESS(rc))
    202207        {
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