Changeset 70918 in vbox
- Timestamp:
- Feb 8, 2018 4:11:47 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120746
- Location:
- trunk
- Files:
-
- 4 added
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.kmk
r70120 r70918 767 767 $(PATH_ROOT)/include/VBox/vmm/hm_vmx.h \ 768 768 $(PATH_ROOT)/include/VBox/vmm/iem.h \ 769 $(PATH_ROOT)/include/VBox/vmm/nem.h \ 769 770 $(PATH_ROOT)/include/VBox/vmm/pdm.h \ 770 771 $(PATH_ROOT)/include/VBox/vmm/rem.h \ … … 784 785 $(PATH_ROOT)/src/VBox/VMM/include/IOMInternal.h \ 785 786 $(PATH_ROOT)/src/VBox/VMM/include/MMInternal.h \ 787 $(PATH_ROOT)/src/VBox/VMM/include/NEMInternal.h \ 786 788 $(PATH_ROOT)/src/VBox/VMM/include/PDMInternal.h \ 787 789 $(PATH_ROOT)/src/VBox/VMM/include/PGMInternal.h \ -
trunk/include/VBox/log.h
r70075 r70918 680 680 /** The NAT service group */ 681 681 LOG_GROUP_NAT_SERVICE, 682 /** NEM group. */ 683 LOG_GROUP_NEM, 682 684 /** The network adaptor driver group. */ 683 685 LOG_GROUP_NET_ADP_DRV, … … 1141 1143 "MM_POOL", \ 1142 1144 "NAT_SERVICE", \ 1145 "NEM", \ 1143 1146 "NET_ADP_DRV", \ 1144 1147 "NET_FLT_DRV", \ -
trunk/include/VBox/sup.h
r70917 r70918 1643 1643 * 1644 1644 * @returns VINF_SUCCESS if supported, error code indicating why if not. 1645 */ 1646 SUPR3DECL(int) SUPR3QueryVTxSupported(void); 1645 * @param ppszWhy Where to return an explanatory message on failure. 1646 */ 1647 SUPR3DECL(int) SUPR3QueryVTxSupported(const char **ppszWhy); 1647 1648 1648 1649 /** -
trunk/include/VBox/vmm/vm.h
r70885 r70918 168 168 } em; 169 169 170 /** NEM part. */ 171 union VMCPUUNIONNEM 172 { 173 #ifdef ___NEMInternal_h 174 struct NEMCPU s; 175 #endif 176 uint8_t padding[128]; /* multiple of 64 */ 177 } nem; 178 170 179 /** TRPM part. */ 171 180 union VMCPUUNIONTRPM … … 254 263 255 264 /** Align the following members on page boundary. */ 256 uint8_t abAlignment2[ 2104];265 uint8_t abAlignment2[1976]; 257 266 258 267 /** PGM part. */ … … 1186 1195 } em; 1187 1196 1197 /** NEM part. */ 1198 union 1199 { 1200 #ifdef ___NEMInternal_h 1201 struct NEM s; 1202 #endif 1203 uint8_t padding[128]; /* multiple of 64 */ 1204 } nem; 1205 1188 1206 /** TM part. */ 1189 1207 union … … 1318 1336 /** Padding for aligning the cpu array on a page boundary. */ 1319 1337 #if defined(VBOX_WITH_REM) && defined(VBOX_WITH_RAW_MODE) 1320 uint8_t abAlignment2[3 870];1338 uint8_t abAlignment2[3742]; 1321 1339 #elif defined(VBOX_WITH_REM) && !defined(VBOX_WITH_RAW_MODE) 1322 uint8_t abAlignment2[1 630];1340 uint8_t abAlignment2[1502]; 1323 1341 #elif !defined(VBOX_WITH_REM) && defined(VBOX_WITH_RAW_MODE) 1324 uint8_t abAlignment2[3 0];1325 #else 1326 uint8_t abAlignment2[1 886];1342 uint8_t abAlignment2[3998]; 1343 #else 1344 uint8_t abAlignment2[1758]; 1327 1345 #endif 1328 1346 -
trunk/include/VBox/vmm/vm.mac
r70885 r70918 64 64 .hm resb 5824 65 65 .em resb 1408 66 .nem resb 128 66 67 .trpm resb 128 67 68 .tm resb 384 … … 161 162 .iom resb 896 162 163 .em resb 256 164 .nem resb 128 163 165 .tm resb 2496 164 166 .dbgf resb 2368 -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r70917 r70918 1659 1659 1660 1660 1661 SUPR3DECL(int) SUPR3QueryVTxSupported(void) 1662 { 1661 SUPR3DECL(int) SUPR3QueryVTxSupported(const char **ppszWhy) 1662 { 1663 *ppszWhy = NULL; 1663 1664 #ifdef RT_OS_LINUX 1664 return suplibOsQueryVTxSupported( );1665 return suplibOsQueryVTxSupported(ppszWhy); 1665 1666 #else 1666 1667 return VINF_SUCCESS; -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r69500 r70918 361 361 int suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, void **ppvPages); 362 362 int suplibOsPageFree(PSUPLIBDATA pThis, void *pvPages, size_t cPages); 363 int suplibOsQueryVTxSupported( void);363 int suplibOsQueryVTxSupported(const char **ppszWhy); 364 364 365 365 -
trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp
r69500 r70918 260 260 261 261 262 /** Check if the host kernel supports VT-x or not. 262 /** 263 * Check if the host kernel supports VT-x or not. 263 264 * 264 265 * Older Linux kernels clear the VMXE bit in the CR4 register (function 265 266 * tlb_flush_all()) leading to a host kernel panic. 267 * 268 * @returns VBox status code (no info). 269 * @param ppszWhy Where to return explanatory message. 266 270 */ 267 int suplibOsQueryVTxSupported( void)271 int suplibOsQueryVTxSupported(const char **ppszWhy) 268 272 { 269 273 char szBuf[256]; 270 274 int rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szBuf, sizeof(szBuf)); 271 272 275 if (RT_SUCCESS(rc)) 273 276 { … … 299 302 } 300 303 304 *ppszWhy = "Linux 2.6.13 or newer required!"; 301 305 return VERR_SUPDRV_KERNEL_TOO_OLD_FOR_VTX; 302 306 } -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r69500 r70918 335 335 ) 336 336 { 337 int rc = SUPR3QueryVTxSupported(); 337 const char *pszIgn; 338 int rc = SUPR3QueryVTxSupported(&pszIgn); 338 339 if (RT_SUCCESS(rc)) 339 340 m->fVTSupported = true; -
trunk/src/VBox/VMM/Makefile.kmk
r69560 r70918 186 186 VMMR3/MMPagePool.cpp \ 187 187 VMMR3/MMUkHeap.cpp \ 188 VMMR3/NEMR3.cpp \ 188 189 VMMR3/PDM.cpp \ 189 190 VMMR3/PDMBlkCache.cpp \ … … 307 308 VMMSwitcher/AMD64Stub.asm 308 309 310 VBoxVMM_SOURCES.win += VMMR3/NEMR3Native-win.cpp 311 VBoxVMM_DEFS.win += VBOX_WITH_NATIVE_NEM 312 309 313 VBoxVMM_LIBS = \ 310 314 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB) -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r70606 r70918 51 51 #include <VBox/vmm/csam.h> 52 52 #include <VBox/vmm/selm.h> 53 #include <VBox/vmm/nem.h> 53 54 #ifdef VBOX_WITH_REM 54 55 # include <VBox/vmm/rem.h> … … 394 395 * Initializes the HM. 395 396 * 396 * This reads the config and check whether VT-x or AMD-V hardware is available 397 * if configured to use it. This is one of the very first components to be 398 * initialized after CFGM, so that we can fall back to raw-mode early in the 399 * initialization process. 397 * This is the very first component to really do init after CFGM so that we can 398 * establish the predominat execution engine for the VM prior to initializing 399 * other modules. It takes care of NEM initialization if needed (HM disabled or 400 * not available in HW). 401 * 402 * If VT-x or AMD-V hardware isn't available, HM will try fall back on a native 403 * hypervisor API via NEM, and then back on raw-mode if that isn't available 404 * either. The fallback to raw-mode will not happen if /HM/HMForced is set 405 * (like for guest using SMP or 64-bit as well as for complicated guest like OS 406 * X, OS/2 and others). 400 407 * 401 408 * Note that a lot of the set up work is done in ring-0 and thus postponed till … … 449 456 rc = CFGMR3ValidateConfig(pCfgHm, "/HM/", 450 457 "HMForced" 458 "|UseNEMInstead" 459 "|FallbackToNEM" 451 460 "|EnableNestedPaging" 452 461 "|EnableUX" … … 492 501 #endif /* !VBOX_WITH_RAW_MODE */ 493 502 503 /** @cfgm{/HM/UseNEMInstead, bool, true} 504 * Don't use HM, use NEM instead. */ 505 bool fUseNEMInstead = false; 506 rc = CFGMR3QueryBoolDef(pCfgHm, "UseNEMInstead", &fUseNEMInstead, false); 507 AssertRCReturn(rc, rc); 508 if (fUseNEMInstead && pVM->fHMEnabled) 509 { 510 LogRel(("HM: Setting fHMEnabled to false because fUseNEMInstead is set.\n")); 511 pVM->fHMEnabled = false; 512 } 513 514 /** @cfgm{/HM/FallbackToNEM, bool, true} 515 * Enables fallback on NEM. */ 516 bool fFallbackToNEM = true; 517 rc = CFGMR3QueryBoolDef(pCfgHm, "FallbackToNEM", &fFallbackToNEM, true); 518 AssertRCReturn(rc, rc); 519 494 520 /** @cfgm{/HM/EnableNestedPaging, bool, false} 495 521 * Enables nested paging (aka extended page tables). */ … … 643 669 else if (fCaps & SUPVTCAPS_VT_X) 644 670 { 645 rc = SUPR3QueryVTxSupported(); 671 const char *pszWhy; 672 rc = SUPR3QueryVTxSupported(&pszWhy); 646 673 if (RT_SUCCESS(rc)) 647 674 { … … 654 681 else 655 682 { 656 #ifdef RT_OS_LINUX 657 const char *pszMinReq = " Linux 2.6.13 or newer required!"; 658 #else 659 const char *pszMinReq = ""; 660 #endif 661 if (fHMForced) 662 return VMSetError(pVM, rc, RT_SRC_POS, "The host kernel does not support VT-x.%s\n", pszMinReq); 663 664 /* Fall back to raw-mode. */ 665 LogRel(("HM: HMR3Init: Falling back to raw-mode: The host kernel does not support VT-x.%s\n", pszMinReq)); 683 /* 684 * Before failing, try fallback to NEM if we're allowed to do that. 685 */ 666 686 pVM->fHMEnabled = false; 687 if (fFallbackToNEM) 688 { 689 LogRel(("HM: HMR3Init: Attempting fall back to NEM: The host kernel does not support VT-x - %s\n", pszWhy)); 690 int rc2 = NEMR3Init(pVM, true /*fFallback*/, fHMForced); 691 if ( RT_SUCCESS(rc2) 692 && pVM->fNEMActive) 693 rc = VINF_SUCCESS; 694 } 695 if (RT_FAILURE(rc)) 696 { 697 if (fHMForced) 698 return VMSetError(pVM, rc, RT_SRC_POS, "The host kernel does not support VT-x: %s\n", pszWhy); 699 700 /* Fall back to raw-mode. */ 701 LogRel(("HM: HMR3Init: Falling back to raw-mode: The host kernel does not support VT-x - %s\n", pszWhy)); 702 } 667 703 } 668 704 } … … 738 774 739 775 default: 740 pszMsg = NULL; 741 break; 776 return VMSetError(pVM, rc, RT_SRC_POS, "SUPR3QueryVTCaps failed with %Rrc", rc); 742 777 } 743 if (fHMForced && pszMsg) 744 return VM_SET_ERROR(pVM, rc, pszMsg); 745 if (!pszMsg) 746 return VMSetError(pVM, rc, RT_SRC_POS, "SUPR3QueryVTCaps failed with %Rrc", rc); 747 748 /* Fall back to raw-mode. */ 749 LogRel(("HM: HMR3Init: Falling back to raw-mode: %s\n", pszMsg)); 778 779 /* 780 * Before failing, try fallback to NEM if we're allowed to do that. 781 */ 750 782 pVM->fHMEnabled = false; 783 if (fFallbackToNEM) 784 { 785 LogRel(("HM: HMR3Init: Attempting fall back to NEM: %s\n", pszMsg)); 786 int rc2 = NEMR3Init(pVM, true /*fFallback*/, fHMForced); 787 if ( RT_SUCCESS(rc2) 788 && pVM->fNEMActive) 789 rc = VINF_SUCCESS; 790 } 791 if (RT_FAILURE(rc)) 792 { 793 if (fHMForced) 794 return VM_SET_ERROR(pVM, rc, pszMsg); 795 796 LogRel(("HM: HMR3Init: Falling back to raw-mode: %s\n", pszMsg)); 797 } 751 798 } 799 } 800 /* 801 * If NEM is supposed to be used instead, initialize it instead. 802 */ 803 else if (fUseNEMInstead) 804 { 805 rc = NEMR3Init(pVM, false /*fFallback*/, fHMForced); 806 if (RT_FAILURE(rc)) 807 return rc; 752 808 } 753 809 -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r69111 r70918 61 61 # include <VBox/vmm/rem.h> 62 62 #endif 63 #include <VBox/vmm/nem.h> 63 64 #include <VBox/vmm/apic.h> 64 65 #include <VBox/vmm/tm.h> … … 925 926 /* 926 927 * Init all R3 components, the order here might be important. 927 * HM shall be initialized first! 928 */ 929 rc = HMR3Init(pVM); 928 * NEM and HM shall be initialized first! 929 */ 930 rc = NEMR3InitConfig(pVM); 931 if (RT_SUCCESS(rc)) 932 rc = HMR3Init(pVM); 930 933 if (RT_SUCCESS(rc)) 931 934 { … … 1076 1079 AssertRC(rc2); 1077 1080 } 1078 1081 NEMR3Term(pVM); 1079 1082 1080 1083 LogFlow(("vmR3InitRing3: returns %Rrc\n", rc)); … … 1168 1171 if (RT_SUCCESS(rc)) 1169 1172 rc = HMR3InitCompleted(pVM, enmWhat); 1173 if (RT_SUCCESS(rc)) 1174 rc = NEMR3InitCompleted(pVM, enmWhat); 1170 1175 if (RT_SUCCESS(rc)) 1171 1176 rc = PGMR3InitCompleted(pVM, enmWhat); … … 2516 2521 rc = HMR3Term(pVM); 2517 2522 AssertRC(rc); 2523 rc = NEMR3Term(pVM); 2524 AssertRC(rc); 2518 2525 rc = PGMR3Term(pVM); 2519 2526 AssertRC(rc); … … 2804 2811 EMR3Reset(pVM); 2805 2812 HMR3Reset(pVM); /* This must come *after* PATM, CSAM, CPUM, SELM and TRPM. */ 2813 NEMR3Reset(pVM); 2806 2814 2807 2815 /* … … 2907 2915 EMR3Reset(pVM); 2908 2916 HMR3Reset(pVM); /* This must come *after* PATM, CSAM, CPUM, SELM and TRPM. */ 2917 NEMR3Reset(pVM); 2909 2918 2910 2919 /* … … 4632 4641 EMR3ResetCpu(pVCpu); 4633 4642 HMR3ResetCpu(pVCpu); 4643 NEMR3ResetCpu(pVCpu); 4634 4644 return VINF_EM_WAIT_SIPI; 4635 4645 } -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r70917 r70918 112 112 #include <VBox/vmm/gim.h> 113 113 #include <VBox/vmm/mm.h> 114 #include <VBox/vmm/nem.h> 114 115 #include <VBox/vmm/iom.h> 115 116 #include <VBox/vmm/trpm.h> … … 1494 1495 EMR3ResetCpu(pVCpu); 1495 1496 HMR3ResetCpu(pVCpu); 1497 NEMR3ResetCpu(pVCpu); 1496 1498 1497 1499 /* This will trickle up on the target EMT. */ -
trunk/src/VBox/VMM/testcase/tstVMStruct.h
r70732 r70918 432 432 GEN_CHECK_OFF_DOT(MMLOOKUPHYPER, u.MMIO2.off); 433 433 GEN_CHECK_OFF(MMLOOKUPHYPER, pszDesc); 434 435 GEN_CHECK_SIZE(NEM); 436 GEN_CHECK_SIZE(NEMCPU); 434 437 435 438 GEN_CHECK_SIZE(PDM); -
trunk/src/VBox/VMM/testcase/tstVMStructDTrace.cpp
r69111 r70918 52 52 #include "IEMInternal.h" 53 53 #include "REMInternal.h" 54 #include "NEMInternal.h" 54 55 #ifdef VBOX_WITH_RAW_MODE 55 56 # include "CSAMInternal.h" -
trunk/src/VBox/VMM/testcase/tstVMStructRC.cpp
r69111 r70918 82 82 #include "IEMInternal.h" 83 83 #include "REMInternal.h" 84 #include "NEMInternal.h" 84 85 #include <VBox/vmm/vm.h> 85 86 #include <VBox/vmm/hm_vmx.h> -
trunk/src/VBox/VMM/testcase/tstVMStructSize.cpp
r69111 r70918 53 53 #include "IEMInternal.h" 54 54 #include "REMInternal.h" 55 #include "NEMInternal.h" 55 56 #include "../VMMR0/GMMR0Internal.h" 56 57 #include "../VMMR0/GVMMR0Internal.h" … … 227 228 CHECK_PADDING_VM(64, em); 228 229 /*CHECK_PADDING_VM(64, iem);*/ 230 CHECK_PADDING_VM(64, nem); 229 231 CHECK_PADDING_VM(64, tm); 230 232 PRINT_OFFSET(VM, tm.s.VirtualSyncLock); … … 243 245 CHECK_PADDING_VMCPU(64, hm); 244 246 CHECK_PADDING_VMCPU(64, em); 247 CHECK_PADDING_VMCPU(64, nem); 245 248 CHECK_PADDING_VMCPU(64, trpm); 246 249 CHECK_PADDING_VMCPU(64, tm);
Note:
See TracChangeset
for help on using the changeset viewer.