Changeset 72326 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 24, 2018 6:56:44 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122782
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r71198 r72326 1706 1706 1707 1707 1708 SUPR3DECL(bool) SUPR3IsNemSupportedWhenNoVtxOrAmdV(void) 1709 { 1710 #ifdef RT_OS_WINDOWS 1711 return suplibOsIsNemSupportedWhenNoVtxOrAmdV(); 1712 #else 1713 return false; 1714 #endif 1715 } 1716 1717 1708 1718 SUPR3DECL(int) SUPR3QueryMicrocodeRev(uint32_t *uMicrocodeRev) 1709 1719 { -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r70918 r72326 362 362 int suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages); 363 363 int suplibOsQueryVTxSupported(const char **ppszWhy); 364 bool suplibOsIsNemSupportedWhenNoVtxOrAmdV(void); 364 365 365 366 -
trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp
r71198 r72326 49 49 #include <VBox/log.h> 50 50 #include <iprt/assert.h> 51 #ifndef VBOX_WITH_HARDENING 52 # include <iprt/x86.h> 53 # include <iprt/ldr.h> 54 #endif 51 55 #include <iprt/path.h> 52 56 #include <iprt/string.h> … … 741 745 742 746 747 bool 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 743 797 # ifndef USE_NT_DEVICE_IO_CONTROL_FILE 744 798 /**
Note:
See TracChangeset
for help on using the changeset viewer.