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