VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp@ 9510

Last change on this file since 9510 was 9421, checked in by vboxsync, 17 years ago

64 bits hidden selector base.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 39.1 KB
Line 
1/* $Id: HWACCMR0.cpp 9421 2008-06-05 13:17:00Z vboxsync $ */
2/** @file
3 * HWACCM - Host Context Ring 0.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_HWACCM
27#include <VBox/hwaccm.h>
28#include "HWACCMInternal.h"
29#include <VBox/vm.h>
30#include <VBox/x86.h>
31#include <VBox/hwacc_vmx.h>
32#include <VBox/hwacc_svm.h>
33#include <VBox/pgm.h>
34#include <VBox/pdm.h>
35#include <VBox/err.h>
36#include <VBox/log.h>
37#include <VBox/selm.h>
38#include <VBox/iom.h>
39#include <iprt/param.h>
40#include <iprt/assert.h>
41#include <iprt/asm.h>
42#include <iprt/string.h>
43#include <iprt/memobj.h>
44#include <iprt/cpuset.h>
45#include "HWVMXR0.h"
46#include "HWSVMR0.h"
47
48/*******************************************************************************
49* Internal Functions *
50*******************************************************************************/
51static DECLCALLBACK(void) HWACCMR0EnableCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2);
52static DECLCALLBACK(void) HWACCMR0DisableCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2);
53static DECLCALLBACK(void) HWACCMR0InitCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2);
54static int hwaccmr0CheckCpuRcArray(int *paRc, unsigned cErrorCodes, RTCPUID *pidCpu);
55
56/*******************************************************************************
57* Local Variables *
58*******************************************************************************/
59
60static struct
61{
62 HWACCM_CPUINFO aCpuInfo[RTCPUSET_MAX_CPUS];
63
64 /** Ring 0 handlers for VT-x and AMD-V. */
65 DECLR0CALLBACKMEMBER(int, pfnEnterSession,(PVM pVM, PHWACCM_CPUINFO pCpu));
66 DECLR0CALLBACKMEMBER(int, pfnLeaveSession,(PVM pVM));
67 DECLR0CALLBACKMEMBER(int, pfnSaveHostState,(PVM pVM));
68 DECLR0CALLBACKMEMBER(int, pfnLoadGuestState,(PVM pVM, CPUMCTX *pCtx));
69 DECLR0CALLBACKMEMBER(int, pfnRunGuestCode,(PVM pVM, CPUMCTX *pCtx, PHWACCM_CPUINFO pCpu));
70 DECLR0CALLBACKMEMBER(int, pfnEnableCpu, (PHWACCM_CPUINFO pCpu, PVM pVM, void *pvPageCpu, RTHCPHYS pPageCpuPhys));
71 DECLR0CALLBACKMEMBER(int, pfnDisableCpu, (PHWACCM_CPUINFO pCpu, void *pvPageCpu, RTHCPHYS pPageCpuPhys));
72 DECLR0CALLBACKMEMBER(int, pfnInitVM, (PVM pVM));
73 DECLR0CALLBACKMEMBER(int, pfnTermVM, (PVM pVM));
74 DECLR0CALLBACKMEMBER(int, pfnSetupVM, (PVM pVM));
75
76 struct
77 {
78 /** Set by the ring-0 driver to indicate VMX is supported by the CPU. */
79 bool fSupported;
80
81 /** Host CR4 value (set by ring-0 VMX init) */
82 uint64_t hostCR4;
83
84 /** VMX MSR values */
85 struct
86 {
87 uint64_t feature_ctrl;
88 uint64_t vmx_basic_info;
89 uint64_t vmx_pin_ctls;
90 uint64_t vmx_proc_ctls;
91 uint64_t vmx_exit;
92 uint64_t vmx_entry;
93 uint64_t vmx_misc;
94 uint64_t vmx_cr0_fixed0;
95 uint64_t vmx_cr0_fixed1;
96 uint64_t vmx_cr4_fixed0;
97 uint64_t vmx_cr4_fixed1;
98 uint64_t vmx_vmcs_enum;
99 } msr;
100 /* Last instruction error */
101 uint32_t ulLastInstrError;
102 } vmx;
103 struct
104 {
105 /** Set by the ring-0 driver to indicate SVM is supported by the CPU. */
106 bool fSupported;
107
108 /** SVM revision. */
109 uint32_t u32Rev;
110
111 /** Maximum ASID allowed. */
112 uint32_t u32MaxASID;
113
114 /** SVM feature bits from cpuid 0x8000000a */
115 uint32_t u32Features;
116 } svm;
117 /** Saved error from detection */
118 int32_t lLastError;
119
120 struct
121 {
122 uint32_t u32AMDFeatureECX;
123 uint32_t u32AMDFeatureEDX;
124 } cpuid;
125
126 HWACCMSTATE enmHwAccmState;
127} HWACCMR0Globals;
128
129
130
131/**
132 * Does global Ring-0 HWACCM initialization.
133 *
134 * @returns VBox status code.
135 */
136HWACCMR0DECL(int) HWACCMR0Init()
137{
138 int rc;
139
140 memset(&HWACCMR0Globals, 0, sizeof(HWACCMR0Globals));
141 HWACCMR0Globals.enmHwAccmState = HWACCMSTATE_UNINITIALIZED;
142
143 /* Fill in all callbacks with placeholders. */
144 HWACCMR0Globals.pfnEnterSession = HWACCMR0DummyEnter;
145 HWACCMR0Globals.pfnLeaveSession = HWACCMR0DummyLeave;
146 HWACCMR0Globals.pfnSaveHostState = HWACCMR0DummySaveHostState;
147 HWACCMR0Globals.pfnLoadGuestState = HWACCMR0DummyLoadGuestState;
148 HWACCMR0Globals.pfnRunGuestCode = HWACCMR0DummyRunGuestCode;
149 HWACCMR0Globals.pfnEnableCpu = HWACCMR0DummyEnableCpu;
150 HWACCMR0Globals.pfnDisableCpu = HWACCMR0DummyDisableCpu;
151 HWACCMR0Globals.pfnInitVM = HWACCMR0DummyInitVM;
152 HWACCMR0Globals.pfnTermVM = HWACCMR0DummyTermVM;
153 HWACCMR0Globals.pfnSetupVM = HWACCMR0DummySetupVM;
154
155#ifndef VBOX_WITH_HYBIRD_32BIT_KERNEL /* paranoia */
156
157 /*
158 * Check for VT-x and AMD-V capabilities
159 */
160 if (ASMHasCpuId())
161 {
162 uint32_t u32FeaturesECX;
163 uint32_t u32Dummy;
164 uint32_t u32FeaturesEDX;
165 uint32_t u32VendorEBX, u32VendorECX, u32VendorEDX;
166
167 ASMCpuId(0, &u32Dummy, &u32VendorEBX, &u32VendorECX, &u32VendorEDX);
168 ASMCpuId(1, &u32Dummy, &u32Dummy, &u32FeaturesECX, &u32FeaturesEDX);
169 /* Query AMD features. */
170 ASMCpuId(0x80000001, &u32Dummy, &u32Dummy, &HWACCMR0Globals.cpuid.u32AMDFeatureECX, &HWACCMR0Globals.cpuid.u32AMDFeatureEDX);
171
172 if ( u32VendorEBX == X86_CPUID_VENDOR_INTEL_EBX
173 && u32VendorECX == X86_CPUID_VENDOR_INTEL_ECX
174 && u32VendorEDX == X86_CPUID_VENDOR_INTEL_EDX
175 )
176 {
177 /*
178 * Read all VMX MSRs if VMX is available. (same goes for RDMSR/WRMSR)
179 * We also assume all VMX-enabled CPUs support fxsave/fxrstor.
180 */
181 if ( (u32FeaturesECX & X86_CPUID_FEATURE_ECX_VMX)
182 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_MSR)
183 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_FXSR)
184 )
185 {
186 int aRc[RTCPUSET_MAX_CPUS];
187 RTCPUID idCpu = 0;
188
189 HWACCMR0Globals.vmx.msr.feature_ctrl = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
190
191 /* We need to check if VT-x has been properly initialized on all CPUs. Some BIOSes do a lousy job. */
192 memset(aRc, 0, sizeof(aRc));
193 HWACCMR0Globals.lLastError = RTMpOnAll(HWACCMR0InitCPU, (void *)u32VendorEBX, aRc);
194
195 /* Check the return code of all invocations. */
196 if (VBOX_SUCCESS(HWACCMR0Globals.lLastError))
197 HWACCMR0Globals.lLastError = hwaccmr0CheckCpuRcArray(aRc, RT_ELEMENTS(aRc), &idCpu);
198
199 if (VBOX_SUCCESS(HWACCMR0Globals.lLastError))
200 {
201 /* Reread in case we've changed it. */
202 HWACCMR0Globals.vmx.msr.feature_ctrl = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
203
204 if ( (HWACCMR0Globals.vmx.msr.feature_ctrl & (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK))
205 == (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK))
206 {
207 RTR0MEMOBJ pScatchMemObj;
208 void *pvScatchPage;
209 RTHCPHYS pScatchPagePhys;
210
211 HWACCMR0Globals.vmx.msr.vmx_basic_info = ASMRdMsr(MSR_IA32_VMX_BASIC_INFO);
212 HWACCMR0Globals.vmx.msr.vmx_pin_ctls = ASMRdMsr(MSR_IA32_VMX_PINBASED_CTLS);
213 HWACCMR0Globals.vmx.msr.vmx_proc_ctls = ASMRdMsr(MSR_IA32_VMX_PROCBASED_CTLS);
214 HWACCMR0Globals.vmx.msr.vmx_exit = ASMRdMsr(MSR_IA32_VMX_EXIT_CTLS);
215 HWACCMR0Globals.vmx.msr.vmx_entry = ASMRdMsr(MSR_IA32_VMX_ENTRY_CTLS);
216 HWACCMR0Globals.vmx.msr.vmx_misc = ASMRdMsr(MSR_IA32_VMX_MISC);
217 HWACCMR0Globals.vmx.msr.vmx_cr0_fixed0 = ASMRdMsr(MSR_IA32_VMX_CR0_FIXED0);
218 HWACCMR0Globals.vmx.msr.vmx_cr0_fixed1 = ASMRdMsr(MSR_IA32_VMX_CR0_FIXED1);
219 HWACCMR0Globals.vmx.msr.vmx_cr4_fixed0 = ASMRdMsr(MSR_IA32_VMX_CR4_FIXED0);
220 HWACCMR0Globals.vmx.msr.vmx_cr4_fixed1 = ASMRdMsr(MSR_IA32_VMX_CR4_FIXED1);
221 HWACCMR0Globals.vmx.msr.vmx_vmcs_enum = ASMRdMsr(MSR_IA32_VMX_VMCS_ENUM);
222 HWACCMR0Globals.vmx.hostCR4 = ASMGetCR4();
223
224 rc = RTR0MemObjAllocCont(&pScatchMemObj, 1 << PAGE_SHIFT, true /* executable R0 mapping */);
225 if (RT_FAILURE(rc))
226 return rc;
227
228 pvScatchPage = RTR0MemObjAddress(pScatchMemObj);
229 pScatchPagePhys = RTR0MemObjGetPagePhysAddr(pScatchMemObj, 0);
230 memset(pvScatchPage, 0, PAGE_SIZE);
231
232 /* Set revision dword at the beginning of the structure. */
233 *(uint32_t *)pvScatchPage = MSR_IA32_VMX_BASIC_INFO_VMCS_ID(HWACCMR0Globals.vmx.msr.vmx_basic_info);
234
235 /* Make sure we don't get rescheduled to another cpu during this probe. */
236 RTCCUINTREG fFlags = ASMIntDisableFlags();
237
238 /*
239 * Check CR4.VMXE
240 */
241 if (!(HWACCMR0Globals.vmx.hostCR4 & X86_CR4_VMXE))
242 {
243 /* In theory this bit could be cleared behind our back. Which would cause #UD faults when we
244 * try to execute the VMX instructions...
245 */
246 ASMSetCR4(HWACCMR0Globals.vmx.hostCR4 | X86_CR4_VMXE);
247 }
248
249 /* Enter VMX Root Mode */
250 rc = VMXEnable(pScatchPagePhys);
251 if (VBOX_FAILURE(rc))
252 {
253 /* KVM leaves the CPU in VMX root mode. Not only is this not allowed, it will crash the host when we enter raw mode, because
254 * (a) clearing X86_CR4_VMXE in CR4 causes a #GP (we no longer modify this bit)
255 * (b) turning off paging causes a #GP (unavoidable when switching from long to 32 bits mode or 32 bits to PAE)
256 *
257 * They should fix their code, but until they do we simply refuse to run.
258 */
259 HWACCMR0Globals.lLastError = VERR_VMX_IN_VMX_ROOT_MODE;
260 }
261 else
262 {
263 HWACCMR0Globals.vmx.fSupported = true;
264 VMXDisable();
265 }
266
267 /* Restore CR4 again; don't leave the X86_CR4_VMXE flag set if it wasn't so before (some software could incorrectly think it's in VMX mode) */
268 ASMSetCR4(HWACCMR0Globals.vmx.hostCR4);
269 ASMSetFlags(fFlags);
270
271 RTR0MemObjFree(pScatchMemObj, false);
272 if (VBOX_FAILURE(HWACCMR0Globals.lLastError))
273 return HWACCMR0Globals.lLastError;
274 }
275 else
276 {
277 AssertFailed(); /* can't hit this case anymore */
278 HWACCMR0Globals.lLastError = VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR;
279 }
280 }
281#ifdef LOG_ENABLED
282 else
283 SUPR0Printf("HWACCMR0InitCPU failed with rc=%d\n", HWACCMR0Globals.lLastError);
284#endif
285 }
286 else
287 HWACCMR0Globals.lLastError = VERR_VMX_NO_VMX;
288 }
289 else
290 if ( u32VendorEBX == X86_CPUID_VENDOR_AMD_EBX
291 && u32VendorECX == X86_CPUID_VENDOR_AMD_ECX
292 && u32VendorEDX == X86_CPUID_VENDOR_AMD_EDX
293 )
294 {
295 /*
296 * Read all SVM MSRs if SVM is available. (same goes for RDMSR/WRMSR)
297 * We also assume all SVM-enabled CPUs support fxsave/fxrstor.
298 */
299 if ( (HWACCMR0Globals.cpuid.u32AMDFeatureECX & X86_CPUID_AMD_FEATURE_ECX_SVM)
300 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_MSR)
301 && (u32FeaturesEDX & X86_CPUID_FEATURE_EDX_FXSR)
302 )
303 {
304 int aRc[RTCPUSET_MAX_CPUS];
305 RTCPUID idCpu = 0;
306
307 /* We need to check if AMD-V has been properly initialized on all CPUs. Some BIOSes might do a poor job. */
308 memset(aRc, 0, sizeof(aRc));
309 rc = RTMpOnAll(HWACCMR0InitCPU, (void *)u32VendorEBX, aRc);
310 AssertRC(rc);
311
312 /* Check the return code of all invocations. */
313 if (VBOX_SUCCESS(rc))
314 rc = hwaccmr0CheckCpuRcArray(aRc, RT_ELEMENTS(aRc), &idCpu);
315
316 AssertMsg(VBOX_SUCCESS(rc), ("HWACCMR0InitCPU failed for cpu %d with rc=%d\n", idCpu, rc));
317
318 if (VBOX_SUCCESS(rc))
319 {
320 /* Query AMD features. */
321 ASMCpuId(0x8000000A, &HWACCMR0Globals.svm.u32Rev, &HWACCMR0Globals.svm.u32MaxASID, &u32Dummy, &HWACCMR0Globals.svm.u32Features);
322
323 HWACCMR0Globals.svm.fSupported = true;
324 }
325 else
326 HWACCMR0Globals.lLastError = rc;
327 }
328 else
329 HWACCMR0Globals.lLastError = VERR_SVM_NO_SVM;
330 }
331 else
332 HWACCMR0Globals.lLastError = VERR_HWACCM_UNKNOWN_CPU;
333 }
334 else
335 HWACCMR0Globals.lLastError = VERR_HWACCM_NO_CPUID;
336
337#endif /* !VBOX_WITH_HYBIRD_32BIT_KERNEL */
338
339 if (HWACCMR0Globals.vmx.fSupported)
340 {
341 HWACCMR0Globals.pfnEnterSession = VMXR0Enter;
342 HWACCMR0Globals.pfnLeaveSession = VMXR0Leave;
343 HWACCMR0Globals.pfnSaveHostState = VMXR0SaveHostState;
344 HWACCMR0Globals.pfnLoadGuestState = VMXR0LoadGuestState;
345 HWACCMR0Globals.pfnRunGuestCode = VMXR0RunGuestCode;
346 HWACCMR0Globals.pfnEnableCpu = VMXR0EnableCpu;
347 HWACCMR0Globals.pfnDisableCpu = VMXR0DisableCpu;
348 HWACCMR0Globals.pfnInitVM = VMXR0InitVM;
349 HWACCMR0Globals.pfnTermVM = VMXR0TermVM;
350 HWACCMR0Globals.pfnSetupVM = VMXR0SetupVM;
351 }
352 else
353 if (HWACCMR0Globals.svm.fSupported)
354 {
355 HWACCMR0Globals.pfnEnterSession = SVMR0Enter;
356 HWACCMR0Globals.pfnLeaveSession = SVMR0Leave;
357 HWACCMR0Globals.pfnSaveHostState = SVMR0SaveHostState;
358 HWACCMR0Globals.pfnLoadGuestState = SVMR0LoadGuestState;
359 HWACCMR0Globals.pfnRunGuestCode = SVMR0RunGuestCode;
360 HWACCMR0Globals.pfnEnableCpu = SVMR0EnableCpu;
361 HWACCMR0Globals.pfnDisableCpu = SVMR0DisableCpu;
362 HWACCMR0Globals.pfnInitVM = SVMR0InitVM;
363 HWACCMR0Globals.pfnTermVM = SVMR0TermVM;
364 HWACCMR0Globals.pfnSetupVM = SVMR0SetupVM;
365 }
366
367 return VINF_SUCCESS;
368}
369
370
371/**
372 * Checks the error code array filled in for each cpu in the system.
373 *
374 * @returns VBox status code.
375 * @param paRc Error code array
376 * @param cErrorCodes Array size
377 * @param pidCpu Value of the first cpu that set an error (out)
378 */
379static int hwaccmr0CheckCpuRcArray(int *paRc, unsigned cErrorCodes, RTCPUID *pidCpu)
380{
381 int rc = VINF_SUCCESS;
382
383 Assert(cErrorCodes == RTCPUSET_MAX_CPUS);
384
385 for (unsigned i=0;i<cErrorCodes;i++)
386 {
387 if (RTMpIsCpuOnline(i))
388 {
389 if (VBOX_FAILURE(paRc[i]))
390 {
391 rc = paRc[i];
392 *pidCpu = i;
393 break;
394 }
395 }
396 }
397 return rc;
398}
399
400/**
401 * Does global Ring-0 HWACCM termination.
402 *
403 * @returns VBox status code.
404 */
405HWACCMR0DECL(int) HWACCMR0Term()
406{
407 int aRc[RTCPUSET_MAX_CPUS];
408
409 memset(aRc, 0, sizeof(aRc));
410 int rc = RTMpOnAll(HWACCMR0DisableCPU, aRc, NULL);
411 Assert(RT_SUCCESS(rc) || rc == VERR_NOT_SUPPORTED);
412
413 /* Free the per-cpu pages used for VT-x and AMD-V */
414 for (unsigned i=0;i<RT_ELEMENTS(HWACCMR0Globals.aCpuInfo);i++)
415 {
416 AssertMsg(VBOX_SUCCESS(aRc[i]), ("HWACCMR0DisableCPU failed for cpu %d with rc=%d\n", i, aRc[i]));
417 if (HWACCMR0Globals.aCpuInfo[i].pMemObj)
418 {
419 RTR0MemObjFree(HWACCMR0Globals.aCpuInfo[i].pMemObj, false);
420 HWACCMR0Globals.aCpuInfo[i].pMemObj = NULL;
421 }
422 }
423 return rc;
424}
425
426
427/**
428 * Worker function passed to RTMpOnAll, RTMpOnOthers and RTMpOnSpecific that
429 * is to be called on the target cpus.
430 *
431 * @param idCpu The identifier for the CPU the function is called on.
432 * @param pvUser1 The 1st user argument.
433 * @param pvUser2 The 2nd user argument.
434 */
435static DECLCALLBACK(void) HWACCMR0InitCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2)
436{
437 unsigned u32VendorEBX = (uintptr_t)pvUser1;
438 int *paRc = (int *)pvUser2;
439 uint64_t val;
440
441#ifdef LOG_ENABLED
442 SUPR0Printf("HWACCMR0InitCPU cpu %d\n", idCpu);
443#endif
444 Assert(idCpu == (RTCPUID)RTMpCpuIdToSetIndex(idCpu)); /// @todo fix idCpu == index assumption (rainy day)
445
446 if (u32VendorEBX == X86_CPUID_VENDOR_INTEL_EBX)
447 {
448 val = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
449
450 /*
451 * Both the LOCK and VMXON bit must be set; otherwise VMXON will generate a #GP.
452 * Once the lock bit is set, this MSR can no longer be modified.
453 */
454 if (!(val & (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK)))
455 {
456 /* MSR is not yet locked; we can change it ourselves here */
457 ASMWrMsr(MSR_IA32_FEATURE_CONTROL, HWACCMR0Globals.vmx.msr.feature_ctrl | MSR_IA32_FEATURE_CONTROL_VMXON | MSR_IA32_FEATURE_CONTROL_LOCK);
458 val = ASMRdMsr(MSR_IA32_FEATURE_CONTROL);
459 }
460 if ( (val & (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK))
461 == (MSR_IA32_FEATURE_CONTROL_VMXON|MSR_IA32_FEATURE_CONTROL_LOCK))
462 paRc[idCpu] = VINF_SUCCESS;
463 else
464 paRc[idCpu] = VERR_VMX_MSR_LOCKED_OR_DISABLED;
465 }
466 else
467 if (u32VendorEBX == X86_CPUID_VENDOR_AMD_EBX)
468 {
469 /* Check if SVM is disabled */
470 val = ASMRdMsr(MSR_K8_VM_CR);
471 if (!(val & MSR_K8_VM_CR_SVM_DISABLE))
472 {
473 /* Turn on SVM in the EFER MSR. */
474 val = ASMRdMsr(MSR_K6_EFER);
475 if (!(val & MSR_K6_EFER_SVME))
476 ASMWrMsr(MSR_K6_EFER, val | MSR_K6_EFER_SVME);
477
478 /* Paranoia. */
479 val = ASMRdMsr(MSR_K6_EFER);
480 if (val & MSR_K6_EFER_SVME)
481 paRc[idCpu] = VINF_SUCCESS;
482 else
483 paRc[idCpu] = VERR_SVM_ILLEGAL_EFER_MSR;
484 }
485 else
486 paRc[idCpu] = HWACCMR0Globals.lLastError = VERR_SVM_DISABLED;
487 }
488 else
489 AssertFailed(); /* can't happen */
490 return;
491}
492
493
494/**
495 * Sets up HWACCM on all cpus.
496 *
497 * @returns VBox status code.
498 * @param pVM The VM to operate on.
499 * @param enmNewHwAccmState New hwaccm state
500 *
501 */
502HWACCMR0DECL(int) HWACCMR0EnableAllCpus(PVM pVM, HWACCMSTATE enmNewHwAccmState)
503{
504 Assert(sizeof(HWACCMR0Globals.enmHwAccmState) == sizeof(uint32_t));
505 if (ASMAtomicCmpXchgU32((volatile uint32_t *)&HWACCMR0Globals.enmHwAccmState, enmNewHwAccmState, HWACCMSTATE_UNINITIALIZED))
506 {
507 int aRc[RTCPUSET_MAX_CPUS];
508 RTCPUID idCpu = 0;
509
510 /* Don't setup hwaccm as that might not work (vt-x & 64 bits raw mode) */
511 if (enmNewHwAccmState == HWACCMSTATE_DISABLED)
512 return VINF_SUCCESS;
513
514 memset(aRc, 0, sizeof(aRc));
515
516 /* Allocate one page per cpu for the global vt-x and amd-v pages */
517 for (unsigned i=0;i<RT_ELEMENTS(HWACCMR0Globals.aCpuInfo);i++)
518 {
519 Assert(!HWACCMR0Globals.aCpuInfo[i].pMemObj);
520
521 /** @todo this is rather dangerous if cpus can be taken offline; we don't care for now */
522 if (RTMpIsCpuOnline(i))
523 {
524 int rc = RTR0MemObjAllocCont(&HWACCMR0Globals.aCpuInfo[i].pMemObj, 1 << PAGE_SHIFT, true /* executable R0 mapping */);
525 AssertRC(rc);
526 if (RT_FAILURE(rc))
527 return rc;
528
529 void *pvR0 = RTR0MemObjAddress(HWACCMR0Globals.aCpuInfo[i].pMemObj);
530 Assert(pvR0);
531 memset(pvR0, 0, PAGE_SIZE);
532
533#ifdef LOG_ENABLED
534 SUPR0Printf("address %x phys %x\n", pvR0, (uint32_t)RTR0MemObjGetPagePhysAddr(HWACCMR0Globals.aCpuInfo[i].pMemObj, 0));
535#endif
536 }
537 }
538 /* First time, so initialize each cpu/core */
539 int rc = RTMpOnAll(HWACCMR0EnableCPU, (void *)pVM, aRc);
540
541 /* Check the return code of all invocations. */
542 if (VBOX_SUCCESS(rc))
543 rc = hwaccmr0CheckCpuRcArray(aRc, RT_ELEMENTS(aRc), &idCpu);
544
545 AssertMsg(VBOX_SUCCESS(rc), ("HWACCMR0EnableAllCpus failed for cpu %d with rc=%d\n", idCpu, rc));
546 return rc;
547 }
548
549 if (HWACCMR0Globals.enmHwAccmState == enmNewHwAccmState)
550 return VINF_SUCCESS;
551
552 /* Request to change the mode is not allowed */
553 return VERR_ACCESS_DENIED;
554}
555
556/**
557 * Worker function passed to RTMpOnAll, RTMpOnOthers and RTMpOnSpecific that
558 * is to be called on the target cpus.
559 *
560 * @param idCpu The identifier for the CPU the function is called on.
561 * @param pvUser1 The 1st user argument.
562 * @param pvUser2 The 2nd user argument.
563 */
564static DECLCALLBACK(void) HWACCMR0EnableCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2)
565{
566 PVM pVM = (PVM)pvUser1;
567 int *paRc = (int *)pvUser2;
568 void *pvPageCpu;
569 RTHCPHYS pPageCpuPhys;
570 PHWACCM_CPUINFO pCpu = &HWACCMR0Globals.aCpuInfo[idCpu];
571
572 Assert(pVM);
573 Assert(idCpu == (RTCPUID)RTMpCpuIdToSetIndex(idCpu)); /// @todo fix idCpu == index assumption (rainy day)
574 Assert(idCpu < RT_ELEMENTS(HWACCMR0Globals.aCpuInfo));
575
576 pCpu->idCpu = idCpu;
577
578 /* Should never happen */
579 if (!HWACCMR0Globals.aCpuInfo[idCpu].pMemObj)
580 {
581 AssertFailed();
582 paRc[idCpu] = VERR_INTERNAL_ERROR;
583 return;
584 }
585
586 pvPageCpu = RTR0MemObjAddress(HWACCMR0Globals.aCpuInfo[idCpu].pMemObj);
587 pPageCpuPhys = RTR0MemObjGetPagePhysAddr(HWACCMR0Globals.aCpuInfo[idCpu].pMemObj, 0);
588
589 paRc[idCpu] = HWACCMR0Globals.pfnEnableCpu(pCpu, pVM, pvPageCpu, pPageCpuPhys);
590 AssertRC(paRc[idCpu]);
591 if (VBOX_SUCCESS(paRc[idCpu]))
592 HWACCMR0Globals.aCpuInfo[idCpu].fConfigured = true;
593
594 return;
595}
596
597/**
598 * Worker function passed to RTMpOnAll, RTMpOnOthers and RTMpOnSpecific that
599 * is to be called on the target cpus.
600 *
601 * @param idCpu The identifier for the CPU the function is called on.
602 * @param pvUser1 The 1st user argument.
603 * @param pvUser2 The 2nd user argument.
604 */
605static DECLCALLBACK(void) HWACCMR0DisableCPU(RTCPUID idCpu, void *pvUser1, void *pvUser2)
606{
607 void *pvPageCpu;
608 RTHCPHYS pPageCpuPhys;
609 int *paRc = (int *)pvUser1;
610
611 Assert(idCpu == (RTCPUID)RTMpCpuIdToSetIndex(idCpu)); /// @todo fix idCpu == index assumption (rainy day)
612 Assert(idCpu < RT_ELEMENTS(HWACCMR0Globals.aCpuInfo));
613
614 if (!HWACCMR0Globals.aCpuInfo[idCpu].pMemObj)
615 return;
616
617 pvPageCpu = RTR0MemObjAddress(HWACCMR0Globals.aCpuInfo[idCpu].pMemObj);
618 pPageCpuPhys = RTR0MemObjGetPagePhysAddr(HWACCMR0Globals.aCpuInfo[idCpu].pMemObj, 0);
619
620 paRc[idCpu] = HWACCMR0Globals.pfnDisableCpu(&HWACCMR0Globals.aCpuInfo[idCpu], pvPageCpu, pPageCpuPhys);
621 AssertRC(paRc[idCpu]);
622 HWACCMR0Globals.aCpuInfo[idCpu].fConfigured = false;
623 return;
624}
625
626
627/**
628 * Does Ring-0 per VM HWACCM initialization.
629 *
630 * This is mainly to check that the Host CPU mode is compatible
631 * with VMX.
632 *
633 * @returns VBox status code.
634 * @param pVM The VM to operate on.
635 */
636HWACCMR0DECL(int) HWACCMR0InitVM(PVM pVM)
637{
638 int rc = VINF_SUCCESS;
639
640 AssertReturn(pVM, VERR_INVALID_PARAMETER);
641
642#ifdef LOG_ENABLED
643 SUPR0Printf("HWACCMR0InitVM: %p\n", pVM);
644#endif
645
646 pVM->hwaccm.s.vmx.fSupported = HWACCMR0Globals.vmx.fSupported;
647 pVM->hwaccm.s.svm.fSupported = HWACCMR0Globals.svm.fSupported;
648
649 pVM->hwaccm.s.vmx.msr.feature_ctrl = HWACCMR0Globals.vmx.msr.feature_ctrl;
650 pVM->hwaccm.s.vmx.hostCR4 = HWACCMR0Globals.vmx.hostCR4;
651 pVM->hwaccm.s.vmx.msr.vmx_basic_info = HWACCMR0Globals.vmx.msr.vmx_basic_info;
652 pVM->hwaccm.s.vmx.msr.vmx_pin_ctls = HWACCMR0Globals.vmx.msr.vmx_pin_ctls;
653 pVM->hwaccm.s.vmx.msr.vmx_proc_ctls = HWACCMR0Globals.vmx.msr.vmx_proc_ctls;
654 pVM->hwaccm.s.vmx.msr.vmx_exit = HWACCMR0Globals.vmx.msr.vmx_exit;
655 pVM->hwaccm.s.vmx.msr.vmx_entry = HWACCMR0Globals.vmx.msr.vmx_entry;
656 pVM->hwaccm.s.vmx.msr.vmx_misc = HWACCMR0Globals.vmx.msr.vmx_misc;
657 pVM->hwaccm.s.vmx.msr.vmx_cr0_fixed0 = HWACCMR0Globals.vmx.msr.vmx_cr0_fixed0;
658 pVM->hwaccm.s.vmx.msr.vmx_cr0_fixed1 = HWACCMR0Globals.vmx.msr.vmx_cr0_fixed1;
659 pVM->hwaccm.s.vmx.msr.vmx_cr4_fixed0 = HWACCMR0Globals.vmx.msr.vmx_cr4_fixed0;
660 pVM->hwaccm.s.vmx.msr.vmx_cr4_fixed1 = HWACCMR0Globals.vmx.msr.vmx_cr4_fixed1;
661 pVM->hwaccm.s.vmx.msr.vmx_vmcs_enum = HWACCMR0Globals.vmx.msr.vmx_vmcs_enum;
662 pVM->hwaccm.s.svm.u32Rev = HWACCMR0Globals.svm.u32Rev;
663 pVM->hwaccm.s.svm.u32MaxASID = HWACCMR0Globals.svm.u32MaxASID;
664 pVM->hwaccm.s.svm.u32Features = HWACCMR0Globals.svm.u32Features;
665 pVM->hwaccm.s.cpuid.u32AMDFeatureECX = HWACCMR0Globals.cpuid.u32AMDFeatureECX;
666 pVM->hwaccm.s.cpuid.u32AMDFeatureEDX = HWACCMR0Globals.cpuid.u32AMDFeatureEDX;
667 pVM->hwaccm.s.lLastError = HWACCMR0Globals.lLastError;
668
669 /* Init a VT-x or AMD-V VM. */
670 return HWACCMR0Globals.pfnInitVM(pVM);
671}
672
673
674/**
675 * Does Ring-0 per VM HWACCM termination.
676 *
677 * @returns VBox status code.
678 * @param pVM The VM to operate on.
679 */
680HWACCMR0DECL(int) HWACCMR0TermVM(PVM pVM)
681{
682 int rc = VINF_SUCCESS;
683
684 AssertReturn(pVM, VERR_INVALID_PARAMETER);
685
686#ifdef LOG_ENABLED
687 SUPR0Printf("HWACCMR0TermVM: %p\n", pVM);
688#endif
689
690 /* Terminate a VT-x or AMD-V VM. */
691 return HWACCMR0Globals.pfnTermVM(pVM);
692}
693
694
695/**
696 * Sets up a VT-x or AMD-V session
697 *
698 * @returns VBox status code.
699 * @param pVM The VM to operate on.
700 */
701HWACCMR0DECL(int) HWACCMR0SetupVM(PVM pVM)
702{
703 int rc = VINF_SUCCESS;
704
705 AssertReturn(pVM, VERR_INVALID_PARAMETER);
706
707#ifdef LOG_ENABLED
708 SUPR0Printf("HWACCMR0SetupVM: %p\n", pVM);
709#endif
710
711 /* Setup VT-x or AMD-V. */
712 return HWACCMR0Globals.pfnSetupVM(pVM);
713}
714
715
716/**
717 * Enters the VT-x or AMD-V session
718 *
719 * @returns VBox status code.
720 * @param pVM The VM to operate on.
721 */
722HWACCMR0DECL(int) HWACCMR0Enter(PVM pVM)
723{
724 CPUMCTX *pCtx;
725 int rc;
726 RTCPUID idCpu = RTMpCpuId();
727
728 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
729 if (VBOX_FAILURE(rc))
730 return rc;
731
732 /* Always load the guest's FPU/XMM state on-demand. */
733 CPUMDeactivateGuestFPUState(pVM);
734
735 /* Always reload the host context and the guest's CR0 register. (!!!!) */
736 pVM->hwaccm.s.fContextUseFlags |= HWACCM_CHANGED_GUEST_CR0 | HWACCM_CHANGED_HOST_CONTEXT;
737
738 /* Setup the register and mask according to the current execution mode. */
739 if (pCtx->msrEFER & MSR_K6_EFER_LMA)
740 pVM->hwaccm.s.u64RegisterMask = UINT64_C(0xFFFFFFFFFFFFFFFF);
741 else
742 pVM->hwaccm.s.u64RegisterMask = UINT64_C(0xFFFFFFFF);
743
744 rc = HWACCMR0Globals.pfnEnterSession(pVM, &HWACCMR0Globals.aCpuInfo[idCpu]);
745 AssertRC(rc);
746 rc |= HWACCMR0Globals.pfnSaveHostState(pVM);
747 AssertRC(rc);
748 rc |= HWACCMR0Globals.pfnLoadGuestState(pVM, pCtx);
749 AssertRC(rc);
750 return rc;
751}
752
753
754/**
755 * Leaves the VT-x or AMD-V session
756 *
757 * @returns VBox status code.
758 * @param pVM The VM to operate on.
759 */
760HWACCMR0DECL(int) HWACCMR0Leave(PVM pVM)
761{
762 CPUMCTX *pCtx;
763 int rc;
764
765 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
766 if (VBOX_FAILURE(rc))
767 return rc;
768
769 /** @note It's rather tricky with longjmps done by e.g. Log statements or the page fault handler. */
770 /* We must restore the host FPU here to make absolutely sure we don't leave the guest FPU state active
771 * or trash somebody else's FPU state.
772 */
773
774 /* Restore host FPU and XMM state if necessary. */
775 if (CPUMIsGuestFPUStateActive(pVM))
776 {
777 Log2(("CPUMRestoreHostFPUState\n"));
778 /** @note CPUMRestoreHostFPUState keeps the current CR0 intact. */
779 CPUMRestoreHostFPUState(pVM);
780
781 pVM->hwaccm.s.fContextUseFlags |= HWACCM_CHANGED_GUEST_CR0;
782 }
783
784 return HWACCMR0Globals.pfnLeaveSession(pVM);
785}
786
787/**
788 * Runs guest code in a hardware accelerated VM.
789 *
790 * @returns VBox status code.
791 * @param pVM The VM to operate on.
792 */
793HWACCMR0DECL(int) HWACCMR0RunGuestCode(PVM pVM)
794{
795 CPUMCTX *pCtx;
796 int rc;
797 RTCPUID idCpu = RTMpCpuId();
798
799 rc = CPUMQueryGuestCtxPtr(pVM, &pCtx);
800 if (VBOX_FAILURE(rc))
801 return rc;
802
803 return HWACCMR0Globals.pfnRunGuestCode(pVM, pCtx, &HWACCMR0Globals.aCpuInfo[idCpu]);
804}
805
806
807#ifdef VBOX_STRICT
808#include <iprt/string.h>
809/**
810 * Dumps a descriptor.
811 *
812 * @param pDesc Descriptor to dump.
813 * @param Sel Selector number.
814 * @param pszMsg Message to prepend the log entry with.
815 */
816HWACCMR0DECL(void) HWACCMR0DumpDescriptor(PX86DESCHC pDesc, RTSEL Sel, const char *pszMsg)
817{
818 /*
819 * Make variable description string.
820 */
821 static struct
822 {
823 unsigned cch;
824 const char *psz;
825 } const aTypes[32] =
826 {
827 #define STRENTRY(str) { sizeof(str) - 1, str }
828
829 /* system */
830#if HC_ARCH_BITS == 64
831 STRENTRY("Reserved0 "), /* 0x00 */
832 STRENTRY("Reserved1 "), /* 0x01 */
833 STRENTRY("LDT "), /* 0x02 */
834 STRENTRY("Reserved3 "), /* 0x03 */
835 STRENTRY("Reserved4 "), /* 0x04 */
836 STRENTRY("Reserved5 "), /* 0x05 */
837 STRENTRY("Reserved6 "), /* 0x06 */
838 STRENTRY("Reserved7 "), /* 0x07 */
839 STRENTRY("Reserved8 "), /* 0x08 */
840 STRENTRY("TSS64Avail "), /* 0x09 */
841 STRENTRY("ReservedA "), /* 0x0a */
842 STRENTRY("TSS64Busy "), /* 0x0b */
843 STRENTRY("Call64 "), /* 0x0c */
844 STRENTRY("ReservedD "), /* 0x0d */
845 STRENTRY("Int64 "), /* 0x0e */
846 STRENTRY("Trap64 "), /* 0x0f */
847#else
848 STRENTRY("Reserved0 "), /* 0x00 */
849 STRENTRY("TSS16Avail "), /* 0x01 */
850 STRENTRY("LDT "), /* 0x02 */
851 STRENTRY("TSS16Busy "), /* 0x03 */
852 STRENTRY("Call16 "), /* 0x04 */
853 STRENTRY("Task "), /* 0x05 */
854 STRENTRY("Int16 "), /* 0x06 */
855 STRENTRY("Trap16 "), /* 0x07 */
856 STRENTRY("Reserved8 "), /* 0x08 */
857 STRENTRY("TSS32Avail "), /* 0x09 */
858 STRENTRY("ReservedA "), /* 0x0a */
859 STRENTRY("TSS32Busy "), /* 0x0b */
860 STRENTRY("Call32 "), /* 0x0c */
861 STRENTRY("ReservedD "), /* 0x0d */
862 STRENTRY("Int32 "), /* 0x0e */
863 STRENTRY("Trap32 "), /* 0x0f */
864#endif
865 /* non system */
866 STRENTRY("DataRO "), /* 0x10 */
867 STRENTRY("DataRO Accessed "), /* 0x11 */
868 STRENTRY("DataRW "), /* 0x12 */
869 STRENTRY("DataRW Accessed "), /* 0x13 */
870 STRENTRY("DataDownRO "), /* 0x14 */
871 STRENTRY("DataDownRO Accessed "), /* 0x15 */
872 STRENTRY("DataDownRW "), /* 0x16 */
873 STRENTRY("DataDownRW Accessed "), /* 0x17 */
874 STRENTRY("CodeEO "), /* 0x18 */
875 STRENTRY("CodeEO Accessed "), /* 0x19 */
876 STRENTRY("CodeER "), /* 0x1a */
877 STRENTRY("CodeER Accessed "), /* 0x1b */
878 STRENTRY("CodeConfEO "), /* 0x1c */
879 STRENTRY("CodeConfEO Accessed "), /* 0x1d */
880 STRENTRY("CodeConfER "), /* 0x1e */
881 STRENTRY("CodeConfER Accessed ") /* 0x1f */
882 #undef SYSENTRY
883 };
884 #define ADD_STR(psz, pszAdd) do { strcpy(psz, pszAdd); psz += strlen(pszAdd); } while (0)
885 char szMsg[128];
886 char *psz = &szMsg[0];
887 unsigned i = pDesc->Gen.u1DescType << 4 | pDesc->Gen.u4Type;
888 memcpy(psz, aTypes[i].psz, aTypes[i].cch);
889 psz += aTypes[i].cch;
890
891 if (pDesc->Gen.u1Present)
892 ADD_STR(psz, "Present ");
893 else
894 ADD_STR(psz, "Not-Present ");
895#if HC_ARCH_BITS == 64
896 if (pDesc->Gen.u1Long)
897 ADD_STR(psz, "64-bit ");
898 else
899 ADD_STR(psz, "Comp ");
900#else
901 if (pDesc->Gen.u1Granularity)
902 ADD_STR(psz, "Page ");
903 if (pDesc->Gen.u1DefBig)
904 ADD_STR(psz, "32-bit ");
905 else
906 ADD_STR(psz, "16-bit ");
907#endif
908 #undef ADD_STR
909 *psz = '\0';
910
911 /*
912 * Limit and Base and format the output.
913 */
914 uint32_t u32Limit = X86DESC_LIMIT(*pDesc);
915 if (pDesc->Gen.u1Granularity)
916 u32Limit = u32Limit << PAGE_SHIFT | PAGE_OFFSET_MASK;
917
918#if HC_ARCH_BITS == 64
919 uint64_t u32Base = X86DESC64_BASE(*pDesc);
920
921 Log(("%s %04x - %VX64 %VX64 - base=%VX64 limit=%08x dpl=%d %s\n", pszMsg,
922 Sel, pDesc->au64[0], pDesc->au64[1], u32Base, u32Limit, pDesc->Gen.u2Dpl, szMsg));
923#else
924 uint32_t u32Base = X86DESC_BASE(*pDesc);
925
926 Log(("%s %04x - %08x %08x - base=%08x limit=%08x dpl=%d %s\n", pszMsg,
927 Sel, pDesc->au32[0], pDesc->au32[1], u32Base, u32Limit, pDesc->Gen.u2Dpl, szMsg));
928#endif
929}
930
931/**
932 * Formats a full register dump.
933 *
934 * @param pCtx The context to format.
935 */
936HWACCMR0DECL(void) HWACCMDumpRegs(PCPUMCTX pCtx)
937{
938 /*
939 * Format the flags.
940 */
941 static struct
942 {
943 const char *pszSet; const char *pszClear; uint32_t fFlag;
944 } aFlags[] =
945 {
946 { "vip",NULL, X86_EFL_VIP },
947 { "vif",NULL, X86_EFL_VIF },
948 { "ac", NULL, X86_EFL_AC },
949 { "vm", NULL, X86_EFL_VM },
950 { "rf", NULL, X86_EFL_RF },
951 { "nt", NULL, X86_EFL_NT },
952 { "ov", "nv", X86_EFL_OF },
953 { "dn", "up", X86_EFL_DF },
954 { "ei", "di", X86_EFL_IF },
955 { "tf", NULL, X86_EFL_TF },
956 { "nt", "pl", X86_EFL_SF },
957 { "nz", "zr", X86_EFL_ZF },
958 { "ac", "na", X86_EFL_AF },
959 { "po", "pe", X86_EFL_PF },
960 { "cy", "nc", X86_EFL_CF },
961 };
962 char szEFlags[80];
963 char *psz = szEFlags;
964 uint32_t efl = pCtx->eflags.u32;
965 for (unsigned i = 0; i < ELEMENTS(aFlags); i++)
966 {
967 const char *pszAdd = aFlags[i].fFlag & efl ? aFlags[i].pszSet : aFlags[i].pszClear;
968 if (pszAdd)
969 {
970 strcpy(psz, pszAdd);
971 psz += strlen(pszAdd);
972 *psz++ = ' ';
973 }
974 }
975 psz[-1] = '\0';
976
977
978 /*
979 * Format the registers.
980 */
981 Log(("eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n"
982 "eip=%08x esp=%08x ebp=%08x iopl=%d %*s\n"
983 "cs={%04x base=%VGv limit=%08x flags=%08x} dr0=%08RX64 dr1=%08RX64\n"
984 "ds={%04x base=%VGv limit=%08x flags=%08x} dr2=%08RX64 dr3=%08RX64\n"
985 "es={%04x base=%VGv limit=%08x flags=%08x} dr4=%08RX64 dr5=%08RX64\n"
986 "fs={%04x base=%VGv limit=%08x flags=%08x} dr6=%08RX64 dr7=%08RX64\n"
987 ,
988 pCtx->eax, pCtx->ebx, pCtx->ecx, pCtx->edx, pCtx->esi, pCtx->edi,
989 pCtx->eip, pCtx->esp, pCtx->ebp, X86_EFL_GET_IOPL(efl), 31, szEFlags,
990 (RTSEL)pCtx->cs, pCtx->csHid.u64Base, pCtx->csHid.u32Limit, pCtx->csHid.Attr.u, pCtx->dr0, pCtx->dr1,
991 (RTSEL)pCtx->ds, pCtx->dsHid.u64Base, pCtx->dsHid.u32Limit, pCtx->dsHid.Attr.u, pCtx->dr2, pCtx->dr3,
992 (RTSEL)pCtx->es, pCtx->esHid.u64Base, pCtx->esHid.u32Limit, pCtx->esHid.Attr.u, pCtx->dr4, pCtx->dr5,
993 (RTSEL)pCtx->fs, pCtx->fsHid.u64Base, pCtx->fsHid.u32Limit, pCtx->fsHid.Attr.u, pCtx->dr6, pCtx->dr7));
994
995 Log(("gs={%04x base=%VGv limit=%08x flags=%08x} cr0=%08RX64 cr2=%08RX64\n"
996 "ss={%04x base=%VGv limit=%08x flags=%08x} cr3=%08RX64 cr4=%08RX64\n"
997 "gdtr=%08x:%04x idtr=%08x:%04x eflags=%08x\n"
998 "ldtr={%04x base=%VGv limit=%08x flags=%08x}\n"
999 "tr ={%04x base=%VGv limit=%08x flags=%08x}\n"
1000 "SysEnter={cs=%04llx eip=%08llx esp=%08llx}\n"
1001 "FCW=%04x FSW=%04x FTW=%04x\n",
1002 (RTSEL)pCtx->gs, pCtx->gsHid.u64Base, pCtx->gsHid.u32Limit, pCtx->gsHid.Attr.u, pCtx->cr0, pCtx->cr2,
1003 (RTSEL)pCtx->ss, pCtx->ssHid.u64Base, pCtx->ssHid.u32Limit, pCtx->ssHid.Attr.u, pCtx->cr3, pCtx->cr4,
1004 pCtx->gdtr.pGdt, pCtx->gdtr.cbGdt, pCtx->idtr.pIdt, pCtx->idtr.cbIdt, efl,
1005 (RTSEL)pCtx->ldtr, pCtx->ldtrHid.u64Base, pCtx->ldtrHid.u32Limit, pCtx->ldtrHid.Attr.u,
1006 (RTSEL)pCtx->tr, pCtx->trHid.u64Base, pCtx->trHid.u32Limit, pCtx->trHid.Attr.u,
1007 pCtx->SysEnter.cs, pCtx->SysEnter.eip, pCtx->SysEnter.esp,
1008 pCtx->fpu.FCW, pCtx->fpu.FSW, pCtx->fpu.FTW));
1009
1010
1011}
1012#endif
1013
1014/* Dummy callback handlers. */
1015HWACCMR0DECL(int) HWACCMR0DummyEnter(PVM pVM, PHWACCM_CPUINFO pCpu)
1016{
1017 return VINF_SUCCESS;
1018}
1019
1020HWACCMR0DECL(int) HWACCMR0DummyLeave(PVM pVM)
1021{
1022 return VINF_SUCCESS;
1023}
1024
1025HWACCMR0DECL(int) HWACCMR0DummyEnableCpu(PHWACCM_CPUINFO pCpu, PVM pVM, void *pvPageCpu, RTHCPHYS pPageCpuPhys)
1026{
1027 return VINF_SUCCESS;
1028}
1029
1030HWACCMR0DECL(int) HWACCMR0DummyDisableCpu(PHWACCM_CPUINFO pCpu, void *pvPageCpu, RTHCPHYS pPageCpuPhys)
1031{
1032 return VINF_SUCCESS;
1033}
1034
1035HWACCMR0DECL(int) HWACCMR0DummyInitVM(PVM pVM)
1036{
1037 return VINF_SUCCESS;
1038}
1039
1040HWACCMR0DECL(int) HWACCMR0DummyTermVM(PVM pVM)
1041{
1042 return VINF_SUCCESS;
1043}
1044
1045HWACCMR0DECL(int) HWACCMR0DummySetupVM(PVM pVM)
1046{
1047 return VINF_SUCCESS;
1048}
1049
1050HWACCMR0DECL(int) HWACCMR0DummyRunGuestCode(PVM pVM, CPUMCTX *pCtx, PHWACCM_CPUINFO pCpu)
1051{
1052 return VINF_SUCCESS;
1053}
1054
1055HWACCMR0DECL(int) HWACCMR0DummySaveHostState(PVM pVM)
1056{
1057 return VINF_SUCCESS;
1058}
1059
1060HWACCMR0DECL(int) HWACCMR0DummyLoadGuestState(PVM pVM, CPUMCTX *pCtx)
1061{
1062 return VINF_SUCCESS;
1063}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette