1 | /* $Id: VM.cpp 20199 2009-06-02 14:51:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VM - Virtual Machine
|
---|
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 | /** @page pg_vm VM API
|
---|
23 | *
|
---|
24 | * This is the encapsulating bit. It provides the APIs that Main and VBoxBFE
|
---|
25 | * use to create a VMM instance for running a guest in. It also provides
|
---|
26 | * facilities for queuing request for execution in EMT (serialization purposes
|
---|
27 | * mostly) and for reporting error back to the VMM user (Main/VBoxBFE).
|
---|
28 | *
|
---|
29 | *
|
---|
30 | * @section sec_vm_design Design Critique / Things To Do
|
---|
31 | *
|
---|
32 | * In hindsight this component is a big design mistake, all this stuff really
|
---|
33 | * belongs in the VMM component. It just seemed like a kind of ok idea at a
|
---|
34 | * time when the VMM bit was a bit vague. 'VM' also happend to be the name of
|
---|
35 | * the per-VM instance structure (see vm.h), so it kind of made sense. However
|
---|
36 | * as it turned out, VMM(.cpp) is almost empty all it provides in ring-3 is some
|
---|
37 | * minor functionally and some "routing" services.
|
---|
38 | *
|
---|
39 | * Fixing this is just a matter of some more or less straight forward
|
---|
40 | * refactoring, the question is just when someone will get to it.
|
---|
41 | *
|
---|
42 | */
|
---|
43 |
|
---|
44 | /*******************************************************************************
|
---|
45 | * Header Files *
|
---|
46 | *******************************************************************************/
|
---|
47 | #define LOG_GROUP LOG_GROUP_VM
|
---|
48 | #include <VBox/cfgm.h>
|
---|
49 | #include <VBox/vmm.h>
|
---|
50 | #include <VBox/gvmm.h>
|
---|
51 | #include <VBox/mm.h>
|
---|
52 | #include <VBox/cpum.h>
|
---|
53 | #include <VBox/selm.h>
|
---|
54 | #include <VBox/trpm.h>
|
---|
55 | #include <VBox/dbgf.h>
|
---|
56 | #include <VBox/pgm.h>
|
---|
57 | #include <VBox/pdmapi.h>
|
---|
58 | #include <VBox/pdmcritsect.h>
|
---|
59 | #include <VBox/em.h>
|
---|
60 | #include <VBox/rem.h>
|
---|
61 | #include <VBox/tm.h>
|
---|
62 | #include <VBox/stam.h>
|
---|
63 | #include <VBox/patm.h>
|
---|
64 | #ifdef VBOX_WITH_VMI
|
---|
65 | # include <VBox/parav.h>
|
---|
66 | #endif
|
---|
67 | #include <VBox/csam.h>
|
---|
68 | #include <VBox/iom.h>
|
---|
69 | #include <VBox/ssm.h>
|
---|
70 | #include <VBox/hwaccm.h>
|
---|
71 | #include "VMInternal.h"
|
---|
72 | #include <VBox/vm.h>
|
---|
73 | #include <VBox/uvm.h>
|
---|
74 |
|
---|
75 | #include <VBox/sup.h>
|
---|
76 | #include <VBox/dbg.h>
|
---|
77 | #include <VBox/err.h>
|
---|
78 | #include <VBox/param.h>
|
---|
79 | #include <VBox/log.h>
|
---|
80 | #include <iprt/assert.h>
|
---|
81 | #include <iprt/alloc.h>
|
---|
82 | #include <iprt/asm.h>
|
---|
83 | #include <iprt/env.h>
|
---|
84 | #include <iprt/string.h>
|
---|
85 | #include <iprt/time.h>
|
---|
86 | #include <iprt/semaphore.h>
|
---|
87 | #include <iprt/thread.h>
|
---|
88 |
|
---|
89 |
|
---|
90 | /*******************************************************************************
|
---|
91 | * Structures and Typedefs *
|
---|
92 | *******************************************************************************/
|
---|
93 | /**
|
---|
94 | * VM destruction callback registration record.
|
---|
95 | */
|
---|
96 | typedef struct VMATDTOR
|
---|
97 | {
|
---|
98 | /** Pointer to the next record in the list. */
|
---|
99 | struct VMATDTOR *pNext;
|
---|
100 | /** Pointer to the callback function. */
|
---|
101 | PFNVMATDTOR pfnAtDtor;
|
---|
102 | /** The user argument. */
|
---|
103 | void *pvUser;
|
---|
104 | } VMATDTOR;
|
---|
105 | /** Pointer to a VM destruction callback registration record. */
|
---|
106 | typedef VMATDTOR *PVMATDTOR;
|
---|
107 |
|
---|
108 |
|
---|
109 | /*******************************************************************************
|
---|
110 | * Global Variables *
|
---|
111 | *******************************************************************************/
|
---|
112 | /** Pointer to the list of VMs. */
|
---|
113 | static PUVM g_pUVMsHead = NULL;
|
---|
114 |
|
---|
115 | /** Pointer to the list of at VM destruction callbacks. */
|
---|
116 | static PVMATDTOR g_pVMAtDtorHead = NULL;
|
---|
117 | /** Lock the g_pVMAtDtorHead list. */
|
---|
118 | #define VM_ATDTOR_LOCK() do { } while (0)
|
---|
119 | /** Unlock the g_pVMAtDtorHead list. */
|
---|
120 | #define VM_ATDTOR_UNLOCK() do { } while (0)
|
---|
121 |
|
---|
122 |
|
---|
123 | /*******************************************************************************
|
---|
124 | * Internal Functions *
|
---|
125 | *******************************************************************************/
|
---|
126 | static int vmR3CreateUVM(uint32_t cCPUs, PUVM *ppUVM);
|
---|
127 | static int vmR3CreateU(PUVM pUVM, uint32_t cCPUs, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM);
|
---|
128 | static int vmR3InitRing3(PVM pVM, PUVM pUVM);
|
---|
129 | static int vmR3InitVMCpu(PVM pVM);
|
---|
130 | static int vmR3InitRing0(PVM pVM);
|
---|
131 | static int vmR3InitGC(PVM pVM);
|
---|
132 | static int vmR3InitDoCompleted(PVM pVM, VMINITCOMPLETED enmWhat);
|
---|
133 | static DECLCALLBACK(int) vmR3PowerOn(PVM pVM);
|
---|
134 | static DECLCALLBACK(int) vmR3Suspend(PVM pVM);
|
---|
135 | static DECLCALLBACK(int) vmR3Resume(PVM pVM);
|
---|
136 | static DECLCALLBACK(int) vmR3Save(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser);
|
---|
137 | static DECLCALLBACK(int) vmR3Load(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser);
|
---|
138 | static DECLCALLBACK(int) vmR3PowerOff(PVM pVM);
|
---|
139 | static void vmR3DestroyUVM(PUVM pUVM, uint32_t cMilliesEMTWait);
|
---|
140 | static void vmR3AtDtor(PVM pVM);
|
---|
141 | static int vmR3AtResetU(PUVM pUVM);
|
---|
142 | static DECLCALLBACK(int) vmR3Reset(PVM pVM);
|
---|
143 | static DECLCALLBACK(int) vmR3AtStateRegisterU(PUVM pUVM, PFNVMATSTATE pfnAtState, void *pvUser);
|
---|
144 | static DECLCALLBACK(int) vmR3AtStateDeregisterU(PUVM pUVM, PFNVMATSTATE pfnAtState, void *pvUser);
|
---|
145 | static DECLCALLBACK(int) vmR3AtErrorRegisterU(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser);
|
---|
146 | static DECLCALLBACK(int) vmR3AtErrorDeregisterU(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser);
|
---|
147 | static int vmR3SetErrorU(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...);
|
---|
148 | static DECLCALLBACK(int) vmR3AtRuntimeErrorRegisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser);
|
---|
149 | static DECLCALLBACK(int) vmR3AtRuntimeErrorDeregisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser);
|
---|
150 |
|
---|
151 |
|
---|
152 | /**
|
---|
153 | * Do global VMM init.
|
---|
154 | *
|
---|
155 | * @returns VBox status code.
|
---|
156 | */
|
---|
157 | VMMR3DECL(int) VMR3GlobalInit(void)
|
---|
158 | {
|
---|
159 | /*
|
---|
160 | * Only once.
|
---|
161 | */
|
---|
162 | static bool volatile s_fDone = false;
|
---|
163 | if (s_fDone)
|
---|
164 | return VINF_SUCCESS;
|
---|
165 |
|
---|
166 | /*
|
---|
167 | * We're done.
|
---|
168 | */
|
---|
169 | s_fDone = true;
|
---|
170 | return VINF_SUCCESS;
|
---|
171 | }
|
---|
172 |
|
---|
173 |
|
---|
174 |
|
---|
175 | /**
|
---|
176 | * Creates a virtual machine by calling the supplied configuration constructor.
|
---|
177 | *
|
---|
178 | * On successful returned the VM is powered, i.e. VMR3PowerOn() should be
|
---|
179 | * called to start the execution.
|
---|
180 | *
|
---|
181 | * @returns 0 on success.
|
---|
182 | * @returns VBox error code on failure.
|
---|
183 | * @param cCPUs Number of virtual CPUs for the new VM.
|
---|
184 | * @param pfnVMAtError Pointer to callback function for setting VM
|
---|
185 | * errors. This was added as an implicit call to
|
---|
186 | * VMR3AtErrorRegister() since there is no way the
|
---|
187 | * caller can get to the VM handle early enough to
|
---|
188 | * do this on its own.
|
---|
189 | * This is called in the context of an EMT.
|
---|
190 | * @param pvUserVM The user argument passed to pfnVMAtError.
|
---|
191 | * @param pfnCFGMConstructor Pointer to callback function for constructing the VM configuration tree.
|
---|
192 | * This is called in the context of an EMT0.
|
---|
193 | * @param pvUserCFGM The user argument passed to pfnCFGMConstructor.
|
---|
194 | * @param ppVM Where to store the 'handle' of the created VM.
|
---|
195 | */
|
---|
196 | VMMR3DECL(int) VMR3Create(uint32_t cCPUs, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM)
|
---|
197 | {
|
---|
198 | LogFlow(("VMR3Create: cCPUs=%RU32 pfnVMAtError=%p pvUserVM=%p pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p\n", cCPUs, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM));
|
---|
199 |
|
---|
200 | /*
|
---|
201 | * Because of the current hackiness of the applications
|
---|
202 | * we'll have to initialize global stuff from here.
|
---|
203 | * Later the applications will take care of this in a proper way.
|
---|
204 | */
|
---|
205 | static bool fGlobalInitDone = false;
|
---|
206 | if (!fGlobalInitDone)
|
---|
207 | {
|
---|
208 | int rc = VMR3GlobalInit();
|
---|
209 | if (RT_FAILURE(rc))
|
---|
210 | return rc;
|
---|
211 | fGlobalInitDone = true;
|
---|
212 | }
|
---|
213 |
|
---|
214 | /*
|
---|
215 | * Validate input.
|
---|
216 | */
|
---|
217 | AssertLogRelMsgReturn(cCPUs > 0 && cCPUs <= VMM_MAX_CPU_COUNT, ("%RU32\n", cCPUs), VERR_TOO_MANY_CPUS);
|
---|
218 |
|
---|
219 | /*
|
---|
220 | * Create the UVM so we can register the at-error callback
|
---|
221 | * and consoliate a bit of cleanup code.
|
---|
222 | */
|
---|
223 | PUVM pUVM;
|
---|
224 | int rc = vmR3CreateUVM(cCPUs, &pUVM);
|
---|
225 | if (RT_FAILURE(rc))
|
---|
226 | return rc;
|
---|
227 | if (pfnVMAtError)
|
---|
228 | rc = VMR3AtErrorRegisterU(pUVM, pfnVMAtError, pvUserVM);
|
---|
229 | if (RT_SUCCESS(rc))
|
---|
230 | {
|
---|
231 | /*
|
---|
232 | * Initialize the support library creating the session for this VM.
|
---|
233 | */
|
---|
234 | rc = SUPR3Init(&pUVM->vm.s.pSession);
|
---|
235 | if (RT_SUCCESS(rc))
|
---|
236 | {
|
---|
237 | /*
|
---|
238 | * Call vmR3CreateU in the EMT thread and wait for it to finish.
|
---|
239 | *
|
---|
240 | * Note! VMCPUID_ANY is used here because VMR3ReqQueueU would have trouble
|
---|
241 | * submitting a request to a specific VCPU without a pVM. So, to make
|
---|
242 | * sure init is running on EMT(0), vmR3EmulationThreadWithId makes sure
|
---|
243 | * that only EMT(0) is servicing VMCPUID_ANY requests when pVM is NULL.
|
---|
244 | */
|
---|
245 | PVMREQ pReq;
|
---|
246 | rc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3CreateU, 4,
|
---|
247 | pUVM, cCPUs, pfnCFGMConstructor, pvUserCFGM);
|
---|
248 | if (RT_SUCCESS(rc))
|
---|
249 | {
|
---|
250 | rc = pReq->iStatus;
|
---|
251 | VMR3ReqFree(pReq);
|
---|
252 | if (RT_SUCCESS(rc))
|
---|
253 | {
|
---|
254 | /*
|
---|
255 | * Success!
|
---|
256 | */
|
---|
257 | *ppVM = pUVM->pVM;
|
---|
258 | LogFlow(("VMR3Create: returns VINF_SUCCESS *ppVM=%p\n", *ppVM));
|
---|
259 | return VINF_SUCCESS;
|
---|
260 | }
|
---|
261 | }
|
---|
262 | else
|
---|
263 | AssertMsgFailed(("VMR3ReqCall failed rc=%Rrc\n", rc));
|
---|
264 |
|
---|
265 | /*
|
---|
266 | * An error occurred during VM creation. Set the error message directly
|
---|
267 | * using the initial callback, as the callback list doesn't exist yet.
|
---|
268 | */
|
---|
269 | const char *pszError = NULL;
|
---|
270 | switch (rc)
|
---|
271 | {
|
---|
272 | case VERR_VMX_IN_VMX_ROOT_MODE:
|
---|
273 | #ifdef RT_OS_LINUX
|
---|
274 | pszError = N_("VirtualBox can't operate in VMX root mode. "
|
---|
275 | "Please disable the KVM kernel extension, recompile your kernel and reboot");
|
---|
276 | #else
|
---|
277 | pszError = N_("VirtualBox can't operate in VMX root mode. Please close all other virtualization programs.");
|
---|
278 | #endif
|
---|
279 | break;
|
---|
280 |
|
---|
281 | case VERR_VERSION_MISMATCH:
|
---|
282 | pszError = N_("VMMR0 driver version mismatch. Please terminate all VMs, make sure that "
|
---|
283 | "VBoxNetDHCP is not running and try again. If you still get this error, "
|
---|
284 | "re-install VirtualBox");
|
---|
285 | break;
|
---|
286 |
|
---|
287 | default:
|
---|
288 | pszError = N_("Unknown error creating VM");
|
---|
289 | break;
|
---|
290 | }
|
---|
291 | vmR3SetErrorU(pUVM, rc, RT_SRC_POS, pszError, rc);
|
---|
292 | }
|
---|
293 | else
|
---|
294 | {
|
---|
295 | /*
|
---|
296 | * An error occurred at support library initialization time (before the
|
---|
297 | * VM could be created). Set the error message directly using the
|
---|
298 | * initial callback, as the callback list doesn't exist yet.
|
---|
299 | */
|
---|
300 | const char *pszError;
|
---|
301 | switch (rc)
|
---|
302 | {
|
---|
303 | case VERR_VM_DRIVER_LOAD_ERROR:
|
---|
304 | #ifdef RT_OS_LINUX
|
---|
305 | pszError = N_("VirtualBox kernel driver not loaded. The vboxdrv kernel module "
|
---|
306 | "was either not loaded or /dev/vboxdrv is not set up properly. "
|
---|
307 | "Re-setup the kernel module by executing "
|
---|
308 | "'/etc/init.d/vboxdrv setup' as root");
|
---|
309 | #else
|
---|
310 | pszError = N_("VirtualBox kernel driver not loaded");
|
---|
311 | #endif
|
---|
312 | break;
|
---|
313 | case VERR_VM_DRIVER_OPEN_ERROR:
|
---|
314 | pszError = N_("VirtualBox kernel driver cannot be opened");
|
---|
315 | break;
|
---|
316 | case VERR_VM_DRIVER_NOT_ACCESSIBLE:
|
---|
317 | #ifdef VBOX_WITH_HARDENING
|
---|
318 | /* This should only happen if the executable wasn't hardened - bad code/build. */
|
---|
319 | pszError = N_("VirtualBox kernel driver not accessible, permission problem. "
|
---|
320 | "Re-install VirtualBox. If you are building it yourself, you "
|
---|
321 | "should make sure it installed correctly and that the setuid "
|
---|
322 | "bit is set on the executables calling VMR3Create.");
|
---|
323 | #else
|
---|
324 | /* This should only happen when mixing builds or with the usual /dev/vboxdrv access issues. */
|
---|
325 | # if defined(RT_OS_DARWIN)
|
---|
326 | pszError = N_("VirtualBox KEXT is not accessible, permission problem. "
|
---|
327 | "If you have built VirtualBox yourself, make sure that you do not "
|
---|
328 | "have the vboxdrv KEXT from a different build or installation loaded.");
|
---|
329 | # elif defined(RT_OS_LINUX)
|
---|
330 | pszError = N_("VirtualBox kernel driver is not accessible, permission problem. "
|
---|
331 | "If you have built VirtualBox yourself, make sure that you do "
|
---|
332 | "not have the vboxdrv kernel module from a different build or "
|
---|
333 | "installation loaded. Also, make sure the vboxdrv udev rule gives "
|
---|
334 | "you the permission you need to access the device.");
|
---|
335 | # elif defined(RT_OS_WINDOWS)
|
---|
336 | pszError = N_("VirtualBox kernel driver is not accessible, permission problem.");
|
---|
337 | # else /* solaris, freebsd, ++. */
|
---|
338 | pszError = N_("VirtualBox kernel module is not accessible, permission problem. "
|
---|
339 | "If you have built VirtualBox yourself, make sure that you do "
|
---|
340 | "not have the vboxdrv kernel module from a different install loaded.");
|
---|
341 | # endif
|
---|
342 | #endif
|
---|
343 | break;
|
---|
344 | case VERR_INVALID_HANDLE: /** @todo track down and fix this error. */
|
---|
345 | case VERR_VM_DRIVER_NOT_INSTALLED:
|
---|
346 | #ifdef RT_OS_LINUX
|
---|
347 | pszError = N_("VirtualBox kernel driver not installed. The vboxdrv kernel module "
|
---|
348 | "was either not loaded or /dev/vboxdrv was not created for some "
|
---|
349 | "reason. Re-setup the kernel module by executing "
|
---|
350 | "'/etc/init.d/vboxdrv setup' as root");
|
---|
351 | #else
|
---|
352 | pszError = N_("VirtualBox kernel driver not installed");
|
---|
353 | #endif
|
---|
354 | break;
|
---|
355 | case VERR_NO_MEMORY:
|
---|
356 | pszError = N_("VirtualBox support library out of memory");
|
---|
357 | break;
|
---|
358 | case VERR_VERSION_MISMATCH:
|
---|
359 | case VERR_VM_DRIVER_VERSION_MISMATCH:
|
---|
360 | pszError = N_("The VirtualBox support driver which is running is from a different "
|
---|
361 | "version of VirtualBox. You can correct this by stopping all "
|
---|
362 | "running instances of VirtualBox and reinstalling the software.");
|
---|
363 | break;
|
---|
364 | default:
|
---|
365 | pszError = N_("Unknown error initializing kernel driver");
|
---|
366 | AssertMsgFailed(("Add error message for rc=%d (%Rrc)\n", rc, rc));
|
---|
367 | }
|
---|
368 | vmR3SetErrorU(pUVM, rc, RT_SRC_POS, pszError, rc);
|
---|
369 | }
|
---|
370 | }
|
---|
371 |
|
---|
372 | /* cleanup */
|
---|
373 | vmR3DestroyUVM(pUVM, 2000);
|
---|
374 | LogFlow(("VMR3Create: returns %Rrc\n", rc));
|
---|
375 | return rc;
|
---|
376 | }
|
---|
377 |
|
---|
378 |
|
---|
379 | /**
|
---|
380 | * Creates the UVM.
|
---|
381 | *
|
---|
382 | * This will not initialize the support library even if vmR3DestroyUVM
|
---|
383 | * will terminate that.
|
---|
384 | *
|
---|
385 | * @returns VBox status code.
|
---|
386 | * @param cCpus Number of virtual CPUs
|
---|
387 | * @param ppUVM Where to store the UVM pointer.
|
---|
388 | */
|
---|
389 | static int vmR3CreateUVM(uint32_t cCpus, PUVM *ppUVM)
|
---|
390 | {
|
---|
391 | uint32_t i;
|
---|
392 |
|
---|
393 | /*
|
---|
394 | * Create and initialize the UVM.
|
---|
395 | */
|
---|
396 | PUVM pUVM = (PUVM)RTMemAllocZ(RT_OFFSETOF(UVM, aCpus[cCpus]));
|
---|
397 | AssertReturn(pUVM, VERR_NO_MEMORY);
|
---|
398 | pUVM->u32Magic = UVM_MAGIC;
|
---|
399 | pUVM->cCpus = cCpus;
|
---|
400 |
|
---|
401 | AssertCompile(sizeof(pUVM->vm.s) <= sizeof(pUVM->vm.padding));
|
---|
402 |
|
---|
403 | pUVM->vm.s.ppAtResetNext = &pUVM->vm.s.pAtReset;
|
---|
404 | pUVM->vm.s.ppAtStateNext = &pUVM->vm.s.pAtState;
|
---|
405 | pUVM->vm.s.ppAtErrorNext = &pUVM->vm.s.pAtError;
|
---|
406 | pUVM->vm.s.ppAtRuntimeErrorNext = &pUVM->vm.s.pAtRuntimeError;
|
---|
407 |
|
---|
408 | pUVM->vm.s.enmHaltMethod = VMHALTMETHOD_BOOTSTRAP;
|
---|
409 |
|
---|
410 | /* Initialize the VMCPU array in the UVM. */
|
---|
411 | for (i = 0; i < cCpus; i++)
|
---|
412 | {
|
---|
413 | pUVM->aCpus[i].pUVM = pUVM;
|
---|
414 | pUVM->aCpus[i].idCpu = i;
|
---|
415 | }
|
---|
416 |
|
---|
417 | /* Allocate a TLS entry to store the VMINTUSERPERVMCPU pointer. */
|
---|
418 | int rc = RTTlsAllocEx(&pUVM->vm.s.idxTLS, NULL);
|
---|
419 | AssertRC(rc);
|
---|
420 | if (RT_SUCCESS(rc))
|
---|
421 | {
|
---|
422 | /* Allocate a halt method event semaphore for each VCPU. */
|
---|
423 | for (i = 0; i < cCpus; i++)
|
---|
424 | {
|
---|
425 | rc = RTSemEventCreate(&pUVM->aCpus[i].vm.s.EventSemWait);
|
---|
426 | if (RT_FAILURE(rc))
|
---|
427 | break;
|
---|
428 | }
|
---|
429 |
|
---|
430 | if (RT_SUCCESS(rc))
|
---|
431 | {
|
---|
432 | /*
|
---|
433 | * Init fundamental (sub-)components - STAM, MMR3Heap and PDMLdr.
|
---|
434 | */
|
---|
435 | rc = STAMR3InitUVM(pUVM);
|
---|
436 | if (RT_SUCCESS(rc))
|
---|
437 | {
|
---|
438 | rc = MMR3InitUVM(pUVM);
|
---|
439 | if (RT_SUCCESS(rc))
|
---|
440 | {
|
---|
441 | rc = PDMR3InitUVM(pUVM);
|
---|
442 | if (RT_SUCCESS(rc))
|
---|
443 | {
|
---|
444 | /*
|
---|
445 | * Start the emulation threads for all VMCPUs.
|
---|
446 | */
|
---|
447 | for (i = 0; i < cCpus; i++)
|
---|
448 | {
|
---|
449 | rc = RTThreadCreateF(&pUVM->aCpus[i].vm.s.ThreadEMT, vmR3EmulationThread, &pUVM->aCpus[i], _1M,
|
---|
450 | RTTHREADTYPE_EMULATION, RTTHREADFLAGS_WAITABLE,
|
---|
451 | cCpus > 1 ? "EMT-%u" : "EMT", i);
|
---|
452 | if (RT_FAILURE(rc))
|
---|
453 | break;
|
---|
454 |
|
---|
455 | pUVM->aCpus[i].vm.s.NativeThreadEMT = RTThreadGetNative(pUVM->aCpus[i].vm.s.ThreadEMT);
|
---|
456 | }
|
---|
457 |
|
---|
458 | if (RT_SUCCESS(rc))
|
---|
459 | {
|
---|
460 | *ppUVM = pUVM;
|
---|
461 | return VINF_SUCCESS;
|
---|
462 | }
|
---|
463 |
|
---|
464 | /* bail out. */
|
---|
465 | while (i-- > 0)
|
---|
466 | {
|
---|
467 | /** @todo rainy day: terminate the EMTs. */
|
---|
468 | }
|
---|
469 | PDMR3TermUVM(pUVM);
|
---|
470 | }
|
---|
471 | MMR3TermUVM(pUVM);
|
---|
472 | }
|
---|
473 | STAMR3TermUVM(pUVM);
|
---|
474 | }
|
---|
475 | for (i = 0; i < cCpus; i++)
|
---|
476 | {
|
---|
477 | RTSemEventDestroy(pUVM->aCpus[i].vm.s.EventSemWait);
|
---|
478 | pUVM->aCpus[i].vm.s.EventSemWait = NIL_RTSEMEVENT;
|
---|
479 | }
|
---|
480 | }
|
---|
481 | RTTlsFree(pUVM->vm.s.idxTLS);
|
---|
482 | }
|
---|
483 | RTMemFree(pUVM);
|
---|
484 | return rc;
|
---|
485 | }
|
---|
486 |
|
---|
487 |
|
---|
488 | /**
|
---|
489 | * Creates and initializes the VM.
|
---|
490 | *
|
---|
491 | * @thread EMT
|
---|
492 | */
|
---|
493 | static int vmR3CreateU(PUVM pUVM, uint32_t cCpus, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM)
|
---|
494 | {
|
---|
495 | int rc = VINF_SUCCESS;
|
---|
496 |
|
---|
497 | /*
|
---|
498 | * Load the VMMR0.r0 module so that we can call GVMMR0CreateVM.
|
---|
499 | */
|
---|
500 | rc = PDMR3LdrLoadVMMR0U(pUVM);
|
---|
501 | if (RT_FAILURE(rc))
|
---|
502 | {
|
---|
503 | /** @todo we need a cleaner solution for this (VERR_VMX_IN_VMX_ROOT_MODE).
|
---|
504 | * bird: what about moving the message down here? Main picks the first message, right? */
|
---|
505 | if (rc == VERR_VMX_IN_VMX_ROOT_MODE)
|
---|
506 | return rc; /* proper error message set later on */
|
---|
507 | return vmR3SetErrorU(pUVM, rc, RT_SRC_POS, N_("Failed to load VMMR0.r0"));
|
---|
508 | }
|
---|
509 |
|
---|
510 | /*
|
---|
511 | * Request GVMM to create a new VM for us.
|
---|
512 | */
|
---|
513 | GVMMCREATEVMREQ CreateVMReq;
|
---|
514 | CreateVMReq.Hdr.u32Magic = SUPVMMR0REQHDR_MAGIC;
|
---|
515 | CreateVMReq.Hdr.cbReq = sizeof(CreateVMReq);
|
---|
516 | CreateVMReq.pSession = pUVM->vm.s.pSession;
|
---|
517 | CreateVMReq.pVMR0 = NIL_RTR0PTR;
|
---|
518 | CreateVMReq.pVMR3 = NULL;
|
---|
519 | CreateVMReq.cCpus = cCpus;
|
---|
520 | rc = SUPCallVMMR0Ex(NIL_RTR0PTR, NIL_VMCPUID, VMMR0_DO_GVMM_CREATE_VM, 0, &CreateVMReq.Hdr);
|
---|
521 | if (RT_SUCCESS(rc))
|
---|
522 | {
|
---|
523 | PVM pVM = pUVM->pVM = CreateVMReq.pVMR3;
|
---|
524 | AssertRelease(VALID_PTR(pVM));
|
---|
525 | AssertRelease(pVM->pVMR0 == CreateVMReq.pVMR0);
|
---|
526 | AssertRelease(pVM->pSession == pUVM->vm.s.pSession);
|
---|
527 | AssertRelease(pVM->cCPUs == cCpus);
|
---|
528 | AssertRelease(pVM->offVMCPU == RT_UOFFSETOF(VM, aCpus));
|
---|
529 |
|
---|
530 | Log(("VMR3Create: Created pUVM=%p pVM=%p pVMR0=%p hSelf=%#x cCPUs=%RU32\n",
|
---|
531 | pUVM, pVM, pVM->pVMR0, pVM->hSelf, pVM->cCPUs));
|
---|
532 |
|
---|
533 | /*
|
---|
534 | * Initialize the VM structure and our internal data (VMINT).
|
---|
535 | */
|
---|
536 | pVM->pUVM = pUVM;
|
---|
537 |
|
---|
538 | for (uint32_t i = 0; i < pVM->cCPUs; i++)
|
---|
539 | {
|
---|
540 | pVM->aCpus[i].pUVCpu = &pUVM->aCpus[i];
|
---|
541 | pVM->aCpus[i].idCpu = i;
|
---|
542 | pVM->aCpus[i].hNativeThread = pUVM->aCpus[i].vm.s.NativeThreadEMT;
|
---|
543 | Assert(pVM->aCpus[i].hNativeThread != NIL_RTNATIVETHREAD);
|
---|
544 |
|
---|
545 | pUVM->aCpus[i].pVCpu = &pVM->aCpus[i];
|
---|
546 | pUVM->aCpus[i].pVM = pVM;
|
---|
547 | }
|
---|
548 |
|
---|
549 |
|
---|
550 | /*
|
---|
551 | * Init the configuration.
|
---|
552 | */
|
---|
553 | rc = CFGMR3Init(pVM, pfnCFGMConstructor, pvUserCFGM);
|
---|
554 | if (RT_SUCCESS(rc))
|
---|
555 | {
|
---|
556 | rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "HwVirtExtForced", &pVM->fHwVirtExtForced, false);
|
---|
557 | if (RT_SUCCESS(rc) && pVM->fHwVirtExtForced)
|
---|
558 | pVM->fHWACCMEnabled = true;
|
---|
559 |
|
---|
560 | /*
|
---|
561 | * If executing in fake suplib mode disable RR3 and RR0 in the config.
|
---|
562 | */
|
---|
563 | const char *psz = RTEnvGet("VBOX_SUPLIB_FAKE");
|
---|
564 | if (psz && !strcmp(psz, "fake"))
|
---|
565 | {
|
---|
566 | CFGMR3RemoveValue(CFGMR3GetRoot(pVM), "RawR3Enabled");
|
---|
567 | CFGMR3InsertInteger(CFGMR3GetRoot(pVM), "RawR3Enabled", 0);
|
---|
568 | CFGMR3RemoveValue(CFGMR3GetRoot(pVM), "RawR0Enabled");
|
---|
569 | CFGMR3InsertInteger(CFGMR3GetRoot(pVM), "RawR0Enabled", 0);
|
---|
570 | }
|
---|
571 |
|
---|
572 | /*
|
---|
573 | * Make sure the CPU count in the config data matches.
|
---|
574 | */
|
---|
575 | if (RT_SUCCESS(rc))
|
---|
576 | {
|
---|
577 | uint32_t cCPUsCfg;
|
---|
578 | rc = CFGMR3QueryU32Def(CFGMR3GetRoot(pVM), "NumCPUs", &cCPUsCfg, 1);
|
---|
579 | AssertLogRelMsgRC(rc, ("Configuration error: Querying \"NumCPUs\" as integer failed, rc=%Rrc\n", rc));
|
---|
580 | if (RT_SUCCESS(rc) && cCPUsCfg != cCpus)
|
---|
581 | {
|
---|
582 | AssertLogRelMsgFailed(("Configuration error: \"NumCPUs\"=%RU32 and VMR3CreateVM::cCPUs=%RU32 does not match!\n",
|
---|
583 | cCPUsCfg, cCpus));
|
---|
584 | rc = VERR_INVALID_PARAMETER;
|
---|
585 | }
|
---|
586 | }
|
---|
587 | if (RT_SUCCESS(rc))
|
---|
588 | {
|
---|
589 | /*
|
---|
590 | * Init the ring-3 components and ring-3 per cpu data, finishing it off
|
---|
591 | * by a relocation round (intermediate context finalization will do this).
|
---|
592 | */
|
---|
593 | rc = vmR3InitRing3(pVM, pUVM);
|
---|
594 | if (RT_SUCCESS(rc))
|
---|
595 | {
|
---|
596 | rc = vmR3InitVMCpu(pVM);
|
---|
597 | if (RT_SUCCESS(rc))
|
---|
598 | rc = PGMR3FinalizeMappings(pVM);
|
---|
599 | if (RT_SUCCESS(rc))
|
---|
600 | {
|
---|
601 |
|
---|
602 | LogFlow(("Ring-3 init succeeded\n"));
|
---|
603 |
|
---|
604 | /*
|
---|
605 | * Init the Ring-0 components.
|
---|
606 | */
|
---|
607 | rc = vmR3InitRing0(pVM);
|
---|
608 | if (RT_SUCCESS(rc))
|
---|
609 | {
|
---|
610 | /* Relocate again, because some switcher fixups depends on R0 init results. */
|
---|
611 | VMR3Relocate(pVM, 0);
|
---|
612 |
|
---|
613 | #ifdef VBOX_WITH_DEBUGGER
|
---|
614 | /*
|
---|
615 | * Init the tcp debugger console if we're building
|
---|
616 | * with debugger support.
|
---|
617 | */
|
---|
618 | void *pvUser = NULL;
|
---|
619 | rc = DBGCTcpCreate(pVM, &pvUser);
|
---|
620 | if ( RT_SUCCESS(rc)
|
---|
621 | || rc == VERR_NET_ADDRESS_IN_USE)
|
---|
622 | {
|
---|
623 | pUVM->vm.s.pvDBGC = pvUser;
|
---|
624 | #endif
|
---|
625 | /*
|
---|
626 | * Init the Guest Context components.
|
---|
627 | */
|
---|
628 | rc = vmR3InitGC(pVM);
|
---|
629 | if (RT_SUCCESS(rc))
|
---|
630 | {
|
---|
631 | /*
|
---|
632 | * Now we can safely set the VM halt method to default.
|
---|
633 | */
|
---|
634 | rc = vmR3SetHaltMethodU(pUVM, VMHALTMETHOD_DEFAULT);
|
---|
635 | if (RT_SUCCESS(rc))
|
---|
636 | {
|
---|
637 | /*
|
---|
638 | * Set the state and link into the global list.
|
---|
639 | */
|
---|
640 | vmR3SetState(pVM, VMSTATE_CREATED);
|
---|
641 | pUVM->pNext = g_pUVMsHead;
|
---|
642 | g_pUVMsHead = pUVM;
|
---|
643 | return VINF_SUCCESS;
|
---|
644 | }
|
---|
645 | }
|
---|
646 | #ifdef VBOX_WITH_DEBUGGER
|
---|
647 | DBGCTcpTerminate(pVM, pUVM->vm.s.pvDBGC);
|
---|
648 | pUVM->vm.s.pvDBGC = NULL;
|
---|
649 | }
|
---|
650 | #endif
|
---|
651 | //..
|
---|
652 | }
|
---|
653 | }
|
---|
654 | vmR3Destroy(pVM);
|
---|
655 | }
|
---|
656 | }
|
---|
657 | //..
|
---|
658 |
|
---|
659 | /* Clean CFGM. */
|
---|
660 | int rc2 = CFGMR3Term(pVM);
|
---|
661 | AssertRC(rc2);
|
---|
662 | }
|
---|
663 |
|
---|
664 | /* Tell GVMM that it can destroy the VM now. */
|
---|
665 | int rc2 = SUPCallVMMR0Ex(CreateVMReq.pVMR0, 0 /* VCPU 0 */, VMMR0_DO_GVMM_DESTROY_VM, 0, NULL);
|
---|
666 | AssertRC(rc2);
|
---|
667 | pUVM->pVM = NULL;
|
---|
668 | }
|
---|
669 | else
|
---|
670 | vmR3SetErrorU(pUVM, rc, RT_SRC_POS, N_("VM creation failed (GVMM)"));
|
---|
671 |
|
---|
672 | LogFlow(("vmR3Create: returns %Rrc\n", rc));
|
---|
673 | return rc;
|
---|
674 | }
|
---|
675 |
|
---|
676 |
|
---|
677 | /**
|
---|
678 | * Register the calling EMT with GVM.
|
---|
679 | *
|
---|
680 | * @returns VBox status code.
|
---|
681 | * @param pVM The VM handle.
|
---|
682 | * @param idCpu The Virtual CPU ID.
|
---|
683 | */
|
---|
684 | static DECLCALLBACK(int) vmR3RegisterEMT(PVM pVM, VMCPUID idCpu)
|
---|
685 | {
|
---|
686 | Assert(VMMGetCpuId(pVM) == idCpu);
|
---|
687 | int rc = SUPCallVMMR0Ex(pVM->pVMR0, idCpu, VMMR0_DO_GVMM_REGISTER_VMCPU, 0, NULL);
|
---|
688 | if (RT_FAILURE(rc))
|
---|
689 | LogRel(("idCpu=%u rc=%Rrc\n", idCpu, rc));
|
---|
690 | return rc;
|
---|
691 | }
|
---|
692 |
|
---|
693 |
|
---|
694 | /**
|
---|
695 | * Initializes all R3 components of the VM
|
---|
696 | */
|
---|
697 | static int vmR3InitRing3(PVM pVM, PUVM pUVM)
|
---|
698 | {
|
---|
699 | int rc;
|
---|
700 |
|
---|
701 | /*
|
---|
702 | * Register the other EMTs with GVM.
|
---|
703 | */
|
---|
704 | for (VMCPUID idCpu = 1; idCpu < pVM->cCPUs; idCpu++)
|
---|
705 | {
|
---|
706 | PVMREQ pReq;
|
---|
707 | rc = VMR3ReqCallU(pUVM, idCpu, &pReq, RT_INDEFINITE_WAIT, 0 /*fFlags*/,
|
---|
708 | (PFNRT)vmR3RegisterEMT, 2, pVM, idCpu);
|
---|
709 | if (RT_SUCCESS(rc))
|
---|
710 | rc = pReq->iStatus;
|
---|
711 | VMR3ReqFree(pReq);
|
---|
712 | if (RT_FAILURE(rc))
|
---|
713 | return rc;
|
---|
714 | }
|
---|
715 |
|
---|
716 | /*
|
---|
717 | * Init all R3 components, the order here might be important.
|
---|
718 | */
|
---|
719 | rc = MMR3Init(pVM);
|
---|
720 | if (RT_SUCCESS(rc))
|
---|
721 | {
|
---|
722 | STAM_REG(pVM, &pVM->StatTotalInGC, STAMTYPE_PROFILE_ADV, "/PROF/VM/InGC", STAMUNIT_TICKS_PER_CALL, "Profiling the total time spent in GC.");
|
---|
723 | STAM_REG(pVM, &pVM->StatSwitcherToGC, STAMTYPE_PROFILE_ADV, "/PROF/VM/SwitchToGC", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
724 | STAM_REG(pVM, &pVM->StatSwitcherToHC, STAMTYPE_PROFILE_ADV, "/PROF/VM/SwitchToHC", STAMUNIT_TICKS_PER_CALL, "Profiling switching to HC.");
|
---|
725 | STAM_REG(pVM, &pVM->StatSwitcherSaveRegs, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/SaveRegs", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
|
---|
726 | STAM_REG(pVM, &pVM->StatSwitcherSysEnter, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/SysEnter", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
|
---|
727 | STAM_REG(pVM, &pVM->StatSwitcherDebug, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Debug", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
|
---|
728 | STAM_REG(pVM, &pVM->StatSwitcherCR0, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/CR0", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
729 | STAM_REG(pVM, &pVM->StatSwitcherCR4, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/CR4", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
730 | STAM_REG(pVM, &pVM->StatSwitcherLgdt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lgdt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
731 | STAM_REG(pVM, &pVM->StatSwitcherLidt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lidt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
732 | STAM_REG(pVM, &pVM->StatSwitcherLldt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lldt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
733 | STAM_REG(pVM, &pVM->StatSwitcherTSS, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/TSS", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
|
---|
734 | STAM_REG(pVM, &pVM->StatSwitcherJmpCR3, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/JmpCR3", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
|
---|
735 | STAM_REG(pVM, &pVM->StatSwitcherRstrRegs, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/RstrRegs", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
|
---|
736 |
|
---|
737 | for (unsigned iCpu=0;iCpu<pVM->cCPUs;iCpu++)
|
---|
738 | {
|
---|
739 | rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltYield, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state yielding.", "/PROF/VM/CPU%d/Halt/Yield", iCpu);
|
---|
740 | AssertRC(rc);
|
---|
741 | rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltBlock, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state blocking.", "/PROF/VM/CPU%d/Halt/Block", iCpu);
|
---|
742 | AssertRC(rc);
|
---|
743 | rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltTimers, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state timer tasks.", "/PROF/VM/CPU%d/Halt/Timers", iCpu);
|
---|
744 | AssertRC(rc);
|
---|
745 | }
|
---|
746 |
|
---|
747 | STAM_REG(pVM, &pUVM->vm.s.StatReqAllocNew, STAMTYPE_COUNTER, "/VM/Req/AllocNew", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc returning a new packet.");
|
---|
748 | STAM_REG(pVM, &pUVM->vm.s.StatReqAllocRaces, STAMTYPE_COUNTER, "/VM/Req/AllocRaces", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc causing races.");
|
---|
749 | STAM_REG(pVM, &pUVM->vm.s.StatReqAllocRecycled, STAMTYPE_COUNTER, "/VM/Req/AllocRecycled", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc returning a recycled packet.");
|
---|
750 | STAM_REG(pVM, &pUVM->vm.s.StatReqFree, STAMTYPE_COUNTER, "/VM/Req/Free", STAMUNIT_OCCURENCES, "Number of VMR3ReqFree calls.");
|
---|
751 | STAM_REG(pVM, &pUVM->vm.s.StatReqFreeOverflow, STAMTYPE_COUNTER, "/VM/Req/FreeOverflow", STAMUNIT_OCCURENCES, "Number of times the request was actually freed.");
|
---|
752 |
|
---|
753 | rc = CPUMR3Init(pVM);
|
---|
754 | if (RT_SUCCESS(rc))
|
---|
755 | {
|
---|
756 | rc = HWACCMR3Init(pVM);
|
---|
757 | if (RT_SUCCESS(rc))
|
---|
758 | {
|
---|
759 | rc = PGMR3Init(pVM);
|
---|
760 | if (RT_SUCCESS(rc))
|
---|
761 | {
|
---|
762 | rc = REMR3Init(pVM);
|
---|
763 | if (RT_SUCCESS(rc))
|
---|
764 | {
|
---|
765 | rc = MMR3InitPaging(pVM);
|
---|
766 | if (RT_SUCCESS(rc))
|
---|
767 | rc = TMR3Init(pVM);
|
---|
768 | if (RT_SUCCESS(rc))
|
---|
769 | {
|
---|
770 | rc = VMMR3Init(pVM);
|
---|
771 | if (RT_SUCCESS(rc))
|
---|
772 | {
|
---|
773 | rc = SELMR3Init(pVM);
|
---|
774 | if (RT_SUCCESS(rc))
|
---|
775 | {
|
---|
776 | rc = TRPMR3Init(pVM);
|
---|
777 | if (RT_SUCCESS(rc))
|
---|
778 | {
|
---|
779 | rc = CSAMR3Init(pVM);
|
---|
780 | if (RT_SUCCESS(rc))
|
---|
781 | {
|
---|
782 | rc = PATMR3Init(pVM);
|
---|
783 | if (RT_SUCCESS(rc))
|
---|
784 | {
|
---|
785 | #ifdef VBOX_WITH_VMI
|
---|
786 | rc = PARAVR3Init(pVM);
|
---|
787 | if (RT_SUCCESS(rc))
|
---|
788 | {
|
---|
789 | #endif
|
---|
790 | rc = IOMR3Init(pVM);
|
---|
791 | if (RT_SUCCESS(rc))
|
---|
792 | {
|
---|
793 | rc = EMR3Init(pVM);
|
---|
794 | if (RT_SUCCESS(rc))
|
---|
795 | {
|
---|
796 | rc = DBGFR3Init(pVM);
|
---|
797 | if (RT_SUCCESS(rc))
|
---|
798 | {
|
---|
799 | rc = PDMR3Init(pVM);
|
---|
800 | if (RT_SUCCESS(rc))
|
---|
801 | {
|
---|
802 | rc = PGMR3InitDynMap(pVM);
|
---|
803 | if (RT_SUCCESS(rc))
|
---|
804 | rc = MMR3HyperInitFinalize(pVM);
|
---|
805 | if (RT_SUCCESS(rc))
|
---|
806 | rc = PATMR3InitFinalize(pVM);
|
---|
807 | if (RT_SUCCESS(rc))
|
---|
808 | rc = PGMR3InitFinalize(pVM);
|
---|
809 | if (RT_SUCCESS(rc))
|
---|
810 | rc = SELMR3InitFinalize(pVM);
|
---|
811 | if (RT_SUCCESS(rc))
|
---|
812 | rc = TMR3InitFinalize(pVM);
|
---|
813 | if (RT_SUCCESS(rc))
|
---|
814 | rc = VMMR3InitFinalize(pVM);
|
---|
815 | if (RT_SUCCESS(rc))
|
---|
816 | rc = REMR3InitFinalize(pVM);
|
---|
817 | if (RT_SUCCESS(rc))
|
---|
818 | rc = vmR3InitDoCompleted(pVM, VMINITCOMPLETED_RING3);
|
---|
819 | if (RT_SUCCESS(rc))
|
---|
820 | {
|
---|
821 | LogFlow(("vmR3InitRing3: returns %Rrc\n", VINF_SUCCESS));
|
---|
822 | return VINF_SUCCESS;
|
---|
823 | }
|
---|
824 | int rc2 = PDMR3Term(pVM);
|
---|
825 | AssertRC(rc2);
|
---|
826 | }
|
---|
827 | int rc2 = DBGFR3Term(pVM);
|
---|
828 | AssertRC(rc2);
|
---|
829 | }
|
---|
830 | int rc2 = EMR3Term(pVM);
|
---|
831 | AssertRC(rc2);
|
---|
832 | }
|
---|
833 | int rc2 = IOMR3Term(pVM);
|
---|
834 | AssertRC(rc2);
|
---|
835 | }
|
---|
836 | #ifdef VBOX_WITH_VMI
|
---|
837 | int rc2 = PARAVR3Term(pVM);
|
---|
838 | AssertRC(rc2);
|
---|
839 | }
|
---|
840 | #endif
|
---|
841 | int rc2 = PATMR3Term(pVM);
|
---|
842 | AssertRC(rc2);
|
---|
843 | }
|
---|
844 | int rc2 = CSAMR3Term(pVM);
|
---|
845 | AssertRC(rc2);
|
---|
846 | }
|
---|
847 | int rc2 = TRPMR3Term(pVM);
|
---|
848 | AssertRC(rc2);
|
---|
849 | }
|
---|
850 | int rc2 = SELMR3Term(pVM);
|
---|
851 | AssertRC(rc2);
|
---|
852 | }
|
---|
853 | int rc2 = VMMR3Term(pVM);
|
---|
854 | AssertRC(rc2);
|
---|
855 | }
|
---|
856 | int rc2 = TMR3Term(pVM);
|
---|
857 | AssertRC(rc2);
|
---|
858 | }
|
---|
859 | int rc2 = REMR3Term(pVM);
|
---|
860 | AssertRC(rc2);
|
---|
861 | }
|
---|
862 | int rc2 = PGMR3Term(pVM);
|
---|
863 | AssertRC(rc2);
|
---|
864 | }
|
---|
865 | int rc2 = HWACCMR3Term(pVM);
|
---|
866 | AssertRC(rc2);
|
---|
867 | }
|
---|
868 | //int rc2 = CPUMR3Term(pVM);
|
---|
869 | //AssertRC(rc2);
|
---|
870 | }
|
---|
871 | /* MMR3Term is not called here because it'll kill the heap. */
|
---|
872 | }
|
---|
873 |
|
---|
874 | LogFlow(("vmR3InitRing3: returns %Rrc\n", rc));
|
---|
875 | return rc;
|
---|
876 | }
|
---|
877 |
|
---|
878 |
|
---|
879 | /**
|
---|
880 | * Initializes all VM CPU components of the VM
|
---|
881 | */
|
---|
882 | static int vmR3InitVMCpu(PVM pVM)
|
---|
883 | {
|
---|
884 | int rc = VINF_SUCCESS;
|
---|
885 | int rc2;
|
---|
886 |
|
---|
887 | rc = CPUMR3InitCPU(pVM);
|
---|
888 | if (RT_SUCCESS(rc))
|
---|
889 | {
|
---|
890 | rc = HWACCMR3InitCPU(pVM);
|
---|
891 | if (RT_SUCCESS(rc))
|
---|
892 | {
|
---|
893 | rc = PGMR3InitCPU(pVM);
|
---|
894 | if (RT_SUCCESS(rc))
|
---|
895 | {
|
---|
896 | rc = TMR3InitCPU(pVM);
|
---|
897 | if (RT_SUCCESS(rc))
|
---|
898 | {
|
---|
899 | rc = VMMR3InitCPU(pVM);
|
---|
900 | if (RT_SUCCESS(rc))
|
---|
901 | {
|
---|
902 | rc = EMR3InitCPU(pVM);
|
---|
903 | if (RT_SUCCESS(rc))
|
---|
904 | {
|
---|
905 | LogFlow(("vmR3InitVMCpu: returns %Rrc\n", VINF_SUCCESS));
|
---|
906 | return VINF_SUCCESS;
|
---|
907 | }
|
---|
908 |
|
---|
909 | rc2 = VMMR3TermCPU(pVM);
|
---|
910 | AssertRC(rc2);
|
---|
911 | }
|
---|
912 | rc2 = TMR3TermCPU(pVM);
|
---|
913 | AssertRC(rc2);
|
---|
914 | }
|
---|
915 | rc2 = PGMR3TermCPU(pVM);
|
---|
916 | AssertRC(rc2);
|
---|
917 | }
|
---|
918 | rc2 = HWACCMR3TermCPU(pVM);
|
---|
919 | AssertRC(rc2);
|
---|
920 | }
|
---|
921 | rc2 = CPUMR3TermCPU(pVM);
|
---|
922 | AssertRC(rc2);
|
---|
923 | }
|
---|
924 | LogFlow(("vmR3InitVMCpu: returns %Rrc\n", rc));
|
---|
925 | return rc;
|
---|
926 | }
|
---|
927 |
|
---|
928 |
|
---|
929 | /**
|
---|
930 | * Initializes all R0 components of the VM
|
---|
931 | */
|
---|
932 | static int vmR3InitRing0(PVM pVM)
|
---|
933 | {
|
---|
934 | LogFlow(("vmR3InitRing0:\n"));
|
---|
935 |
|
---|
936 | /*
|
---|
937 | * Check for FAKE suplib mode.
|
---|
938 | */
|
---|
939 | int rc = VINF_SUCCESS;
|
---|
940 | const char *psz = RTEnvGet("VBOX_SUPLIB_FAKE");
|
---|
941 | if (!psz || strcmp(psz, "fake"))
|
---|
942 | {
|
---|
943 | /*
|
---|
944 | * Call the VMMR0 component and let it do the init.
|
---|
945 | */
|
---|
946 | rc = VMMR3InitR0(pVM);
|
---|
947 | }
|
---|
948 | else
|
---|
949 | Log(("vmR3InitRing0: skipping because of VBOX_SUPLIB_FAKE=fake\n"));
|
---|
950 |
|
---|
951 | /*
|
---|
952 | * Do notifications and return.
|
---|
953 | */
|
---|
954 | if (RT_SUCCESS(rc))
|
---|
955 | rc = vmR3InitDoCompleted(pVM, VMINITCOMPLETED_RING0);
|
---|
956 |
|
---|
957 | /** todo: move this to the VMINITCOMPLETED_RING0 notification handler once implemented */
|
---|
958 | if (RT_SUCCESS(rc))
|
---|
959 | rc = HWACCMR3InitFinalizeR0(pVM);
|
---|
960 |
|
---|
961 | LogFlow(("vmR3InitRing0: returns %Rrc\n", rc));
|
---|
962 | return rc;
|
---|
963 | }
|
---|
964 |
|
---|
965 |
|
---|
966 | /**
|
---|
967 | * Initializes all GC components of the VM
|
---|
968 | */
|
---|
969 | static int vmR3InitGC(PVM pVM)
|
---|
970 | {
|
---|
971 | LogFlow(("vmR3InitGC:\n"));
|
---|
972 |
|
---|
973 | /*
|
---|
974 | * Check for FAKE suplib mode.
|
---|
975 | */
|
---|
976 | int rc = VINF_SUCCESS;
|
---|
977 | const char *psz = RTEnvGet("VBOX_SUPLIB_FAKE");
|
---|
978 | if (!psz || strcmp(psz, "fake"))
|
---|
979 | {
|
---|
980 | /*
|
---|
981 | * Call the VMMR0 component and let it do the init.
|
---|
982 | */
|
---|
983 | rc = VMMR3InitRC(pVM);
|
---|
984 | }
|
---|
985 | else
|
---|
986 | Log(("vmR3InitGC: skipping because of VBOX_SUPLIB_FAKE=fake\n"));
|
---|
987 |
|
---|
988 | /*
|
---|
989 | * Do notifications and return.
|
---|
990 | */
|
---|
991 | if (RT_SUCCESS(rc))
|
---|
992 | rc = vmR3InitDoCompleted(pVM, VMINITCOMPLETED_GC);
|
---|
993 | LogFlow(("vmR3InitGC: returns %Rrc\n", rc));
|
---|
994 | return rc;
|
---|
995 | }
|
---|
996 |
|
---|
997 |
|
---|
998 | /**
|
---|
999 | * Do init completed notifications.
|
---|
1000 | * This notifications can fail.
|
---|
1001 | *
|
---|
1002 | * @param pVM The VM handle.
|
---|
1003 | * @param enmWhat What's completed.
|
---|
1004 | */
|
---|
1005 | static int vmR3InitDoCompleted(PVM pVM, VMINITCOMPLETED enmWhat)
|
---|
1006 | {
|
---|
1007 | return VINF_SUCCESS;
|
---|
1008 | }
|
---|
1009 |
|
---|
1010 |
|
---|
1011 | /**
|
---|
1012 | * Calls the relocation functions for all VMM components so they can update
|
---|
1013 | * any GC pointers. When this function is called all the basic VM members
|
---|
1014 | * have been updated and the actual memory relocation have been done
|
---|
1015 | * by the PGM/MM.
|
---|
1016 | *
|
---|
1017 | * This is used both on init and on runtime relocations.
|
---|
1018 | *
|
---|
1019 | * @param pVM VM handle.
|
---|
1020 | * @param offDelta Relocation delta relative to old location.
|
---|
1021 | */
|
---|
1022 | VMMR3DECL(void) VMR3Relocate(PVM pVM, RTGCINTPTR offDelta)
|
---|
1023 | {
|
---|
1024 | LogFlow(("VMR3Relocate: offDelta=%RGv\n", offDelta));
|
---|
1025 |
|
---|
1026 | /*
|
---|
1027 | * The order here is very important!
|
---|
1028 | */
|
---|
1029 | PGMR3Relocate(pVM, offDelta);
|
---|
1030 | PDMR3LdrRelocateU(pVM->pUVM, offDelta);
|
---|
1031 | PGMR3Relocate(pVM, 0); /* Repeat after PDM relocation. */
|
---|
1032 | CPUMR3Relocate(pVM);
|
---|
1033 | HWACCMR3Relocate(pVM);
|
---|
1034 | SELMR3Relocate(pVM);
|
---|
1035 | VMMR3Relocate(pVM, offDelta);
|
---|
1036 | SELMR3Relocate(pVM); /* !hack! fix stack! */
|
---|
1037 | TRPMR3Relocate(pVM, offDelta);
|
---|
1038 | PATMR3Relocate(pVM);
|
---|
1039 | CSAMR3Relocate(pVM, offDelta);
|
---|
1040 | IOMR3Relocate(pVM, offDelta);
|
---|
1041 | EMR3Relocate(pVM);
|
---|
1042 | TMR3Relocate(pVM, offDelta);
|
---|
1043 | DBGFR3Relocate(pVM, offDelta);
|
---|
1044 | PDMR3Relocate(pVM, offDelta);
|
---|
1045 | }
|
---|
1046 |
|
---|
1047 |
|
---|
1048 | /**
|
---|
1049 | * Power on the virtual machine.
|
---|
1050 | *
|
---|
1051 | * @returns 0 on success.
|
---|
1052 | * @returns VBox error code on failure.
|
---|
1053 | * @param pVM VM to power on.
|
---|
1054 | * @thread Any thread.
|
---|
1055 | * @vmstate Created
|
---|
1056 | * @vmstateto Running
|
---|
1057 | */
|
---|
1058 | VMMR3DECL(int) VMR3PowerOn(PVM pVM)
|
---|
1059 | {
|
---|
1060 | LogFlow(("VMR3PowerOn: pVM=%p\n", pVM));
|
---|
1061 |
|
---|
1062 | /*
|
---|
1063 | * Validate input.
|
---|
1064 | */
|
---|
1065 | if (!pVM)
|
---|
1066 | {
|
---|
1067 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1068 | return VERR_INVALID_PARAMETER;
|
---|
1069 | }
|
---|
1070 |
|
---|
1071 | /*
|
---|
1072 | * Request the operation in EMT (in order as VCPU 0 does all the work)
|
---|
1073 | */
|
---|
1074 | PVMREQ pReq;
|
---|
1075 | int rc = VMR3ReqCall(pVM, VMCPUID_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3PowerOn, 1, pVM);
|
---|
1076 | if (RT_SUCCESS(rc))
|
---|
1077 | {
|
---|
1078 | rc = pReq->iStatus;
|
---|
1079 | VMR3ReqFree(pReq);
|
---|
1080 | }
|
---|
1081 |
|
---|
1082 | LogFlow(("VMR3PowerOn: returns %Rrc\n", rc));
|
---|
1083 | return rc;
|
---|
1084 | }
|
---|
1085 |
|
---|
1086 |
|
---|
1087 | /**
|
---|
1088 | * Power on the virtual machine.
|
---|
1089 | *
|
---|
1090 | * @returns 0 on success.
|
---|
1091 | * @returns VBox error code on failure.
|
---|
1092 | * @param pVM VM to power on.
|
---|
1093 | * @thread EMT
|
---|
1094 | */
|
---|
1095 | static DECLCALLBACK(int) vmR3PowerOn(PVM pVM)
|
---|
1096 | {
|
---|
1097 | LogFlow(("vmR3PowerOn: pVM=%p\n", pVM));
|
---|
1098 |
|
---|
1099 | /*
|
---|
1100 | * EMT(0) does the actual power on work *before* the other EMTs
|
---|
1101 | * get here, they just need to set their state to STARTED so they
|
---|
1102 | * get out of the EMT loop and into EM.
|
---|
1103 | */
|
---|
1104 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1105 | VMCPU_SET_STATE(pVCpu, VMCPUSTATE_STARTED);
|
---|
1106 | if (pVCpu->idCpu != 0)
|
---|
1107 | return VINF_SUCCESS;
|
---|
1108 |
|
---|
1109 | /*
|
---|
1110 | * Validate input.
|
---|
1111 | */
|
---|
1112 | if (pVM->enmVMState != VMSTATE_CREATED)
|
---|
1113 | {
|
---|
1114 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1115 | return VERR_VM_INVALID_VM_STATE;
|
---|
1116 | }
|
---|
1117 |
|
---|
1118 | /*
|
---|
1119 | * Change the state, notify the components and resume the execution.
|
---|
1120 | */
|
---|
1121 | vmR3SetState(pVM, VMSTATE_RUNNING);
|
---|
1122 | PDMR3PowerOn(pVM);
|
---|
1123 |
|
---|
1124 | return VINF_SUCCESS;
|
---|
1125 | }
|
---|
1126 |
|
---|
1127 |
|
---|
1128 | /**
|
---|
1129 | * Suspends a running VM.
|
---|
1130 | *
|
---|
1131 | * @returns 0 on success.
|
---|
1132 | * @returns VBox error code on failure.
|
---|
1133 | * @param pVM VM to suspend.
|
---|
1134 | * @thread Any thread.
|
---|
1135 | * @vmstate Running
|
---|
1136 | * @vmstateto Suspended
|
---|
1137 | */
|
---|
1138 | VMMR3DECL(int) VMR3Suspend(PVM pVM)
|
---|
1139 | {
|
---|
1140 | LogFlow(("VMR3Suspend: pVM=%p\n", pVM));
|
---|
1141 |
|
---|
1142 | /*
|
---|
1143 | * Validate input.
|
---|
1144 | */
|
---|
1145 | if (!pVM)
|
---|
1146 | {
|
---|
1147 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1148 | return VERR_INVALID_PARAMETER;
|
---|
1149 | }
|
---|
1150 |
|
---|
1151 | /*
|
---|
1152 | * Request the operation in EMT. (in reverse order as VCPU 0 does the actual work)
|
---|
1153 | */
|
---|
1154 | PVMREQ pReq = NULL;
|
---|
1155 | int rc = VMR3ReqCall(pVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Suspend, 1, pVM);
|
---|
1156 | if (RT_SUCCESS(rc))
|
---|
1157 | {
|
---|
1158 | rc = pReq->iStatus;
|
---|
1159 | VMR3ReqFree(pReq);
|
---|
1160 | }
|
---|
1161 | else
|
---|
1162 | Assert(pReq == NULL);
|
---|
1163 |
|
---|
1164 | LogFlow(("VMR3Suspend: returns %Rrc\n", rc));
|
---|
1165 | return rc;
|
---|
1166 | }
|
---|
1167 |
|
---|
1168 |
|
---|
1169 | /**
|
---|
1170 | * Suspends a running VM and prevent state saving until the VM is resumed or stopped.
|
---|
1171 | *
|
---|
1172 | * @returns 0 on success.
|
---|
1173 | * @returns VBox error code on failure.
|
---|
1174 | * @param pVM VM to suspend.
|
---|
1175 | * @thread Any thread.
|
---|
1176 | * @vmstate Running
|
---|
1177 | * @vmstateto Suspended
|
---|
1178 | */
|
---|
1179 | VMMR3DECL(int) VMR3SuspendNoSave(PVM pVM)
|
---|
1180 | {
|
---|
1181 | pVM->vm.s.fPreventSaveState = true;
|
---|
1182 | return VMR3Suspend(pVM);
|
---|
1183 | }
|
---|
1184 |
|
---|
1185 |
|
---|
1186 | /**
|
---|
1187 | * Suspends a running VM.
|
---|
1188 | *
|
---|
1189 | * @returns 0 on success.
|
---|
1190 | * @returns VBox error code on failure.
|
---|
1191 | * @param pVM VM to suspend.
|
---|
1192 | * @thread EMT
|
---|
1193 | */
|
---|
1194 | static DECLCALLBACK(int) vmR3Suspend(PVM pVM)
|
---|
1195 | {
|
---|
1196 | LogFlow(("vmR3Suspend: pVM=%p\n", pVM));
|
---|
1197 |
|
---|
1198 | /*
|
---|
1199 | * Validate input.
|
---|
1200 | */
|
---|
1201 | if (pVM->enmVMState != VMSTATE_RUNNING)
|
---|
1202 | {
|
---|
1203 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1204 | return VERR_VM_INVALID_VM_STATE;
|
---|
1205 | }
|
---|
1206 |
|
---|
1207 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1208 | /* Only VCPU 0 does the actual work (*after* all the other CPUs has been here). */
|
---|
1209 | if (pVCpu->idCpu != 0)
|
---|
1210 | return VINF_EM_SUSPEND;
|
---|
1211 |
|
---|
1212 | /*
|
---|
1213 | * Change the state, notify the components and resume the execution.
|
---|
1214 | */
|
---|
1215 | vmR3SetState(pVM, VMSTATE_SUSPENDED);
|
---|
1216 | PDMR3Suspend(pVM);
|
---|
1217 |
|
---|
1218 | return VINF_EM_SUSPEND;
|
---|
1219 | }
|
---|
1220 |
|
---|
1221 |
|
---|
1222 | /**
|
---|
1223 | * Resume VM execution.
|
---|
1224 | *
|
---|
1225 | * @returns 0 on success.
|
---|
1226 | * @returns VBox error code on failure.
|
---|
1227 | * @param pVM The VM to resume.
|
---|
1228 | * @thread Any thread.
|
---|
1229 | * @vmstate Suspended
|
---|
1230 | * @vmstateto Running
|
---|
1231 | */
|
---|
1232 | VMMR3DECL(int) VMR3Resume(PVM pVM)
|
---|
1233 | {
|
---|
1234 | LogFlow(("VMR3Resume: pVM=%p\n", pVM));
|
---|
1235 |
|
---|
1236 | /*
|
---|
1237 | * Validate input.
|
---|
1238 | */
|
---|
1239 | if (!pVM)
|
---|
1240 | {
|
---|
1241 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1242 | return VERR_INVALID_PARAMETER;
|
---|
1243 | }
|
---|
1244 |
|
---|
1245 | /*
|
---|
1246 | * Request the operation in EMT. (in VCPU order as VCPU 0 does the actual work)
|
---|
1247 | */
|
---|
1248 | PVMREQ pReq = NULL;
|
---|
1249 | int rc = VMR3ReqCall(pVM, VMCPUID_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Resume, 1, pVM);
|
---|
1250 | if (RT_SUCCESS(rc))
|
---|
1251 | {
|
---|
1252 | rc = pReq->iStatus;
|
---|
1253 | VMR3ReqFree(pReq);
|
---|
1254 | }
|
---|
1255 | else
|
---|
1256 | Assert(pReq == NULL);
|
---|
1257 |
|
---|
1258 | LogFlow(("VMR3Resume: returns %Rrc\n", rc));
|
---|
1259 | return rc;
|
---|
1260 | }
|
---|
1261 |
|
---|
1262 |
|
---|
1263 | /**
|
---|
1264 | * Resume VM execution.
|
---|
1265 | *
|
---|
1266 | * @returns 0 on success.
|
---|
1267 | * @returns VBox error code on failure.
|
---|
1268 | * @param pVM The VM to resume.
|
---|
1269 | * @thread EMT
|
---|
1270 | */
|
---|
1271 | static DECLCALLBACK(int) vmR3Resume(PVM pVM)
|
---|
1272 | {
|
---|
1273 | LogFlow(("vmR3Resume: pVM=%p\n", pVM));
|
---|
1274 |
|
---|
1275 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1276 | /* Only VCPU 0 does the actual work (*before* the others wake up). */
|
---|
1277 | if (pVCpu->idCpu != 0)
|
---|
1278 | return VINF_EM_RESUME;
|
---|
1279 |
|
---|
1280 | /*
|
---|
1281 | * Validate input.
|
---|
1282 | */
|
---|
1283 | if (pVM->enmVMState != VMSTATE_SUSPENDED)
|
---|
1284 | {
|
---|
1285 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1286 | return VERR_VM_INVALID_VM_STATE;
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 | /*
|
---|
1290 | * Change the state, notify the components and resume the execution.
|
---|
1291 | */
|
---|
1292 | pVM->vm.s.fPreventSaveState = false;
|
---|
1293 | vmR3SetState(pVM, VMSTATE_RUNNING);
|
---|
1294 | PDMR3Resume(pVM);
|
---|
1295 |
|
---|
1296 | return VINF_EM_RESUME;
|
---|
1297 | }
|
---|
1298 |
|
---|
1299 |
|
---|
1300 | /**
|
---|
1301 | * Save current VM state.
|
---|
1302 | *
|
---|
1303 | * To save and terminate the VM, the VM must be suspended before the call.
|
---|
1304 | *
|
---|
1305 | * @returns 0 on success.
|
---|
1306 | * @returns VBox error code on failure.
|
---|
1307 | * @param pVM VM which state should be saved.
|
---|
1308 | * @param pszFilename Name of the save state file.
|
---|
1309 | * @param pfnProgress Progress callback. Optional.
|
---|
1310 | * @param pvUser User argument for the progress callback.
|
---|
1311 | * @thread Any thread.
|
---|
1312 | * @vmstate Suspended
|
---|
1313 | * @vmstateto Unchanged state.
|
---|
1314 | */
|
---|
1315 | VMMR3DECL(int) VMR3Save(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
|
---|
1316 | {
|
---|
1317 | LogFlow(("VMR3Save: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
|
---|
1318 |
|
---|
1319 | /*
|
---|
1320 | * Validate input.
|
---|
1321 | */
|
---|
1322 | if (!pVM)
|
---|
1323 | {
|
---|
1324 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1325 | return VERR_INVALID_PARAMETER;
|
---|
1326 | }
|
---|
1327 | if (!pszFilename)
|
---|
1328 | {
|
---|
1329 | AssertMsgFailed(("Must specify a filename to save the state to, wise guy!\n"));
|
---|
1330 | return VERR_INVALID_PARAMETER;
|
---|
1331 | }
|
---|
1332 |
|
---|
1333 | /*
|
---|
1334 | * Request the operation in EMT.
|
---|
1335 | */
|
---|
1336 | PVMREQ pReq;
|
---|
1337 | int rc = VMR3ReqCall(pVM, 0 /* VCPU 0 */, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Save, 4, pVM, pszFilename, pfnProgress, pvUser);
|
---|
1338 | if (RT_SUCCESS(rc))
|
---|
1339 | {
|
---|
1340 | rc = pReq->iStatus;
|
---|
1341 | VMR3ReqFree(pReq);
|
---|
1342 | }
|
---|
1343 |
|
---|
1344 | LogFlow(("VMR3Save: returns %Rrc\n", rc));
|
---|
1345 | return rc;
|
---|
1346 | }
|
---|
1347 |
|
---|
1348 |
|
---|
1349 | /**
|
---|
1350 | * Save current VM state.
|
---|
1351 | *
|
---|
1352 | * To save and terminate the VM, the VM must be suspended before the call.
|
---|
1353 | *
|
---|
1354 | * @returns 0 on success.
|
---|
1355 | * @returns VBox error code on failure.
|
---|
1356 | * @param pVM VM which state should be saved.
|
---|
1357 | * @param pszFilename Name of the save state file.
|
---|
1358 | * @param pfnProgress Progress callback. Optional.
|
---|
1359 | * @param pvUser User argument for the progress callback.
|
---|
1360 | * @thread EMT
|
---|
1361 | */
|
---|
1362 | static DECLCALLBACK(int) vmR3Save(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
|
---|
1363 | {
|
---|
1364 | LogFlow(("vmR3Save: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
|
---|
1365 |
|
---|
1366 | /*
|
---|
1367 | * Validate input.
|
---|
1368 | */
|
---|
1369 | if (pVM->enmVMState != VMSTATE_SUSPENDED)
|
---|
1370 | {
|
---|
1371 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1372 | return VERR_VM_INVALID_VM_STATE;
|
---|
1373 | }
|
---|
1374 |
|
---|
1375 | /* If we are in an inconsistent state, then we don't allow state saving. */
|
---|
1376 | if (pVM->vm.s.fPreventSaveState)
|
---|
1377 | {
|
---|
1378 | LogRel(("VMM: vmR3Save: saving the VM state is not allowed at this moment\n"));
|
---|
1379 | return VERR_VM_SAVE_STATE_NOT_ALLOWED;
|
---|
1380 | }
|
---|
1381 |
|
---|
1382 | /*
|
---|
1383 | * Change the state and perform the save.
|
---|
1384 | */
|
---|
1385 | vmR3SetState(pVM, VMSTATE_SAVING);
|
---|
1386 | int rc = SSMR3Save(pVM, pszFilename, SSMAFTER_CONTINUE, pfnProgress, pvUser);
|
---|
1387 | vmR3SetState(pVM, VMSTATE_SUSPENDED);
|
---|
1388 |
|
---|
1389 | return rc;
|
---|
1390 | }
|
---|
1391 |
|
---|
1392 |
|
---|
1393 | /**
|
---|
1394 | * Loads a new VM state.
|
---|
1395 | *
|
---|
1396 | * To restore a saved state on VM startup, call this function and then
|
---|
1397 | * resume the VM instead of powering it on.
|
---|
1398 | *
|
---|
1399 | * @returns 0 on success.
|
---|
1400 | * @returns VBox error code on failure.
|
---|
1401 | * @param pVM VM which state should be saved.
|
---|
1402 | * @param pszFilename Name of the save state file.
|
---|
1403 | * @param pfnProgress Progress callback. Optional.
|
---|
1404 | * @param pvUser User argument for the progress callback.
|
---|
1405 | * @thread Any thread.
|
---|
1406 | * @vmstate Created, Suspended
|
---|
1407 | * @vmstateto Suspended
|
---|
1408 | */
|
---|
1409 | VMMR3DECL(int) VMR3Load(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
|
---|
1410 | {
|
---|
1411 | LogFlow(("VMR3Load: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
|
---|
1412 |
|
---|
1413 | /*
|
---|
1414 | * Validate input.
|
---|
1415 | */
|
---|
1416 | if (!pVM)
|
---|
1417 | {
|
---|
1418 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1419 | return VERR_INVALID_PARAMETER;
|
---|
1420 | }
|
---|
1421 | if (!pszFilename)
|
---|
1422 | {
|
---|
1423 | AssertMsgFailed(("Must specify a filename to load the state from, wise guy!\n"));
|
---|
1424 | return VERR_INVALID_PARAMETER;
|
---|
1425 | }
|
---|
1426 |
|
---|
1427 | /*
|
---|
1428 | * Request the operation in EMT.
|
---|
1429 | */
|
---|
1430 | PVMREQ pReq;
|
---|
1431 | int rc = VMR3ReqCall(pVM, 0 /* VCPU 0 */, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Load, 4, pVM, pszFilename, pfnProgress, pvUser);
|
---|
1432 | if (RT_SUCCESS(rc))
|
---|
1433 | {
|
---|
1434 | rc = pReq->iStatus;
|
---|
1435 | VMR3ReqFree(pReq);
|
---|
1436 | }
|
---|
1437 |
|
---|
1438 | LogFlow(("VMR3Load: returns %Rrc\n", rc));
|
---|
1439 | return rc;
|
---|
1440 | }
|
---|
1441 |
|
---|
1442 |
|
---|
1443 | /**
|
---|
1444 | * Loads a new VM state.
|
---|
1445 | *
|
---|
1446 | * To restore a saved state on VM startup, call this function and then
|
---|
1447 | * resume the VM instead of powering it on.
|
---|
1448 | *
|
---|
1449 | * @returns 0 on success.
|
---|
1450 | * @returns VBox error code on failure.
|
---|
1451 | * @param pVM VM which state should be saved.
|
---|
1452 | * @param pszFilename Name of the save state file.
|
---|
1453 | * @param pfnProgress Progress callback. Optional.
|
---|
1454 | * @param pvUser User argument for the progress callback.
|
---|
1455 | * @thread EMT.
|
---|
1456 | */
|
---|
1457 | static DECLCALLBACK(int) vmR3Load(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
|
---|
1458 | {
|
---|
1459 | LogFlow(("vmR3Load: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
|
---|
1460 |
|
---|
1461 | /*
|
---|
1462 | * Validate input.
|
---|
1463 | */
|
---|
1464 | if ( pVM->enmVMState != VMSTATE_SUSPENDED
|
---|
1465 | && pVM->enmVMState != VMSTATE_CREATED)
|
---|
1466 | {
|
---|
1467 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1468 | return VMSetError(pVM, VERR_VM_INVALID_VM_STATE, RT_SRC_POS, N_("Invalid VM state (%s) for restoring state from '%s'"),
|
---|
1469 | VMR3GetStateName(pVM->enmVMState), pszFilename);
|
---|
1470 | }
|
---|
1471 |
|
---|
1472 | /*
|
---|
1473 | * Change the state and perform the load.
|
---|
1474 | */
|
---|
1475 | vmR3SetState(pVM, VMSTATE_LOADING);
|
---|
1476 | int rc = SSMR3Load(pVM, pszFilename, SSMAFTER_RESUME, pfnProgress, pvUser);
|
---|
1477 | if (RT_SUCCESS(rc))
|
---|
1478 | {
|
---|
1479 | /* Not paranoia anymore; the saved guest might use different hypervisor selectors. We must call VMR3Relocate. */
|
---|
1480 | VMR3Relocate(pVM, 0);
|
---|
1481 | vmR3SetState(pVM, VMSTATE_SUSPENDED);
|
---|
1482 | }
|
---|
1483 | else
|
---|
1484 | {
|
---|
1485 | vmR3SetState(pVM, VMSTATE_LOAD_FAILURE);
|
---|
1486 | rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Unable to restore the virtual machine's saved state from '%s'. It may be damaged or from an older version of VirtualBox. Please discard the saved state before starting the virtual machine"), pszFilename);
|
---|
1487 | }
|
---|
1488 |
|
---|
1489 | return rc;
|
---|
1490 | }
|
---|
1491 |
|
---|
1492 |
|
---|
1493 | /**
|
---|
1494 | * Power Off the VM.
|
---|
1495 | *
|
---|
1496 | * @returns 0 on success.
|
---|
1497 | * @returns VBox error code on failure.
|
---|
1498 | * @param pVM VM which should be destroyed.
|
---|
1499 | * @thread Any thread.
|
---|
1500 | * @vmstate Suspended, Running, Guru Meditation, Load Failure
|
---|
1501 | * @vmstateto Off
|
---|
1502 | */
|
---|
1503 | VMMR3DECL(int) VMR3PowerOff(PVM pVM)
|
---|
1504 | {
|
---|
1505 | LogFlow(("VMR3PowerOff: pVM=%p\n", pVM));
|
---|
1506 |
|
---|
1507 | /*
|
---|
1508 | * Validate input.
|
---|
1509 | */
|
---|
1510 | if (!pVM)
|
---|
1511 | {
|
---|
1512 | AssertMsgFailed(("Invalid VM pointer\n"));
|
---|
1513 | return VERR_INVALID_PARAMETER;
|
---|
1514 | }
|
---|
1515 |
|
---|
1516 | /*
|
---|
1517 | * Request the operation in EMT. (in reverse order as VCPU 0 does the actual work)
|
---|
1518 | */
|
---|
1519 | PVMREQ pReq = NULL;
|
---|
1520 | int rc = VMR3ReqCall(pVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3PowerOff, 1, pVM);
|
---|
1521 | if (RT_SUCCESS(rc))
|
---|
1522 | {
|
---|
1523 | rc = pReq->iStatus;
|
---|
1524 | VMR3ReqFree(pReq);
|
---|
1525 | }
|
---|
1526 | else
|
---|
1527 | Assert(pReq == NULL);
|
---|
1528 |
|
---|
1529 | LogFlow(("VMR3PowerOff: returns %Rrc\n", rc));
|
---|
1530 | return rc;
|
---|
1531 | }
|
---|
1532 |
|
---|
1533 |
|
---|
1534 | /**
|
---|
1535 | * Power Off the VM.
|
---|
1536 | *
|
---|
1537 | * @returns 0 on success.
|
---|
1538 | * @returns VBox error code on failure.
|
---|
1539 | * @param pVM VM which should be destroyed.
|
---|
1540 | * @thread EMT.
|
---|
1541 | */
|
---|
1542 | static DECLCALLBACK(int) vmR3PowerOff(PVM pVM)
|
---|
1543 | {
|
---|
1544 | LogFlow(("vmR3PowerOff: pVM=%p\n", pVM));
|
---|
1545 |
|
---|
1546 | /*
|
---|
1547 | * Validate input.
|
---|
1548 | */
|
---|
1549 | if ( pVM->enmVMState != VMSTATE_RUNNING
|
---|
1550 | && pVM->enmVMState != VMSTATE_SUSPENDED
|
---|
1551 | && pVM->enmVMState != VMSTATE_LOAD_FAILURE
|
---|
1552 | && pVM->enmVMState != VMSTATE_GURU_MEDITATION)
|
---|
1553 | {
|
---|
1554 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
1555 | return VERR_VM_INVALID_VM_STATE;
|
---|
1556 | }
|
---|
1557 |
|
---|
1558 | /*
|
---|
1559 | * EMT(0) does the actual power off work here *after* all the other EMTs
|
---|
1560 | * have been thru and entered the STOPPED state.
|
---|
1561 | */
|
---|
1562 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1563 | VMCPU_SET_STATE(pVCpu, VMCPUSTATE_STOPPED);
|
---|
1564 | if (pVCpu->idCpu != 0)
|
---|
1565 | return VINF_EM_OFF;
|
---|
1566 |
|
---|
1567 | /*
|
---|
1568 | * For debugging purposes, we will log a summary of the guest state at this point.
|
---|
1569 | */
|
---|
1570 | if (pVM->enmVMState != VMSTATE_GURU_MEDITATION)
|
---|
1571 | {
|
---|
1572 | /* @todo SMP support? */
|
---|
1573 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1574 |
|
---|
1575 | /** @todo make the state dumping at VMR3PowerOff optional. */
|
---|
1576 | RTLogRelPrintf("****************** Guest state at power off ******************\n");
|
---|
1577 | DBGFR3Info(pVM, "cpumguest", "verbose", DBGFR3InfoLogRelHlp());
|
---|
1578 | RTLogRelPrintf("***\n");
|
---|
1579 | DBGFR3Info(pVM, "mode", NULL, DBGFR3InfoLogRelHlp());
|
---|
1580 | RTLogRelPrintf("***\n");
|
---|
1581 | DBGFR3Info(pVM, "activetimers", NULL, DBGFR3InfoLogRelHlp());
|
---|
1582 | RTLogRelPrintf("***\n");
|
---|
1583 | DBGFR3Info(pVM, "gdt", NULL, DBGFR3InfoLogRelHlp());
|
---|
1584 | /** @todo dump guest call stack. */
|
---|
1585 | #if 1 // temporary while debugging #1589
|
---|
1586 | RTLogRelPrintf("***\n");
|
---|
1587 | uint32_t esp = CPUMGetGuestESP(pVCpu);
|
---|
1588 | if ( CPUMGetGuestSS(pVCpu) == 0
|
---|
1589 | && esp < _64K)
|
---|
1590 | {
|
---|
1591 | uint8_t abBuf[PAGE_SIZE];
|
---|
1592 | RTLogRelPrintf("***\n"
|
---|
1593 | "ss:sp=0000:%04x ", esp);
|
---|
1594 | uint32_t Start = esp & ~(uint32_t)63;
|
---|
1595 | int rc = PGMPhysSimpleReadGCPhys(pVM, abBuf, Start, 0x100);
|
---|
1596 | if (RT_SUCCESS(rc))
|
---|
1597 | RTLogRelPrintf("0000:%04x TO 0000:%04x:\n"
|
---|
1598 | "%.*Rhxd\n",
|
---|
1599 | Start, Start + 0x100 - 1,
|
---|
1600 | 0x100, abBuf);
|
---|
1601 | else
|
---|
1602 | RTLogRelPrintf("rc=%Rrc\n", rc);
|
---|
1603 |
|
---|
1604 | /* grub ... */
|
---|
1605 | if (esp < 0x2000 && esp > 0x1fc0)
|
---|
1606 | {
|
---|
1607 | rc = PGMPhysSimpleReadGCPhys(pVM, abBuf, 0x8000, 0x800);
|
---|
1608 | if (RT_SUCCESS(rc))
|
---|
1609 | RTLogRelPrintf("0000:8000 TO 0000:87ff:\n"
|
---|
1610 | "%.*Rhxd\n",
|
---|
1611 | 0x800, abBuf);
|
---|
1612 | }
|
---|
1613 | /* microsoft cdrom hang ... */
|
---|
1614 | if (true)
|
---|
1615 | {
|
---|
1616 | rc = PGMPhysSimpleReadGCPhys(pVM, abBuf, 0x8000, 0x200);
|
---|
1617 | if (RT_SUCCESS(rc))
|
---|
1618 | RTLogRelPrintf("2000:0000 TO 2000:01ff:\n"
|
---|
1619 | "%.*Rhxd\n",
|
---|
1620 | 0x200, abBuf);
|
---|
1621 | }
|
---|
1622 | }
|
---|
1623 | #endif
|
---|
1624 | RTLogRelPrintf("************** End of Guest state at power off ***************\n");
|
---|
1625 | }
|
---|
1626 |
|
---|
1627 | /*
|
---|
1628 | * Change the state to OFF and notify the components.
|
---|
1629 | */
|
---|
1630 | vmR3SetState(pVM, VMSTATE_OFF);
|
---|
1631 | PDMR3PowerOff(pVM);
|
---|
1632 |
|
---|
1633 | return VINF_EM_OFF;
|
---|
1634 | }
|
---|
1635 |
|
---|
1636 |
|
---|
1637 | /**
|
---|
1638 | * Destroys the VM.
|
---|
1639 | * The VM must be powered off (or never really powered on) to call this function.
|
---|
1640 | * The VM handle is destroyed and can no longer be used up successful return.
|
---|
1641 | *
|
---|
1642 | * @returns VBox status code.
|
---|
1643 | * @param pVM VM which should be destroyed.
|
---|
1644 | * @thread Any thread but the emulation thread.
|
---|
1645 | * @vmstate Off, Created
|
---|
1646 | * @vmstateto N/A
|
---|
1647 | */
|
---|
1648 | VMMR3DECL(int) VMR3Destroy(PVM pVM)
|
---|
1649 | {
|
---|
1650 | LogFlow(("VMR3Destroy: pVM=%p\n", pVM));
|
---|
1651 |
|
---|
1652 | /*
|
---|
1653 | * Validate input.
|
---|
1654 | */
|
---|
1655 | if (!pVM)
|
---|
1656 | return VERR_INVALID_PARAMETER;
|
---|
1657 | AssertPtrReturn(pVM, VERR_INVALID_POINTER);
|
---|
1658 | AssertMsgReturn( pVM->enmVMState == VMSTATE_OFF
|
---|
1659 | || pVM->enmVMState == VMSTATE_CREATED,
|
---|
1660 | ("Invalid VM state %d\n", pVM->enmVMState),
|
---|
1661 | VERR_VM_INVALID_VM_STATE);
|
---|
1662 |
|
---|
1663 | /*
|
---|
1664 | * Change VM state to destroying and unlink the VM.
|
---|
1665 | */
|
---|
1666 | vmR3SetState(pVM, VMSTATE_DESTROYING);
|
---|
1667 |
|
---|
1668 | /** @todo lock this when we start having multiple machines in a process... */
|
---|
1669 | PUVM pUVM = pVM->pUVM; AssertPtr(pUVM);
|
---|
1670 | if (g_pUVMsHead == pUVM)
|
---|
1671 | g_pUVMsHead = pUVM->pNext;
|
---|
1672 | else
|
---|
1673 | {
|
---|
1674 | PUVM pPrev = g_pUVMsHead;
|
---|
1675 | while (pPrev && pPrev->pNext != pUVM)
|
---|
1676 | pPrev = pPrev->pNext;
|
---|
1677 | AssertMsgReturn(pPrev, ("pUVM=%p / pVM=%p is INVALID!\n", pUVM, pVM), VERR_INVALID_PARAMETER);
|
---|
1678 |
|
---|
1679 | pPrev->pNext = pUVM->pNext;
|
---|
1680 | }
|
---|
1681 | pUVM->pNext = NULL;
|
---|
1682 |
|
---|
1683 | /*
|
---|
1684 | * Notify registered at destruction listeners.
|
---|
1685 | * (That's the debugger console.)
|
---|
1686 | */
|
---|
1687 | vmR3AtDtor(pVM);
|
---|
1688 |
|
---|
1689 | /*
|
---|
1690 | * If we are the EMT of VCPU 0, then we'll delay the cleanup till later.
|
---|
1691 | */
|
---|
1692 | if (VMMGetCpuId(pVM) == 0)
|
---|
1693 | {
|
---|
1694 | pUVM->vm.s.fEMTDoesTheCleanup = true;
|
---|
1695 | pUVM->vm.s.fTerminateEMT = true;
|
---|
1696 | VM_FF_SET(pVM, VM_FF_TERMINATE);
|
---|
1697 |
|
---|
1698 | /* Inform all other VCPUs too. */
|
---|
1699 | for (VMCPUID idCpu = 1; idCpu < pVM->cCPUs; idCpu++)
|
---|
1700 | {
|
---|
1701 | /*
|
---|
1702 | * Request EMT to do the larger part of the destruction.
|
---|
1703 | */
|
---|
1704 | PVMREQ pReq = NULL;
|
---|
1705 | int rc = VMR3ReqCallU(pUVM, idCpu, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3Destroy, 1, pVM);
|
---|
1706 | if (RT_SUCCESS(rc))
|
---|
1707 | rc = pReq->iStatus;
|
---|
1708 | AssertRC(rc);
|
---|
1709 | VMR3ReqFree(pReq);
|
---|
1710 | }
|
---|
1711 | }
|
---|
1712 | else
|
---|
1713 | {
|
---|
1714 | /*
|
---|
1715 | * Request EMT to do the larger part of the destruction. (in reverse order as VCPU 0 does the real cleanup)
|
---|
1716 | */
|
---|
1717 | PVMREQ pReq = NULL;
|
---|
1718 | int rc = VMR3ReqCallU(pUVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3Destroy, 1, pVM);
|
---|
1719 | if (RT_SUCCESS(rc))
|
---|
1720 | rc = pReq->iStatus;
|
---|
1721 | AssertRC(rc);
|
---|
1722 | VMR3ReqFree(pReq);
|
---|
1723 |
|
---|
1724 | /*
|
---|
1725 | * Now do the final bit where the heap and VM structures are freed up.
|
---|
1726 | * This will also wait 30 secs for the emulation threads to terminate.
|
---|
1727 | */
|
---|
1728 | vmR3DestroyUVM(pUVM, 30000);
|
---|
1729 | }
|
---|
1730 |
|
---|
1731 | LogFlow(("VMR3Destroy: returns VINF_SUCCESS\n"));
|
---|
1732 | return VINF_SUCCESS;
|
---|
1733 | }
|
---|
1734 |
|
---|
1735 |
|
---|
1736 | /**
|
---|
1737 | * Internal destruction worker.
|
---|
1738 | *
|
---|
1739 | * This will do nearly all of the job, including sacking the EMT.
|
---|
1740 | *
|
---|
1741 | * @returns VBox status.
|
---|
1742 | * @param pVM VM handle.
|
---|
1743 | */
|
---|
1744 | DECLCALLBACK(int) vmR3Destroy(PVM pVM)
|
---|
1745 | {
|
---|
1746 | PUVM pUVM = pVM->pUVM;
|
---|
1747 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
1748 |
|
---|
1749 | NOREF(pUVM);
|
---|
1750 | LogFlow(("vmR3Destroy: pVM=%p pUVM=%p\n", pVM, pUVM));
|
---|
1751 | VM_ASSERT_EMT(pVM);
|
---|
1752 |
|
---|
1753 | /* Only VCPU 0 does the full cleanup. */
|
---|
1754 | if (pVCpu->idCpu != 0)
|
---|
1755 | return VINF_EM_TERMINATE;
|
---|
1756 |
|
---|
1757 | /*
|
---|
1758 | * Dump statistics to the log.
|
---|
1759 | */
|
---|
1760 | #if defined(VBOX_WITH_STATISTICS) || defined(LOG_ENABLED)
|
---|
1761 | RTLogFlags(NULL, "nodisabled nobuffered");
|
---|
1762 | #endif
|
---|
1763 | #ifdef VBOX_WITH_STATISTICS
|
---|
1764 | STAMR3Dump(pVM, "*");
|
---|
1765 | #else
|
---|
1766 | LogRel(("************************* Statistics *************************\n"));
|
---|
1767 | STAMR3DumpToReleaseLog(pVM, "*");
|
---|
1768 | LogRel(("********************* End of statistics **********************\n"));
|
---|
1769 | #endif
|
---|
1770 |
|
---|
1771 | /*
|
---|
1772 | * Destroy the VM components.
|
---|
1773 | */
|
---|
1774 | int rc = TMR3Term(pVM);
|
---|
1775 | AssertRC(rc);
|
---|
1776 | #ifdef VBOX_WITH_DEBUGGER
|
---|
1777 | rc = DBGCTcpTerminate(pVM, pUVM->vm.s.pvDBGC);
|
---|
1778 | pVM->pUVM->vm.s.pvDBGC = NULL;
|
---|
1779 | #endif
|
---|
1780 | AssertRC(rc);
|
---|
1781 | rc = DBGFR3Term(pVM);
|
---|
1782 | AssertRC(rc);
|
---|
1783 | rc = PDMR3Term(pVM);
|
---|
1784 | AssertRC(rc);
|
---|
1785 | rc = EMR3Term(pVM);
|
---|
1786 | AssertRC(rc);
|
---|
1787 | rc = IOMR3Term(pVM);
|
---|
1788 | AssertRC(rc);
|
---|
1789 | rc = CSAMR3Term(pVM);
|
---|
1790 | AssertRC(rc);
|
---|
1791 | rc = PATMR3Term(pVM);
|
---|
1792 | AssertRC(rc);
|
---|
1793 | rc = TRPMR3Term(pVM);
|
---|
1794 | AssertRC(rc);
|
---|
1795 | rc = SELMR3Term(pVM);
|
---|
1796 | AssertRC(rc);
|
---|
1797 | rc = REMR3Term(pVM);
|
---|
1798 | AssertRC(rc);
|
---|
1799 | rc = HWACCMR3Term(pVM);
|
---|
1800 | AssertRC(rc);
|
---|
1801 | rc = PGMR3Term(pVM);
|
---|
1802 | AssertRC(rc);
|
---|
1803 | rc = VMMR3Term(pVM); /* Terminates the ring-0 code! */
|
---|
1804 | AssertRC(rc);
|
---|
1805 | rc = CPUMR3Term(pVM);
|
---|
1806 | AssertRC(rc);
|
---|
1807 | rc = PDMR3CritSectTerm(pVM);
|
---|
1808 | AssertRC(rc);
|
---|
1809 | rc = MMR3Term(pVM);
|
---|
1810 | AssertRC(rc);
|
---|
1811 |
|
---|
1812 | /*
|
---|
1813 | * We're done in this thread (EMT).
|
---|
1814 | */
|
---|
1815 | ASMAtomicUoWriteBool(&pVM->pUVM->vm.s.fTerminateEMT, true);
|
---|
1816 | ASMAtomicWriteU32(&pVM->fGlobalForcedActions, VM_FF_TERMINATE);
|
---|
1817 | LogFlow(("vmR3Destroy: returning %Rrc\n", VINF_EM_TERMINATE));
|
---|
1818 | return VINF_EM_TERMINATE;
|
---|
1819 | }
|
---|
1820 |
|
---|
1821 |
|
---|
1822 | /**
|
---|
1823 | * Destroys the shared VM structure, leaving only UVM behind.
|
---|
1824 | *
|
---|
1825 | * This is called by EMT right before terminating.
|
---|
1826 | *
|
---|
1827 | * @param pUVM The UVM handle.
|
---|
1828 | */
|
---|
1829 | void vmR3DestroyFinalBitFromEMT(PUVM pUVM)
|
---|
1830 | {
|
---|
1831 | if (pUVM->pVM)
|
---|
1832 | {
|
---|
1833 | PVMCPU pVCpu = VMMGetCpu(pUVM->pVM);
|
---|
1834 |
|
---|
1835 | /* VCPU 0 does all the cleanup work. */
|
---|
1836 | if (pVCpu->idCpu != 0)
|
---|
1837 | return;
|
---|
1838 |
|
---|
1839 | /*
|
---|
1840 | * Modify state and then terminate MM.
|
---|
1841 | * (MM must be delayed until this point so we don't destroy the callbacks and the request packet.)
|
---|
1842 | */
|
---|
1843 | vmR3SetState(pUVM->pVM, VMSTATE_TERMINATED);
|
---|
1844 |
|
---|
1845 | /*
|
---|
1846 | * Tell GVMM to destroy the VM and free its resources.
|
---|
1847 | */
|
---|
1848 | int rc = SUPCallVMMR0Ex(pUVM->pVM->pVMR0, 0 /* VCPU 0 */, VMMR0_DO_GVMM_DESTROY_VM, 0, NULL);
|
---|
1849 | AssertRC(rc);
|
---|
1850 | pUVM->pVM = NULL;
|
---|
1851 | }
|
---|
1852 |
|
---|
1853 | /*
|
---|
1854 | * Did an EMT call VMR3Destroy and end up having to do all the work?
|
---|
1855 | */
|
---|
1856 | if (pUVM->vm.s.fEMTDoesTheCleanup)
|
---|
1857 | vmR3DestroyUVM(pUVM, 30000);
|
---|
1858 | }
|
---|
1859 |
|
---|
1860 |
|
---|
1861 | /**
|
---|
1862 | * Destroys the UVM portion.
|
---|
1863 | *
|
---|
1864 | * This is called as the final step in the VM destruction or as the cleanup
|
---|
1865 | * in case of a creation failure. If EMT called VMR3Destroy, meaning
|
---|
1866 | * VMINTUSERPERVM::fEMTDoesTheCleanup is true, it will call this as
|
---|
1867 | * vmR3DestroyFinalBitFromEMT completes.
|
---|
1868 | *
|
---|
1869 | * @param pVM VM Handle.
|
---|
1870 | * @param cMilliesEMTWait The number of milliseconds to wait for the emulation
|
---|
1871 | * threads.
|
---|
1872 | */
|
---|
1873 | static void vmR3DestroyUVM(PUVM pUVM, uint32_t cMilliesEMTWait)
|
---|
1874 | {
|
---|
1875 | /*
|
---|
1876 | * Signal termination of each the emulation threads and
|
---|
1877 | * wait for them to complete.
|
---|
1878 | */
|
---|
1879 | /* Signal them. */
|
---|
1880 | ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
|
---|
1881 | for (VMCPUID i = 0; i < pUVM->cCpus; i++)
|
---|
1882 | {
|
---|
1883 | ASMAtomicUoWriteBool(&pUVM->aCpus[i].vm.s.fTerminateEMT, true);
|
---|
1884 | if (pUVM->pVM)
|
---|
1885 | VM_FF_SET(pUVM->pVM, VM_FF_TERMINATE);
|
---|
1886 | VMR3NotifyGlobalFFU(pUVM, VMNOTIFYFF_FLAGS_DONE_REM);
|
---|
1887 | RTSemEventSignal(pUVM->aCpus[i].vm.s.EventSemWait);
|
---|
1888 | }
|
---|
1889 |
|
---|
1890 | /* Wait for them. */
|
---|
1891 | uint64_t NanoTS = RTTimeNanoTS();
|
---|
1892 | RTTHREAD hSelf = RTThreadSelf();
|
---|
1893 | ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
|
---|
1894 | for (VMCPUID i = 0; i < pUVM->cCpus; i++)
|
---|
1895 | {
|
---|
1896 | RTTHREAD hThread = pUVM->aCpus[i].vm.s.ThreadEMT;
|
---|
1897 | if ( hThread != NIL_RTTHREAD
|
---|
1898 | && hThread != hSelf)
|
---|
1899 | {
|
---|
1900 | uint64_t cMilliesElapsed = (RTTimeNanoTS() - NanoTS) / 1000000;
|
---|
1901 | int rc2 = RTThreadWait(hThread,
|
---|
1902 | cMilliesElapsed < cMilliesEMTWait
|
---|
1903 | ? RT_MAX(cMilliesEMTWait - cMilliesElapsed, 2000)
|
---|
1904 | : 2000,
|
---|
1905 | NULL);
|
---|
1906 | if (rc2 == VERR_TIMEOUT) /* avoid the assertion when debugging. */
|
---|
1907 | rc2 = RTThreadWait(hThread, 1000, NULL);
|
---|
1908 | AssertLogRelMsgRC(rc2, ("i=%u rc=%Rrc\n", i, rc2));
|
---|
1909 | if (RT_SUCCESS(rc2))
|
---|
1910 | pUVM->aCpus[0].vm.s.ThreadEMT = NIL_RTTHREAD;
|
---|
1911 | }
|
---|
1912 | }
|
---|
1913 |
|
---|
1914 | /* Cleanup the semaphores. */
|
---|
1915 | for (VMCPUID i = 0; i < pUVM->cCpus; i++)
|
---|
1916 | {
|
---|
1917 | RTSemEventDestroy(pUVM->aCpus[i].vm.s.EventSemWait);
|
---|
1918 | pUVM->aCpus[i].vm.s.EventSemWait = NIL_RTSEMEVENT;
|
---|
1919 | }
|
---|
1920 |
|
---|
1921 | /*
|
---|
1922 | * Free the event semaphores associated with the request packets.
|
---|
1923 | */
|
---|
1924 | unsigned cReqs = 0;
|
---|
1925 | for (unsigned i = 0; i < RT_ELEMENTS(pUVM->vm.s.apReqFree); i++)
|
---|
1926 | {
|
---|
1927 | PVMREQ pReq = pUVM->vm.s.apReqFree[i];
|
---|
1928 | pUVM->vm.s.apReqFree[i] = NULL;
|
---|
1929 | for (; pReq; pReq = pReq->pNext, cReqs++)
|
---|
1930 | {
|
---|
1931 | pReq->enmState = VMREQSTATE_INVALID;
|
---|
1932 | RTSemEventDestroy(pReq->EventSem);
|
---|
1933 | }
|
---|
1934 | }
|
---|
1935 | Assert(cReqs == pUVM->vm.s.cReqFree); NOREF(cReqs);
|
---|
1936 |
|
---|
1937 | /*
|
---|
1938 | * Kill all queued requests. (There really shouldn't be any!)
|
---|
1939 | */
|
---|
1940 | for (unsigned i = 0; i < 10; i++)
|
---|
1941 | {
|
---|
1942 | PVMREQ pReqHead = (PVMREQ)ASMAtomicXchgPtr((void *volatile *)&pUVM->vm.s.pReqs, NULL);
|
---|
1943 | AssertMsg(!pReqHead, ("This isn't supposed to happen! VMR3Destroy caller has to serialize this.\n"));
|
---|
1944 | if (!pReqHead)
|
---|
1945 | break;
|
---|
1946 | for (PVMREQ pReq = pReqHead; pReq; pReq = pReq->pNext)
|
---|
1947 | {
|
---|
1948 | ASMAtomicUoWriteSize(&pReq->iStatus, VERR_INTERNAL_ERROR);
|
---|
1949 | ASMAtomicWriteSize(&pReq->enmState, VMREQSTATE_INVALID);
|
---|
1950 | RTSemEventSignal(pReq->EventSem);
|
---|
1951 | RTThreadSleep(2);
|
---|
1952 | RTSemEventDestroy(pReq->EventSem);
|
---|
1953 | }
|
---|
1954 | /* give them a chance to respond before we free the request memory. */
|
---|
1955 | RTThreadSleep(32);
|
---|
1956 | }
|
---|
1957 |
|
---|
1958 | /*
|
---|
1959 | * Now all queued VCPU requests (again, there shouldn't be any).
|
---|
1960 | */
|
---|
1961 | for (VMCPUID i = 0; i < pUVM->cCpus; i++)
|
---|
1962 | {
|
---|
1963 | PUVMCPU pUVCpu = &pUVM->aCpus[i];
|
---|
1964 |
|
---|
1965 | for (unsigned i = 0; i < 10; i++)
|
---|
1966 | {
|
---|
1967 | PVMREQ pReqHead = (PVMREQ)ASMAtomicXchgPtr((void *volatile *)&pUVCpu->vm.s.pReqs, NULL);
|
---|
1968 | AssertMsg(!pReqHead, ("This isn't supposed to happen! VMR3Destroy caller has to serialize this.\n"));
|
---|
1969 | if (!pReqHead)
|
---|
1970 | break;
|
---|
1971 | for (PVMREQ pReq = pReqHead; pReq; pReq = pReq->pNext)
|
---|
1972 | {
|
---|
1973 | ASMAtomicUoWriteSize(&pReq->iStatus, VERR_INTERNAL_ERROR);
|
---|
1974 | ASMAtomicWriteSize(&pReq->enmState, VMREQSTATE_INVALID);
|
---|
1975 | RTSemEventSignal(pReq->EventSem);
|
---|
1976 | RTThreadSleep(2);
|
---|
1977 | RTSemEventDestroy(pReq->EventSem);
|
---|
1978 | }
|
---|
1979 | /* give them a chance to respond before we free the request memory. */
|
---|
1980 | RTThreadSleep(32);
|
---|
1981 | }
|
---|
1982 | }
|
---|
1983 |
|
---|
1984 | /*
|
---|
1985 | * Make sure the VMMR0.r0 module and whatever else is unloaded.
|
---|
1986 | */
|
---|
1987 | PDMR3TermUVM(pUVM);
|
---|
1988 |
|
---|
1989 | /*
|
---|
1990 | * Terminate the support library if initialized.
|
---|
1991 | */
|
---|
1992 | if (pUVM->vm.s.pSession)
|
---|
1993 | {
|
---|
1994 | int rc = SUPTerm();
|
---|
1995 | AssertRC(rc);
|
---|
1996 | pUVM->vm.s.pSession = NIL_RTR0PTR;
|
---|
1997 | }
|
---|
1998 |
|
---|
1999 | /*
|
---|
2000 | * Destroy the MM heap and free the UVM structure.
|
---|
2001 | */
|
---|
2002 | MMR3TermUVM(pUVM);
|
---|
2003 | STAMR3TermUVM(pUVM);
|
---|
2004 |
|
---|
2005 | RTTlsFree(pUVM->vm.s.idxTLS);
|
---|
2006 |
|
---|
2007 | ASMAtomicUoWriteU32(&pUVM->u32Magic, UINT32_MAX);
|
---|
2008 | RTMemFree(pUVM);
|
---|
2009 |
|
---|
2010 | RTLogFlush(NULL);
|
---|
2011 | }
|
---|
2012 |
|
---|
2013 |
|
---|
2014 | /**
|
---|
2015 | * Enumerates the VMs in this process.
|
---|
2016 | *
|
---|
2017 | * @returns Pointer to the next VM.
|
---|
2018 | * @returns NULL when no more VMs.
|
---|
2019 | * @param pVMPrev The previous VM
|
---|
2020 | * Use NULL to start the enumeration.
|
---|
2021 | */
|
---|
2022 | VMMR3DECL(PVM) VMR3EnumVMs(PVM pVMPrev)
|
---|
2023 | {
|
---|
2024 | /*
|
---|
2025 | * This is quick and dirty. It has issues with VM being
|
---|
2026 | * destroyed during the enumeration.
|
---|
2027 | */
|
---|
2028 | PUVM pNext;
|
---|
2029 | if (pVMPrev)
|
---|
2030 | pNext = pVMPrev->pUVM->pNext;
|
---|
2031 | else
|
---|
2032 | pNext = g_pUVMsHead;
|
---|
2033 | return pNext ? pNext->pVM : NULL;
|
---|
2034 | }
|
---|
2035 |
|
---|
2036 |
|
---|
2037 | /**
|
---|
2038 | * Registers an at VM destruction callback.
|
---|
2039 | *
|
---|
2040 | * @returns VBox status code.
|
---|
2041 | * @param pfnAtDtor Pointer to callback.
|
---|
2042 | * @param pvUser User argument.
|
---|
2043 | */
|
---|
2044 | VMMR3DECL(int) VMR3AtDtorRegister(PFNVMATDTOR pfnAtDtor, void *pvUser)
|
---|
2045 | {
|
---|
2046 | /*
|
---|
2047 | * Check if already registered.
|
---|
2048 | */
|
---|
2049 | VM_ATDTOR_LOCK();
|
---|
2050 | PVMATDTOR pCur = g_pVMAtDtorHead;
|
---|
2051 | while (pCur)
|
---|
2052 | {
|
---|
2053 | if (pfnAtDtor == pCur->pfnAtDtor)
|
---|
2054 | {
|
---|
2055 | VM_ATDTOR_UNLOCK();
|
---|
2056 | AssertMsgFailed(("Already registered at destruction callback %p!\n", pfnAtDtor));
|
---|
2057 | return VERR_INVALID_PARAMETER;
|
---|
2058 | }
|
---|
2059 |
|
---|
2060 | /* next */
|
---|
2061 | pCur = pCur->pNext;
|
---|
2062 | }
|
---|
2063 | VM_ATDTOR_UNLOCK();
|
---|
2064 |
|
---|
2065 | /*
|
---|
2066 | * Allocate new entry.
|
---|
2067 | */
|
---|
2068 | PVMATDTOR pVMAtDtor = (PVMATDTOR)RTMemAlloc(sizeof(*pVMAtDtor));
|
---|
2069 | if (!pVMAtDtor)
|
---|
2070 | return VERR_NO_MEMORY;
|
---|
2071 |
|
---|
2072 | VM_ATDTOR_LOCK();
|
---|
2073 | pVMAtDtor->pfnAtDtor = pfnAtDtor;
|
---|
2074 | pVMAtDtor->pvUser = pvUser;
|
---|
2075 | pVMAtDtor->pNext = g_pVMAtDtorHead;
|
---|
2076 | g_pVMAtDtorHead = pVMAtDtor;
|
---|
2077 | VM_ATDTOR_UNLOCK();
|
---|
2078 |
|
---|
2079 | return VINF_SUCCESS;
|
---|
2080 | }
|
---|
2081 |
|
---|
2082 |
|
---|
2083 | /**
|
---|
2084 | * Deregisters an at VM destruction callback.
|
---|
2085 | *
|
---|
2086 | * @returns VBox status code.
|
---|
2087 | * @param pfnAtDtor Pointer to callback.
|
---|
2088 | */
|
---|
2089 | VMMR3DECL(int) VMR3AtDtorDeregister(PFNVMATDTOR pfnAtDtor)
|
---|
2090 | {
|
---|
2091 | /*
|
---|
2092 | * Find it, unlink it and free it.
|
---|
2093 | */
|
---|
2094 | VM_ATDTOR_LOCK();
|
---|
2095 | PVMATDTOR pPrev = NULL;
|
---|
2096 | PVMATDTOR pCur = g_pVMAtDtorHead;
|
---|
2097 | while (pCur)
|
---|
2098 | {
|
---|
2099 | if (pfnAtDtor == pCur->pfnAtDtor)
|
---|
2100 | {
|
---|
2101 | if (pPrev)
|
---|
2102 | pPrev->pNext = pCur->pNext;
|
---|
2103 | else
|
---|
2104 | g_pVMAtDtorHead = pCur->pNext;
|
---|
2105 | pCur->pNext = NULL;
|
---|
2106 | VM_ATDTOR_UNLOCK();
|
---|
2107 |
|
---|
2108 | RTMemFree(pCur);
|
---|
2109 | return VINF_SUCCESS;
|
---|
2110 | }
|
---|
2111 |
|
---|
2112 | /* next */
|
---|
2113 | pPrev = pCur;
|
---|
2114 | pCur = pCur->pNext;
|
---|
2115 | }
|
---|
2116 | VM_ATDTOR_UNLOCK();
|
---|
2117 |
|
---|
2118 | return VERR_INVALID_PARAMETER;
|
---|
2119 | }
|
---|
2120 |
|
---|
2121 |
|
---|
2122 | /**
|
---|
2123 | * Walks the list of at VM destructor callbacks.
|
---|
2124 | * @param pVM The VM which is about to be destroyed.
|
---|
2125 | */
|
---|
2126 | static void vmR3AtDtor(PVM pVM)
|
---|
2127 | {
|
---|
2128 | /*
|
---|
2129 | * Find it, unlink it and free it.
|
---|
2130 | */
|
---|
2131 | VM_ATDTOR_LOCK();
|
---|
2132 | for (PVMATDTOR pCur = g_pVMAtDtorHead; pCur; pCur = pCur->pNext)
|
---|
2133 | pCur->pfnAtDtor(pVM, pCur->pvUser);
|
---|
2134 | VM_ATDTOR_UNLOCK();
|
---|
2135 | }
|
---|
2136 |
|
---|
2137 |
|
---|
2138 | /**
|
---|
2139 | * Reset the current VM.
|
---|
2140 | *
|
---|
2141 | * @returns VBox status code.
|
---|
2142 | * @param pVM VM to reset.
|
---|
2143 | */
|
---|
2144 | VMMR3DECL(int) VMR3Reset(PVM pVM)
|
---|
2145 | {
|
---|
2146 | int rc = VINF_SUCCESS;
|
---|
2147 |
|
---|
2148 | /*
|
---|
2149 | * Check the state.
|
---|
2150 | */
|
---|
2151 | if (!pVM)
|
---|
2152 | return VERR_INVALID_PARAMETER;
|
---|
2153 | if ( pVM->enmVMState != VMSTATE_RUNNING
|
---|
2154 | && pVM->enmVMState != VMSTATE_SUSPENDED)
|
---|
2155 | {
|
---|
2156 | AssertMsgFailed(("Invalid VM state %d\n", pVM->enmVMState));
|
---|
2157 | return VERR_VM_INVALID_VM_STATE;
|
---|
2158 | }
|
---|
2159 |
|
---|
2160 | /*
|
---|
2161 | * Queue reset request to the emulation thread
|
---|
2162 | * and wait for it to be processed. (in reverse order as VCPU 0 does the real cleanup)
|
---|
2163 | */
|
---|
2164 | PVMREQ pReq = NULL;
|
---|
2165 | rc = VMR3ReqCall(pVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Reset, 1, pVM);
|
---|
2166 | if (RT_SUCCESS(rc))
|
---|
2167 | rc = pReq->iStatus;
|
---|
2168 | AssertRC(rc);
|
---|
2169 | VMR3ReqFree(pReq);
|
---|
2170 |
|
---|
2171 | return rc;
|
---|
2172 | }
|
---|
2173 |
|
---|
2174 |
|
---|
2175 | /**
|
---|
2176 | * Worker which checks integrity of some internal structures.
|
---|
2177 | * This is yet another attempt to track down that AVL tree crash.
|
---|
2178 | */
|
---|
2179 | static void vmR3CheckIntegrity(PVM pVM)
|
---|
2180 | {
|
---|
2181 | #ifdef VBOX_STRICT
|
---|
2182 | int rc = PGMR3CheckIntegrity(pVM);
|
---|
2183 | AssertReleaseRC(rc);
|
---|
2184 | #endif
|
---|
2185 | }
|
---|
2186 |
|
---|
2187 |
|
---|
2188 | /**
|
---|
2189 | * Reset request processor.
|
---|
2190 | *
|
---|
2191 | * This is called by the emulation threads as a response to the
|
---|
2192 | * reset request issued by VMR3Reset().
|
---|
2193 | *
|
---|
2194 | * @returns VBox status code.
|
---|
2195 | * @param pVM VM to reset.
|
---|
2196 | */
|
---|
2197 | static DECLCALLBACK(int) vmR3Reset(PVM pVM)
|
---|
2198 | {
|
---|
2199 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
2200 |
|
---|
2201 | /*
|
---|
2202 | * EMT(0) does the full cleanup *after* all the other EMTs has been
|
---|
2203 | * thru here and been told to enter the EMSTATE_WAIT_SIPI state.
|
---|
2204 | */
|
---|
2205 | VMCPU_ASSERT_STATE(pVCpu, VMCPUSTATE_STARTED);
|
---|
2206 |
|
---|
2207 | /* Clear all pending forced actions. */
|
---|
2208 | VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_ALL_MASK & ~VMCPU_FF_REQUEST);
|
---|
2209 |
|
---|
2210 | if (pVCpu->idCpu != 0)
|
---|
2211 | {
|
---|
2212 | CPUMR3ResetCpu(pVCpu);
|
---|
2213 | return VINF_EM_RESET;
|
---|
2214 | }
|
---|
2215 |
|
---|
2216 | /*
|
---|
2217 | * As a safety precaution we temporarily change the state while resetting.
|
---|
2218 | * (If VMR3Reset was not called from EMT we might have change state... let's ignore that fact for now.)
|
---|
2219 | */
|
---|
2220 | VMSTATE enmVMState = pVM->enmVMState;
|
---|
2221 | Assert(enmVMState == VMSTATE_SUSPENDED || enmVMState == VMSTATE_RUNNING);
|
---|
2222 | vmR3SetState(pVM, VMSTATE_RESETTING);
|
---|
2223 | vmR3CheckIntegrity(pVM);
|
---|
2224 |
|
---|
2225 |
|
---|
2226 | /*
|
---|
2227 | * Reset the VM components.
|
---|
2228 | */
|
---|
2229 | PATMR3Reset(pVM);
|
---|
2230 | CSAMR3Reset(pVM);
|
---|
2231 | PGMR3Reset(pVM); /* We clear VM RAM in PGMR3Reset. It's vital PDMR3Reset is executed
|
---|
2232 | * _afterwards_. E.g. ACPI sets up RAM tables during init/reset. */
|
---|
2233 | MMR3Reset(pVM);
|
---|
2234 | PDMR3Reset(pVM);
|
---|
2235 | SELMR3Reset(pVM);
|
---|
2236 | TRPMR3Reset(pVM);
|
---|
2237 | vmR3AtResetU(pVM->pUVM);
|
---|
2238 | REMR3Reset(pVM);
|
---|
2239 | IOMR3Reset(pVM);
|
---|
2240 | CPUMR3Reset(pVM);
|
---|
2241 | TMR3Reset(pVM);
|
---|
2242 | EMR3Reset(pVM);
|
---|
2243 | HWACCMR3Reset(pVM); /* This must come *after* PATM, CSAM, CPUM, SELM and TRPM. */
|
---|
2244 |
|
---|
2245 | #ifdef LOG_ENABLED
|
---|
2246 | /*
|
---|
2247 | * Debug logging.
|
---|
2248 | */
|
---|
2249 | RTLogPrintf("\n\nThe VM was reset:\n");
|
---|
2250 | DBGFR3Info(pVM, "cpum", "verbose", NULL);
|
---|
2251 | #endif
|
---|
2252 |
|
---|
2253 | /*
|
---|
2254 | * Restore the state.
|
---|
2255 | */
|
---|
2256 | vmR3CheckIntegrity(pVM);
|
---|
2257 | Assert(pVM->enmVMState == VMSTATE_RESETTING);
|
---|
2258 | vmR3SetState(pVM, enmVMState);
|
---|
2259 |
|
---|
2260 | return VINF_EM_RESET;
|
---|
2261 | }
|
---|
2262 |
|
---|
2263 |
|
---|
2264 | /**
|
---|
2265 | * Walks the list of at VM reset callbacks and calls them
|
---|
2266 | *
|
---|
2267 | * @returns VBox status code.
|
---|
2268 | * Any failure is fatal.
|
---|
2269 | * @param pUVM Pointe to the user mode VM structure.
|
---|
2270 | */
|
---|
2271 | static int vmR3AtResetU(PUVM pUVM)
|
---|
2272 | {
|
---|
2273 | /*
|
---|
2274 | * Walk the list and call them all.
|
---|
2275 | */
|
---|
2276 | int rc = VINF_SUCCESS;
|
---|
2277 | for (PVMATRESET pCur = pUVM->vm.s.pAtReset; pCur; pCur = pCur->pNext)
|
---|
2278 | {
|
---|
2279 | /* do the call */
|
---|
2280 | switch (pCur->enmType)
|
---|
2281 | {
|
---|
2282 | case VMATRESETTYPE_DEV:
|
---|
2283 | rc = pCur->u.Dev.pfnCallback(pCur->u.Dev.pDevIns, pCur->pvUser);
|
---|
2284 | break;
|
---|
2285 | case VMATRESETTYPE_INTERNAL:
|
---|
2286 | rc = pCur->u.Internal.pfnCallback(pUVM->pVM, pCur->pvUser);
|
---|
2287 | break;
|
---|
2288 | case VMATRESETTYPE_EXTERNAL:
|
---|
2289 | pCur->u.External.pfnCallback(pCur->pvUser);
|
---|
2290 | break;
|
---|
2291 | default:
|
---|
2292 | AssertMsgFailed(("Invalid at-reset type %d!\n", pCur->enmType));
|
---|
2293 | return VERR_INTERNAL_ERROR;
|
---|
2294 | }
|
---|
2295 |
|
---|
2296 | if (RT_FAILURE(rc))
|
---|
2297 | {
|
---|
2298 | AssertMsgFailed(("At-reset handler %s failed with rc=%d\n", pCur->pszDesc, rc));
|
---|
2299 | return rc;
|
---|
2300 | }
|
---|
2301 | }
|
---|
2302 |
|
---|
2303 | return VINF_SUCCESS;
|
---|
2304 | }
|
---|
2305 |
|
---|
2306 |
|
---|
2307 | /**
|
---|
2308 | * Internal registration function
|
---|
2309 | */
|
---|
2310 | static int vmr3AtResetRegisterU(PUVM pUVM, void *pvUser, const char *pszDesc, PVMATRESET *ppNew)
|
---|
2311 | {
|
---|
2312 | /*
|
---|
2313 | * Allocate restration structure.
|
---|
2314 | */
|
---|
2315 | PVMATRESET pNew = (PVMATRESET)MMR3HeapAllocU(pUVM, MM_TAG_VM, sizeof(*pNew));
|
---|
2316 | if (pNew)
|
---|
2317 | {
|
---|
2318 | /* fill data. */
|
---|
2319 | pNew->pszDesc = pszDesc;
|
---|
2320 | pNew->pvUser = pvUser;
|
---|
2321 |
|
---|
2322 | /* insert */
|
---|
2323 | pNew->pNext = *pUVM->vm.s.ppAtResetNext;
|
---|
2324 | *pUVM->vm.s.ppAtResetNext = pNew;
|
---|
2325 | pUVM->vm.s.ppAtResetNext = &pNew->pNext;
|
---|
2326 |
|
---|
2327 | *ppNew = pNew;
|
---|
2328 | return VINF_SUCCESS;
|
---|
2329 | }
|
---|
2330 | return VERR_NO_MEMORY;
|
---|
2331 | }
|
---|
2332 |
|
---|
2333 |
|
---|
2334 | /**
|
---|
2335 | * Registers an at VM reset callback.
|
---|
2336 | *
|
---|
2337 | * @returns VBox status code.
|
---|
2338 | * @param pVM The VM.
|
---|
2339 | * @param pDevInst Device instance.
|
---|
2340 | * @param pfnCallback Callback function.
|
---|
2341 | * @param pvUser User argument.
|
---|
2342 | * @param pszDesc Description (optional).
|
---|
2343 | */
|
---|
2344 | VMMR3DECL(int) VMR3AtResetRegister(PVM pVM, PPDMDEVINS pDevInst, PFNVMATRESET pfnCallback, void *pvUser, const char *pszDesc)
|
---|
2345 | {
|
---|
2346 | /*
|
---|
2347 | * Validate.
|
---|
2348 | */
|
---|
2349 | if (!pDevInst)
|
---|
2350 | {
|
---|
2351 | AssertMsgFailed(("pDevIns is NULL!\n"));
|
---|
2352 | return VERR_INVALID_PARAMETER;
|
---|
2353 | }
|
---|
2354 |
|
---|
2355 | /*
|
---|
2356 | * Create the new entry.
|
---|
2357 | */
|
---|
2358 | PVMATRESET pNew;
|
---|
2359 | int rc = vmr3AtResetRegisterU(pVM->pUVM, pvUser, pszDesc, &pNew);
|
---|
2360 | if (RT_SUCCESS(rc))
|
---|
2361 | {
|
---|
2362 | /*
|
---|
2363 | * Fill in type data.
|
---|
2364 | */
|
---|
2365 | pNew->enmType = VMATRESETTYPE_DEV;
|
---|
2366 | pNew->u.Dev.pfnCallback = pfnCallback;
|
---|
2367 | pNew->u.Dev.pDevIns = pDevInst;
|
---|
2368 | }
|
---|
2369 |
|
---|
2370 | return rc;
|
---|
2371 | }
|
---|
2372 |
|
---|
2373 |
|
---|
2374 | /**
|
---|
2375 | * Registers an at VM reset internal callback.
|
---|
2376 | *
|
---|
2377 | * @returns VBox status code.
|
---|
2378 | * @param pVM The VM.
|
---|
2379 | * @param pfnCallback Callback function.
|
---|
2380 | * @param pvUser User argument.
|
---|
2381 | * @param pszDesc Description (optional).
|
---|
2382 | */
|
---|
2383 | VMMR3DECL(int) VMR3AtResetRegisterInternal(PVM pVM, PFNVMATRESETINT pfnCallback, void *pvUser, const char *pszDesc)
|
---|
2384 | {
|
---|
2385 | /*
|
---|
2386 | * Validate.
|
---|
2387 | */
|
---|
2388 | if (!pfnCallback)
|
---|
2389 | {
|
---|
2390 | AssertMsgFailed(("pfnCallback is NULL!\n"));
|
---|
2391 | return VERR_INVALID_PARAMETER;
|
---|
2392 | }
|
---|
2393 |
|
---|
2394 | /*
|
---|
2395 | * Create the new entry.
|
---|
2396 | */
|
---|
2397 | PVMATRESET pNew;
|
---|
2398 | int rc = vmr3AtResetRegisterU(pVM->pUVM, pvUser, pszDesc, &pNew);
|
---|
2399 | if (RT_SUCCESS(rc))
|
---|
2400 | {
|
---|
2401 | /*
|
---|
2402 | * Fill in type data.
|
---|
2403 | */
|
---|
2404 | pNew->enmType = VMATRESETTYPE_INTERNAL;
|
---|
2405 | pNew->u.Internal.pfnCallback = pfnCallback;
|
---|
2406 | }
|
---|
2407 |
|
---|
2408 | return rc;
|
---|
2409 | }
|
---|
2410 |
|
---|
2411 |
|
---|
2412 | /**
|
---|
2413 | * Registers an at VM reset external callback.
|
---|
2414 | *
|
---|
2415 | * @returns VBox status code.
|
---|
2416 | * @param pVM The VM.
|
---|
2417 | * @param pfnCallback Callback function.
|
---|
2418 | * @param pvUser User argument.
|
---|
2419 | * @param pszDesc Description (optional).
|
---|
2420 | */
|
---|
2421 | VMMR3DECL(int) VMR3AtResetRegisterExternal(PVM pVM, PFNVMATRESETEXT pfnCallback, void *pvUser, const char *pszDesc)
|
---|
2422 | {
|
---|
2423 | /*
|
---|
2424 | * Validate.
|
---|
2425 | */
|
---|
2426 | if (!pfnCallback)
|
---|
2427 | {
|
---|
2428 | AssertMsgFailed(("pfnCallback is NULL!\n"));
|
---|
2429 | return VERR_INVALID_PARAMETER;
|
---|
2430 | }
|
---|
2431 |
|
---|
2432 | /*
|
---|
2433 | * Create the new entry.
|
---|
2434 | */
|
---|
2435 | PVMATRESET pNew;
|
---|
2436 | int rc = vmr3AtResetRegisterU(pVM->pUVM, pvUser, pszDesc, &pNew);
|
---|
2437 | if (RT_SUCCESS(rc))
|
---|
2438 | {
|
---|
2439 | /*
|
---|
2440 | * Fill in type data.
|
---|
2441 | */
|
---|
2442 | pNew->enmType = VMATRESETTYPE_EXTERNAL;
|
---|
2443 | pNew->u.External.pfnCallback = pfnCallback;
|
---|
2444 | }
|
---|
2445 |
|
---|
2446 | return rc;
|
---|
2447 | }
|
---|
2448 |
|
---|
2449 |
|
---|
2450 | /**
|
---|
2451 | * Unlinks and frees a callback.
|
---|
2452 | *
|
---|
2453 | * @returns Pointer to the next callback structure.
|
---|
2454 | * @param pUVM Pointer to the user mode VM structure.
|
---|
2455 | * @param pCur The one to free.
|
---|
2456 | * @param pPrev The one before pCur.
|
---|
2457 | */
|
---|
2458 | static PVMATRESET vmr3AtResetFreeU(PUVM pUVM, PVMATRESET pCur, PVMATRESET pPrev)
|
---|
2459 | {
|
---|
2460 | /*
|
---|
2461 | * Unlink it.
|
---|
2462 | */
|
---|
2463 | PVMATRESET pNext = pCur->pNext;
|
---|
2464 | if (pPrev)
|
---|
2465 | {
|
---|
2466 | pPrev->pNext = pNext;
|
---|
2467 | if (!pNext)
|
---|
2468 | pUVM->vm.s.ppAtResetNext = &pPrev->pNext;
|
---|
2469 | }
|
---|
2470 | else
|
---|
2471 | {
|
---|
2472 | pUVM->vm.s.pAtReset = pNext;
|
---|
2473 | if (!pNext)
|
---|
2474 | pUVM->vm.s.ppAtResetNext = &pUVM->vm.s.pAtReset;
|
---|
2475 | }
|
---|
2476 |
|
---|
2477 | /*
|
---|
2478 | * Free it.
|
---|
2479 | */
|
---|
2480 | MMR3HeapFree(pCur);
|
---|
2481 |
|
---|
2482 | return pNext;
|
---|
2483 | }
|
---|
2484 |
|
---|
2485 |
|
---|
2486 | /**
|
---|
2487 | * Deregisters an at VM reset callback.
|
---|
2488 | *
|
---|
2489 | * @returns VBox status code.
|
---|
2490 | * @param pVM The VM.
|
---|
2491 | * @param pDevIns Device instance.
|
---|
2492 | * @param pfnCallback Callback function.
|
---|
2493 | */
|
---|
2494 | VMMR3DECL(int) VMR3AtResetDeregister(PVM pVM, PPDMDEVINS pDevIns, PFNVMATRESET pfnCallback)
|
---|
2495 | {
|
---|
2496 | int rc = VERR_VM_ATRESET_NOT_FOUND;
|
---|
2497 | PVMATRESET pPrev = NULL;
|
---|
2498 | PVMATRESET pCur = pVM->pUVM->vm.s.pAtReset;
|
---|
2499 | while (pCur)
|
---|
2500 | {
|
---|
2501 | if ( pCur->enmType == VMATRESETTYPE_DEV
|
---|
2502 | && pCur->u.Dev.pDevIns == pDevIns
|
---|
2503 | && ( !pfnCallback
|
---|
2504 | || pCur->u.Dev.pfnCallback == pfnCallback))
|
---|
2505 | {
|
---|
2506 | pCur = vmr3AtResetFreeU(pVM->pUVM, pCur, pPrev);
|
---|
2507 | rc = VINF_SUCCESS;
|
---|
2508 | }
|
---|
2509 | else
|
---|
2510 | {
|
---|
2511 | pPrev = pCur;
|
---|
2512 | pCur = pCur->pNext;
|
---|
2513 | }
|
---|
2514 | }
|
---|
2515 |
|
---|
2516 | AssertRC(rc);
|
---|
2517 | return rc;
|
---|
2518 | }
|
---|
2519 |
|
---|
2520 |
|
---|
2521 | /**
|
---|
2522 | * Deregisters an at VM reset internal callback.
|
---|
2523 | *
|
---|
2524 | * @returns VBox status code.
|
---|
2525 | * @param pVM The VM.
|
---|
2526 | * @param pfnCallback Callback function.
|
---|
2527 | */
|
---|
2528 | VMMR3DECL(int) VMR3AtResetDeregisterInternal(PVM pVM, PFNVMATRESETINT pfnCallback)
|
---|
2529 | {
|
---|
2530 | int rc = VERR_VM_ATRESET_NOT_FOUND;
|
---|
2531 | PVMATRESET pPrev = NULL;
|
---|
2532 | PVMATRESET pCur = pVM->pUVM->vm.s.pAtReset;
|
---|
2533 | while (pCur)
|
---|
2534 | {
|
---|
2535 | if ( pCur->enmType == VMATRESETTYPE_INTERNAL
|
---|
2536 | && pCur->u.Internal.pfnCallback == pfnCallback)
|
---|
2537 | {
|
---|
2538 | pCur = vmr3AtResetFreeU(pVM->pUVM, pCur, pPrev);
|
---|
2539 | rc = VINF_SUCCESS;
|
---|
2540 | }
|
---|
2541 | else
|
---|
2542 | {
|
---|
2543 | pPrev = pCur;
|
---|
2544 | pCur = pCur->pNext;
|
---|
2545 | }
|
---|
2546 | }
|
---|
2547 |
|
---|
2548 | AssertRC(rc);
|
---|
2549 | return rc;
|
---|
2550 | }
|
---|
2551 |
|
---|
2552 |
|
---|
2553 | /**
|
---|
2554 | * Deregisters an at VM reset external callback.
|
---|
2555 | *
|
---|
2556 | * @returns VBox status code.
|
---|
2557 | * @param pVM The VM.
|
---|
2558 | * @param pfnCallback Callback function.
|
---|
2559 | */
|
---|
2560 | VMMR3DECL(int) VMR3AtResetDeregisterExternal(PVM pVM, PFNVMATRESETEXT pfnCallback)
|
---|
2561 | {
|
---|
2562 | int rc = VERR_VM_ATRESET_NOT_FOUND;
|
---|
2563 | PVMATRESET pPrev = NULL;
|
---|
2564 | PVMATRESET pCur = pVM->pUVM->vm.s.pAtReset;
|
---|
2565 | while (pCur)
|
---|
2566 | {
|
---|
2567 | if ( pCur->enmType == VMATRESETTYPE_INTERNAL
|
---|
2568 | && pCur->u.External.pfnCallback == pfnCallback)
|
---|
2569 | {
|
---|
2570 | pCur = vmr3AtResetFreeU(pVM->pUVM, pCur, pPrev);
|
---|
2571 | rc = VINF_SUCCESS;
|
---|
2572 | }
|
---|
2573 | else
|
---|
2574 | {
|
---|
2575 | pPrev = pCur;
|
---|
2576 | pCur = pCur->pNext;
|
---|
2577 | }
|
---|
2578 | }
|
---|
2579 |
|
---|
2580 | AssertRC(rc);
|
---|
2581 | return rc;
|
---|
2582 | }
|
---|
2583 |
|
---|
2584 |
|
---|
2585 | /**
|
---|
2586 | * Gets the current VM state.
|
---|
2587 | *
|
---|
2588 | * @returns The current VM state.
|
---|
2589 | * @param pVM VM handle.
|
---|
2590 | * @thread Any
|
---|
2591 | */
|
---|
2592 | VMMR3DECL(VMSTATE) VMR3GetState(PVM pVM)
|
---|
2593 | {
|
---|
2594 | return pVM->enmVMState;
|
---|
2595 | }
|
---|
2596 |
|
---|
2597 |
|
---|
2598 | /**
|
---|
2599 | * Gets the state name string for a VM state.
|
---|
2600 | *
|
---|
2601 | * @returns Pointer to the state name. (readonly)
|
---|
2602 | * @param enmState The state.
|
---|
2603 | */
|
---|
2604 | VMMR3DECL(const char *) VMR3GetStateName(VMSTATE enmState)
|
---|
2605 | {
|
---|
2606 | switch (enmState)
|
---|
2607 | {
|
---|
2608 | case VMSTATE_CREATING: return "CREATING";
|
---|
2609 | case VMSTATE_CREATED: return "CREATED";
|
---|
2610 | case VMSTATE_RUNNING: return "RUNNING";
|
---|
2611 | case VMSTATE_LOADING: return "LOADING";
|
---|
2612 | case VMSTATE_LOAD_FAILURE: return "LOAD_FAILURE";
|
---|
2613 | case VMSTATE_SAVING: return "SAVING";
|
---|
2614 | case VMSTATE_SUSPENDED: return "SUSPENDED";
|
---|
2615 | case VMSTATE_RESETTING: return "RESETTING";
|
---|
2616 | case VMSTATE_GURU_MEDITATION: return "GURU_MEDITATION";
|
---|
2617 | case VMSTATE_OFF: return "OFF";
|
---|
2618 | case VMSTATE_DESTROYING: return "DESTROYING";
|
---|
2619 | case VMSTATE_TERMINATED: return "TERMINATED";
|
---|
2620 | default:
|
---|
2621 | AssertMsgFailed(("Unknown state %d\n", enmState));
|
---|
2622 | return "Unknown!\n";
|
---|
2623 | }
|
---|
2624 | }
|
---|
2625 |
|
---|
2626 |
|
---|
2627 | /**
|
---|
2628 | * Sets the current VM state.
|
---|
2629 | *
|
---|
2630 | * @returns The current VM state.
|
---|
2631 | * @param pVM VM handle.
|
---|
2632 | * @param enmStateNew The new state.
|
---|
2633 | */
|
---|
2634 | void vmR3SetState(PVM pVM, VMSTATE enmStateNew)
|
---|
2635 | {
|
---|
2636 | /*
|
---|
2637 | * Validate state machine transitions before doing the actual change.
|
---|
2638 | */
|
---|
2639 | VMSTATE enmStateOld = pVM->enmVMState;
|
---|
2640 | switch (enmStateOld)
|
---|
2641 | {
|
---|
2642 | case VMSTATE_OFF:
|
---|
2643 | Assert(enmStateNew != VMSTATE_GURU_MEDITATION);
|
---|
2644 | break;
|
---|
2645 |
|
---|
2646 | default:
|
---|
2647 | /** @todo full validation. */
|
---|
2648 | break;
|
---|
2649 | }
|
---|
2650 |
|
---|
2651 | pVM->enmVMState = enmStateNew;
|
---|
2652 | LogRel(("Changing the VM state from '%s' to '%s'.\n", VMR3GetStateName(enmStateOld), VMR3GetStateName(enmStateNew)));
|
---|
2653 |
|
---|
2654 | /*
|
---|
2655 | * Call the at state change callbacks.
|
---|
2656 | */
|
---|
2657 | for (PVMATSTATE pCur = pVM->pUVM->vm.s.pAtState; pCur; pCur = pCur->pNext)
|
---|
2658 | {
|
---|
2659 | pCur->pfnAtState(pVM, enmStateNew, enmStateOld, pCur->pvUser);
|
---|
2660 | if ( pVM->enmVMState != enmStateNew
|
---|
2661 | && pVM->enmVMState == VMSTATE_DESTROYING)
|
---|
2662 | break;
|
---|
2663 | AssertMsg(pVM->enmVMState == enmStateNew,
|
---|
2664 | ("You are not allowed to change the state while in the change callback, except "
|
---|
2665 | "from destroying the VM. There are restrictions in the way the state changes "
|
---|
2666 | "are propagated up to the EM execution loop and it makes the program flow very "
|
---|
2667 | "difficult to follow.\n"));
|
---|
2668 | }
|
---|
2669 | }
|
---|
2670 |
|
---|
2671 |
|
---|
2672 | /**
|
---|
2673 | * Registers a VM state change callback.
|
---|
2674 | *
|
---|
2675 | * You are not allowed to call any function which changes the VM state from a
|
---|
2676 | * state callback, except VMR3Destroy().
|
---|
2677 | *
|
---|
2678 | * @returns VBox status code.
|
---|
2679 | * @param pVM VM handle.
|
---|
2680 | * @param pfnAtState Pointer to callback.
|
---|
2681 | * @param pvUser User argument.
|
---|
2682 | * @thread Any.
|
---|
2683 | */
|
---|
2684 | VMMR3DECL(int) VMR3AtStateRegister(PVM pVM, PFNVMATSTATE pfnAtState, void *pvUser)
|
---|
2685 | {
|
---|
2686 | LogFlow(("VMR3AtStateRegister: pfnAtState=%p pvUser=%p\n", pfnAtState, pvUser));
|
---|
2687 |
|
---|
2688 | /*
|
---|
2689 | * Validate input.
|
---|
2690 | */
|
---|
2691 | if (!pfnAtState)
|
---|
2692 | {
|
---|
2693 | AssertMsgFailed(("callback is required\n"));
|
---|
2694 | return VERR_INVALID_PARAMETER;
|
---|
2695 | }
|
---|
2696 |
|
---|
2697 | /*
|
---|
2698 | * Make sure we're in EMT (to avoid the logging).
|
---|
2699 | */
|
---|
2700 | PVMREQ pReq;
|
---|
2701 | int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtStateRegisterU, 3, pVM->pUVM, pfnAtState, pvUser);
|
---|
2702 | if (RT_FAILURE(rc))
|
---|
2703 | return rc;
|
---|
2704 | rc = pReq->iStatus;
|
---|
2705 | VMR3ReqFree(pReq);
|
---|
2706 |
|
---|
2707 | LogFlow(("VMR3AtStateRegister: returns %Rrc\n", rc));
|
---|
2708 | return rc;
|
---|
2709 | }
|
---|
2710 |
|
---|
2711 |
|
---|
2712 | /**
|
---|
2713 | * Registers a VM state change callback.
|
---|
2714 | *
|
---|
2715 | * @returns VBox status code.
|
---|
2716 | * @param pUVM Pointer to the user mode VM structure.
|
---|
2717 | * @param pfnAtState Pointer to callback.
|
---|
2718 | * @param pvUser User argument.
|
---|
2719 | * @thread EMT
|
---|
2720 | */
|
---|
2721 | static DECLCALLBACK(int) vmR3AtStateRegisterU(PUVM pUVM, PFNVMATSTATE pfnAtState, void *pvUser)
|
---|
2722 | {
|
---|
2723 | /*
|
---|
2724 | * Allocate a new record.
|
---|
2725 | */
|
---|
2726 |
|
---|
2727 | PVMATSTATE pNew = (PVMATSTATE)MMR3HeapAllocU(pUVM, MM_TAG_VM, sizeof(*pNew));
|
---|
2728 | if (!pNew)
|
---|
2729 | return VERR_NO_MEMORY;
|
---|
2730 |
|
---|
2731 | /* fill */
|
---|
2732 | pNew->pfnAtState = pfnAtState;
|
---|
2733 | pNew->pvUser = pvUser;
|
---|
2734 |
|
---|
2735 | /* insert */
|
---|
2736 | pNew->pNext = *pUVM->vm.s.ppAtStateNext;
|
---|
2737 | *pUVM->vm.s.ppAtStateNext = pNew;
|
---|
2738 | pUVM->vm.s.ppAtStateNext = &pNew->pNext;
|
---|
2739 |
|
---|
2740 | return VINF_SUCCESS;
|
---|
2741 | }
|
---|
2742 |
|
---|
2743 |
|
---|
2744 | /**
|
---|
2745 | * Deregisters a VM state change callback.
|
---|
2746 | *
|
---|
2747 | * @returns VBox status code.
|
---|
2748 | * @param pVM VM handle.
|
---|
2749 | * @param pfnAtState Pointer to callback.
|
---|
2750 | * @param pvUser User argument.
|
---|
2751 | * @thread Any.
|
---|
2752 | */
|
---|
2753 | VMMR3DECL(int) VMR3AtStateDeregister(PVM pVM, PFNVMATSTATE pfnAtState, void *pvUser)
|
---|
2754 | {
|
---|
2755 | LogFlow(("VMR3AtStateDeregister: pfnAtState=%p pvUser=%p\n", pfnAtState, pvUser));
|
---|
2756 |
|
---|
2757 | /*
|
---|
2758 | * Validate input.
|
---|
2759 | */
|
---|
2760 | if (!pfnAtState)
|
---|
2761 | {
|
---|
2762 | AssertMsgFailed(("callback is required\n"));
|
---|
2763 | return VERR_INVALID_PARAMETER;
|
---|
2764 | }
|
---|
2765 |
|
---|
2766 | /*
|
---|
2767 | * Make sure we're in EMT (to avoid the logging).
|
---|
2768 | */
|
---|
2769 | PVMREQ pReq;
|
---|
2770 | int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtStateDeregisterU, 3, pVM->pUVM, pfnAtState, pvUser);
|
---|
2771 | if (RT_FAILURE(rc))
|
---|
2772 | return rc;
|
---|
2773 | rc = pReq->iStatus;
|
---|
2774 | VMR3ReqFree(pReq);
|
---|
2775 |
|
---|
2776 | LogFlow(("VMR3AtStateDeregister: returns %Rrc\n", rc));
|
---|
2777 | return rc;
|
---|
2778 | }
|
---|
2779 |
|
---|
2780 |
|
---|
2781 | /**
|
---|
2782 | * Deregisters a VM state change callback.
|
---|
2783 | *
|
---|
2784 | * @returns VBox status code.
|
---|
2785 | * @param pUVM Pointer to the user mode VM structure.
|
---|
2786 | * @param pfnAtState Pointer to callback.
|
---|
2787 | * @param pvUser User argument.
|
---|
2788 | * @thread EMT
|
---|
2789 | */
|
---|
2790 | static DECLCALLBACK(int) vmR3AtStateDeregisterU(PUVM pUVM, PFNVMATSTATE pfnAtState, void *pvUser)
|
---|
2791 | {
|
---|
2792 | LogFlow(("vmR3AtStateDeregisterU: pfnAtState=%p pvUser=%p\n", pfnAtState, pvUser));
|
---|
2793 |
|
---|
2794 | /*
|
---|
2795 | * Search the list for the entry.
|
---|
2796 | */
|
---|
2797 | PVMATSTATE pPrev = NULL;
|
---|
2798 | PVMATSTATE pCur = pUVM->vm.s.pAtState;
|
---|
2799 | while ( pCur
|
---|
2800 | && ( pCur->pfnAtState != pfnAtState
|
---|
2801 | || pCur->pvUser != pvUser))
|
---|
2802 | {
|
---|
2803 | pPrev = pCur;
|
---|
2804 | pCur = pCur->pNext;
|
---|
2805 | }
|
---|
2806 | if (!pCur)
|
---|
2807 | {
|
---|
2808 | AssertMsgFailed(("pfnAtState=%p was not found\n", pfnAtState));
|
---|
2809 | return VERR_FILE_NOT_FOUND;
|
---|
2810 | }
|
---|
2811 |
|
---|
2812 | /*
|
---|
2813 | * Unlink it.
|
---|
2814 | */
|
---|
2815 | if (pPrev)
|
---|
2816 | {
|
---|
2817 | pPrev->pNext = pCur->pNext;
|
---|
2818 | if (!pCur->pNext)
|
---|
2819 | pUVM->vm.s.ppAtStateNext = &pPrev->pNext;
|
---|
2820 | }
|
---|
2821 | else
|
---|
2822 | {
|
---|
2823 | pUVM->vm.s.pAtState = pCur->pNext;
|
---|
2824 | if (!pCur->pNext)
|
---|
2825 | pUVM->vm.s.ppAtStateNext = &pUVM->vm.s.pAtState;
|
---|
2826 | }
|
---|
2827 |
|
---|
2828 | /*
|
---|
2829 | * Free it.
|
---|
2830 | */
|
---|
2831 | pCur->pfnAtState = NULL;
|
---|
2832 | pCur->pNext = NULL;
|
---|
2833 | MMR3HeapFree(pCur);
|
---|
2834 |
|
---|
2835 | return VINF_SUCCESS;
|
---|
2836 | }
|
---|
2837 |
|
---|
2838 |
|
---|
2839 | /**
|
---|
2840 | * Registers a VM error callback.
|
---|
2841 | *
|
---|
2842 | * @returns VBox status code.
|
---|
2843 | * @param pVM The VM handle.
|
---|
2844 | * @param pfnAtError Pointer to callback.
|
---|
2845 | * @param pvUser User argument.
|
---|
2846 | * @thread Any.
|
---|
2847 | */
|
---|
2848 | VMMR3DECL(int) VMR3AtErrorRegister(PVM pVM, PFNVMATERROR pfnAtError, void *pvUser)
|
---|
2849 | {
|
---|
2850 | return VMR3AtErrorRegisterU(pVM->pUVM, pfnAtError, pvUser);
|
---|
2851 | }
|
---|
2852 |
|
---|
2853 |
|
---|
2854 | /**
|
---|
2855 | * Registers a VM error callback.
|
---|
2856 | *
|
---|
2857 | * @returns VBox status code.
|
---|
2858 | * @param pUVM The VM handle.
|
---|
2859 | * @param pfnAtError Pointer to callback.
|
---|
2860 | * @param pvUser User argument.
|
---|
2861 | * @thread Any.
|
---|
2862 | */
|
---|
2863 | VMMR3DECL(int) VMR3AtErrorRegisterU(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser)
|
---|
2864 | {
|
---|
2865 | LogFlow(("VMR3AtErrorRegister: pfnAtError=%p pvUser=%p\n", pfnAtError, pvUser));
|
---|
2866 | AssertPtrReturn(pfnAtError, VERR_INVALID_PARAMETER);
|
---|
2867 |
|
---|
2868 | /*
|
---|
2869 | * Make sure we're in EMT (to avoid the logging).
|
---|
2870 | */
|
---|
2871 | PVMREQ pReq;
|
---|
2872 | int rc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3AtErrorRegisterU, 3, pUVM, pfnAtError, pvUser);
|
---|
2873 | if (RT_FAILURE(rc))
|
---|
2874 | return rc;
|
---|
2875 | rc = pReq->iStatus;
|
---|
2876 | VMR3ReqFree(pReq);
|
---|
2877 |
|
---|
2878 | LogFlow(("VMR3AtErrorRegister: returns %Rrc\n", rc));
|
---|
2879 | return rc;
|
---|
2880 | }
|
---|
2881 |
|
---|
2882 |
|
---|
2883 | /**
|
---|
2884 | * Registers a VM error callback.
|
---|
2885 | *
|
---|
2886 | * @returns VBox status code.
|
---|
2887 | * @param pUVM Pointer to the user mode VM structure.
|
---|
2888 | * @param pfnAtError Pointer to callback.
|
---|
2889 | * @param pvUser User argument.
|
---|
2890 | * @thread EMT
|
---|
2891 | */
|
---|
2892 | static DECLCALLBACK(int) vmR3AtErrorRegisterU(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser)
|
---|
2893 | {
|
---|
2894 | /*
|
---|
2895 | * Allocate a new record.
|
---|
2896 | */
|
---|
2897 |
|
---|
2898 | PVMATERROR pNew = (PVMATERROR)MMR3HeapAllocU(pUVM, MM_TAG_VM, sizeof(*pNew));
|
---|
2899 | if (!pNew)
|
---|
2900 | return VERR_NO_MEMORY;
|
---|
2901 |
|
---|
2902 | /* fill */
|
---|
2903 | pNew->pfnAtError = pfnAtError;
|
---|
2904 | pNew->pvUser = pvUser;
|
---|
2905 |
|
---|
2906 | /* insert */
|
---|
2907 | pNew->pNext = *pUVM->vm.s.ppAtErrorNext;
|
---|
2908 | *pUVM->vm.s.ppAtErrorNext = pNew;
|
---|
2909 | pUVM->vm.s.ppAtErrorNext = &pNew->pNext;
|
---|
2910 |
|
---|
2911 | return VINF_SUCCESS;
|
---|
2912 | }
|
---|
2913 |
|
---|
2914 |
|
---|
2915 | /**
|
---|
2916 | * Deregisters a VM error callback.
|
---|
2917 | *
|
---|
2918 | * @returns VBox status code.
|
---|
2919 | * @param pVM The VM handle.
|
---|
2920 | * @param pfnAtError Pointer to callback.
|
---|
2921 | * @param pvUser User argument.
|
---|
2922 | * @thread Any.
|
---|
2923 | */
|
---|
2924 | VMMR3DECL(int) VMR3AtErrorDeregister(PVM pVM, PFNVMATERROR pfnAtError, void *pvUser)
|
---|
2925 | {
|
---|
2926 | LogFlow(("VMR3AtErrorDeregister: pfnAtError=%p pvUser=%p\n", pfnAtError, pvUser));
|
---|
2927 |
|
---|
2928 | /*
|
---|
2929 | * Validate input.
|
---|
2930 | */
|
---|
2931 | if (!pfnAtError)
|
---|
2932 | {
|
---|
2933 | AssertMsgFailed(("callback is required\n"));
|
---|
2934 | return VERR_INVALID_PARAMETER;
|
---|
2935 | }
|
---|
2936 |
|
---|
2937 | /*
|
---|
2938 | * Make sure we're in EMT (to avoid the logging).
|
---|
2939 | */
|
---|
2940 | PVMREQ pReq;
|
---|
2941 | int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtErrorDeregisterU, 3, pVM->pUVM, pfnAtError, pvUser);
|
---|
2942 | if (RT_FAILURE(rc))
|
---|
2943 | return rc;
|
---|
2944 | rc = pReq->iStatus;
|
---|
2945 | VMR3ReqFree(pReq);
|
---|
2946 |
|
---|
2947 | LogFlow(("VMR3AtErrorDeregister: returns %Rrc\n", rc));
|
---|
2948 | return rc;
|
---|
2949 | }
|
---|
2950 |
|
---|
2951 |
|
---|
2952 | /**
|
---|
2953 | * Deregisters a VM error callback.
|
---|
2954 | *
|
---|
2955 | * @returns VBox status code.
|
---|
2956 | * @param pUVM Pointer to the user mode VM structure.
|
---|
2957 | * @param pfnAtError Pointer to callback.
|
---|
2958 | * @param pvUser User argument.
|
---|
2959 | * @thread EMT
|
---|
2960 | */
|
---|
2961 | static DECLCALLBACK(int) vmR3AtErrorDeregisterU(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser)
|
---|
2962 | {
|
---|
2963 | LogFlow(("vmR3AtErrorDeregisterU: pfnAtError=%p pvUser=%p\n", pfnAtError, pvUser));
|
---|
2964 |
|
---|
2965 | /*
|
---|
2966 | * Search the list for the entry.
|
---|
2967 | */
|
---|
2968 | PVMATERROR pPrev = NULL;
|
---|
2969 | PVMATERROR pCur = pUVM->vm.s.pAtError;
|
---|
2970 | while ( pCur
|
---|
2971 | && ( pCur->pfnAtError != pfnAtError
|
---|
2972 | || pCur->pvUser != pvUser))
|
---|
2973 | {
|
---|
2974 | pPrev = pCur;
|
---|
2975 | pCur = pCur->pNext;
|
---|
2976 | }
|
---|
2977 | if (!pCur)
|
---|
2978 | {
|
---|
2979 | AssertMsgFailed(("pfnAtError=%p was not found\n", pfnAtError));
|
---|
2980 | return VERR_FILE_NOT_FOUND;
|
---|
2981 | }
|
---|
2982 |
|
---|
2983 | /*
|
---|
2984 | * Unlink it.
|
---|
2985 | */
|
---|
2986 | if (pPrev)
|
---|
2987 | {
|
---|
2988 | pPrev->pNext = pCur->pNext;
|
---|
2989 | if (!pCur->pNext)
|
---|
2990 | pUVM->vm.s.ppAtErrorNext = &pPrev->pNext;
|
---|
2991 | }
|
---|
2992 | else
|
---|
2993 | {
|
---|
2994 | pUVM->vm.s.pAtError = pCur->pNext;
|
---|
2995 | if (!pCur->pNext)
|
---|
2996 | pUVM->vm.s.ppAtErrorNext = &pUVM->vm.s.pAtError;
|
---|
2997 | }
|
---|
2998 |
|
---|
2999 | /*
|
---|
3000 | * Free it.
|
---|
3001 | */
|
---|
3002 | pCur->pfnAtError = NULL;
|
---|
3003 | pCur->pNext = NULL;
|
---|
3004 | MMR3HeapFree(pCur);
|
---|
3005 |
|
---|
3006 | return VINF_SUCCESS;
|
---|
3007 | }
|
---|
3008 |
|
---|
3009 |
|
---|
3010 | /**
|
---|
3011 | * Ellipsis to va_list wrapper for calling pfnAtError.
|
---|
3012 | */
|
---|
3013 | static void vmR3SetErrorWorkerDoCall(PVM pVM, PVMATERROR pCur, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
|
---|
3014 | {
|
---|
3015 | va_list va;
|
---|
3016 | va_start(va, pszFormat);
|
---|
3017 | pCur->pfnAtError(pVM, pCur->pvUser, rc, RT_SRC_POS_ARGS, pszFormat, va);
|
---|
3018 | va_end(va);
|
---|
3019 | }
|
---|
3020 |
|
---|
3021 |
|
---|
3022 | /**
|
---|
3023 | * This is a worker function for GC and Ring-0 calls to VMSetError and VMSetErrorV.
|
---|
3024 | * The message is found in VMINT.
|
---|
3025 | *
|
---|
3026 | * @param pVM The VM handle.
|
---|
3027 | * @thread EMT.
|
---|
3028 | */
|
---|
3029 | VMMR3DECL(void) VMR3SetErrorWorker(PVM pVM)
|
---|
3030 | {
|
---|
3031 | VM_ASSERT_EMT(pVM);
|
---|
3032 | AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetErrorV! Contrats!\n"));
|
---|
3033 |
|
---|
3034 | /*
|
---|
3035 | * Unpack the error (if we managed to format one).
|
---|
3036 | */
|
---|
3037 | PVMERROR pErr = pVM->vm.s.pErrorR3;
|
---|
3038 | const char *pszFile = NULL;
|
---|
3039 | const char *pszFunction = NULL;
|
---|
3040 | uint32_t iLine = 0;
|
---|
3041 | const char *pszMessage;
|
---|
3042 | int32_t rc = VERR_MM_HYPER_NO_MEMORY;
|
---|
3043 | if (pErr)
|
---|
3044 | {
|
---|
3045 | AssertCompile(sizeof(const char) == sizeof(uint8_t));
|
---|
3046 | if (pErr->offFile)
|
---|
3047 | pszFile = (const char *)pErr + pErr->offFile;
|
---|
3048 | iLine = pErr->iLine;
|
---|
3049 | if (pErr->offFunction)
|
---|
3050 | pszFunction = (const char *)pErr + pErr->offFunction;
|
---|
3051 | if (pErr->offMessage)
|
---|
3052 | pszMessage = (const char *)pErr + pErr->offMessage;
|
---|
3053 | else
|
---|
3054 | pszMessage = "No message!";
|
---|
3055 | }
|
---|
3056 | else
|
---|
3057 | pszMessage = "No message! (Failed to allocate memory to put the error message in!)";
|
---|
3058 |
|
---|
3059 | /*
|
---|
3060 | * Call the at error callbacks.
|
---|
3061 | */
|
---|
3062 | for (PVMATERROR pCur = pVM->pUVM->vm.s.pAtError; pCur; pCur = pCur->pNext)
|
---|
3063 | vmR3SetErrorWorkerDoCall(pVM, pCur, rc, RT_SRC_POS_ARGS, "%s", pszMessage);
|
---|
3064 | }
|
---|
3065 |
|
---|
3066 |
|
---|
3067 | /**
|
---|
3068 | * Creation time wrapper for vmR3SetErrorUV.
|
---|
3069 | *
|
---|
3070 | * @returns rc.
|
---|
3071 | * @param pUVM Pointer to the user mode VM structure.
|
---|
3072 | * @param rc The VBox status code.
|
---|
3073 | * @param RT_SRC_POS_DECL The source position of this error.
|
---|
3074 | * @param pszFormat Format string.
|
---|
3075 | * @param ... The arguments.
|
---|
3076 | * @thread Any thread.
|
---|
3077 | */
|
---|
3078 | static int vmR3SetErrorU(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
|
---|
3079 | {
|
---|
3080 | va_list va;
|
---|
3081 | va_start(va, pszFormat);
|
---|
3082 | vmR3SetErrorUV(pUVM, rc, pszFile, iLine, pszFunction, pszFormat, &va);
|
---|
3083 | va_end(va);
|
---|
3084 | return rc;
|
---|
3085 | }
|
---|
3086 |
|
---|
3087 |
|
---|
3088 | /**
|
---|
3089 | * Worker which calls everyone listening to the VM error messages.
|
---|
3090 | *
|
---|
3091 | * @param pUVM Pointer to the user mode VM structure.
|
---|
3092 | * @param rc The VBox status code.
|
---|
3093 | * @param RT_SRC_POS_DECL The source position of this error.
|
---|
3094 | * @param pszFormat Format string.
|
---|
3095 | * @param pArgs Pointer to the format arguments.
|
---|
3096 | * @thread EMT
|
---|
3097 | */
|
---|
3098 | DECLCALLBACK(void) vmR3SetErrorUV(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list *pArgs)
|
---|
3099 | {
|
---|
3100 | #ifdef LOG_ENABLED
|
---|
3101 | /*
|
---|
3102 | * Log the error.
|
---|
3103 | */
|
---|
3104 | RTLogPrintf("VMSetError: %s(%d) %s\n", pszFile, iLine, pszFunction);
|
---|
3105 | va_list va3;
|
---|
3106 | va_copy(va3, *pArgs);
|
---|
3107 | RTLogPrintfV(pszFormat, va3);
|
---|
3108 | va_end(va3);
|
---|
3109 | RTLogPrintf("\n");
|
---|
3110 | #endif
|
---|
3111 |
|
---|
3112 | /*
|
---|
3113 | * Make a copy of the message.
|
---|
3114 | */
|
---|
3115 | if (pUVM->pVM)
|
---|
3116 | vmSetErrorCopy(pUVM->pVM, rc, RT_SRC_POS_ARGS, pszFormat, *pArgs);
|
---|
3117 |
|
---|
3118 | /*
|
---|
3119 | * Call the at error callbacks.
|
---|
3120 | */
|
---|
3121 | for (PVMATERROR pCur = pUVM->vm.s.pAtError; pCur; pCur = pCur->pNext)
|
---|
3122 | {
|
---|
3123 | va_list va2;
|
---|
3124 | va_copy(va2, *pArgs);
|
---|
3125 | pCur->pfnAtError(pUVM->pVM, pCur->pvUser, rc, RT_SRC_POS_ARGS, pszFormat, va2);
|
---|
3126 | va_end(va2);
|
---|
3127 | }
|
---|
3128 | }
|
---|
3129 |
|
---|
3130 |
|
---|
3131 | /**
|
---|
3132 | * Registers a VM runtime error callback.
|
---|
3133 | *
|
---|
3134 | * @returns VBox status code.
|
---|
3135 | * @param pVM The VM handle.
|
---|
3136 | * @param pfnAtRuntimeError Pointer to callback.
|
---|
3137 | * @param pvUser User argument.
|
---|
3138 | * @thread Any.
|
---|
3139 | */
|
---|
3140 | VMMR3DECL(int) VMR3AtRuntimeErrorRegister(PVM pVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
|
---|
3141 | {
|
---|
3142 | LogFlow(("VMR3AtRuntimeErrorRegister: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
|
---|
3143 |
|
---|
3144 | /*
|
---|
3145 | * Validate input.
|
---|
3146 | */
|
---|
3147 | if (!pfnAtRuntimeError)
|
---|
3148 | {
|
---|
3149 | AssertMsgFailed(("callback is required\n"));
|
---|
3150 | return VERR_INVALID_PARAMETER;
|
---|
3151 | }
|
---|
3152 |
|
---|
3153 | /*
|
---|
3154 | * Make sure we're in EMT (to avoid the logging).
|
---|
3155 | */
|
---|
3156 | PVMREQ pReq;
|
---|
3157 | int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtRuntimeErrorRegisterU, 3, pVM->pUVM, pfnAtRuntimeError, pvUser);
|
---|
3158 | if (RT_FAILURE(rc))
|
---|
3159 | return rc;
|
---|
3160 | rc = pReq->iStatus;
|
---|
3161 | VMR3ReqFree(pReq);
|
---|
3162 |
|
---|
3163 | LogFlow(("VMR3AtRuntimeErrorRegister: returns %Rrc\n", rc));
|
---|
3164 | return rc;
|
---|
3165 | }
|
---|
3166 |
|
---|
3167 |
|
---|
3168 | /**
|
---|
3169 | * Registers a VM runtime error callback.
|
---|
3170 | *
|
---|
3171 | * @returns VBox status code.
|
---|
3172 | * @param pUVM Pointer to the user mode VM structure.
|
---|
3173 | * @param pfnAtRuntimeError Pointer to callback.
|
---|
3174 | * @param pvUser User argument.
|
---|
3175 | * @thread EMT
|
---|
3176 | */
|
---|
3177 | static DECLCALLBACK(int) vmR3AtRuntimeErrorRegisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
|
---|
3178 | {
|
---|
3179 | /*
|
---|
3180 | * Allocate a new record.
|
---|
3181 | */
|
---|
3182 |
|
---|
3183 | PVMATRUNTIMEERROR pNew = (PVMATRUNTIMEERROR)MMR3HeapAllocU(pUVM, MM_TAG_VM, sizeof(*pNew));
|
---|
3184 | if (!pNew)
|
---|
3185 | return VERR_NO_MEMORY;
|
---|
3186 |
|
---|
3187 | /* fill */
|
---|
3188 | pNew->pfnAtRuntimeError = pfnAtRuntimeError;
|
---|
3189 | pNew->pvUser = pvUser;
|
---|
3190 |
|
---|
3191 | /* insert */
|
---|
3192 | pNew->pNext = *pUVM->vm.s.ppAtRuntimeErrorNext;
|
---|
3193 | *pUVM->vm.s.ppAtRuntimeErrorNext = pNew;
|
---|
3194 | pUVM->vm.s.ppAtRuntimeErrorNext = &pNew->pNext;
|
---|
3195 |
|
---|
3196 | return VINF_SUCCESS;
|
---|
3197 | }
|
---|
3198 |
|
---|
3199 |
|
---|
3200 | /**
|
---|
3201 | * Deregisters a VM runtime error callback.
|
---|
3202 | *
|
---|
3203 | * @returns VBox status code.
|
---|
3204 | * @param pVM The VM handle.
|
---|
3205 | * @param pfnAtRuntimeError Pointer to callback.
|
---|
3206 | * @param pvUser User argument.
|
---|
3207 | * @thread Any.
|
---|
3208 | */
|
---|
3209 | VMMR3DECL(int) VMR3AtRuntimeErrorDeregister(PVM pVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
|
---|
3210 | {
|
---|
3211 | LogFlow(("VMR3AtRuntimeErrorDeregister: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
|
---|
3212 |
|
---|
3213 | /*
|
---|
3214 | * Validate input.
|
---|
3215 | */
|
---|
3216 | if (!pfnAtRuntimeError)
|
---|
3217 | {
|
---|
3218 | AssertMsgFailed(("callback is required\n"));
|
---|
3219 | return VERR_INVALID_PARAMETER;
|
---|
3220 | }
|
---|
3221 |
|
---|
3222 | /*
|
---|
3223 | * Make sure we're in EMT (to avoid the logging).
|
---|
3224 | */
|
---|
3225 | PVMREQ pReq;
|
---|
3226 | int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtRuntimeErrorDeregisterU, 3, pVM->pUVM, pfnAtRuntimeError, pvUser);
|
---|
3227 | if (RT_FAILURE(rc))
|
---|
3228 | return rc;
|
---|
3229 | rc = pReq->iStatus;
|
---|
3230 | VMR3ReqFree(pReq);
|
---|
3231 |
|
---|
3232 | LogFlow(("VMR3AtRuntimeErrorDeregister: returns %Rrc\n", rc));
|
---|
3233 | return rc;
|
---|
3234 | }
|
---|
3235 |
|
---|
3236 |
|
---|
3237 | /**
|
---|
3238 | * Deregisters a VM runtime error callback.
|
---|
3239 | *
|
---|
3240 | * @returns VBox status code.
|
---|
3241 | * @param pUVM Pointer to the user mode VM structure.
|
---|
3242 | * @param pfnAtRuntimeError Pointer to callback.
|
---|
3243 | * @param pvUser User argument.
|
---|
3244 | * @thread EMT
|
---|
3245 | */
|
---|
3246 | static DECLCALLBACK(int) vmR3AtRuntimeErrorDeregisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
|
---|
3247 | {
|
---|
3248 | LogFlow(("vmR3AtRuntimeErrorDeregisterU: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
|
---|
3249 |
|
---|
3250 | /*
|
---|
3251 | * Search the list for the entry.
|
---|
3252 | */
|
---|
3253 | PVMATRUNTIMEERROR pPrev = NULL;
|
---|
3254 | PVMATRUNTIMEERROR pCur = pUVM->vm.s.pAtRuntimeError;
|
---|
3255 | while ( pCur
|
---|
3256 | && ( pCur->pfnAtRuntimeError != pfnAtRuntimeError
|
---|
3257 | || pCur->pvUser != pvUser))
|
---|
3258 | {
|
---|
3259 | pPrev = pCur;
|
---|
3260 | pCur = pCur->pNext;
|
---|
3261 | }
|
---|
3262 | if (!pCur)
|
---|
3263 | {
|
---|
3264 | AssertMsgFailed(("pfnAtRuntimeError=%p was not found\n", pfnAtRuntimeError));
|
---|
3265 | return VERR_FILE_NOT_FOUND;
|
---|
3266 | }
|
---|
3267 |
|
---|
3268 | /*
|
---|
3269 | * Unlink it.
|
---|
3270 | */
|
---|
3271 | if (pPrev)
|
---|
3272 | {
|
---|
3273 | pPrev->pNext = pCur->pNext;
|
---|
3274 | if (!pCur->pNext)
|
---|
3275 | pUVM->vm.s.ppAtRuntimeErrorNext = &pPrev->pNext;
|
---|
3276 | }
|
---|
3277 | else
|
---|
3278 | {
|
---|
3279 | pUVM->vm.s.pAtRuntimeError = pCur->pNext;
|
---|
3280 | if (!pCur->pNext)
|
---|
3281 | pUVM->vm.s.ppAtRuntimeErrorNext = &pUVM->vm.s.pAtRuntimeError;
|
---|
3282 | }
|
---|
3283 |
|
---|
3284 | /*
|
---|
3285 | * Free it.
|
---|
3286 | */
|
---|
3287 | pCur->pfnAtRuntimeError = NULL;
|
---|
3288 | pCur->pNext = NULL;
|
---|
3289 | MMR3HeapFree(pCur);
|
---|
3290 |
|
---|
3291 | return VINF_SUCCESS;
|
---|
3292 | }
|
---|
3293 |
|
---|
3294 |
|
---|
3295 | /**
|
---|
3296 | * Worker for VMR3SetRuntimeErrorWorker and vmR3SetRuntimeErrorV.
|
---|
3297 | *
|
---|
3298 | * This does the common parts after the error has been saved / retrieved.
|
---|
3299 | *
|
---|
3300 | * @returns VBox status code with modifications, see VMSetRuntimeErrorV.
|
---|
3301 | *
|
---|
3302 | * @param pVM The VM handle.
|
---|
3303 | * @param fFlags The error flags.
|
---|
3304 | * @param pszErrorId Error ID string.
|
---|
3305 | * @param pszFormat Format string.
|
---|
3306 | * @param pVa Pointer to the format arguments.
|
---|
3307 | */
|
---|
3308 | static int vmR3SetRuntimeErrorCommon(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list *pVa)
|
---|
3309 | {
|
---|
3310 | LogRel(("VM: Raising runtime error '%s' (fFlags=%#x)\n", pszErrorId, fFlags));
|
---|
3311 |
|
---|
3312 | /*
|
---|
3313 | * Take actions before the call.
|
---|
3314 | */
|
---|
3315 | int rc = VINF_SUCCESS;
|
---|
3316 | if (fFlags & VMSETRTERR_FLAGS_FATAL)
|
---|
3317 | /** @todo Add some special VM state for the FATAL variant that isn't resumable.
|
---|
3318 | * It's too risky for 2.2.0, do after branching. */
|
---|
3319 | rc = VMR3SuspendNoSave(pVM);
|
---|
3320 | else if (fFlags & VMSETRTERR_FLAGS_SUSPEND)
|
---|
3321 | rc = VMR3Suspend(pVM);
|
---|
3322 |
|
---|
3323 | /*
|
---|
3324 | * Do the callback round.
|
---|
3325 | */
|
---|
3326 | for (PVMATRUNTIMEERROR pCur = pVM->pUVM->vm.s.pAtRuntimeError; pCur; pCur = pCur->pNext)
|
---|
3327 | {
|
---|
3328 | va_list va;
|
---|
3329 | va_copy(va, *pVa);
|
---|
3330 | pCur->pfnAtRuntimeError(pVM, pCur->pvUser, fFlags, pszErrorId, pszFormat, va);
|
---|
3331 | va_end(va);
|
---|
3332 | }
|
---|
3333 |
|
---|
3334 | return rc;
|
---|
3335 | }
|
---|
3336 |
|
---|
3337 |
|
---|
3338 | /**
|
---|
3339 | * Ellipsis to va_list wrapper for calling vmR3SetRuntimeErrorCommon.
|
---|
3340 | */
|
---|
3341 | static int vmR3SetRuntimeErrorCommonF(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
|
---|
3342 | {
|
---|
3343 | va_list va;
|
---|
3344 | va_start(va, pszFormat);
|
---|
3345 | int rc = vmR3SetRuntimeErrorCommon(pVM, fFlags, pszErrorId, pszFormat, &va);
|
---|
3346 | va_end(va);
|
---|
3347 | return rc;
|
---|
3348 | }
|
---|
3349 |
|
---|
3350 |
|
---|
3351 | /**
|
---|
3352 | * This is a worker function for RC and Ring-0 calls to VMSetError and
|
---|
3353 | * VMSetErrorV.
|
---|
3354 | *
|
---|
3355 | * The message is found in VMINT.
|
---|
3356 | *
|
---|
3357 | * @returns VBox status code, see VMSetRuntimeError.
|
---|
3358 | * @param pVM The VM handle.
|
---|
3359 | * @thread EMT.
|
---|
3360 | */
|
---|
3361 | VMMR3DECL(int) VMR3SetRuntimeErrorWorker(PVM pVM)
|
---|
3362 | {
|
---|
3363 | VM_ASSERT_EMT(pVM);
|
---|
3364 | AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetRuntimeErrorV! Congrats!\n"));
|
---|
3365 |
|
---|
3366 | /*
|
---|
3367 | * Unpack the error (if we managed to format one).
|
---|
3368 | */
|
---|
3369 | const char *pszErrorId = "SetRuntimeError";
|
---|
3370 | const char *pszMessage = "No message!";
|
---|
3371 | uint32_t fFlags = VMSETRTERR_FLAGS_FATAL;
|
---|
3372 | PVMRUNTIMEERROR pErr = pVM->vm.s.pRuntimeErrorR3;
|
---|
3373 | if (pErr)
|
---|
3374 | {
|
---|
3375 | AssertCompile(sizeof(const char) == sizeof(uint8_t));
|
---|
3376 | if (pErr->offErrorId)
|
---|
3377 | pszErrorId = (const char *)pErr + pErr->offErrorId;
|
---|
3378 | if (pErr->offMessage)
|
---|
3379 | pszMessage = (const char *)pErr + pErr->offMessage;
|
---|
3380 | fFlags = pErr->fFlags;
|
---|
3381 | }
|
---|
3382 |
|
---|
3383 | /*
|
---|
3384 | * Join cause with vmR3SetRuntimeErrorV.
|
---|
3385 | */
|
---|
3386 | return vmR3SetRuntimeErrorCommonF(pVM, fFlags, pszErrorId, "%s", pszMessage);
|
---|
3387 | }
|
---|
3388 |
|
---|
3389 |
|
---|
3390 | /**
|
---|
3391 | * Worker for VMSetRuntimeErrorV for doing the job on EMT in ring-3.
|
---|
3392 | *
|
---|
3393 | * @returns VBox status code with modifications, see VMSetRuntimeErrorV.
|
---|
3394 | *
|
---|
3395 | * @param pVM The VM handle.
|
---|
3396 | * @param fFlags The error flags.
|
---|
3397 | * @param pszErrorId Error ID string.
|
---|
3398 | * @param pszFormat Format string.
|
---|
3399 | * @param pVa Pointer to the format arguments.
|
---|
3400 | *
|
---|
3401 | * @thread EMT
|
---|
3402 | */
|
---|
3403 | DECLCALLBACK(int) vmR3SetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list *pVa)
|
---|
3404 | {
|
---|
3405 | /*
|
---|
3406 | * Make a copy of the message.
|
---|
3407 | */
|
---|
3408 | va_list va2;
|
---|
3409 | va_copy(va2, *pVa);
|
---|
3410 | vmSetRuntimeErrorCopy(pVM, fFlags, pszErrorId, pszFormat, va2);
|
---|
3411 | va_end(va2);
|
---|
3412 |
|
---|
3413 | /*
|
---|
3414 | * Join paths with VMR3SetRuntimeErrorWorker.
|
---|
3415 | */
|
---|
3416 | return vmR3SetRuntimeErrorCommon(pVM, fFlags, pszErrorId, pszFormat, pVa);
|
---|
3417 | }
|
---|
3418 |
|
---|
3419 |
|
---|
3420 | /**
|
---|
3421 | * Gets the ID virtual of the virtual CPU assoicated with the calling thread.
|
---|
3422 | *
|
---|
3423 | * @returns The CPU ID. NIL_VMCPUID if the thread isn't an EMT.
|
---|
3424 | *
|
---|
3425 | * @param pVM The VM handle.
|
---|
3426 | */
|
---|
3427 | VMMR3DECL(RTCPUID) VMR3GetVMCPUId(PVM pVM)
|
---|
3428 | {
|
---|
3429 | PUVMCPU pUVCpu = (PUVMCPU)RTTlsGet(pVM->pUVM->vm.s.idxTLS);
|
---|
3430 | return pUVCpu
|
---|
3431 | ? pUVCpu->idCpu
|
---|
3432 | : NIL_VMCPUID;
|
---|
3433 | }
|
---|
3434 |
|
---|
3435 |
|
---|
3436 | /**
|
---|
3437 | * Returns the native handle of the current EMT VMCPU thread.
|
---|
3438 | *
|
---|
3439 | * @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
|
---|
3440 | * @param pVM The VM handle.
|
---|
3441 | * @thread EMT
|
---|
3442 | */
|
---|
3443 | VMMR3DECL(RTNATIVETHREAD) VMR3GetVMCPUNativeThread(PVM pVM)
|
---|
3444 | {
|
---|
3445 | PUVMCPU pUVCpu = (PUVMCPU)RTTlsGet(pVM->pUVM->vm.s.idxTLS);
|
---|
3446 |
|
---|
3447 | if (!pUVCpu)
|
---|
3448 | return NIL_RTNATIVETHREAD;
|
---|
3449 |
|
---|
3450 | return pUVCpu->vm.s.NativeThreadEMT;
|
---|
3451 | }
|
---|
3452 |
|
---|
3453 |
|
---|
3454 | /**
|
---|
3455 | * Returns the native handle of the current EMT VMCPU thread.
|
---|
3456 | *
|
---|
3457 | * @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
|
---|
3458 | * @param pVM The VM handle.
|
---|
3459 | * @thread EMT
|
---|
3460 | */
|
---|
3461 | VMMR3DECL(RTNATIVETHREAD) VMR3GetVMCPUNativeThreadU(PUVM pUVM)
|
---|
3462 | {
|
---|
3463 | PUVMCPU pUVCpu = (PUVMCPU)RTTlsGet(pUVM->vm.s.idxTLS);
|
---|
3464 |
|
---|
3465 | if (!pUVCpu)
|
---|
3466 | return NIL_RTNATIVETHREAD;
|
---|
3467 |
|
---|
3468 | return pUVCpu->vm.s.NativeThreadEMT;
|
---|
3469 | }
|
---|
3470 |
|
---|
3471 |
|
---|
3472 | /**
|
---|
3473 | * Returns the handle of the current EMT VMCPU thread.
|
---|
3474 | *
|
---|
3475 | * @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
|
---|
3476 | * @param pVM The VM handle.
|
---|
3477 | * @thread EMT
|
---|
3478 | */
|
---|
3479 | VMMR3DECL(RTTHREAD) VMR3GetVMCPUThread(PVM pVM)
|
---|
3480 | {
|
---|
3481 | PUVMCPU pUVCpu = (PUVMCPU)RTTlsGet(pVM->pUVM->vm.s.idxTLS);
|
---|
3482 |
|
---|
3483 | if (!pUVCpu)
|
---|
3484 | return NIL_RTTHREAD;
|
---|
3485 |
|
---|
3486 | return pUVCpu->vm.s.ThreadEMT;
|
---|
3487 | }
|
---|
3488 |
|
---|
3489 |
|
---|
3490 | /**
|
---|
3491 | * Returns the handle of the current EMT VMCPU thread.
|
---|
3492 | *
|
---|
3493 | * @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
|
---|
3494 | * @param pVM The VM handle.
|
---|
3495 | * @thread EMT
|
---|
3496 | */
|
---|
3497 | VMMR3DECL(RTTHREAD) VMR3GetVMCPUThreadU(PUVM pUVM)
|
---|
3498 | {
|
---|
3499 | PUVMCPU pUVCpu = (PUVMCPU)RTTlsGet(pUVM->vm.s.idxTLS);
|
---|
3500 |
|
---|
3501 | if (!pUVCpu)
|
---|
3502 | return NIL_RTTHREAD;
|
---|
3503 |
|
---|
3504 | return pUVCpu->vm.s.ThreadEMT;
|
---|
3505 | }
|
---|
3506 |
|
---|