VirtualBox

source: vbox/trunk/src/VBox/VMM/VMM.cpp@ 4071

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

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 96.4 KB
Line 
1/* $Id: VMM.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * VMM - The Virtual Machine Monitor Core.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18//#define NO_SUPCALLR0VMM
19
20/** @page pg_vmm VMM - The Virtual Machine Monitor
21 *
22 * !Revise this! It's already incorrect!
23 *
24 * The Virtual Machine Monitor (VMM) is the core of the virtual machine. It
25 * manages the alternate reality; controlling the virtualization, managing
26 * resources, tracking CPU state, it's resources and so on...
27 *
28 * We will split the VMM into smaller entities:
29 *
30 * - Virtual Machine Core Monitor (VMCM), which purpose it is to
31 * provide ring and world switching, that including routing
32 * interrupts to the host OS and traps to the appropriate trap
33 * handlers. It will implement an external interface for
34 * managing trap handlers.
35 *
36 * - CPU Monitor (CM), tracking the state of the CPU (in the alternate
37 * reality) and implementing external interfaces to read and change
38 * the state.
39 *
40 * - Memory Monitor (MM), which purpose it is to virtualize physical
41 * pages, segment descriptor tables, interrupt descriptor tables, task
42 * segments, and keep track of all memory providing external interfaces
43 * to access content and map pages. (Internally splitt into smaller entities!)
44 *
45 * - IO Monitor (IOM), which virtualizes in and out I/O operations. It
46 * interacts with the MM to implement memory mapped I/O. External
47 * interfaces for adding and removing I/O ranges are implemented.
48 *
49 * - External Interrupt Monitor (EIM), which purpose it is to manage
50 * interrupts generated by virtual devices. This monitor provides
51 * an interfaces for raising interrupts which is accessible at any
52 * time and from all thread.
53 * <p>
54 * A subentity of the EIM is the vitual Programmable Interrupt
55 * Controller Device (VPICD), and perhaps a virtual I/O Advanced
56 * Programmable Interrupt Controller Device (VAPICD).
57 *
58 * - Direct Memory Access Monitor (DMAM), which purpose it is to support
59 * virtual device using the DMA controller. Interfaces must be as the
60 * EIM interfaces independent and threadable.
61 * <p>
62 * A subentity of the DMAM is a virtual DMA Controller Device (VDMACD).
63 *
64 *
65 * Entities working on a higher level:
66 *
67 * - Device Manager (DM), which is a support facility for virtualized
68 * hardware. This provides generic facilities for efficient device
69 * virtualization. It will manage device attaching and detaching
70 * conversing with EIM and IOM.
71 *
72 * - Debugger Facility (DBGF) provides the basic features for
73 * debugging the alternate reality execution.
74 *
75 *
76 *
77 * @section pg_vmm_s_use_cases Use Cases
78 *
79 * @subsection pg_vmm_s_use_case_boot Bootstrap
80 *
81 * - Basic Init:
82 * - Init SUPDRV.
83 *
84 * - Init Virtual Machine Instance:
85 * - Load settings.
86 * - Check resource requirements (memory, com, stuff).
87 *
88 * - Init Host Ring 3 part:
89 * - Init Core code.
90 * - Load Pluggable Components.
91 * - Init Pluggable Components.
92 *
93 * - Init Host Ring 0 part:
94 * - Load Core (core = core components like VMM, RMI, CA, and so on) code.
95 * - Init Core code.
96 * - Load Pluggable Component code.
97 * - Init Pluggable Component code.
98 *
99 * - Allocate first chunk of memory and pin it down. This block of memory
100 * will fit the following pieces:
101 * - Virtual Machine Instance data. (Config, CPU state, VMM state, ++)
102 * (This is available from everywhere (at different addresses though)).
103 * - VMM Guest Context code.
104 * - Pluggable devices Guest Context code.
105 * - Page tables (directory and everything) for the VMM Guest
106 *
107 * - Setup Guest (Ring 0) part:
108 * - Setup initial page tables (i.e. directory all the stuff).
109 * - Load Core Guest Context code.
110 * - Load Pluggable Devices Guest Context code.
111 *
112 *
113 */
114
115
116/*******************************************************************************
117* Header Files *
118*******************************************************************************/
119#define LOG_GROUP LOG_GROUP_VMM
120#include <VBox/vmm.h>
121#include <VBox/vmapi.h>
122#include <VBox/pgm.h>
123#include <VBox/cfgm.h>
124#include <VBox/pdmqueue.h>
125#include <VBox/pdmapi.h>
126#include <VBox/cpum.h>
127#include <VBox/mm.h>
128#include <VBox/iom.h>
129#include <VBox/trpm.h>
130#include <VBox/selm.h>
131#include <VBox/em.h>
132#include <VBox/sup.h>
133#include <VBox/dbgf.h>
134#include <VBox/csam.h>
135#include <VBox/patm.h>
136#include <VBox/rem.h>
137#include <VBox/ssm.h>
138#include <VBox/tm.h>
139#include "VMMInternal.h"
140#include "VMMSwitcher/VMMSwitcher.h"
141#include <VBox/vm.h>
142#include <VBox/err.h>
143#include <VBox/param.h>
144#include <VBox/version.h>
145#include <VBox/x86.h>
146#include <VBox/hwaccm.h>
147#include <iprt/assert.h>
148#include <iprt/alloc.h>
149#include <iprt/asm.h>
150#include <iprt/time.h>
151#include <iprt/stream.h>
152#include <iprt/string.h>
153#include <iprt/stdarg.h>
154#include <iprt/ctype.h>
155
156
157
158/** The saved state version. */
159#define VMM_SAVED_STATE_VERSION 3
160
161
162/*******************************************************************************
163* Internal Functions *
164*******************************************************************************/
165static DECLCALLBACK(int) vmmR3Save(PVM pVM, PSSMHANDLE pSSM);
166static DECLCALLBACK(int) vmmR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version);
167static DECLCALLBACK(void) vmmR3YieldEMT(PVM pVM, PTMTIMER pTimer, void *pvUser);
168static int vmmR3ServiceCallHostRequest(PVM pVM);
169static DECLCALLBACK(void) vmmR3InfoFF(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
170
171
172/*******************************************************************************
173* Global Variables *
174*******************************************************************************/
175/** Array of switcher defininitions.
176 * The type and index shall match!
177 */
178static PVMMSWITCHERDEF s_apSwitchers[VMMSWITCHER_MAX] =
179{
180 NULL, /* invalid entry */
181#ifndef RT_ARCH_AMD64
182 &vmmR3Switcher32BitTo32Bit_Def,
183 &vmmR3Switcher32BitToPAE_Def,
184 NULL, //&vmmR3Switcher32BitToAMD64_Def,
185 &vmmR3SwitcherPAETo32Bit_Def,
186 &vmmR3SwitcherPAEToPAE_Def,
187 NULL, //&vmmR3SwitcherPAEToAMD64_Def,
188# ifdef VBOX_WITH_HYBIRD_32BIT_KERNEL
189 &vmmR3SwitcherAMD64ToPAE_Def,
190# else
191 NULL, //&vmmR3SwitcherAMD64ToPAE_Def,
192# endif
193 NULL //&vmmR3SwitcherAMD64ToAMD64_Def,
194#else
195 NULL, //&vmmR3Switcher32BitTo32Bit_Def,
196 NULL, //&vmmR3Switcher32BitToPAE_Def,
197 NULL, //&vmmR3Switcher32BitToAMD64_Def,
198 NULL, //&vmmR3SwitcherPAETo32Bit_Def,
199 NULL, //&vmmR3SwitcherPAEToPAE_Def,
200 NULL, //&vmmR3SwitcherPAEToAMD64_Def,
201 &vmmR3SwitcherAMD64ToPAE_Def,
202 NULL //&vmmR3SwitcherAMD64ToAMD64_Def,
203#endif
204};
205
206
207
208/**
209 * Initiates the core code.
210 *
211 * This is core per VM code which might need fixups and/or for ease of use
212 * are put on linear contiguous backing.
213 *
214 * @returns VBox status code.
215 * @param pVM Pointer to VM structure.
216 */
217static int vmmR3InitCoreCode(PVM pVM)
218{
219 /*
220 * Calc the size.
221 */
222 unsigned cbCoreCode = 0;
223 for (unsigned iSwitcher = 0; iSwitcher < ELEMENTS(s_apSwitchers); iSwitcher++)
224 {
225 pVM->vmm.s.aoffSwitchers[iSwitcher] = cbCoreCode;
226 PVMMSWITCHERDEF pSwitcher = s_apSwitchers[iSwitcher];
227 if (pSwitcher)
228 {
229 AssertRelease((unsigned)pSwitcher->enmType == iSwitcher);
230 cbCoreCode += RT_ALIGN_32(pSwitcher->cbCode + 1, 32);
231 }
232 }
233
234 /*
235 * Allocate continguous pages for switchers and deal with
236 * conflicts in the intermediate mapping of the code.
237 */
238 pVM->vmm.s.cbCoreCode = RT_ALIGN_32(cbCoreCode, PAGE_SIZE);
239 pVM->vmm.s.pvHCCoreCodeR3 = SUPContAlloc2(pVM->vmm.s.cbCoreCode >> PAGE_SHIFT, &pVM->vmm.s.pvHCCoreCodeR0, &pVM->vmm.s.HCPhysCoreCode);
240 int rc = VERR_NO_MEMORY;
241 if (pVM->vmm.s.pvHCCoreCodeR3)
242 {
243 rc = PGMR3MapIntermediate(pVM, pVM->vmm.s.pvHCCoreCodeR0, pVM->vmm.s.HCPhysCoreCode, cbCoreCode);
244 if (rc == VERR_PGM_MAPPINGS_FIX_CONFLICT)
245 {
246 /* try more allocations. */
247 struct
248 {
249 RTR0PTR pvR0;
250 void *pvR3;
251 RTHCPHYS HCPhys;
252 RTUINT cb;
253 } aBadTries[16];
254 unsigned i = 0;
255 do
256 {
257 aBadTries[i].pvR3 = pVM->vmm.s.pvHCCoreCodeR3;
258 aBadTries[i].pvR0 = pVM->vmm.s.pvHCCoreCodeR0;
259 aBadTries[i].HCPhys = pVM->vmm.s.HCPhysCoreCode;
260 i++;
261 pVM->vmm.s.pvHCCoreCodeR0 = NIL_RTR0PTR;
262 pVM->vmm.s.HCPhysCoreCode = NIL_RTHCPHYS;
263 pVM->vmm.s.pvHCCoreCodeR3 = SUPContAlloc2(pVM->vmm.s.cbCoreCode >> PAGE_SHIFT, &pVM->vmm.s.pvHCCoreCodeR0, &pVM->vmm.s.HCPhysCoreCode);
264 if (!pVM->vmm.s.pvHCCoreCodeR3)
265 break;
266 rc = PGMR3MapIntermediate(pVM, pVM->vmm.s.pvHCCoreCodeR0, pVM->vmm.s.HCPhysCoreCode, cbCoreCode);
267 } while ( rc == VERR_PGM_MAPPINGS_FIX_CONFLICT
268 && i < ELEMENTS(aBadTries) - 1);
269
270 /* cleanup */
271 if (VBOX_FAILURE(rc))
272 {
273 aBadTries[i].pvR3 = pVM->vmm.s.pvHCCoreCodeR3;
274 aBadTries[i].pvR0 = pVM->vmm.s.pvHCCoreCodeR0;
275 aBadTries[i].HCPhys = pVM->vmm.s.HCPhysCoreCode;
276 aBadTries[i].cb = pVM->vmm.s.cbCoreCode;
277 i++;
278 LogRel(("Failed to allocated and map core code: rc=%Vrc\n", rc));
279 }
280 while (i-- > 0)
281 {
282 LogRel(("Core code alloc attempt #%d: pvR3=%p pvR0=%p HCPhys=%VHp\n",
283 i, aBadTries[i].pvR3, aBadTries[i].pvR0, aBadTries[i].HCPhys));
284 SUPContFree(aBadTries[i].pvR3, aBadTries[i].cb >> PAGE_SHIFT);
285 }
286 }
287 }
288 if (VBOX_SUCCESS(rc))
289 {
290 /*
291 * copy the code.
292 */
293 for (unsigned iSwitcher = 0; iSwitcher < ELEMENTS(s_apSwitchers); iSwitcher++)
294 {
295 PVMMSWITCHERDEF pSwitcher = s_apSwitchers[iSwitcher];
296 if (pSwitcher)
297 memcpy((uint8_t *)pVM->vmm.s.pvHCCoreCodeR3 + pVM->vmm.s.aoffSwitchers[iSwitcher],
298 pSwitcher->pvCode, pSwitcher->cbCode);
299 }
300
301 /*
302 * Map the code into the GC address space.
303 */
304 rc = MMR3HyperMapHCPhys(pVM, pVM->vmm.s.pvHCCoreCodeR3, pVM->vmm.s.HCPhysCoreCode, cbCoreCode, "Core Code", &pVM->vmm.s.pvGCCoreCode);
305 if (VBOX_SUCCESS(rc))
306 {
307 MMR3HyperReserve(pVM, PAGE_SIZE, "fence", NULL);
308 LogRel(("CoreCode: R3=%VHv R0=%VHv GC=%VGv Phys=%VHp cb=%#x\n",
309 pVM->vmm.s.pvHCCoreCodeR3, pVM->vmm.s.pvHCCoreCodeR0, pVM->vmm.s.pvGCCoreCode, pVM->vmm.s.HCPhysCoreCode, pVM->vmm.s.cbCoreCode));
310
311 /*
312 * Finally, PGM probably have selected a switcher already but we need
313 * to do get the addresses so we'll reselect it.
314 * This may legally fail so, we're ignoring the rc.
315 */
316 VMMR3SelectSwitcher(pVM, pVM->vmm.s.enmSwitcher);
317 return rc;
318 }
319
320 /* shit */
321 AssertMsgFailed(("PGMR3Map(,%VGv, %VGp, %#x, 0) failed with rc=%Vrc\n", pVM->vmm.s.pvGCCoreCode, pVM->vmm.s.HCPhysCoreCode, cbCoreCode, rc));
322 SUPContFree(pVM->vmm.s.pvHCCoreCodeR3, pVM->vmm.s.cbCoreCode >> PAGE_SHIFT);
323 }
324 else
325 VMSetError(pVM, rc, RT_SRC_POS,
326 N_("Failed to allocate %d bytes of contiguous memory for the world switcher code."),
327 cbCoreCode);
328
329 pVM->vmm.s.pvHCCoreCodeR3 = NULL;
330 pVM->vmm.s.pvHCCoreCodeR0 = NIL_RTR0PTR;
331 pVM->vmm.s.pvGCCoreCode = 0;
332 return rc;
333}
334
335
336/**
337 * Initializes the VMM.
338 *
339 * @returns VBox status code.
340 * @param pVM The VM to operate on.
341 */
342VMMR3DECL(int) VMMR3Init(PVM pVM)
343{
344 LogFlow(("VMMR3Init\n"));
345
346 /*
347 * Assert alignment, sizes and order.
348 */
349 AssertMsg(pVM->vmm.s.offVM == 0, ("Already initialized!\n"));
350 AssertMsg(sizeof(pVM->vmm.padding) >= sizeof(pVM->vmm.s),
351 ("pVM->vmm.padding is too small! vmm.padding %d while vmm.s is %d\n",
352 sizeof(pVM->vmm.padding), sizeof(pVM->vmm.s)));
353
354 /*
355 * Init basic VM VMM members.
356 */
357 pVM->vmm.s.offVM = RT_OFFSETOF(VM, vmm);
358 int rc = CFGMR3QueryU32(CFGMR3GetRoot(pVM), "YieldEMTInterval", &pVM->vmm.s.cYieldEveryMillies);
359 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
360 pVM->vmm.s.cYieldEveryMillies = 23; /* Value arrived at after experimenting with the grub boot prompt. */
361 //pVM->vmm.s.cYieldEveryMillies = 8; //debugging
362 else
363 AssertMsgRCReturn(rc, ("Configuration error. Failed to query \"YieldEMTInterval\", rc=%Vrc\n", rc), rc);
364
365 /* GC switchers are enabled by default. Turned off by HWACCM. */
366 pVM->vmm.s.fSwitcherDisabled = false;
367
368 /*
369 * Register the saved state data unit.
370 */
371 rc = SSMR3RegisterInternal(pVM, "vmm", 1, VMM_SAVED_STATE_VERSION, VMM_STACK_SIZE + sizeof(RTGCPTR),
372 NULL, vmmR3Save, NULL,
373 NULL, vmmR3Load, NULL);
374 if (VBOX_FAILURE(rc))
375 return rc;
376
377#ifdef VBOX_WITHOUT_IDT_PATCHING
378 /*
379 * Register the Ring-0 VM handle with the session for fast ioctl calls.
380 */
381 rc = SUPSetVMForFastIOCtl(pVM->pVMR0);
382 if (VBOX_FAILURE(rc))
383 return rc;
384#endif
385
386 /*
387 * Init core code.
388 */
389 rc = vmmR3InitCoreCode(pVM);
390 if (VBOX_SUCCESS(rc))
391 {
392 /*
393 * Allocate & init VMM GC stack.
394 * The stack pages are also used by the VMM R0 when VMMR0CallHost is invoked.
395 * (The page protection is modifed during R3 init completion.)
396 */
397#ifdef VBOX_STRICT_VMM_STACK
398 rc = MMHyperAlloc(pVM, VMM_STACK_SIZE + PAGE_SIZE + PAGE_SIZE, PAGE_SIZE, MM_TAG_VMM, (void **)&pVM->vmm.s.pbHCStack);
399#else
400 rc = MMHyperAlloc(pVM, VMM_STACK_SIZE, PAGE_SIZE, MM_TAG_VMM, (void **)&pVM->vmm.s.pbHCStack);
401#endif
402 if (VBOX_SUCCESS(rc))
403 {
404 /* Set HC and GC stack pointers to top of stack. */
405 pVM->vmm.s.CallHostR0JmpBuf.pvSavedStack = (RTR0PTR)pVM->vmm.s.pbHCStack;
406 pVM->vmm.s.pbGCStack = MMHyperHC2GC(pVM, pVM->vmm.s.pbHCStack);
407 pVM->vmm.s.pbGCStackBottom = pVM->vmm.s.pbGCStack + VMM_STACK_SIZE;
408 AssertRelease(pVM->vmm.s.pbGCStack);
409
410 /* Set hypervisor eip. */
411 CPUMSetHyperESP(pVM, pVM->vmm.s.pbGCStack);
412
413 /*
414 * Allocate GC & R0 Logger instances (they are finalized in the relocator).
415 */
416#ifdef LOG_ENABLED
417 PRTLOGGER pLogger = RTLogDefaultInstance();
418 if (pLogger)
419 {
420 pVM->vmm.s.cbLoggerGC = RT_OFFSETOF(RTLOGGERGC, afGroups[pLogger->cGroups]);
421 rc = MMHyperAlloc(pVM, pVM->vmm.s.cbLoggerGC, 0, MM_TAG_VMM, (void **)&pVM->vmm.s.pLoggerHC);
422 if (VBOX_SUCCESS(rc))
423 {
424 pVM->vmm.s.pLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pLoggerHC);
425
426/*
427 * Ring-0 logging isn't 100% safe yet (thread id reuse / process exit cleanup), so
428 * you have to sign up here by adding your defined(DEBUG_<userid>) to the #if.
429 *
430 * If you want to log in non-debug modes, you'll have to remember to change SUPDRvShared.c
431 * to not stub all the log functions.
432 *
433 * You might also wish to enable the AssertMsg1/2 overrides in VMMR0.cpp when enabling this.
434 */
435# if defined(DEBUG_sandervl) || defined(DEBUG_frank)
436 rc = MMHyperAlloc(pVM, RT_OFFSETOF(VMMR0LOGGER, Logger.afGroups[pLogger->cGroups]),
437 0, MM_TAG_VMM, (void **)&pVM->vmm.s.pR0Logger);
438 if (VBOX_SUCCESS(rc))
439 {
440 pVM->vmm.s.pR0Logger->pVM = pVM;
441 //pVM->vmm.s.pR0Logger->fCreated = false;
442 pVM->vmm.s.pR0Logger->cbLogger = RT_OFFSETOF(RTLOGGER, afGroups[pLogger->cGroups]);
443 }
444# endif
445 }
446 }
447#endif /* LOG_ENABLED */
448
449#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
450 /*
451 * Allocate GC Release Logger instances (finalized in the relocator).
452 */
453 if (VBOX_SUCCESS(rc))
454 {
455 PRTLOGGER pRelLogger = RTLogRelDefaultInstance();
456 if (pRelLogger)
457 {
458 pVM->vmm.s.cbRelLoggerGC = RT_OFFSETOF(RTLOGGERGC, afGroups[pRelLogger->cGroups]);
459 rc = MMHyperAlloc(pVM, pVM->vmm.s.cbRelLoggerGC, 0, MM_TAG_VMM, (void **)&pVM->vmm.s.pRelLoggerHC);
460 if (VBOX_SUCCESS(rc))
461 pVM->vmm.s.pRelLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pRelLoggerHC);
462 }
463 }
464#endif /* VBOX_WITH_GC_AND_R0_RELEASE_LOG */
465
466#ifdef VBOX_WITH_NMI
467 /*
468 * Allocate mapping for the host APIC.
469 */
470 if (VBOX_SUCCESS(rc))
471 {
472 rc = MMR3HyperReserve(pVM, PAGE_SIZE, "Host APIC", &pVM->vmm.s.GCPtrApicBase);
473 AssertRC(rc);
474 }
475#endif
476 if (VBOX_SUCCESS(rc))
477 {
478 rc = RTCritSectInit(&pVM->vmm.s.CritSectVMLock);
479 if (VBOX_SUCCESS(rc))
480 {
481 /*
482 * Debug info.
483 */
484 DBGFR3InfoRegisterInternal(pVM, "ff", "Displays the current Forced actions Flags.", vmmR3InfoFF);
485
486 /*
487 * Statistics.
488 */
489 STAM_REG(pVM, &pVM->vmm.s.StatRunGC, STAMTYPE_COUNTER, "/VMM/RunGC", STAMUNIT_OCCURENCES, "Number of context switches.");
490 STAM_REG(pVM, &pVM->vmm.s.StatGCRetNormal, STAMTYPE_COUNTER, "/VMM/GCRet/Normal", STAMUNIT_OCCURENCES, "Number of VINF_SUCCESS returns.");
491 STAM_REG(pVM, &pVM->vmm.s.StatGCRetInterrupt, STAMTYPE_COUNTER, "/VMM/GCRet/Interrupt", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_INTERRUPT returns.");
492 STAM_REG(pVM, &pVM->vmm.s.StatGCRetInterruptHyper, STAMTYPE_COUNTER, "/VMM/GCRet/InterruptHyper", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_INTERRUPT_HYPER returns.");
493 STAM_REG(pVM, &pVM->vmm.s.StatGCRetGuestTrap, STAMTYPE_COUNTER, "/VMM/GCRet/GuestTrap", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_GUEST_TRAP returns.");
494 STAM_REG(pVM, &pVM->vmm.s.StatGCRetRingSwitch, STAMTYPE_COUNTER, "/VMM/GCRet/RingSwitch", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_RING_SWITCH returns.");
495 STAM_REG(pVM, &pVM->vmm.s.StatGCRetRingSwitchInt, STAMTYPE_COUNTER, "/VMM/GCRet/RingSwitchInt", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_RING_SWITCH_INT returns.");
496 STAM_REG(pVM, &pVM->vmm.s.StatGCRetExceptionPrivilege, STAMTYPE_COUNTER, "/VMM/GCRet/ExceptionPrivilege", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_EXCEPTION_PRIVILEGED returns.");
497 STAM_REG(pVM, &pVM->vmm.s.StatGCRetStaleSelector, STAMTYPE_COUNTER, "/VMM/GCRet/StaleSelector", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_STALE_SELECTOR returns.");
498 STAM_REG(pVM, &pVM->vmm.s.StatGCRetIRETTrap, STAMTYPE_COUNTER, "/VMM/GCRet/IRETTrap", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_IRET_TRAP returns.");
499 STAM_REG(pVM, &pVM->vmm.s.StatGCRetEmulate, STAMTYPE_COUNTER, "/VMM/GCRet/Emulate", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION returns.");
500 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPatchEmulate, STAMTYPE_COUNTER, "/VMM/GCRet/PatchEmulate", STAMUNIT_OCCURENCES, "Number of VINF_PATCH_EMULATE_INSTR returns.");
501 STAM_REG(pVM, &pVM->vmm.s.StatGCRetIORead, STAMTYPE_COUNTER, "/VMM/GCRet/IORead", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_IOPORT_READ returns.");
502 STAM_REG(pVM, &pVM->vmm.s.StatGCRetIOWrite, STAMTYPE_COUNTER, "/VMM/GCRet/IOWrite", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_IOPORT_WRITE returns.");
503 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMMIORead, STAMTYPE_COUNTER, "/VMM/GCRet/MMIORead", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_MMIO_READ returns.");
504 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMMIOWrite, STAMTYPE_COUNTER, "/VMM/GCRet/MMIOWrite", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_MMIO_WRITE returns.");
505 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMMIOReadWrite, STAMTYPE_COUNTER, "/VMM/GCRet/MMIOReadWrite", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_MMIO_READ_WRITE returns.");
506 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMMIOPatchRead, STAMTYPE_COUNTER, "/VMM/GCRet/MMIOPatchRead", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_MMIO_PATCH_READ returns.");
507 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMMIOPatchWrite, STAMTYPE_COUNTER, "/VMM/GCRet/MMIOPatchWrite", STAMUNIT_OCCURENCES, "Number of VINF_IOM_HC_MMIO_PATCH_WRITE returns.");
508 STAM_REG(pVM, &pVM->vmm.s.StatGCRetLDTFault, STAMTYPE_COUNTER, "/VMM/GCRet/LDTFault", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION_GDT_FAULT returns.");
509 STAM_REG(pVM, &pVM->vmm.s.StatGCRetGDTFault, STAMTYPE_COUNTER, "/VMM/GCRet/GDTFault", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION_LDT_FAULT returns.");
510 STAM_REG(pVM, &pVM->vmm.s.StatGCRetIDTFault, STAMTYPE_COUNTER, "/VMM/GCRet/IDTFault", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION_IDT_FAULT returns.");
511 STAM_REG(pVM, &pVM->vmm.s.StatGCRetTSSFault, STAMTYPE_COUNTER, "/VMM/GCRet/TSSFault", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION_TSS_FAULT returns.");
512 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPDFault, STAMTYPE_COUNTER, "/VMM/GCRet/PDFault", STAMUNIT_OCCURENCES, "Number of VINF_EM_EXECUTE_INSTRUCTION_PD_FAULT returns.");
513 STAM_REG(pVM, &pVM->vmm.s.StatGCRetCSAMTask, STAMTYPE_COUNTER, "/VMM/GCRet/CSAMTask", STAMUNIT_OCCURENCES, "Number of VINF_CSAM_PENDING_ACTION returns.");
514 STAM_REG(pVM, &pVM->vmm.s.StatGCRetSyncCR3, STAMTYPE_COUNTER, "/VMM/GCRet/SyncCR", STAMUNIT_OCCURENCES, "Number of VINF_PGM_SYNC_CR3 returns.");
515 STAM_REG(pVM, &pVM->vmm.s.StatGCRetMisc, STAMTYPE_COUNTER, "/VMM/GCRet/Misc", STAMUNIT_OCCURENCES, "Number of misc returns.");
516 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPatchInt3, STAMTYPE_COUNTER, "/VMM/GCRet/PatchInt3", STAMUNIT_OCCURENCES, "Number of VINF_PATM_PATCH_INT3 returns.");
517 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPatchPF, STAMTYPE_COUNTER, "/VMM/GCRet/PatchPF", STAMUNIT_OCCURENCES, "Number of VINF_PATM_PATCH_TRAP_PF returns.");
518 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPatchGP, STAMTYPE_COUNTER, "/VMM/GCRet/PatchGP", STAMUNIT_OCCURENCES, "Number of VINF_PATM_PATCH_TRAP_GP returns.");
519 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPatchIretIRQ, STAMTYPE_COUNTER, "/VMM/GCRet/PatchIret", STAMUNIT_OCCURENCES, "Number of VINF_PATM_PENDING_IRQ_AFTER_IRET returns.");
520 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPageOverflow, STAMTYPE_COUNTER, "/VMM/GCRet/InvlpgOverflow", STAMUNIT_OCCURENCES, "Number of VERR_REM_FLUSHED_PAGES_OVERFLOW returns.");
521 STAM_REG(pVM, &pVM->vmm.s.StatGCRetRescheduleREM, STAMTYPE_COUNTER, "/VMM/GCRet/ScheduleREM", STAMUNIT_OCCURENCES, "Number of VINF_EM_RESCHEDULE_REM returns.");
522 STAM_REG(pVM, &pVM->vmm.s.StatGCRetToR3, STAMTYPE_COUNTER, "/VMM/GCRet/ToR3", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");
523 STAM_REG(pVM, &pVM->vmm.s.StatGCRetTimerPending, STAMTYPE_COUNTER, "/VMM/GCRet/TimerPending", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TIMER_PENDING returns.");
524 STAM_REG(pVM, &pVM->vmm.s.StatGCRetInterruptPending, STAMTYPE_COUNTER, "/VMM/GCRet/InterruptPending", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_INTERRUPT_PENDING returns.");
525 STAM_REG(pVM, &pVM->vmm.s.StatGCRetCallHost, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/Misc", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
526 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPGMGrowRAM, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/GrowRAM", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
527 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPDMLock, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/PDMLock", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
528 STAM_REG(pVM, &pVM->vmm.s.StatGCRetLogFlush, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/LogFlush", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
529 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPDMQueueFlush, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/QueueFlush", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
530 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPGMPoolGrow, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/PGMPoolGrow",STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
531 STAM_REG(pVM, &pVM->vmm.s.StatGCRetRemReplay, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/REMReplay", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
532 STAM_REG(pVM, &pVM->vmm.s.StatGCRetVMSetError, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/VMSetError", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
533 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPGMLock, STAMTYPE_COUNTER, "/VMM/GCRet/CallHost/PGMLock", STAMUNIT_OCCURENCES, "Number of VINF_VMM_CALL_HOST returns.");
534 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPATMDuplicateFn, STAMTYPE_COUNTER, "/VMM/GCRet/PATMDuplicateFn", STAMUNIT_OCCURENCES, "Number of VINF_PATM_DUPLICATE_FUNCTION returns.");
535 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPGMChangeMode, STAMTYPE_COUNTER, "/VMM/GCRet/PGMChangeMode", STAMUNIT_OCCURENCES, "Number of VINF_PGM_CHANGE_MODE returns.");
536 STAM_REG(pVM, &pVM->vmm.s.StatGCRetEmulHlt, STAMTYPE_COUNTER, "/VMM/GCRet/EmulHlt", STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_EMULATE_INSTR_HLT returns.");
537 STAM_REG(pVM, &pVM->vmm.s.StatGCRetPendingRequest, STAMTYPE_COUNTER, "/VMM/GCRet/PendingRequest", STAMUNIT_OCCURENCES, "Number of VINF_EM_PENDING_REQUEST returns.");
538
539 return VINF_SUCCESS;
540 }
541 AssertRC(rc);
542 }
543 }
544 /** @todo: Need failure cleanup. */
545
546 //more todo in here?
547 //if (VBOX_SUCCESS(rc))
548 //{
549 //}
550 //int rc2 = vmmR3TermCoreCode(pVM);
551 //AssertRC(rc2));
552 }
553
554 return rc;
555}
556
557
558/**
559 * Ring-3 init finalizing.
560 *
561 * @returns VBox status code.
562 * @param pVM The VM handle.
563 */
564VMMR3DECL(int) VMMR3InitFinalize(PVM pVM)
565{
566#ifdef VBOX_STRICT_VMM_STACK
567 /*
568 * Two inaccessible pages at each sides of the stack to catch over/under-flows.
569 */
570 memset(pVM->vmm.s.pbHCStack - PAGE_SIZE, 0xcc, PAGE_SIZE);
571 PGMMapSetPage(pVM, MMHyperHC2GC(pVM, pVM->vmm.s.pbHCStack - PAGE_SIZE), PAGE_SIZE, 0);
572 RTMemProtect(pVM->vmm.s.pbHCStack - PAGE_SIZE, PAGE_SIZE, RTMEM_PROT_NONE);
573
574 memset(pVM->vmm.s.pbHCStack + VMM_STACK_SIZE, 0xcc, PAGE_SIZE);
575 PGMMapSetPage(pVM, MMHyperHC2GC(pVM, pVM->vmm.s.pbHCStack + VMM_STACK_SIZE), PAGE_SIZE, 0);
576 RTMemProtect(pVM->vmm.s.pbHCStack + VMM_STACK_SIZE, PAGE_SIZE, RTMEM_PROT_NONE);
577#endif
578
579 /*
580 * Set page attributes to r/w for stack pages.
581 */
582 int rc = PGMMapSetPage(pVM, pVM->vmm.s.pbGCStack, VMM_STACK_SIZE, X86_PTE_P | X86_PTE_A | X86_PTE_D | X86_PTE_RW);
583 AssertRC(rc);
584 if (VBOX_SUCCESS(rc))
585 {
586 /*
587 * Create the EMT yield timer.
588 */
589 rc = TMR3TimerCreateInternal(pVM, TMCLOCK_REAL, vmmR3YieldEMT, NULL, "EMT Yielder", &pVM->vmm.s.pYieldTimer);
590 if (VBOX_SUCCESS(rc))
591 rc = TMTimerSetMillies(pVM->vmm.s.pYieldTimer, pVM->vmm.s.cYieldEveryMillies);
592 }
593#ifdef VBOX_WITH_NMI
594 /*
595 * Map the host APIC into GC - This may be host os specific!
596 */
597 if (VBOX_SUCCESS(rc))
598 rc = PGMMap(pVM, pVM->vmm.s.GCPtrApicBase, 0xfee00000, PAGE_SIZE,
599 X86_PTE_P | X86_PTE_RW | X86_PTE_PWT | X86_PTE_PCD | X86_PTE_A | X86_PTE_D);
600#endif
601 return rc;
602}
603
604
605/**
606 * Initializes the R0 VMM.
607 *
608 * @returns VBox status code.
609 * @param pVM The VM to operate on.
610 */
611VMMR3DECL(int) VMMR3InitR0(PVM pVM)
612{
613 int rc;
614
615 /*
616 * Initialize the ring-0 logger if we haven't done so yet.
617 */
618 if ( pVM->vmm.s.pR0Logger
619 && !pVM->vmm.s.pR0Logger->fCreated)
620 {
621 rc = VMMR3UpdateLoggers(pVM);
622 if (VBOX_FAILURE(rc))
623 return rc;
624 }
625
626 /*
627 * Call Ring-0 entry with init code.
628 */
629 for (;;)
630 {
631#ifdef NO_SUPCALLR0VMM
632 //rc = VERR_GENERAL_FAILURE;
633 rc = VINF_SUCCESS;
634#else
635 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_VMMR0_INIT, (void *)VBOX_VERSION);
636#endif
637 if ( pVM->vmm.s.pR0Logger
638 && pVM->vmm.s.pR0Logger->Logger.offScratch > 0)
639 RTLogFlushToLogger(&pVM->vmm.s.pR0Logger->Logger, NULL);
640 if (rc != VINF_VMM_CALL_HOST)
641 break;
642 rc = vmmR3ServiceCallHostRequest(pVM);
643 if (VBOX_FAILURE(rc) || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST))
644 break;
645 break; // remove this when we do setjmp for all ring-0 stuff.
646 }
647
648 if (VBOX_FAILURE(rc) || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST))
649 {
650 LogRel(("R0 init failed, rc=%Vra\n", rc));
651 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
652 rc = VERR_INTERNAL_ERROR;
653 }
654 return rc;
655}
656
657
658/**
659 * Initializes the GC VMM.
660 *
661 * @returns VBox status code.
662 * @param pVM The VM to operate on.
663 */
664VMMR3DECL(int) VMMR3InitGC(PVM pVM)
665{
666 /* In VMX mode, there's no need to init GC. */
667 if (pVM->vmm.s.fSwitcherDisabled)
668 return VINF_SUCCESS;
669
670 /*
671 * Call VMMGCInit():
672 * -# resolve the address.
673 * -# setup stackframe and EIP to use the trampoline.
674 * -# do a generic hypervisor call.
675 */
676 RTGCPTR GCPtrEP;
677 int rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "VMMGCEntry", &GCPtrEP);
678 if (VBOX_SUCCESS(rc))
679 {
680 CPUMHyperSetCtxCore(pVM, NULL);
681 CPUMSetHyperESP(pVM, pVM->vmm.s.pbGCStackBottom); /* Clear the stack. */
682 uint64_t u64TS = RTTimeProgramStartNanoTS();
683#if GC_ARCH_BITS == 32
684 CPUMPushHyper(pVM, (uint32_t)(u64TS >> 32)); /* Param 3: The program startup TS - Hi. */
685 CPUMPushHyper(pVM, (uint32_t)u64TS); /* Param 3: The program startup TS - Lo. */
686#else /* 64-bit GC */
687 CPUMPushHyper(pVM, u64TS); /* Param 3: The program startup TS. */
688#endif
689 CPUMPushHyper(pVM, VBOX_VERSION); /* Param 2: Version argument. */
690 CPUMPushHyper(pVM, VMMGC_DO_VMMGC_INIT); /* Param 1: Operation. */
691 CPUMPushHyper(pVM, pVM->pVMGC); /* Param 0: pVM */
692 CPUMPushHyper(pVM, 3 * sizeof(RTGCPTR)); /* trampoline param: stacksize. */
693 CPUMPushHyper(pVM, GCPtrEP); /* Call EIP. */
694 CPUMSetHyperEIP(pVM, pVM->vmm.s.pfnGCCallTrampoline);
695
696 for (;;)
697 {
698#ifdef NO_SUPCALLR0VMM
699 //rc = VERR_GENERAL_FAILURE;
700 rc = VINF_SUCCESS;
701#else
702 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_CALL_HYPERVISOR, NULL);
703#endif
704#ifdef LOG_ENABLED
705 PRTLOGGERGC pLogger = pVM->vmm.s.pLoggerHC;
706 if ( pLogger
707 && pLogger->offScratch > 0)
708 RTLogFlushGC(NULL, pLogger);
709#endif
710#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
711 PRTLOGGERGC pRelLogger = pVM->vmm.s.pRelLoggerHC;
712 if (RT_UNLIKELY(pRelLogger && pRelLogger->offScratch > 0))
713 RTLogFlushGC(RTLogRelDefaultInstance(), pRelLogger);
714#endif
715 if (rc != VINF_VMM_CALL_HOST)
716 break;
717 rc = vmmR3ServiceCallHostRequest(pVM);
718 if (VBOX_FAILURE(rc) || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST))
719 break;
720 }
721
722 if (VBOX_FAILURE(rc) || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST))
723 {
724 VMMR3FatalDump(pVM, rc);
725 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
726 rc = VERR_INTERNAL_ERROR;
727 }
728 AssertRC(rc);
729 }
730 return rc;
731}
732
733
734/**
735 * Terminate the VMM bits.
736 *
737 * @returns VINF_SUCCESS.
738 * @param pVM The VM handle.
739 */
740VMMR3DECL(int) VMMR3Term(PVM pVM)
741{
742 /** @todo must call ring-0 so the logger thread instance can be properly removed. */
743
744#ifdef VBOX_STRICT_VMM_STACK
745 /*
746 * Make the two stack guard pages present again.
747 */
748 RTMemProtect(pVM->vmm.s.pbHCStack - PAGE_SIZE, PAGE_SIZE, RTMEM_PROT_READ | RTMEM_PROT_WRITE);
749 RTMemProtect(pVM->vmm.s.pbHCStack + VMM_STACK_SIZE, PAGE_SIZE, RTMEM_PROT_READ | RTMEM_PROT_WRITE);
750#endif
751 return VINF_SUCCESS;
752}
753
754
755/**
756 * Applies relocations to data and code managed by this
757 * component. This function will be called at init and
758 * whenever the VMM need to relocate it self inside the GC.
759 *
760 * The VMM will need to apply relocations to the core code.
761 *
762 * @param pVM The VM handle.
763 * @param offDelta The relocation delta.
764 */
765VMMR3DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta)
766{
767 LogFlow(("VMMR3Relocate: offDelta=%VGv\n", offDelta));
768
769 /*
770 * Recalc the GC address.
771 */
772 pVM->vmm.s.pvGCCoreCode = MMHyperHC2GC(pVM, pVM->vmm.s.pvHCCoreCodeR3);
773
774 /*
775 * The stack.
776 */
777 CPUMSetHyperESP(pVM, CPUMGetHyperESP(pVM) + offDelta);
778 pVM->vmm.s.pbGCStack = MMHyperHC2GC(pVM, pVM->vmm.s.pbHCStack);
779 pVM->vmm.s.pbGCStackBottom = pVM->vmm.s.pbGCStack + VMM_STACK_SIZE;
780
781 /*
782 * All the switchers.
783 */
784 for (unsigned iSwitcher = 0; iSwitcher < ELEMENTS(s_apSwitchers); iSwitcher++)
785 {
786 PVMMSWITCHERDEF pSwitcher = s_apSwitchers[iSwitcher];
787 if (pSwitcher && pSwitcher->pfnRelocate)
788 {
789 unsigned off = pVM->vmm.s.aoffSwitchers[iSwitcher];
790 pSwitcher->pfnRelocate(pVM,
791 pSwitcher,
792 (uint8_t *)pVM->vmm.s.pvHCCoreCodeR0 + off,
793 (uint8_t *)pVM->vmm.s.pvHCCoreCodeR3 + off,
794 pVM->vmm.s.pvGCCoreCode + off,
795 pVM->vmm.s.HCPhysCoreCode + off);
796 }
797 }
798
799 /*
800 * Recalc the GC address for the current switcher.
801 */
802 PVMMSWITCHERDEF pSwitcher = s_apSwitchers[pVM->vmm.s.enmSwitcher];
803 RTGCPTR GCPtr = pVM->vmm.s.pvGCCoreCode + pVM->vmm.s.aoffSwitchers[pVM->vmm.s.enmSwitcher];
804 pVM->vmm.s.pfnGCGuestToHost = GCPtr + pSwitcher->offGCGuestToHost;
805 pVM->vmm.s.pfnGCCallTrampoline = GCPtr + pSwitcher->offGCCallTrampoline;
806 pVM->pfnVMMGCGuestToHostAsm = GCPtr + pSwitcher->offGCGuestToHostAsm;
807 pVM->pfnVMMGCGuestToHostAsmHyperCtx = GCPtr + pSwitcher->offGCGuestToHostAsmHyperCtx;
808 pVM->pfnVMMGCGuestToHostAsmGuestCtx = GCPtr + pSwitcher->offGCGuestToHostAsmGuestCtx;
809
810 /*
811 * Get other GC entry points.
812 */
813 int rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "CPUMGCResumeGuest", &pVM->vmm.s.pfnCPUMGCResumeGuest);
814 AssertReleaseMsgRC(rc, ("CPUMGCResumeGuest not found! rc=%Vra\n", rc));
815
816 rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "CPUMGCResumeGuestV86", &pVM->vmm.s.pfnCPUMGCResumeGuestV86);
817 AssertReleaseMsgRC(rc, ("CPUMGCResumeGuestV86 not found! rc=%Vra\n", rc));
818
819 /*
820 * Update the logger.
821 */
822 VMMR3UpdateLoggers(pVM);
823}
824
825
826/**
827 * Updates the settings for the GC and R0 loggers.
828 *
829 * @returns VBox status code.
830 * @param pVM The VM handle.
831 */
832VMMR3DECL(int) VMMR3UpdateLoggers(PVM pVM)
833{
834 /*
835 * Simply clone the logger instance (for GC).
836 */
837 int rc = VINF_SUCCESS;
838 RTGCPTR GCPtrLoggerFlush = 0;
839
840 if (pVM->vmm.s.pLoggerHC
841#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
842 || pVM->vmm.s.pRelLoggerHC
843#endif
844 )
845 {
846 rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "vmmGCLoggerFlush", &GCPtrLoggerFlush);
847 AssertReleaseMsgRC(rc, ("vmmGCLoggerFlush not found! rc=%Vra\n", rc));
848 }
849
850 if (pVM->vmm.s.pLoggerHC)
851 {
852 RTGCPTR GCPtrLoggerWrapper = 0;
853 rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "vmmGCLoggerWrapper", &GCPtrLoggerWrapper);
854 AssertReleaseMsgRC(rc, ("vmmGCLoggerWrapper not found! rc=%Vra\n", rc));
855 pVM->vmm.s.pLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pLoggerHC);
856 rc = RTLogCloneGC(NULL /* default */, pVM->vmm.s.pLoggerHC, pVM->vmm.s.cbLoggerGC,
857 GCPtrLoggerWrapper, GCPtrLoggerFlush, RTLOGFLAGS_BUFFERED);
858 AssertReleaseMsgRC(rc, ("RTLogCloneGC failed! rc=%Vra\n", rc));
859 }
860
861#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
862 if (pVM->vmm.s.pRelLoggerHC)
863 {
864 RTGCPTR GCPtrLoggerWrapper = 0;
865 rc = PDMR3GetSymbolGC(pVM, VMMGC_MAIN_MODULE_NAME, "vmmGCRelLoggerWrapper", &GCPtrLoggerWrapper);
866 AssertReleaseMsgRC(rc, ("vmmGCRelLoggerWrapper not found! rc=%Vra\n", rc));
867 pVM->vmm.s.pRelLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pRelLoggerHC);
868 rc = RTLogCloneGC(RTLogRelDefaultInstance(), pVM->vmm.s.pRelLoggerHC, pVM->vmm.s.cbRelLoggerGC,
869 GCPtrLoggerWrapper, GCPtrLoggerFlush, RTLOGFLAGS_BUFFERED);
870 AssertReleaseMsgRC(rc, ("RTLogCloneGC failed! rc=%Vra\n", rc));
871 }
872#endif /* VBOX_WITH_GC_AND_R0_RELEASE_LOG */
873
874 /*
875 * For the ring-0 EMT logger, we use a per-thread logger
876 * instance in ring-0. Only initialize it once.
877 */
878 PVMMR0LOGGER pR0Logger = pVM->vmm.s.pR0Logger;
879 if (pR0Logger)
880 {
881 if (!pR0Logger->fCreated)
882 {
883 RTR0PTR pfnLoggerWrapper = NIL_RTR0PTR;
884 rc = PDMR3GetSymbolR0(pVM, VMMR0_MAIN_MODULE_NAME, "vmmR0LoggerWrapper", &pfnLoggerWrapper);
885 AssertReleaseMsgRCReturn(rc, ("VMMLoggerWrapper not found! rc=%Vra\n", rc), rc);
886
887 RTR0PTR pfnLoggerFlush = NIL_RTR0PTR;
888 rc = PDMR3GetSymbolR0(pVM, VMMR0_MAIN_MODULE_NAME, "vmmR0LoggerFlush", &pfnLoggerFlush);
889 AssertReleaseMsgRCReturn(rc, ("VMMLoggerFlush not found! rc=%Vra\n", rc), rc);
890
891 rc = RTLogCreateForR0(&pR0Logger->Logger, pR0Logger->cbLogger,
892 *(PFNRTLOGGER *)&pfnLoggerWrapper, *(PFNRTLOGFLUSH *)&pfnLoggerFlush,
893 RTLOGFLAGS_BUFFERED, RTLOGDEST_DUMMY);
894 AssertReleaseMsgRCReturn(rc, ("RTLogCloneGC failed! rc=%Vra\n", rc), rc);
895 pR0Logger->fCreated = true;
896 }
897
898 rc = RTLogCopyGroupsAndFlags(&pR0Logger->Logger, NULL /* default */, RTLOGFLAGS_BUFFERED, 0);
899 AssertRC(rc);
900 }
901
902 return rc;
903}
904
905
906/**
907 * Generic switch code relocator.
908 *
909 * @param pVM The VM handle.
910 * @param pSwitcher The switcher definition.
911 * @param pu8CodeR3 Pointer to the core code block for the switcher, ring-3 mapping.
912 * @param pu8CodeR0 Pointer to the core code block for the switcher, ring-0 mapping.
913 * @param GCPtrCode The guest context address corresponding to pu8Code.
914 * @param u32IDCode The identity mapped (ID) address corresponding to pu8Code.
915 * @param SelCS The hypervisor CS selector.
916 * @param SelDS The hypervisor DS selector.
917 * @param SelTSS The hypervisor TSS selector.
918 * @param GCPtrGDT The GC address of the hypervisor GDT.
919 * @param SelCS64 The 64-bit mode hypervisor CS selector.
920 */
921static void vmmR3SwitcherGenericRelocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode,
922 RTSEL SelCS, RTSEL SelDS, RTSEL SelTSS, RTGCPTR GCPtrGDT, RTSEL SelCS64)
923{
924 union
925 {
926 const uint8_t *pu8;
927 const uint16_t *pu16;
928 const uint32_t *pu32;
929 const uint64_t *pu64;
930 const void *pv;
931 uintptr_t u;
932 } u;
933 u.pv = pSwitcher->pvFixups;
934
935 /*
936 * Process fixups.
937 */
938 uint8_t u8;
939 while ((u8 = *u.pu8++) != FIX_THE_END)
940 {
941 /*
942 * Get the source (where to write the fixup).
943 */
944 uint32_t offSrc = *u.pu32++;
945 Assert(offSrc < pSwitcher->cbCode);
946 union
947 {
948 uint8_t *pu8;
949 uint16_t *pu16;
950 uint32_t *pu32;
951 uint64_t *pu64;
952 uintptr_t u;
953 } uSrc;
954 uSrc.pu8 = pu8CodeR3 + offSrc;
955
956 /* The fixup target and method depends on the type. */
957 switch (u8)
958 {
959 /*
960 * 32-bit relative, source in HC and target in GC.
961 */
962 case FIX_HC_2_GC_NEAR_REL:
963 {
964 Assert(offSrc - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offSrc - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
965 uint32_t offTrg = *u.pu32++;
966 Assert(offTrg - pSwitcher->offGCCode < pSwitcher->cbGCCode);
967 *uSrc.pu32 = (uint32_t)((GCPtrCode + offTrg) - (uSrc.u + 4));
968 break;
969 }
970
971 /*
972 * 32-bit relative, source in HC and target in ID.
973 */
974 case FIX_HC_2_ID_NEAR_REL:
975 {
976 Assert(offSrc - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offSrc - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
977 uint32_t offTrg = *u.pu32++;
978 Assert(offTrg - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offTrg - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
979 *uSrc.pu32 = (uint32_t)((u32IDCode + offTrg) - (uSrc.u + 4));
980 break;
981 }
982
983 /*
984 * 32-bit relative, source in GC and target in HC.
985 */
986 case FIX_GC_2_HC_NEAR_REL:
987 {
988 Assert(offSrc - pSwitcher->offGCCode < pSwitcher->cbGCCode);
989 uint32_t offTrg = *u.pu32++;
990 Assert(offTrg - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offTrg - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
991 *uSrc.pu32 = (uint32_t)(((uintptr_t)pu8CodeR0 + offTrg) - (GCPtrCode + offSrc + 4));
992 break;
993 }
994
995 /*
996 * 32-bit relative, source in GC and target in ID.
997 */
998 case FIX_GC_2_ID_NEAR_REL:
999 {
1000 Assert(offSrc - pSwitcher->offGCCode < pSwitcher->cbGCCode);
1001 uint32_t offTrg = *u.pu32++;
1002 Assert(offTrg - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offTrg - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1003 *uSrc.pu32 = (uint32_t)((u32IDCode + offTrg) - (GCPtrCode + offSrc + 4));
1004 break;
1005 }
1006
1007 /*
1008 * 32-bit relative, source in ID and target in HC.
1009 */
1010 case FIX_ID_2_HC_NEAR_REL:
1011 {
1012 Assert(offSrc - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offSrc - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1013 uint32_t offTrg = *u.pu32++;
1014 Assert(offTrg - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offTrg - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
1015 *uSrc.pu32 = (uint32_t)(((uintptr_t)pu8CodeR0 + offTrg) - (u32IDCode + offSrc + 4));
1016 break;
1017 }
1018
1019 /*
1020 * 32-bit relative, source in ID and target in HC.
1021 */
1022 case FIX_ID_2_GC_NEAR_REL:
1023 {
1024 Assert(offSrc - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offSrc - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1025 uint32_t offTrg = *u.pu32++;
1026 Assert(offTrg - pSwitcher->offGCCode < pSwitcher->cbGCCode);
1027 *uSrc.pu32 = (uint32_t)((GCPtrCode + offTrg) - (u32IDCode + offSrc + 4));
1028 break;
1029 }
1030
1031 /*
1032 * 16:32 far jump, target in GC.
1033 */
1034 case FIX_GC_FAR32:
1035 {
1036 uint32_t offTrg = *u.pu32++;
1037 Assert(offTrg - pSwitcher->offGCCode < pSwitcher->cbGCCode);
1038 *uSrc.pu32++ = (uint32_t)(GCPtrCode + offTrg);
1039 *uSrc.pu16++ = SelCS;
1040 break;
1041 }
1042
1043 /*
1044 * Make 32-bit GC pointer given CPUM offset.
1045 */
1046 case FIX_GC_CPUM_OFF:
1047 {
1048 uint32_t offCPUM = *u.pu32++;
1049 Assert(offCPUM < sizeof(pVM->cpum));
1050 *uSrc.pu32 = (uint32_t)(VM_GUEST_ADDR(pVM, &pVM->cpum) + offCPUM);
1051 break;
1052 }
1053
1054 /*
1055 * Make 32-bit GC pointer given VM offset.
1056 */
1057 case FIX_GC_VM_OFF:
1058 {
1059 uint32_t offVM = *u.pu32++;
1060 Assert(offVM < sizeof(VM));
1061 *uSrc.pu32 = (uint32_t)(VM_GUEST_ADDR(pVM, pVM) + offVM);
1062 break;
1063 }
1064
1065 /*
1066 * Make 32-bit HC pointer given CPUM offset.
1067 */
1068 case FIX_HC_CPUM_OFF:
1069 {
1070 uint32_t offCPUM = *u.pu32++;
1071 Assert(offCPUM < sizeof(pVM->cpum));
1072 *uSrc.pu32 = (uint32_t)pVM->pVMR0 + RT_OFFSETOF(VM, cpum) + offCPUM;
1073 break;
1074 }
1075
1076 /*
1077 * Make 32-bit R0 pointer given VM offset.
1078 */
1079 case FIX_HC_VM_OFF:
1080 {
1081 uint32_t offVM = *u.pu32++;
1082 Assert(offVM < sizeof(VM));
1083 *uSrc.pu32 = (uint32_t)pVM->pVMR0 + offVM;
1084 break;
1085 }
1086
1087 /*
1088 * Store the 32-Bit CR3 (32-bit) for the intermediate memory context.
1089 */
1090 case FIX_INTER_32BIT_CR3:
1091 {
1092
1093 *uSrc.pu32 = PGMGetInter32BitCR3(pVM);
1094 break;
1095 }
1096
1097 /*
1098 * Store the PAE CR3 (32-bit) for the intermediate memory context.
1099 */
1100 case FIX_INTER_PAE_CR3:
1101 {
1102
1103 *uSrc.pu32 = PGMGetInterPaeCR3(pVM);
1104 break;
1105 }
1106
1107 /*
1108 * Store the AMD64 CR3 (32-bit) for the intermediate memory context.
1109 */
1110 case FIX_INTER_AMD64_CR3:
1111 {
1112
1113 *uSrc.pu32 = PGMGetInterAmd64CR3(pVM);
1114 break;
1115 }
1116
1117 /*
1118 * Store the 32-Bit CR3 (32-bit) for the hypervisor (shadow) memory context.
1119 */
1120 case FIX_HYPER_32BIT_CR3:
1121 {
1122
1123 *uSrc.pu32 = PGMGetHyper32BitCR3(pVM);
1124 break;
1125 }
1126
1127 /*
1128 * Store the PAE CR3 (32-bit) for the hypervisor (shadow) memory context.
1129 */
1130 case FIX_HYPER_PAE_CR3:
1131 {
1132
1133 *uSrc.pu32 = PGMGetHyperPaeCR3(pVM);
1134 break;
1135 }
1136
1137 /*
1138 * Store the AMD64 CR3 (32-bit) for the hypervisor (shadow) memory context.
1139 */
1140 case FIX_HYPER_AMD64_CR3:
1141 {
1142
1143 *uSrc.pu32 = PGMGetHyperAmd64CR3(pVM);
1144 break;
1145 }
1146
1147 /*
1148 * Store Hypervisor CS (16-bit).
1149 */
1150 case FIX_HYPER_CS:
1151 {
1152 *uSrc.pu16 = SelCS;
1153 break;
1154 }
1155
1156 /*
1157 * Store Hypervisor DS (16-bit).
1158 */
1159 case FIX_HYPER_DS:
1160 {
1161 *uSrc.pu16 = SelDS;
1162 break;
1163 }
1164
1165 /*
1166 * Store Hypervisor TSS (16-bit).
1167 */
1168 case FIX_HYPER_TSS:
1169 {
1170 *uSrc.pu16 = SelTSS;
1171 break;
1172 }
1173
1174 /*
1175 * Store the 32-bit GC address of the 2nd dword of the TSS descriptor (in the GDT).
1176 */
1177 case FIX_GC_TSS_GDTE_DW2:
1178 {
1179 RTGCPTR GCPtr = GCPtrGDT + (SelTSS & ~7) + 4;
1180 *uSrc.pu32 = (uint32_t)GCPtr;
1181 break;
1182 }
1183
1184
1185 ///@todo case FIX_CR4_MASK:
1186 ///@todo case FIX_CR4_OSFSXR:
1187
1188 /*
1189 * Insert relative jump to specified target it FXSAVE/FXRSTOR isn't supported by the cpu.
1190 */
1191 case FIX_NO_FXSAVE_JMP:
1192 {
1193 uint32_t offTrg = *u.pu32++;
1194 Assert(offTrg < pSwitcher->cbCode);
1195 if (!CPUMSupportsFXSR(pVM))
1196 {
1197 *uSrc.pu8++ = 0xe9; /* jmp rel32 */
1198 *uSrc.pu32++ = offTrg - (offSrc + 5);
1199 }
1200 else
1201 {
1202 *uSrc.pu8++ = *((uint8_t *)pSwitcher->pvCode + offSrc);
1203 *uSrc.pu32++ = *(uint32_t *)((uint8_t *)pSwitcher->pvCode + offSrc + 1);
1204 }
1205 break;
1206 }
1207
1208 /*
1209 * Insert relative jump to specified target it SYSENTER isn't used by the host.
1210 */
1211 case FIX_NO_SYSENTER_JMP:
1212 {
1213 uint32_t offTrg = *u.pu32++;
1214 Assert(offTrg < pSwitcher->cbCode);
1215 if (!CPUMIsHostUsingSysEnter(pVM))
1216 {
1217 *uSrc.pu8++ = 0xe9; /* jmp rel32 */
1218 *uSrc.pu32++ = offTrg - (offSrc + 5);
1219 }
1220 else
1221 {
1222 *uSrc.pu8++ = *((uint8_t *)pSwitcher->pvCode + offSrc);
1223 *uSrc.pu32++ = *(uint32_t *)((uint8_t *)pSwitcher->pvCode + offSrc + 1);
1224 }
1225 break;
1226 }
1227
1228 /*
1229 * Insert relative jump to specified target it SYSENTER isn't used by the host.
1230 */
1231 case FIX_NO_SYSCALL_JMP:
1232 {
1233 uint32_t offTrg = *u.pu32++;
1234 Assert(offTrg < pSwitcher->cbCode);
1235 if (!CPUMIsHostUsingSysEnter(pVM))
1236 {
1237 *uSrc.pu8++ = 0xe9; /* jmp rel32 */
1238 *uSrc.pu32++ = offTrg - (offSrc + 5);
1239 }
1240 else
1241 {
1242 *uSrc.pu8++ = *((uint8_t *)pSwitcher->pvCode + offSrc);
1243 *uSrc.pu32++ = *(uint32_t *)((uint8_t *)pSwitcher->pvCode + offSrc + 1);
1244 }
1245 break;
1246 }
1247
1248 /*
1249 * 32-bit HC pointer fixup to (HC) target within the code (32-bit offset).
1250 */
1251 case FIX_HC_32BIT:
1252 {
1253 uint32_t offTrg = *u.pu32++;
1254 Assert(offSrc < pSwitcher->cbCode);
1255 Assert(offTrg - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offTrg - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
1256 *uSrc.pu32 = (uintptr_t)pu8CodeR0 + offTrg;
1257 break;
1258 }
1259
1260#if defined(RT_ARCH_AMD64) || defined(VBOX_WITH_HYBIRD_32BIT_KERNEL)
1261 /*
1262 * 64-bit HC pointer fixup to (HC) target within the code (32-bit offset).
1263 */
1264 case FIX_HC_64BIT:
1265 {
1266 uint32_t offTrg = *u.pu32++;
1267 Assert(offSrc < pSwitcher->cbCode);
1268 Assert(offTrg - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0 || offTrg - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1);
1269 *uSrc.pu64 = (uintptr_t)pu8CodeR0 + offTrg;
1270 break;
1271 }
1272
1273 /*
1274 * 64-bit HC Code Selector (no argument).
1275 */
1276 case FIX_HC_64BIT_CS:
1277 {
1278 Assert(offSrc < pSwitcher->cbCode);
1279#if defined(RT_OS_DARWIN) && defined(VBOX_WITH_HYBIRD_32BIT_KERNEL)
1280 *uSrc.pu16 = 0x80; /* KERNEL64_CS from i386/seg.h */
1281#else
1282 AssertFatalMsgFailed(("FIX_HC_64BIT_CS not implemented for this host\n"));
1283#endif
1284 break;
1285 }
1286
1287 /*
1288 * 64-bit HC pointer to the CPUM instance data (no argument).
1289 */
1290 case FIX_HC_64BIT_CPUM:
1291 {
1292 Assert(offSrc < pSwitcher->cbCode);
1293 *uSrc.pu64 = pVM->pVMR0 + RT_OFFSETOF(VM, cpum);
1294 break;
1295 }
1296#endif
1297
1298 /*
1299 * 32-bit ID pointer to (ID) target within the code (32-bit offset).
1300 */
1301 case FIX_ID_32BIT:
1302 {
1303 uint32_t offTrg = *u.pu32++;
1304 Assert(offSrc < pSwitcher->cbCode);
1305 Assert(offTrg - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offTrg - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1306 *uSrc.pu32 = u32IDCode + offTrg;
1307 break;
1308 }
1309
1310 /*
1311 * 64-bit ID pointer to (ID) target within the code (32-bit offset).
1312 */
1313 case FIX_ID_64BIT:
1314 {
1315 uint32_t offTrg = *u.pu32++;
1316 Assert(offSrc < pSwitcher->cbCode);
1317 Assert(offTrg - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offTrg - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1318 *uSrc.pu64 = u32IDCode + offTrg;
1319 break;
1320 }
1321
1322 /*
1323 * Far 16:32 ID pointer to 64-bit mode (ID) target within the code (32-bit offset).
1324 */
1325 case FIX_ID_FAR32_TO_64BIT_MODE:
1326 {
1327 uint32_t offTrg = *u.pu32++;
1328 Assert(offSrc < pSwitcher->cbCode);
1329 Assert(offTrg - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0 || offTrg - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1);
1330 *uSrc.pu32++ = u32IDCode + offTrg;
1331 *uSrc.pu16 = SelCS64;
1332 AssertRelease(SelCS64);
1333 break;
1334 }
1335
1336#ifdef VBOX_WITH_NMI
1337 /*
1338 * 32-bit address to the APIC base.
1339 */
1340 case FIX_GC_APIC_BASE_32BIT:
1341 {
1342 *uSrc.pu32 = pVM->vmm.s.GCPtrApicBase;
1343 break;
1344 }
1345#endif
1346
1347 default:
1348 AssertReleaseMsgFailed(("Unknown fixup %d in switcher %s\n", u8, pSwitcher->pszDesc));
1349 break;
1350 }
1351 }
1352
1353#ifdef LOG_ENABLED
1354 /*
1355 * If Log2 is enabled disassemble the switcher code.
1356 *
1357 * The switcher code have 1-2 HC parts, 1 GC part and 0-2 ID parts.
1358 */
1359 if (LogIs2Enabled())
1360 {
1361 RTLogPrintf("*** Disassembly of switcher %d '%s' %#x bytes ***\n"
1362 " pu8CodeR0 = %p\n"
1363 " pu8CodeR3 = %p\n"
1364 " GCPtrCode = %VGv\n"
1365 " u32IDCode = %08x\n"
1366 " pVMGC = %VGv\n"
1367 " pCPUMGC = %VGv\n"
1368 " pVMHC = %p\n"
1369 " pCPUMHC = %p\n"
1370 " GCPtrGDT = %VGv\n"
1371 " InterCR3s = %08x, %08x, %08x (32-Bit, PAE, AMD64)\n"
1372 " HyperCR3s = %08x, %08x, %08x (32-Bit, PAE, AMD64)\n"
1373 " SelCS = %04x\n"
1374 " SelDS = %04x\n"
1375 " SelCS64 = %04x\n"
1376 " SelTSS = %04x\n",
1377 pSwitcher->enmType, pSwitcher->pszDesc, pSwitcher->cbCode,
1378 pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode, VM_GUEST_ADDR(pVM, pVM),
1379 VM_GUEST_ADDR(pVM, &pVM->cpum), pVM, &pVM->cpum,
1380 GCPtrGDT,
1381 PGMGetHyper32BitCR3(pVM), PGMGetHyperPaeCR3(pVM), PGMGetHyperAmd64CR3(pVM),
1382 PGMGetInter32BitCR3(pVM), PGMGetInterPaeCR3(pVM), PGMGetInterAmd64CR3(pVM),
1383 SelCS, SelDS, SelCS64, SelTSS);
1384
1385 uint32_t offCode = 0;
1386 while (offCode < pSwitcher->cbCode)
1387 {
1388 /*
1389 * Figure out where this is.
1390 */
1391 const char *pszDesc = NULL;
1392 RTUINTPTR uBase;
1393 uint32_t cbCode;
1394 if (offCode - pSwitcher->offHCCode0 < pSwitcher->cbHCCode0)
1395 {
1396 pszDesc = "HCCode0";
1397 uBase = (RTUINTPTR)pu8CodeR0;
1398 offCode = pSwitcher->offHCCode0;
1399 cbCode = pSwitcher->cbHCCode0;
1400 }
1401 else if (offCode - pSwitcher->offHCCode1 < pSwitcher->cbHCCode1)
1402 {
1403 pszDesc = "HCCode1";
1404 uBase = (RTUINTPTR)pu8CodeR0;
1405 offCode = pSwitcher->offHCCode1;
1406 cbCode = pSwitcher->cbHCCode1;
1407 }
1408 else if (offCode - pSwitcher->offGCCode < pSwitcher->cbGCCode)
1409 {
1410 pszDesc = "GCCode";
1411 uBase = GCPtrCode;
1412 offCode = pSwitcher->offGCCode;
1413 cbCode = pSwitcher->cbGCCode;
1414 }
1415 else if (offCode - pSwitcher->offIDCode0 < pSwitcher->cbIDCode0)
1416 {
1417 pszDesc = "IDCode0";
1418 uBase = u32IDCode;
1419 offCode = pSwitcher->offIDCode0;
1420 cbCode = pSwitcher->cbIDCode0;
1421 }
1422 else if (offCode - pSwitcher->offIDCode1 < pSwitcher->cbIDCode1)
1423 {
1424 pszDesc = "IDCode1";
1425 uBase = u32IDCode;
1426 offCode = pSwitcher->offIDCode1;
1427 cbCode = pSwitcher->cbIDCode1;
1428 }
1429 else
1430 {
1431 RTLogPrintf(" %04x: %02x '%c' (nowhere)\n",
1432 offCode, pu8CodeR3[offCode], isprint(pu8CodeR3[offCode]) ? pu8CodeR3[offCode] : ' ');
1433 offCode++;
1434 continue;
1435 }
1436
1437 /*
1438 * Disassemble it.
1439 */
1440 RTLogPrintf(" %s: offCode=%#x cbCode=%#x\n", pszDesc, offCode, cbCode);
1441 DISCPUSTATE Cpu = {0};
1442 Cpu.mode = CPUMODE_32BIT;
1443 while (cbCode > 0)
1444 {
1445 /* try label it */
1446 if (pSwitcher->offR0HostToGuest == offCode)
1447 RTLogPrintf(" *R0HostToGuest:\n");
1448 if (pSwitcher->offGCGuestToHost == offCode)
1449 RTLogPrintf(" *GCGuestToHost:\n");
1450 if (pSwitcher->offGCCallTrampoline == offCode)
1451 RTLogPrintf(" *GCCallTrampoline:\n");
1452 if (pSwitcher->offGCGuestToHostAsm == offCode)
1453 RTLogPrintf(" *GCGuestToHostAsm:\n");
1454 if (pSwitcher->offGCGuestToHostAsmHyperCtx == offCode)
1455 RTLogPrintf(" *GCGuestToHostAsmHyperCtx:\n");
1456 if (pSwitcher->offGCGuestToHostAsmGuestCtx == offCode)
1457 RTLogPrintf(" *GCGuestToHostAsmGuestCtx:\n");
1458
1459 /* disas */
1460 uint32_t cbInstr = 0;
1461 char szDisas[256];
1462 if (DISInstr(&Cpu, (RTUINTPTR)pu8CodeR3 + offCode, uBase - (RTUINTPTR)pu8CodeR3, &cbInstr, szDisas))
1463 RTLogPrintf(" %04x: %s", offCode, szDisas); //for whatever reason szDisas includes '\n'.
1464 else
1465 {
1466 RTLogPrintf(" %04x: %02x '%c'\n",
1467 offCode, pu8CodeR3[offCode], isprint(pu8CodeR3[offCode]) ? pu8CodeR3[offCode] : ' ');
1468 cbInstr = 1;
1469 }
1470 offCode += cbInstr;
1471 cbCode -= RT_MIN(cbInstr, cbCode);
1472 }
1473 }
1474 }
1475#endif
1476}
1477
1478
1479/**
1480 * Relocator for the 32-Bit to 32-Bit world switcher.
1481 */
1482DECLCALLBACK(void) vmmR3Switcher32BitTo32Bit_Relocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode)
1483{
1484 vmmR3SwitcherGenericRelocate(pVM, pSwitcher, pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode,
1485 SELMGetHyperCS(pVM), SELMGetHyperDS(pVM), SELMGetHyperTSS(pVM), SELMGetHyperGDT(pVM), 0);
1486}
1487
1488
1489/**
1490 * Relocator for the 32-Bit to PAE world switcher.
1491 */
1492DECLCALLBACK(void) vmmR3Switcher32BitToPAE_Relocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode)
1493{
1494 vmmR3SwitcherGenericRelocate(pVM, pSwitcher, pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode,
1495 SELMGetHyperCS(pVM), SELMGetHyperDS(pVM), SELMGetHyperTSS(pVM), SELMGetHyperGDT(pVM), 0);
1496}
1497
1498
1499/**
1500 * Relocator for the PAE to 32-Bit world switcher.
1501 */
1502DECLCALLBACK(void) vmmR3SwitcherPAETo32Bit_Relocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode)
1503{
1504 vmmR3SwitcherGenericRelocate(pVM, pSwitcher, pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode,
1505 SELMGetHyperCS(pVM), SELMGetHyperDS(pVM), SELMGetHyperTSS(pVM), SELMGetHyperGDT(pVM), 0);
1506}
1507
1508
1509/**
1510 * Relocator for the PAE to PAE world switcher.
1511 */
1512DECLCALLBACK(void) vmmR3SwitcherPAEToPAE_Relocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode)
1513{
1514 vmmR3SwitcherGenericRelocate(pVM, pSwitcher, pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode,
1515 SELMGetHyperCS(pVM), SELMGetHyperDS(pVM), SELMGetHyperTSS(pVM), SELMGetHyperGDT(pVM), 0);
1516}
1517
1518
1519/**
1520 * Relocator for the AMD64 to PAE world switcher.
1521 */
1522DECLCALLBACK(void) vmmR3SwitcherAMD64ToPAE_Relocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pu8CodeR0, uint8_t *pu8CodeR3, RTGCPTR GCPtrCode, uint32_t u32IDCode)
1523{
1524 vmmR3SwitcherGenericRelocate(pVM, pSwitcher, pu8CodeR0, pu8CodeR3, GCPtrCode, u32IDCode,
1525 SELMGetHyperCS(pVM), SELMGetHyperDS(pVM), SELMGetHyperTSS(pVM), SELMGetHyperGDT(pVM), SELMGetHyperCS64(pVM));
1526}
1527
1528
1529/**
1530 * Gets the pointer to g_szRTAssertMsg1 in GC.
1531 * @returns Pointer to VMMGC::g_szRTAssertMsg1.
1532 * Returns NULL if not present.
1533 * @param pVM The VM handle.
1534 */
1535VMMR3DECL(const char *) VMMR3GetGCAssertMsg1(PVM pVM)
1536{
1537 RTGCPTR GCPtr;
1538 int rc = PDMR3GetSymbolGC(pVM, NULL, "g_szRTAssertMsg1", &GCPtr);
1539 if (VBOX_SUCCESS(rc))
1540 return (const char *)MMHyperGC2HC(pVM, GCPtr);
1541 return NULL;
1542}
1543
1544
1545/**
1546 * Gets the pointer to g_szRTAssertMsg2 in GC.
1547 * @returns Pointer to VMMGC::g_szRTAssertMsg2.
1548 * Returns NULL if not present.
1549 * @param pVM The VM handle.
1550 */
1551VMMR3DECL(const char *) VMMR3GetGCAssertMsg2(PVM pVM)
1552{
1553 RTGCPTR GCPtr;
1554 int rc = PDMR3GetSymbolGC(pVM, NULL, "g_szRTAssertMsg2", &GCPtr);
1555 if (VBOX_SUCCESS(rc))
1556 return (const char *)MMHyperGC2HC(pVM, GCPtr);
1557 return NULL;
1558}
1559
1560
1561/**
1562 * Execute state save operation.
1563 *
1564 * @returns VBox status code.
1565 * @param pVM VM Handle.
1566 * @param pSSM SSM operation handle.
1567 */
1568static DECLCALLBACK(int) vmmR3Save(PVM pVM, PSSMHANDLE pSSM)
1569{
1570 LogFlow(("vmmR3Save:\n"));
1571
1572 /*
1573 * The hypervisor stack.
1574 */
1575 SSMR3PutGCPtr(pSSM, pVM->vmm.s.pbGCStackBottom);
1576 RTGCPTR GCPtrESP = CPUMGetHyperESP(pVM);
1577 Assert(pVM->vmm.s.pbGCStackBottom - GCPtrESP <= VMM_STACK_SIZE);
1578 SSMR3PutGCPtr(pSSM, GCPtrESP);
1579 SSMR3PutMem(pSSM, pVM->vmm.s.pbHCStack, VMM_STACK_SIZE);
1580 return SSMR3PutU32(pSSM, ~0); /* terminator */
1581}
1582
1583
1584/**
1585 * Execute state load operation.
1586 *
1587 * @returns VBox status code.
1588 * @param pVM VM Handle.
1589 * @param pSSM SSM operation handle.
1590 * @param u32Version Data layout version.
1591 */
1592static DECLCALLBACK(int) vmmR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version)
1593{
1594 LogFlow(("vmmR3Load:\n"));
1595
1596 /*
1597 * Validate version.
1598 */
1599 if (u32Version != VMM_SAVED_STATE_VERSION)
1600 {
1601 Log(("vmmR3Load: Invalid version u32Version=%d!\n", u32Version));
1602 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1603 }
1604
1605 /*
1606 * Check that the stack is in the same place, or that it's fearly empty.
1607 */
1608 RTGCPTR GCPtrStackBottom;
1609 SSMR3GetGCPtr(pSSM, &GCPtrStackBottom);
1610 RTGCPTR GCPtrESP;
1611 int rc = SSMR3GetGCPtr(pSSM, &GCPtrESP);
1612 if (VBOX_FAILURE(rc))
1613 return rc;
1614 if ( GCPtrStackBottom == pVM->vmm.s.pbGCStackBottom
1615 || (GCPtrStackBottom - GCPtrESP < 32)) /** @todo This will break if we start preemting the hypervisor. */
1616 {
1617 /*
1618 * We *must* set the ESP because the CPUM load + PGM load relocations will render
1619 * the ESP in CPUM fatally invalid.
1620 */
1621 CPUMSetHyperESP(pVM, GCPtrESP);
1622
1623 /* restore the stack. */
1624 SSMR3GetMem(pSSM, pVM->vmm.s.pbHCStack, VMM_STACK_SIZE);
1625
1626 /* terminator */
1627 uint32_t u32;
1628 rc = SSMR3GetU32(pSSM, &u32);
1629 if (VBOX_FAILURE(rc))
1630 return rc;
1631 if (u32 != ~0U)
1632 {
1633 AssertMsgFailed(("u32=%#x\n", u32));
1634 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1635 }
1636 return VINF_SUCCESS;
1637 }
1638
1639 LogRel(("The stack is not in the same place and it's not empty! GCPtrStackBottom=%VGv pbGCStackBottom=%VGv ESP=%VGv\n",
1640 GCPtrStackBottom, pVM->vmm.s.pbGCStackBottom, GCPtrESP));
1641 AssertFailed();
1642 return VERR_SSM_LOAD_CONFIG_MISMATCH;
1643}
1644
1645
1646/**
1647 * Selects the switcher to be used for switching to GC.
1648 *
1649 * @returns VBox status code.
1650 * @param pVM VM handle.
1651 * @param enmSwitcher The new switcher.
1652 * @remark This function may be called before the VMM is initialized.
1653 */
1654VMMR3DECL(int) VMMR3SelectSwitcher(PVM pVM, VMMSWITCHER enmSwitcher)
1655{
1656 /*
1657 * Validate input.
1658 */
1659 if ( enmSwitcher < VMMSWITCHER_INVALID
1660 || enmSwitcher >= VMMSWITCHER_MAX)
1661 {
1662 AssertMsgFailed(("Invalid input enmSwitcher=%d\n", enmSwitcher));
1663 return VERR_INVALID_PARAMETER;
1664 }
1665
1666 /*
1667 * Select the new switcher.
1668 */
1669 PVMMSWITCHERDEF pSwitcher = s_apSwitchers[enmSwitcher];
1670 if (pSwitcher)
1671 {
1672 Log(("VMMR3SelectSwitcher: enmSwitcher %d -> %d %s\n", pVM->vmm.s.enmSwitcher, enmSwitcher, pSwitcher->pszDesc));
1673 pVM->vmm.s.enmSwitcher = enmSwitcher;
1674
1675 RTR0PTR pbCodeR0 = (RTR0PTR)pVM->vmm.s.pvHCCoreCodeR0 + pVM->vmm.s.aoffSwitchers[enmSwitcher]; /** @todo fix the pvHCCoreCodeR0 type */
1676 pVM->vmm.s.pfnR0HostToGuest = pbCodeR0 + pSwitcher->offR0HostToGuest;
1677
1678 RTGCPTR GCPtr = pVM->vmm.s.pvGCCoreCode + pVM->vmm.s.aoffSwitchers[enmSwitcher];
1679 pVM->vmm.s.pfnGCGuestToHost = GCPtr + pSwitcher->offGCGuestToHost;
1680 pVM->vmm.s.pfnGCCallTrampoline = GCPtr + pSwitcher->offGCCallTrampoline;
1681 pVM->pfnVMMGCGuestToHostAsm = GCPtr + pSwitcher->offGCGuestToHostAsm;
1682 pVM->pfnVMMGCGuestToHostAsmHyperCtx = GCPtr + pSwitcher->offGCGuestToHostAsmHyperCtx;
1683 pVM->pfnVMMGCGuestToHostAsmGuestCtx = GCPtr + pSwitcher->offGCGuestToHostAsmGuestCtx;
1684 return VINF_SUCCESS;
1685 }
1686 return VERR_NOT_IMPLEMENTED;
1687}
1688
1689/**
1690 * Disable the switcher logic permanently.
1691 *
1692 * @returns VBox status code.
1693 * @param pVM VM handle.
1694 */
1695VMMR3DECL(int) VMMR3DisableSwitcher(PVM pVM)
1696{
1697/** @todo r=bird: I would suggest that we create a dummy switcher which just does something like:
1698 * @code
1699 * mov eax, VERR_INTERNAL_ERROR
1700 * ret
1701 * @endcode
1702 * And then check for fSwitcherDisabled in VMMR3SelectSwitcher() in order to prevent it from being removed.
1703 */
1704 pVM->vmm.s.fSwitcherDisabled = true;
1705 return VINF_SUCCESS;
1706}
1707
1708
1709/**
1710 * Resolve a builtin GC symbol.
1711 * Called by PDM when loading or relocating GC modules.
1712 *
1713 * @returns VBox status
1714 * @param pVM VM Handle.
1715 * @param pszSymbol Symbol to resolv
1716 * @param pGCPtrValue Where to store the symbol value.
1717 * @remark This has to work before VMMR3Relocate() is called.
1718 */
1719VMMR3DECL(int) VMMR3GetImportGC(PVM pVM, const char *pszSymbol, PRTGCPTR pGCPtrValue)
1720{
1721 if (!strcmp(pszSymbol, "g_Logger"))
1722 {
1723 if (pVM->vmm.s.pLoggerHC)
1724 pVM->vmm.s.pLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pLoggerHC);
1725 *pGCPtrValue = pVM->vmm.s.pLoggerGC;
1726 }
1727 else if (!strcmp(pszSymbol, "g_RelLogger"))
1728 {
1729#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
1730 if (pVM->vmm.s.pRelLoggerHC)
1731 pVM->vmm.s.pRelLoggerGC = MMHyperHC2GC(pVM, pVM->vmm.s.pRelLoggerHC);
1732 *pGCPtrValue = pVM->vmm.s.pRelLoggerGC;
1733#else
1734 *pGCPtrValue = NIL_RTGCPTR;
1735#endif
1736 }
1737 else
1738 return VERR_SYMBOL_NOT_FOUND;
1739 return VINF_SUCCESS;
1740}
1741
1742
1743/**
1744 * Suspends the the CPU yielder.
1745 *
1746 * @param pVM The VM handle.
1747 */
1748VMMR3DECL(void) VMMR3YieldSuspend(PVM pVM)
1749{
1750 if (!pVM->vmm.s.cYieldResumeMillies)
1751 {
1752 uint64_t u64Now = TMTimerGet(pVM->vmm.s.pYieldTimer);
1753 uint64_t u64Expire = TMTimerGetExpire(pVM->vmm.s.pYieldTimer);
1754 if (u64Now >= u64Expire || u64Expire == ~(uint64_t)0)
1755 pVM->vmm.s.cYieldResumeMillies = pVM->vmm.s.cYieldEveryMillies;
1756 else
1757 pVM->vmm.s.cYieldResumeMillies = TMTimerToMilli(pVM->vmm.s.pYieldTimer, u64Expire - u64Now);
1758 TMTimerStop(pVM->vmm.s.pYieldTimer);
1759 }
1760 pVM->vmm.s.u64LastYield = RTTimeNanoTS();
1761}
1762
1763
1764/**
1765 * Stops the the CPU yielder.
1766 *
1767 * @param pVM The VM handle.
1768 */
1769VMMR3DECL(void) VMMR3YieldStop(PVM pVM)
1770{
1771 if (!pVM->vmm.s.cYieldResumeMillies)
1772 TMTimerStop(pVM->vmm.s.pYieldTimer);
1773 pVM->vmm.s.cYieldResumeMillies = pVM->vmm.s.cYieldEveryMillies;
1774 pVM->vmm.s.u64LastYield = RTTimeNanoTS();
1775}
1776
1777
1778/**
1779 * Resumes the CPU yielder when it has been a suspended or stopped.
1780 *
1781 * @param pVM The VM handle.
1782 */
1783VMMR3DECL(void) VMMR3YieldResume(PVM pVM)
1784{
1785 if (pVM->vmm.s.cYieldResumeMillies)
1786 {
1787 TMTimerSetMillies(pVM->vmm.s.pYieldTimer, pVM->vmm.s.cYieldResumeMillies);
1788 pVM->vmm.s.cYieldResumeMillies = 0;
1789 }
1790}
1791
1792
1793/**
1794 * Internal timer callback function.
1795 *
1796 * @param pVM The VM.
1797 * @param pTimer The timer handle.
1798 * @param pvUser User argument specified upon timer creation.
1799 */
1800static DECLCALLBACK(void) vmmR3YieldEMT(PVM pVM, PTMTIMER pTimer, void *pvUser)
1801{
1802 /*
1803 * This really needs some careful tuning. While we shouldn't be too gready since
1804 * that'll cause the rest of the system to stop up, we shouldn't be too nice either
1805 * because that'll cause us to stop up.
1806 *
1807 * The current logic is to use the default interval when there is no lag worth
1808 * mentioning, but when we start accumulating lag we don't bother yielding at all.
1809 *
1810 * (This depends on the TMCLOCK_VIRTUAL_SYNC to be scheduled before TMCLOCK_REAL
1811 * so the lag is up to date.)
1812 */
1813 const uint64_t u64Lag = TMVirtualSyncGetLag(pVM);
1814 if ( u64Lag < 50000000 /* 50ms */
1815 || ( u64Lag < 1000000000 /* 1s */
1816 && RTTimeNanoTS() - pVM->vmm.s.u64LastYield < 500000000 /* 500 ms */)
1817 )
1818 {
1819 uint64_t u64Elapsed = RTTimeNanoTS();
1820 pVM->vmm.s.u64LastYield = u64Elapsed;
1821
1822 RTThreadYield();
1823
1824#ifdef LOG_ENABLED
1825 u64Elapsed = RTTimeNanoTS() - u64Elapsed;
1826 Log(("vmmR3YieldEMT: %RI64 ns\n", u64Elapsed));
1827#endif
1828 }
1829 TMTimerSetMillies(pTimer, pVM->vmm.s.cYieldEveryMillies);
1830}
1831
1832
1833/**
1834 * Acquire global VM lock.
1835 *
1836 * @returns VBox status code
1837 * @param pVM The VM to operate on.
1838 */
1839VMMR3DECL(int) VMMR3Lock(PVM pVM)
1840{
1841 return RTCritSectEnter(&pVM->vmm.s.CritSectVMLock);
1842}
1843
1844
1845/**
1846 * Release global VM lock.
1847 *
1848 * @returns VBox status code
1849 * @param pVM The VM to operate on.
1850 */
1851VMMR3DECL(int) VMMR3Unlock(PVM pVM)
1852{
1853 return RTCritSectLeave(&pVM->vmm.s.CritSectVMLock);
1854}
1855
1856
1857/**
1858 * Return global VM lock owner.
1859 *
1860 * @returns Thread id of owner.
1861 * @returns NIL_RTTHREAD if no owner.
1862 * @param pVM The VM to operate on.
1863 */
1864VMMR3DECL(RTNATIVETHREAD) VMMR3LockGetOwner(PVM pVM)
1865{
1866 return RTCritSectGetOwner(&pVM->vmm.s.CritSectVMLock);
1867}
1868
1869
1870/**
1871 * Checks if the current thread is the owner of the global VM lock.
1872 *
1873 * @returns true if owner.
1874 * @returns false if not owner.
1875 * @param pVM The VM to operate on.
1876 */
1877VMMR3DECL(bool) VMMR3LockIsOwner(PVM pVM)
1878{
1879 return RTCritSectIsOwner(&pVM->vmm.s.CritSectVMLock);
1880}
1881
1882
1883/**
1884 * Executes guest code.
1885 *
1886 * @param pVM VM handle.
1887 */
1888VMMR3DECL(int) VMMR3RawRunGC(PVM pVM)
1889{
1890 Log2(("VMMR3RawRunGC: (cs:eip=%04x:%08x)\n", CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
1891
1892 /*
1893 * Set the EIP and ESP.
1894 */
1895 CPUMSetHyperEIP(pVM, CPUMGetGuestEFlags(pVM) & X86_EFL_VM
1896 ? pVM->vmm.s.pfnCPUMGCResumeGuestV86
1897 : pVM->vmm.s.pfnCPUMGCResumeGuest);
1898 CPUMSetHyperESP(pVM, pVM->vmm.s.pbGCStackBottom);
1899
1900 /*
1901 * We hide log flushes (outer) and hypervisor interrupts (inner).
1902 */
1903 for (;;)
1904 {
1905 int rc;
1906 do
1907 {
1908#ifdef NO_SUPCALLR0VMM
1909 rc = VERR_GENERAL_FAILURE;
1910#else
1911 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_RAW_RUN, NULL);
1912#endif
1913 } while (rc == VINF_EM_RAW_INTERRUPT_HYPER);
1914
1915 /*
1916 * Flush the logs.
1917 */
1918#ifdef LOG_ENABLED
1919 PRTLOGGERGC pLogger = pVM->vmm.s.pLoggerHC;
1920 if ( pLogger
1921 && pLogger->offScratch > 0)
1922 RTLogFlushGC(NULL, pLogger);
1923#endif
1924#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
1925 PRTLOGGERGC pRelLogger = pVM->vmm.s.pRelLoggerHC;
1926 if (RT_UNLIKELY(pRelLogger && pRelLogger->offScratch > 0))
1927 RTLogFlushGC(RTLogRelDefaultInstance(), pRelLogger);
1928#endif
1929 if (rc != VINF_VMM_CALL_HOST)
1930 {
1931 Log2(("VMMR3RawRunGC: returns %Vrc (cs:eip=%04x:%08x)\n", rc, CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
1932 return rc;
1933 }
1934 rc = vmmR3ServiceCallHostRequest(pVM);
1935 if (VBOX_FAILURE(rc))
1936 return rc;
1937 /* Resume GC */
1938 }
1939}
1940
1941
1942/**
1943 * Executes guest code (Intel VMX and AMD SVM).
1944 *
1945 * @param pVM VM handle.
1946 */
1947VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM)
1948{
1949 Log2(("VMMR3HwAccRunGC: (cs:eip=%04x:%08x)\n", CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
1950
1951 for (;;)
1952 {
1953 int rc;
1954 do
1955 {
1956#ifdef NO_SUPCALLR0VMM
1957 rc = VERR_GENERAL_FAILURE;
1958#else
1959 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_HWACC_RUN, NULL);
1960#endif
1961 } while (rc == VINF_EM_RAW_INTERRUPT_HYPER);
1962
1963#ifdef LOG_ENABLED
1964 /*
1965 * Flush the log
1966 */
1967 PVMMR0LOGGER pR0Logger = pVM->vmm.s.pR0Logger;
1968 if ( pR0Logger
1969 && pR0Logger->Logger.offScratch > 0)
1970 RTLogFlushToLogger(&pR0Logger->Logger, NULL);
1971#endif /* !LOG_ENABLED */
1972 if (rc != VINF_VMM_CALL_HOST)
1973 {
1974 Log2(("VMMR3HwAccRunGC: returns %Vrc (cs:eip=%04x:%08x)\n", rc, CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
1975 return rc;
1976 }
1977 rc = vmmR3ServiceCallHostRequest(pVM);
1978 if (VBOX_FAILURE(rc))
1979 return rc;
1980 /* Resume R0 */
1981 }
1982}
1983
1984/**
1985 * Calls GC a function.
1986 *
1987 * @param pVM The VM handle.
1988 * @param GCPtrEntry The GC function address.
1989 * @param cArgs The number of arguments in the ....
1990 * @param ... Arguments to the function.
1991 */
1992VMMR3DECL(int) VMMR3CallGC(PVM pVM, RTGCPTR GCPtrEntry, unsigned cArgs, ...)
1993{
1994 va_list args;
1995 va_start(args, cArgs);
1996 int rc = VMMR3CallGCV(pVM, GCPtrEntry, cArgs, args);
1997 va_end(args);
1998 return rc;
1999}
2000
2001
2002/**
2003 * Calls GC a function.
2004 *
2005 * @param pVM The VM handle.
2006 * @param GCPtrEntry The GC function address.
2007 * @param cArgs The number of arguments in the ....
2008 * @param args Arguments to the function.
2009 */
2010VMMR3DECL(int) VMMR3CallGCV(PVM pVM, RTGCPTR GCPtrEntry, unsigned cArgs, va_list args)
2011{
2012 Log2(("VMMR3CallGCV: GCPtrEntry=%VGv cArgs=%d\n", GCPtrEntry, cArgs));
2013
2014 /*
2015 * Setup the call frame using the trampoline.
2016 */
2017 CPUMHyperSetCtxCore(pVM, NULL);
2018 memset(pVM->vmm.s.pbHCStack, 0xaa, VMM_STACK_SIZE); /* Clear the stack. */
2019 CPUMSetHyperESP(pVM, pVM->vmm.s.pbGCStackBottom - cArgs * sizeof(RTGCUINTPTR));
2020 PRTGCUINTPTR pFrame = (PRTGCUINTPTR)(pVM->vmm.s.pbHCStack + VMM_STACK_SIZE) - cArgs;
2021 int i = cArgs;
2022 while (i-- > 0)
2023 *pFrame++ = va_arg(args, RTGCUINTPTR);
2024
2025 CPUMPushHyper(pVM, cArgs * sizeof(RTGCUINTPTR)); /* stack frame size */
2026 CPUMPushHyper(pVM, GCPtrEntry); /* what to call */
2027 CPUMSetHyperEIP(pVM, pVM->vmm.s.pfnGCCallTrampoline);
2028
2029 /*
2030 * We hide log flushes (outer) and hypervisor interrupts (inner).
2031 */
2032 for (;;)
2033 {
2034 int rc;
2035 do
2036 {
2037#ifdef NO_SUPCALLR0VMM
2038 rc = VERR_GENERAL_FAILURE;
2039#else
2040 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_RAW_RUN, NULL);
2041#endif
2042 } while (rc == VINF_EM_RAW_INTERRUPT_HYPER);
2043
2044 /*
2045 * Flush the logs.
2046 */
2047#ifdef LOG_ENABLED
2048 PRTLOGGERGC pLogger = pVM->vmm.s.pLoggerHC;
2049 if ( pLogger
2050 && pLogger->offScratch > 0)
2051 RTLogFlushGC(NULL, pLogger);
2052#endif
2053#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
2054 PRTLOGGERGC pRelLogger = pVM->vmm.s.pRelLoggerHC;
2055 if (RT_UNLIKELY(pRelLogger && pRelLogger->offScratch > 0))
2056 RTLogFlushGC(RTLogRelDefaultInstance(), pRelLogger);
2057#endif
2058 if (rc == VERR_TRPM_PANIC || rc == VERR_TRPM_DONT_PANIC)
2059 VMMR3FatalDump(pVM, rc);
2060 if (rc != VINF_VMM_CALL_HOST)
2061 {
2062 Log2(("VMMR3CallGCV: returns %Vrc (cs:eip=%04x:%08x)\n", rc, CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
2063 return rc;
2064 }
2065 rc = vmmR3ServiceCallHostRequest(pVM);
2066 if (VBOX_FAILURE(rc))
2067 return rc;
2068 }
2069}
2070
2071
2072/**
2073 * Resumes executing hypervisor code when interrupted
2074 * by a queue flush or a debug event.
2075 *
2076 * @returns VBox status code.
2077 * @param pVM VM handle.
2078 */
2079VMMR3DECL(int) VMMR3ResumeHyper(PVM pVM)
2080{
2081 Log(("VMMR3ResumeHyper: eip=%VGv esp=%VGv\n", CPUMGetHyperEIP(pVM), CPUMGetHyperESP(pVM)));
2082
2083 /*
2084 * We hide log flushes (outer) and hypervisor interrupts (inner).
2085 */
2086 for (;;)
2087 {
2088 int rc;
2089 do
2090 {
2091#ifdef NO_SUPCALLR0VMM
2092 rc = VERR_GENERAL_FAILURE;
2093#else
2094 rc = SUPCallVMMR0(pVM->pVMR0, VMMR0_DO_RAW_RUN, NULL);
2095#endif
2096 } while (rc == VINF_EM_RAW_INTERRUPT_HYPER);
2097
2098 /*
2099 * Flush the loggers,
2100 */
2101#ifdef LOG_ENABLED
2102 PRTLOGGERGC pLogger = pVM->vmm.s.pLoggerHC;
2103 if ( pLogger
2104 && pLogger->offScratch > 0)
2105 RTLogFlushGC(NULL, pLogger);
2106#endif
2107#ifdef VBOX_WITH_GC_AND_R0_RELEASE_LOG
2108 PRTLOGGERGC pRelLogger = pVM->vmm.s.pRelLoggerHC;
2109 if (RT_UNLIKELY(pRelLogger && pRelLogger->offScratch > 0))
2110 RTLogFlushGC(RTLogRelDefaultInstance(), pRelLogger);
2111#endif
2112 if (rc == VERR_TRPM_PANIC || rc == VERR_TRPM_DONT_PANIC)
2113 VMMR3FatalDump(pVM, rc);
2114 if (rc != VINF_VMM_CALL_HOST)
2115 {
2116 Log(("VMMR3ResumeHyper: returns %Vrc\n", rc));
2117 return rc;
2118 }
2119 rc = vmmR3ServiceCallHostRequest(pVM);
2120 if (VBOX_FAILURE(rc))
2121 return rc;
2122 }
2123}
2124
2125
2126/**
2127 * Service a call to the ring-3 host code.
2128 *
2129 * @returns VBox status code.
2130 * @param pVM VM handle.
2131 * @remark Careful with critsects.
2132 */
2133static int vmmR3ServiceCallHostRequest(PVM pVM)
2134{
2135 switch (pVM->vmm.s.enmCallHostOperation)
2136 {
2137 /*
2138 * Acquire the PDM lock.
2139 */
2140 case VMMCALLHOST_PDM_LOCK:
2141 {
2142 pVM->vmm.s.rcCallHost = PDMR3LockCall(pVM);
2143 break;
2144 }
2145
2146 /*
2147 * Flush a PDM queue.
2148 */
2149 case VMMCALLHOST_PDM_QUEUE_FLUSH:
2150 {
2151 PDMR3QueueFlushWorker(pVM, NULL);
2152 pVM->vmm.s.rcCallHost = VINF_SUCCESS;
2153 break;
2154 }
2155
2156 /*
2157 * Grow the PGM pool.
2158 */
2159 case VMMCALLHOST_PGM_POOL_GROW:
2160 {
2161 pVM->vmm.s.rcCallHost = PGMR3PoolGrow(pVM);
2162 break;
2163 }
2164
2165 /*
2166 * Acquire the PGM lock.
2167 */
2168 case VMMCALLHOST_PGM_LOCK:
2169 {
2170 pVM->vmm.s.rcCallHost = PGMR3LockCall(pVM);
2171 break;
2172 }
2173
2174 /*
2175 * Flush REM handler notifications.
2176 */
2177 case VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS:
2178 {
2179 REMR3ReplayHandlerNotifications(pVM);
2180 break;
2181 }
2182
2183 case VMMCALLHOST_PGM_RAM_GROW_RANGE:
2184 {
2185 pVM->vmm.s.rcCallHost = PGM3PhysGrowRange(pVM, pVM->vmm.s.u64CallHostArg);
2186 break;
2187 }
2188
2189 /*
2190 * This is a noop. We just take this route to avoid unnecessary
2191 * tests in the loops.
2192 */
2193 case VMMCALLHOST_VMM_LOGGER_FLUSH:
2194 break;
2195
2196 /*
2197 * Set the VM error message.
2198 */
2199 case VMMCALLHOST_VM_SET_ERROR:
2200 VMR3SetErrorWorker(pVM);
2201 break;
2202
2203 /*
2204 * Set the VM runtime error message.
2205 */
2206 case VMMCALLHOST_VM_SET_RUNTIME_ERROR:
2207 VMR3SetRuntimeErrorWorker(pVM);
2208 break;
2209
2210 default:
2211 AssertMsgFailed(("enmCallHostOperation=%d\n", pVM->vmm.s.enmCallHostOperation));
2212 return VERR_INTERNAL_ERROR;
2213 }
2214
2215 pVM->vmm.s.enmCallHostOperation = VMMCALLHOST_INVALID;
2216 return VINF_SUCCESS;
2217}
2218
2219
2220
2221/**
2222 * Structure to pass to DBGFR3Info() and for doing all other
2223 * output during fatal dump.
2224 */
2225typedef struct VMMR3FATALDUMPINFOHLP
2226{
2227 /** The helper core. */
2228 DBGFINFOHLP Core;
2229 /** The release logger instance. */
2230 PRTLOGGER pRelLogger;
2231 /** The saved release logger flags. */
2232 RTUINT fRelLoggerFlags;
2233 /** The logger instance. */
2234 PRTLOGGER pLogger;
2235 /** The saved logger flags. */
2236 RTUINT fLoggerFlags;
2237 /** The saved logger destination flags. */
2238 RTUINT fLoggerDestFlags;
2239 /** Whether to output to stderr or not. */
2240 bool fStdErr;
2241} VMMR3FATALDUMPINFOHLP, *PVMMR3FATALDUMPINFOHLP;
2242typedef const VMMR3FATALDUMPINFOHLP *PCVMMR3FATALDUMPINFOHLP;
2243
2244
2245/**
2246 * Print formatted string.
2247 *
2248 * @param pHlp Pointer to this structure.
2249 * @param pszFormat The format string.
2250 * @param ... Arguments.
2251 */
2252static DECLCALLBACK(void) vmmR3FatalDumpInfoHlp_pfnPrintf(PCDBGFINFOHLP pHlp, const char *pszFormat, ...)
2253{
2254 va_list args;
2255 va_start(args, pszFormat);
2256 pHlp->pfnPrintfV(pHlp, pszFormat, args);
2257 va_end(args);
2258}
2259
2260
2261/**
2262 * Print formatted string.
2263 *
2264 * @param pHlp Pointer to this structure.
2265 * @param pszFormat The format string.
2266 * @param args Argument list.
2267 */
2268static DECLCALLBACK(void) vmmR3FatalDumpInfoHlp_pfnPrintfV(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args)
2269{
2270 PCVMMR3FATALDUMPINFOHLP pMyHlp = (PCVMMR3FATALDUMPINFOHLP)pHlp;
2271
2272 if (pMyHlp->pRelLogger)
2273 {
2274 va_list args2;
2275 va_copy(args2, args);
2276 RTLogLoggerV(pMyHlp->pRelLogger, pszFormat, args2);
2277 va_end(args2);
2278 }
2279 if (pMyHlp->pLogger)
2280 {
2281 va_list args2;
2282 va_copy(args2, args);
2283 RTLogLoggerV(pMyHlp->pLogger, pszFormat, args);
2284 va_end(args2);
2285 }
2286 if (pMyHlp->fStdErr)
2287 {
2288 va_list args2;
2289 va_copy(args2, args);
2290 RTStrmPrintfV(g_pStdErr, pszFormat, args);
2291 va_end(args2);
2292 }
2293}
2294
2295
2296/**
2297 * Initializes the fatal dump output helper.
2298 *
2299 * @param pHlp The structure to initialize.
2300 */
2301static void vmmR3FatalDumpInfoHlpInit(PVMMR3FATALDUMPINFOHLP pHlp)
2302{
2303 memset(pHlp, 0, sizeof(*pHlp));
2304
2305 pHlp->Core.pfnPrintf = vmmR3FatalDumpInfoHlp_pfnPrintf;
2306 pHlp->Core.pfnPrintfV = vmmR3FatalDumpInfoHlp_pfnPrintfV;
2307
2308 /*
2309 * The loggers.
2310 */
2311 pHlp->pRelLogger = RTLogRelDefaultInstance();
2312#ifndef LOG_ENABLED
2313 if (!pHlp->pRelLogger)
2314#endif
2315 pHlp->pLogger = RTLogDefaultInstance();
2316
2317 if (pHlp->pRelLogger)
2318 {
2319 pHlp->fRelLoggerFlags = pHlp->pRelLogger->fFlags;
2320 pHlp->pRelLogger->fFlags &= ~(RTLOGFLAGS_BUFFERED | RTLOGFLAGS_DISABLED);
2321 }
2322
2323 if (pHlp->pLogger)
2324 {
2325 pHlp->fLoggerFlags = pHlp->pLogger->fFlags;
2326 pHlp->fLoggerDestFlags = pHlp->pLogger->fDestFlags;
2327 pHlp->pLogger->fFlags &= ~(RTLOGFLAGS_BUFFERED | RTLOGFLAGS_DISABLED);
2328#ifndef DEBUG_sandervl
2329 pHlp->pLogger->fDestFlags |= RTLOGDEST_DEBUGGER;
2330#endif
2331 }
2332
2333 /*
2334 * Check if we need write to stderr.
2335 */
2336 pHlp->fStdErr = (!pHlp->pRelLogger || !(pHlp->pRelLogger->fDestFlags & (RTLOGDEST_STDOUT | RTLOGDEST_STDERR)))
2337 && (!pHlp->pLogger || !(pHlp->pLogger->fDestFlags & (RTLOGDEST_STDOUT | RTLOGDEST_STDERR)));
2338}
2339
2340
2341/**
2342 * Deletes the fatal dump output helper.
2343 *
2344 * @param pHlp The structure to delete.
2345 */
2346static void vmmR3FatalDumpInfoHlpDelete(PVMMR3FATALDUMPINFOHLP pHlp)
2347{
2348 if (pHlp->pRelLogger)
2349 {
2350 RTLogFlush(pHlp->pRelLogger);
2351 pHlp->pRelLogger->fFlags = pHlp->fRelLoggerFlags;
2352 }
2353
2354 if (pHlp->pLogger)
2355 {
2356 RTLogFlush(pHlp->pLogger);
2357 pHlp->pLogger->fFlags = pHlp->fLoggerFlags;
2358 pHlp->pLogger->fDestFlags = pHlp->fLoggerDestFlags;
2359 }
2360}
2361
2362
2363/**
2364 * Dumps the VM state on a fatal error.
2365 *
2366 * @param pVM VM Handle.
2367 * @param rcErr VBox status code.
2368 */
2369VMMR3DECL(void) VMMR3FatalDump(PVM pVM, int rcErr)
2370{
2371 /*
2372 * Create our output helper and sync it with the log settings.
2373 * This helper will be used for all the output.
2374 */
2375 VMMR3FATALDUMPINFOHLP Hlp;
2376 PCDBGFINFOHLP pHlp = &Hlp.Core;
2377 vmmR3FatalDumpInfoHlpInit(&Hlp);
2378
2379 /*
2380 * Header.
2381 */
2382 pHlp->pfnPrintf(pHlp,
2383 "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
2384 "!!\n"
2385 "!! Guru Meditation %d (%Vrc)\n"
2386 "!!\n",
2387 rcErr, rcErr);
2388
2389 /*
2390 * Continue according to context.
2391 */
2392 bool fDoneHyper = false;
2393 switch (rcErr)
2394 {
2395 /*
2396 * Hyper visor errors.
2397 */
2398 case VINF_EM_DBG_HYPER_ASSERTION:
2399 pHlp->pfnPrintf(pHlp, "%s%s!!\n", VMMR3GetGCAssertMsg1(pVM), VMMR3GetGCAssertMsg2(pVM));
2400 /* fall thru */
2401 case VERR_TRPM_DONT_PANIC:
2402 case VERR_TRPM_PANIC:
2403 case VINF_EM_RAW_STALE_SELECTOR:
2404 case VINF_EM_RAW_IRET_TRAP:
2405 case VINF_EM_DBG_HYPER_BREAKPOINT:
2406 case VINF_EM_DBG_HYPER_STEPPED:
2407 {
2408 /* Trap? */
2409 uint32_t uEIP = CPUMGetHyperEIP(pVM);
2410 TRPMEVENT enmType;
2411 uint8_t u8TrapNo = 0xce;
2412 RTGCUINT uErrorCode = 0xdeadface;
2413 RTGCUINTPTR uCR2 = 0xdeadface;
2414 int rc2 = TRPMQueryTrapAll(pVM, &u8TrapNo, &enmType, &uErrorCode, &uCR2);
2415 if (VBOX_SUCCESS(rc2))
2416 pHlp->pfnPrintf(pHlp,
2417 "!! TRAP=%02x ERRCD=%VGv CR2=%VGv EIP=%VGv Type=%d\n",
2418 u8TrapNo, uErrorCode, uCR2, uEIP, enmType);
2419 else
2420 pHlp->pfnPrintf(pHlp,
2421 "!! EIP=%VGv NOTRAP\n",
2422 uEIP);
2423
2424 /*
2425 * Try figure out where eip is.
2426 */
2427 /** @todo make query call for core code or move this function to VMM. */
2428 /* core code? */
2429 //if (uEIP - (RTGCUINTPTR)pVM->vmm.s.pvGCCoreCode < pVM->vmm.s.cbCoreCode)
2430 // pHlp->pfnPrintf(pHlp,
2431 // "!! EIP is in CoreCode, offset %#x\n",
2432 // uEIP - (RTGCUINTPTR)pVM->vmm.s.pvGCCoreCode);
2433 //else
2434 { /* ask PDM */
2435 /** @todo ask DBGFR3Sym later. */
2436 char szModName[64];
2437 RTGCPTR GCPtrMod;
2438 char szNearSym1[260];
2439 RTGCPTR GCPtrNearSym1;
2440 char szNearSym2[260];
2441 RTGCPTR GCPtrNearSym2;
2442 int rc = PDMR3QueryModFromEIP(pVM, uEIP,
2443 &szModName[0], sizeof(szModName), &GCPtrMod,
2444 &szNearSym1[0], sizeof(szNearSym1), &GCPtrNearSym1,
2445 &szNearSym2[0], sizeof(szNearSym2), &GCPtrNearSym2);
2446 if (VBOX_SUCCESS(rc))
2447 {
2448 pHlp->pfnPrintf(pHlp,
2449 "!! EIP in %s (%p) at rva %x near symbols:\n"
2450 "!! %VGv rva %VGv off %08x %s\n"
2451 "!! %VGv rva %VGv off -%08x %s\n",
2452 szModName, GCPtrMod, (unsigned)(uEIP - GCPtrMod),
2453 GCPtrNearSym1, GCPtrNearSym1 - GCPtrMod, (unsigned)(uEIP - GCPtrNearSym1), szNearSym1,
2454 GCPtrNearSym2, GCPtrNearSym2 - GCPtrMod, (unsigned)(GCPtrNearSym2 - uEIP), szNearSym2);
2455 }
2456 else
2457 pHlp->pfnPrintf(pHlp,
2458 "!! EIP is not in any code known to VMM!\n");
2459 }
2460
2461 /* Disassemble the instruction. */
2462 char szInstr[256];
2463 rc2 = DBGFR3DisasInstrEx(pVM, 0, 0, DBGF_DISAS_FLAGS_CURRENT_HYPER, &szInstr[0], sizeof(szInstr), NULL);
2464 if (VBOX_SUCCESS(rc2))
2465 pHlp->pfnPrintf(pHlp,
2466 "!! %s\n", szInstr);
2467
2468 /* Dump the hypervisor cpu state. */
2469 pHlp->pfnPrintf(pHlp,
2470 "!!\n"
2471 "!!\n"
2472 "!!\n");
2473 rc2 = DBGFR3Info(pVM, "cpumhyper", "verbose", pHlp);
2474 fDoneHyper = true;
2475
2476 /* Callstack. */
2477 DBGFSTACKFRAME Frame = {0};
2478 rc2 = DBGFR3StackWalkBeginHyper(pVM, &Frame);
2479 if (VBOX_SUCCESS(rc2))
2480 {
2481 pHlp->pfnPrintf(pHlp,
2482 "!!\n"
2483 "!! Call Stack:\n"
2484 "!!\n"
2485 "EBP Ret EBP Ret CS:EIP Arg0 Arg1 Arg2 Arg3 CS:EIP Symbol [line]\n");
2486 do
2487 {
2488 pHlp->pfnPrintf(pHlp,
2489 "%08RX32 %08RX32 %04RX32:%08RX32 %08RX32 %08RX32 %08RX32 %08RX32",
2490 (uint32_t)Frame.AddrFrame.off,
2491 (uint32_t)Frame.AddrReturnFrame.off,
2492 (uint32_t)Frame.AddrReturnPC.Sel,
2493 (uint32_t)Frame.AddrReturnPC.off,
2494 Frame.Args.au32[0],
2495 Frame.Args.au32[1],
2496 Frame.Args.au32[2],
2497 Frame.Args.au32[3]);
2498 pHlp->pfnPrintf(pHlp, " %RTsel:%08RGv", Frame.AddrPC.Sel, Frame.AddrPC.off);
2499 if (Frame.pSymPC)
2500 {
2501 RTGCINTPTR offDisp = Frame.AddrPC.FlatPtr - Frame.pSymPC->Value;
2502 if (offDisp > 0)
2503 pHlp->pfnPrintf(pHlp, " %s+%llx", Frame.pSymPC->szName, (int64_t)offDisp);
2504 else if (offDisp < 0)
2505 pHlp->pfnPrintf(pHlp, " %s-%llx", Frame.pSymPC->szName, -(int64_t)offDisp);
2506 else
2507 pHlp->pfnPrintf(pHlp, " %s", Frame.pSymPC->szName);
2508 }
2509 if (Frame.pLinePC)
2510 pHlp->pfnPrintf(pHlp, " [%s @ 0i%d]", Frame.pLinePC->szFilename, Frame.pLinePC->uLineNo);
2511 pHlp->pfnPrintf(pHlp, "\n");
2512
2513 /* next */
2514 rc2 = DBGFR3StackWalkNext(pVM, &Frame);
2515 } while (VBOX_SUCCESS(rc2));
2516 DBGFR3StackWalkEnd(pVM, &Frame);
2517 }
2518
2519 /* raw stack */
2520 pHlp->pfnPrintf(pHlp,
2521 "!!\n"
2522 "!! Raw stack (mind the direction).\n"
2523 "!!\n"
2524 "%.*Vhxd\n",
2525 VMM_STACK_SIZE, (char *)pVM->vmm.s.pbHCStack);
2526 break;
2527 }
2528
2529 default:
2530 {
2531 break;
2532 }
2533
2534 } /* switch (rcErr) */
2535
2536
2537 /*
2538 * Dump useful state information.
2539 */
2540 /** @todo convert these dumpers to DBGFR3Info() handlers!!! */
2541 pHlp->pfnPrintf(pHlp,
2542 "!!\n"
2543 "!! PGM Access Handlers & Stuff:\n"
2544 "!!\n");
2545 PGMR3DumpMappings(pVM);
2546
2547
2548 /*
2549 * Generic info dumper loop.
2550 */
2551 static struct
2552 {
2553 const char *pszInfo;
2554 const char *pszArgs;
2555 } const aInfo[] =
2556 {
2557 { "hma", NULL },
2558 { "cpumguest", "verbose" },
2559 { "cpumhyper", "verbose" },
2560 { "cpumhost", "verbose" },
2561 { "mode", "all" },
2562 { "cpuid", "verbose" },
2563 { "gdt", NULL },
2564 { "ldt", NULL },
2565 //{ "tss", NULL },
2566 { "ioport", NULL },
2567 { "mmio", NULL },
2568 { "phys", NULL },
2569 //{ "pgmpd", NULL }, - doesn't always work at init time...
2570 { "timers", NULL },
2571 { "activetimers", NULL },
2572 { "handlers", "phys virt stats" },
2573 { "cfgm", NULL },
2574 };
2575 for (unsigned i = 0; i < ELEMENTS(aInfo); i++)
2576 {
2577 if (fDoneHyper && !strcmp(aInfo[i].pszInfo, "cpumhyper"))
2578 continue;
2579 pHlp->pfnPrintf(pHlp,
2580 "!!\n"
2581 "!! {%s, %s}\n"
2582 "!!\n",
2583 aInfo[i].pszInfo, aInfo[i].pszArgs);
2584 DBGFR3Info(pVM, aInfo[i].pszInfo, aInfo[i].pszArgs, pHlp);
2585 }
2586
2587 /* done */
2588 pHlp->pfnPrintf(pHlp,
2589 "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
2590
2591
2592 /*
2593 * Delete the output instance (flushing and restoring of flags).
2594 */
2595 vmmR3FatalDumpInfoHlpDelete(&Hlp);
2596}
2597
2598
2599
2600/**
2601 * Displays the Force action Flags.
2602 *
2603 * @param pVM The VM handle.
2604 * @param pHlp The output helpers.
2605 * @param pszArgs The additional arguments (ignored).
2606 */
2607static DECLCALLBACK(void) vmmR3InfoFF(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
2608{
2609 const uint32_t fForcedActions = pVM->fForcedActions;
2610
2611 pHlp->pfnPrintf(pHlp, "Forced action Flags: %#RX32", fForcedActions);
2612
2613 /* show the flag mnemonics */
2614 int c = 0;
2615 uint32_t f = fForcedActions;
2616#define PRINT_FLAG(flag) do { \
2617 if (f & (flag)) \
2618 { \
2619 static const char *s_psz = #flag; \
2620 if (!(c % 6)) \
2621 pHlp->pfnPrintf(pHlp, "%s\n %s", c ? "," : "", s_psz + 6); \
2622 else \
2623 pHlp->pfnPrintf(pHlp, ", %s", s_psz + 6); \
2624 c++; \
2625 f &= ~(flag); \
2626 } \
2627 } while (0)
2628 PRINT_FLAG(VM_FF_INTERRUPT_APIC);
2629 PRINT_FLAG(VM_FF_INTERRUPT_PIC);
2630 PRINT_FLAG(VM_FF_TIMER);
2631 PRINT_FLAG(VM_FF_PDM_QUEUES);
2632 PRINT_FLAG(VM_FF_PDM_DMA);
2633 PRINT_FLAG(VM_FF_PDM_CRITSECT);
2634 PRINT_FLAG(VM_FF_DBGF);
2635 PRINT_FLAG(VM_FF_REQUEST);
2636 PRINT_FLAG(VM_FF_TERMINATE);
2637 PRINT_FLAG(VM_FF_RESET);
2638 PRINT_FLAG(VM_FF_PGM_SYNC_CR3);
2639 PRINT_FLAG(VM_FF_PGM_SYNC_CR3_NON_GLOBAL);
2640 PRINT_FLAG(VM_FF_TRPM_SYNC_IDT);
2641 PRINT_FLAG(VM_FF_SELM_SYNC_TSS);
2642 PRINT_FLAG(VM_FF_SELM_SYNC_GDT);
2643 PRINT_FLAG(VM_FF_SELM_SYNC_LDT);
2644 PRINT_FLAG(VM_FF_INHIBIT_INTERRUPTS);
2645 PRINT_FLAG(VM_FF_CSAM_SCAN_PAGE);
2646 PRINT_FLAG(VM_FF_CSAM_PENDING_ACTION);
2647 PRINT_FLAG(VM_FF_TO_R3);
2648 PRINT_FLAG(VM_FF_DEBUG_SUSPEND);
2649 if (f)
2650 pHlp->pfnPrintf(pHlp, "%s\n Unknown bits: %#RX32\n", c ? "," : "", f);
2651 else
2652 pHlp->pfnPrintf(pHlp, "\n");
2653#undef PRINT_FLAG
2654
2655 /* the groups */
2656 c = 0;
2657#define PRINT_GROUP(grp) do { \
2658 if (fForcedActions & (grp)) \
2659 { \
2660 static const char *s_psz = #grp; \
2661 if (!(c % 5)) \
2662 pHlp->pfnPrintf(pHlp, "%s %s", c ? ",\n" : "Groups:\n", s_psz + 6); \
2663 else \
2664 pHlp->pfnPrintf(pHlp, ", %s", s_psz + 6); \
2665 c++; \
2666 } \
2667 } while (0)
2668 PRINT_GROUP(VM_FF_EXTERNAL_SUSPENDED_MASK);
2669 PRINT_GROUP(VM_FF_EXTERNAL_HALTED_MASK);
2670 PRINT_GROUP(VM_FF_HIGH_PRIORITY_PRE_MASK);
2671 PRINT_GROUP(VM_FF_HIGH_PRIORITY_PRE_RAW_MASK);
2672 PRINT_GROUP(VM_FF_HIGH_PRIORITY_POST_MASK);
2673 PRINT_GROUP(VM_FF_NORMAL_PRIORITY_POST_MASK);
2674 PRINT_GROUP(VM_FF_NORMAL_PRIORITY_MASK);
2675 PRINT_GROUP(VM_FF_RESUME_GUEST_MASK);
2676 PRINT_GROUP(VM_FF_ALL_BUT_RAW_MASK);
2677 if (c)
2678 pHlp->pfnPrintf(pHlp, "\n");
2679#undef PRINT_GROUP
2680}
2681
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