VirtualBox

Ignore:
Timestamp:
May 24, 2018 6:56:44 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
122782
Message:

Main,SUPLib: Report both HwVirt and NestedPaging capabilities when NEM is available on windows. bugref:9044

Location:
trunk/src/VBox/HostDrivers/Support
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLib.cpp

    r71198 r72326  
    17061706
    17071707
     1708SUPR3DECL(bool) SUPR3IsNemSupportedWhenNoVtxOrAmdV(void)
     1709{
     1710#ifdef RT_OS_WINDOWS
     1711    return suplibOsIsNemSupportedWhenNoVtxOrAmdV();
     1712#else
     1713    return false;
     1714#endif
     1715}
     1716
     1717
    17081718SUPR3DECL(int) SUPR3QueryMicrocodeRev(uint32_t *uMicrocodeRev)
    17091719{
  • trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h

    r70918 r72326  
    362362int     suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages);
    363363int     suplibOsQueryVTxSupported(const char **ppszWhy);
     364bool    suplibOsIsNemSupportedWhenNoVtxOrAmdV(void);
    364365
    365366
  • trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp

    r71198 r72326  
    4949#include <VBox/log.h>
    5050#include <iprt/assert.h>
     51#ifndef VBOX_WITH_HARDENING
     52# include <iprt/x86.h>
     53# include <iprt/ldr.h>
     54#endif
    5155#include <iprt/path.h>
    5256#include <iprt/string.h>
     
    741745
    742746
     747bool suplibOsIsNemSupportedWhenNoVtxOrAmdV(void)
     748{
     749# if ARCH_BITS == 64
     750    /*
     751     * Check that we're in a VM.
     752     */
     753    if (!ASMHasCpuId())
     754        return false;
     755    if (!ASMIsValidStdRange(ASMCpuId_EAX(0)))
     756        return false;
     757    if (!(ASMCpuId_ECX(1) & X86_CPUID_FEATURE_ECX_HVP))
     758        return false;
     759
     760    /*
     761     * Try load WinHvPlatform and resolve API for checking.
     762     * Note! The two size_t arguments and the ssize_t one are all too big, but who cares.
     763     */
     764    RTLDRMOD hLdrMod = NIL_RTLDRMOD;
     765    int rc = RTLdrLoadSystem("WinHvPlatform.dll", false, &hLdrMod);
     766    if (RT_FAILURE(rc))
     767        return false;
     768
     769    bool fRet = false;
     770    typedef HRESULT (WINAPI *PFNWHVGETCAPABILITY)(ssize_t, void *, size_t, size_t *);
     771    PFNWHVGETCAPABILITY pfnWHvGetCapability = (PFNWHVGETCAPABILITY)RTLdrGetFunction(hLdrMod, "WHvGetCapability");
     772    if (pfnWHvGetCapability)
     773    {
     774        /*
     775         * Query the API.
     776         */
     777        union
     778        {
     779            BOOL fHypervisorPresent;
     780            uint64_t u64Padding;
     781        } Caps;
     782        RT_ZERO(Caps);
     783        size_t cbRetIgn = 0;
     784        HRESULT hrc = pfnWHvGetCapability(0 /*WHvCapabilityCodeHypervisorPresent*/, &Caps, sizeof(Caps), &cbRetIgn);
     785        if (SUCCEEDED(hrc) && Caps.fHypervisorPresent)
     786            fRet = true;
     787    }
     788
     789    RTLdrClose(hLdrMod);
     790    return fRet;
     791# else
     792    return false;
     793#endif
     794}
     795
     796
    743797# ifndef USE_NT_DEVICE_IO_CONTROL_FILE
    744798/**
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