VM.cpp revision 6615581dfd7e660a794fd662a3f214c645151085
/* $Id$ */
/** @file
* VM - Virtual Machine
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/** @page pg_vm VM API
*
* This is the encapsulating bit. It provides the APIs that Main and VBoxBFE
* use to create a VMM instance for running a guest in. It also provides
* facilities for queuing request for execution in EMT (serialization purposes
*
*
* @section sec_vm_design Design Critique / Things To Do
*
* In hindsight this component is a big design mistake, all this stuff really
* belongs in the VMM component. It just seemed like a kind of ok idea at a
* time when the VMM bit was a bit vague. 'VM' also happend to be the name of
* the per-VM instance structure (see vm.h), so it kind of made sense. However
* as it turned out, VMM(.cpp) is almost empty all it provides in ring-3 is some
* minor functionally and some "routing" services.
*
* Fixing this is just a matter of some more or less straight forward
* refactoring, the question is just when someone will get to it.
*
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_VM
#include <VBox/pdmcritsect.h>
#ifdef VBOX_WITH_VMI
#endif
#include "VMInternal.h"
#include <iprt/semaphore.h>
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* VM destruction callback registration record.
*/
typedef struct VMATDTOR
{
/** Pointer to the next record in the list. */
/** Pointer to the callback function. */
/** The user argument. */
void *pvUser;
} VMATDTOR;
/** Pointer to a VM destruction callback registration record. */
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/** Pointer to the list of VMs. */
/** Pointer to the list of at VM destruction callbacks. */
/** Lock the g_pVMAtDtorHead list. */
#define VM_ATDTOR_LOCK() do { } while (0)
/** Unlock the g_pVMAtDtorHead list. */
#define VM_ATDTOR_UNLOCK() do { } while (0)
/*******************************************************************************
* Internal Functions *
*******************************************************************************/
static int vmR3CreateU(PUVM pUVM, uint32_t cCPUs, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM);
static DECLCALLBACK(size_t) vmR3LogPrefixCallback(PRTLOGGER pLogger, char *pchBuf, size_t cchBuf, void *pvUser);
static DECLCALLBACK(int) vmR3Save(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser);
static DECLCALLBACK(int) vmR3Load(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser);
static DECLCALLBACK(int) vmR3AtRuntimeErrorRegisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser);
static DECLCALLBACK(int) vmR3AtRuntimeErrorDeregisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser);
/**
* Do global VMM init.
*
* @returns VBox status code.
*/
VMMR3DECL(int) VMR3GlobalInit(void)
{
/*
* Only once.
*/
static bool volatile s_fDone = false;
if (s_fDone)
return VINF_SUCCESS;
/*
* We're done.
*/
s_fDone = true;
return VINF_SUCCESS;
}
/**
* Creates a virtual machine by calling the supplied configuration constructor.
*
* On successful returned the VM is powered, i.e. VMR3PowerOn() should be
* called to start the execution.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param cCPUs Number of virtual CPUs for the new VM.
* @param pfnVMAtError Pointer to callback function for setting VM
* errors. This was added as an implicit call to
* VMR3AtErrorRegister() since there is no way the
* caller can get to the VM handle early enough to
* do this on its own.
* This is called in the context of an EMT.
* @param pvUserVM The user argument passed to pfnVMAtError.
* @param pfnCFGMConstructor Pointer to callback function for constructing the VM configuration tree.
* This is called in the context of an EMT0.
* @param pvUserCFGM The user argument passed to pfnCFGMConstructor.
* @param ppVM Where to store the 'handle' of the created VM.
*/
VMMR3DECL(int) VMR3Create(uint32_t cCPUs, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM)
{
LogFlow(("VMR3Create: cCPUs=%RU32 pfnVMAtError=%p pvUserVM=%p pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p\n", cCPUs, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM));
/*
* Because of the current hackiness of the applications
* we'll have to initialize global stuff from here.
* Later the applications will take care of this in a proper way.
*/
static bool fGlobalInitDone = false;
if (!fGlobalInitDone)
{
int rc = VMR3GlobalInit();
if (RT_FAILURE(rc))
return rc;
fGlobalInitDone = true;
}
/*
* Validate input.
*/
AssertLogRelMsgReturn(cCPUs > 0 && cCPUs <= VMM_MAX_CPU_COUNT, ("%RU32\n", cCPUs), VERR_TOO_MANY_CPUS);
/*
* Create the UVM so we can register the at-error callback
* and consoliate a bit of cleanup code.
*/
if (RT_FAILURE(rc))
return rc;
if (pfnVMAtError)
if (RT_SUCCESS(rc))
{
/*
* Initialize the support library creating the session for this VM.
*/
if (RT_SUCCESS(rc))
{
/*
* Call vmR3CreateU in the EMT thread and wait for it to finish.
*
* Note! VMCPUID_ANY is used here because VMR3ReqQueueU would have trouble
* submitting a request to a specific VCPU without a pVM. So, to make
* sure init is running on EMT(0), vmR3EmulationThreadWithId makes sure
* that only EMT(0) is servicing VMCPUID_ANY requests when pVM is NULL.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
/*
* Success!
*/
return VINF_SUCCESS;
}
}
else
/*
* An error occurred during VM creation. Set the error message directly
* using the initial callback, as the callback list doesn't exist yet.
*/
switch (rc)
{
#ifdef RT_OS_LINUX
"Please disable the KVM kernel extension, recompile your kernel and reboot");
#else
pszError = N_("VirtualBox can't operate in VMX root mode. Please close all other virtualization programs.");
#endif
break;
case VERR_VERSION_MISMATCH:
"VBoxNetDHCP is not running and try again. If you still get this error, "
"re-install VirtualBox");
break;
#ifdef RT_OS_LINUX
"that no kernel modules from an older version of VirtualBox exist. "
"Then try to recompile and reload the kernel modules by executing "
break;
#endif
default:
break;
}
}
else
{
/*
* An error occurred at support library initialization time (before the
* VM could be created). Set the error message directly using the
* initial callback, as the callback list doesn't exist yet.
*/
const char *pszError;
switch (rc)
{
#ifdef RT_OS_LINUX
"Re-setup the kernel module by executing "
#else
#endif
break;
break;
#ifdef VBOX_WITH_HARDENING
"Re-install VirtualBox. If you are building it yourself, you "
"should make sure it installed correctly and that the setuid "
"bit is set on the executables calling VMR3Create.");
#else
# if defined(RT_OS_DARWIN)
"If you have built VirtualBox yourself, make sure that you do not "
"have the vboxdrv KEXT from a different build or installation loaded.");
# elif defined(RT_OS_LINUX)
"If you have built VirtualBox yourself, make sure that you do "
"not have the vboxdrv kernel module from a different build or "
"installation loaded. Also, make sure the vboxdrv udev rule gives "
"you the permission you need to access the device.");
# elif defined(RT_OS_WINDOWS)
# else /* solaris, freebsd, ++. */
"If you have built VirtualBox yourself, make sure that you do "
"not have the vboxdrv kernel module from a different install loaded.");
# endif
#endif
break;
case VERR_INVALID_HANDLE: /** @todo track down and fix this error. */
#ifdef RT_OS_LINUX
"reason. Re-setup the kernel module by executing "
#else
#endif
break;
case VERR_NO_MEMORY:
break;
case VERR_VERSION_MISMATCH:
"version of VirtualBox. You can correct this by stopping all "
"running instances of VirtualBox and reinstalling the software.");
break;
default:
}
}
}
/* cleanup */
return rc;
}
/**
* Creates the UVM.
*
* This will not initialize the support library even if vmR3DestroyUVM
* will terminate that.
*
* @returns VBox status code.
* @param cCpus Number of virtual CPUs
* @param ppUVM Where to store the UVM pointer.
*/
{
uint32_t i;
/*
* Create and initialize the UVM.
*/
/* Initialize the VMCPU array in the UVM. */
for (i = 0; i < cCpus; i++)
{
}
/* Allocate a TLS entry to store the VMINTUSERPERVMCPU pointer. */
if (RT_SUCCESS(rc))
{
/* Allocate a halt method event semaphore for each VCPU. */
for (i = 0; i < cCpus; i++)
{
if (RT_FAILURE(rc))
break;
}
if (RT_SUCCESS(rc))
{
/*
* Init fundamental (sub-)components - STAM, MMR3Heap and PDMLdr.
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
/*
* Start the emulation threads for all VMCPUs.
*/
for (i = 0; i < cCpus; i++)
{
if (RT_FAILURE(rc))
break;
}
if (RT_SUCCESS(rc))
{
return VINF_SUCCESS;
}
/* bail out. */
while (i-- > 0)
{
/** @todo rainy day: terminate the EMTs. */
}
}
}
}
for (i = 0; i < cCpus; i++)
{
}
}
}
return rc;
}
/**
* Creates and initializes the VM.
*
* @thread EMT
*/
static int vmR3CreateU(PUVM pUVM, uint32_t cCpus, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM)
{
int rc = VINF_SUCCESS;
/*
* Load the VMMR0.r0 module so that we can call GVMMR0CreateVM.
*/
if (RT_FAILURE(rc))
{
/** @todo we need a cleaner solution for this (VERR_VMX_IN_VMX_ROOT_MODE).
* bird: what about moving the message down here? Main picks the first message, right? */
if (rc == VERR_VMX_IN_VMX_ROOT_MODE)
return rc; /* proper error message set later on */
}
/*
* Request GVMM to create a new VM for us.
*/
if (RT_SUCCESS(rc))
{
Log(("VMR3Create: Created pUVM=%p pVM=%p pVMR0=%p hSelf=%#x cCPUs=%RU32\n",
/*
* Initialize the VM structure and our internal data (VMINT).
*/
{
}
/*
* Init the configuration.
*/
if (RT_SUCCESS(rc))
{
pVM->fHWACCMEnabled = true;
/*
* If executing in fake suplib mode disable RR3 and RR0 in the config.
*/
{
}
/*
* Make sure the CPU count in the config data matches.
*/
if (RT_SUCCESS(rc))
{
AssertLogRelMsgRC(rc, ("Configuration error: Querying \"NumCPUs\" as integer failed, rc=%Rrc\n", rc));
{
AssertLogRelMsgFailed(("Configuration error: \"NumCPUs\"=%RU32 and VMR3CreateVM::cCPUs=%RU32 does not match!\n",
}
}
if (RT_SUCCESS(rc))
{
/*
* Init the ring-3 components and ring-3 per cpu data, finishing it off
* by a relocation round (intermediate context finalization will do this).
*/
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
{
LogFlow(("Ring-3 init succeeded\n"));
/*
* Init the Ring-0 components.
*/
if (RT_SUCCESS(rc))
{
/* Relocate again, because some switcher fixups depends on R0 init results. */
VMR3Relocate(pVM, 0);
#ifdef VBOX_WITH_DEBUGGER
/*
* Init the tcp debugger console if we're building
* with debugger support.
*/
if ( RT_SUCCESS(rc)
|| rc == VERR_NET_ADDRESS_IN_USE)
{
#endif
/*
* Init the Guest Context components.
*/
if (RT_SUCCESS(rc))
{
/*
* Now we can safely set the VM halt method to default.
*/
if (RT_SUCCESS(rc))
{
/*
* Set the state and link into the global list.
*/
g_pUVMsHead = pUVM;
#ifdef LOG_ENABLED
#endif
return VINF_SUCCESS;
}
}
#ifdef VBOX_WITH_DEBUGGER
}
#endif
//..
}
}
}
}
//..
/* Clean CFGM. */
}
/*
* Drop all references to VM and the VMCPU structures, then
* tell GVMM to destroy the VM.
*/
{
}
{
/* Poke the other EMTs since they may have stale pVM and pVCpu references
on the stack (see VMR3WaitU for instance) if they've been awakened after
VM creation. */
}
}
else
return rc;
}
/**
* Register the calling EMT with GVM.
*
* @returns VBox status code.
* @param pVM The VM handle.
* @param idCpu The Virtual CPU ID.
*/
{
if (RT_FAILURE(rc))
return rc;
}
/**
* Initializes all R3 components of the VM
*/
{
int rc;
/*
* Register the other EMTs with GVM.
*/
{
if (RT_SUCCESS(rc))
if (RT_FAILURE(rc))
return rc;
}
/*
* Init all R3 components, the order here might be important.
*/
if (RT_SUCCESS(rc))
{
STAM_REG(pVM, &pVM->StatTotalInGC, STAMTYPE_PROFILE_ADV, "/PROF/VM/InGC", STAMUNIT_TICKS_PER_CALL, "Profiling the total time spent in GC.");
STAM_REG(pVM, &pVM->StatSwitcherToGC, STAMTYPE_PROFILE_ADV, "/PROF/VM/SwitchToGC", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherToHC, STAMTYPE_PROFILE_ADV, "/PROF/VM/SwitchToHC", STAMUNIT_TICKS_PER_CALL, "Profiling switching to HC.");
STAM_REG(pVM, &pVM->StatSwitcherSaveRegs, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/SaveRegs", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherSysEnter, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/SysEnter", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherDebug, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Debug", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherCR0, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/CR0", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherCR4, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/CR4", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherLgdt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lgdt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherLidt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lidt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherLldt, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/Lldt", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherTSS, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/TSS", STAMUNIT_TICKS_PER_CALL, "Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherJmpCR3, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/JmpCR3", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
STAM_REG(pVM, &pVM->StatSwitcherRstrRegs, STAMTYPE_PROFILE_ADV, "/VM/Switcher/ToGC/RstrRegs", STAMUNIT_TICKS_PER_CALL,"Profiling switching to GC.");
{
rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltYield, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state yielding.", "/PROF/VM/CPU%d/Halt/Yield", iCpu);
rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltBlock, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state blocking.", "/PROF/VM/CPU%d/Halt/Block", iCpu);
rc = STAMR3RegisterF(pVM, &pUVM->aCpus[iCpu].vm.s.StatHaltTimers, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling halted state timer tasks.", "/PROF/VM/CPU%d/Halt/Timers", iCpu);
}
STAM_REG(pVM, &pUVM->vm.s.StatReqAllocNew, STAMTYPE_COUNTER, "/VM/Req/AllocNew", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc returning a new packet.");
STAM_REG(pVM, &pUVM->vm.s.StatReqAllocRaces, STAMTYPE_COUNTER, "/VM/Req/AllocRaces", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc causing races.");
STAM_REG(pVM, &pUVM->vm.s.StatReqAllocRecycled, STAMTYPE_COUNTER, "/VM/Req/AllocRecycled", STAMUNIT_OCCURENCES, "Number of VMR3ReqAlloc returning a recycled packet.");
STAM_REG(pVM, &pUVM->vm.s.StatReqFree, STAMTYPE_COUNTER, "/VM/Req/Free", STAMUNIT_OCCURENCES, "Number of VMR3ReqFree calls.");
STAM_REG(pVM, &pUVM->vm.s.StatReqFreeOverflow, STAMTYPE_COUNTER, "/VM/Req/FreeOverflow", STAMUNIT_OCCURENCES, "Number of times the request was actually freed.");
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
#ifdef VBOX_WITH_VMI
if (RT_SUCCESS(rc))
{
#endif
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
if (RT_SUCCESS(rc))
{
return VINF_SUCCESS;
}
}
}
}
}
#ifdef VBOX_WITH_VMI
}
#endif
}
}
}
}
}
}
}
}
}
//int rc2 = CPUMR3Term(pVM);
//AssertRC(rc2);
}
/* MMR3Term is not called here because it'll kill the heap. */
}
return rc;
}
/**
* Initializes all VM CPU components of the VM
*/
{
int rc = VINF_SUCCESS;
int rc2;
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
if (RT_SUCCESS(rc))
{
return VINF_SUCCESS;
}
}
}
}
}
}
return rc;
}
/**
* Initializes all R0 components of the VM
*/
{
LogFlow(("vmR3InitRing0:\n"));
/*
* Check for FAKE suplib mode.
*/
int rc = VINF_SUCCESS;
{
/*
* Call the VMMR0 component and let it do the init.
*/
}
else
Log(("vmR3InitRing0: skipping because of VBOX_SUPLIB_FAKE=fake\n"));
/*
* Do notifications and return.
*/
if (RT_SUCCESS(rc))
/** todo: move this to the VMINITCOMPLETED_RING0 notification handler once implemented */
if (RT_SUCCESS(rc))
return rc;
}
/**
* Initializes all GC components of the VM
*/
{
LogFlow(("vmR3InitGC:\n"));
/*
* Check for FAKE suplib mode.
*/
int rc = VINF_SUCCESS;
{
/*
* Call the VMMR0 component and let it do the init.
*/
}
else
Log(("vmR3InitGC: skipping because of VBOX_SUPLIB_FAKE=fake\n"));
/*
* Do notifications and return.
*/
if (RT_SUCCESS(rc))
return rc;
}
/**
* Do init completed notifications.
* This notifications can fail.
*
* @param pVM The VM handle.
* @param enmWhat What's completed.
*/
{
return VINF_SUCCESS;
}
/**
* Logger callback for inserting a custom prefix.
*
* @returns Number of chars written.
* @param pLogger The logger.
* @param pchBuf The output buffer.
* @param cchBuf The output buffer size.
* @param pvUser Pointer to the UVM structure.
*/
static DECLCALLBACK(size_t) vmR3LogPrefixCallback(PRTLOGGER pLogger, char *pchBuf, size_t cchBuf, void *pvUser)
{
if (pUVCpu)
{
}
else
{
pchBuf[0] = 'x';
}
return 2;
}
/**
* Calls the relocation functions for all VMM components so they can update
* any GC pointers. When this function is called all the basic VM members
* have been updated and the actual memory relocation have been done
*
* This is used both on init and on runtime relocations.
*
* @param pVM VM handle.
* @param offDelta Relocation delta relative to old location.
*/
{
/*
* The order here is very important!
*/
}
/**
* Power on the virtual machine.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM to power on.
* @thread Any thread.
* @vmstate Created
* @vmstateto Running
*/
{
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT (in order as VCPU 0 does all the work)
*/
if (RT_SUCCESS(rc))
{
}
return rc;
}
/**
* Power on the virtual machine.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM to power on.
* @thread EMT
*/
{
/*
* EMT(0) does the actual power on work *before* the other EMTs
* get here, they just need to set their state to STARTED so they
* get out of the EMT loop and into EM.
*/
return VINF_SUCCESS;
/*
* Validate input.
*/
{
return VERR_VM_INVALID_VM_STATE;
}
/*
* Change the state, notify the components and resume the execution.
*/
return VINF_SUCCESS;
}
/**
* Suspends a running VM.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM to suspend.
* @thread Any thread.
* @vmstate Running
* @vmstateto Suspended
*/
{
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT. (in reverse order as VCPU 0 does the actual work)
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Suspend, 1, pVM);
if (RT_SUCCESS(rc))
{
}
else
return rc;
}
/**
* Suspends a running VM and prevent state saving until the VM is resumed or stopped.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM to suspend.
* @thread Any thread.
* @vmstate Running
* @vmstateto Suspended
*/
{
return VMR3Suspend(pVM);
}
/**
* Suspends a running VM.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM to suspend.
* @thread EMT
*/
{
/*
* Validate input.
*/
{
return VERR_VM_INVALID_VM_STATE;
}
/* Only VCPU 0 does the actual work (*after* all the other CPUs has been here). */
return VINF_EM_SUSPEND;
/*
* Change the state, notify the components and resume the execution.
*/
return VINF_EM_SUSPEND;
}
/**
* Resume VM execution.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM The VM to resume.
* @thread Any thread.
* @vmstate Suspended
* @vmstateto Running
*/
{
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT. (in VCPU order as VCPU 0 does the actual work)
*/
if (RT_SUCCESS(rc))
{
}
else
return rc;
}
/**
* Resume VM execution.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM The VM to resume.
* @thread EMT
*/
{
/* Only VCPU 0 does the actual work (*before* the others wake up). */
return VINF_EM_RESUME;
/*
* Validate input.
*/
{
return VERR_VM_INVALID_VM_STATE;
}
/*
* Change the state, notify the components and resume the execution.
*/
return VINF_EM_RESUME;
}
/**
* Save current VM state.
*
* To save and terminate the VM, the VM must be suspended before the call.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which state should be saved.
* @param pszFilename Name of the save state file.
* @param pfnProgress Progress callback. Optional.
* @param pvUser User argument for the progress callback.
* @thread Any thread.
* @vmstate Suspended
* @vmstateto Unchanged state.
*/
{
LogFlow(("VMR3Save: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
if (!pszFilename)
{
AssertMsgFailed(("Must specify a filename to save the state to, wise guy!\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT.
*/
int rc = VMR3ReqCall(pVM, 0 /* VCPU 0 */, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Save, 4, pVM, pszFilename, pfnProgress, pvUser);
if (RT_SUCCESS(rc))
{
}
return rc;
}
/**
* Save current VM state.
*
* To save and terminate the VM, the VM must be suspended before the call.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which state should be saved.
* @param pszFilename Name of the save state file.
* @param pfnProgress Progress callback. Optional.
* @param pvUser User argument for the progress callback.
* @thread EMT
*/
static DECLCALLBACK(int) vmR3Save(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
{
LogFlow(("vmR3Save: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
/*
* Validate input.
*/
{
return VERR_VM_INVALID_VM_STATE;
}
/* If we are in an inconsistent state, then we don't allow state saving. */
{
LogRel(("VMM: vmR3Save: saving the VM state is not allowed at this moment\n"));
return VERR_VM_SAVE_STATE_NOT_ALLOWED;
}
/*
* Change the state and perform the save.
*/
return rc;
}
/**
* Loads a new VM state.
*
* To restore a saved state on VM startup, call this function and then
* resume the VM instead of powering it on.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which state should be saved.
* @param pszFilename Name of the save state file.
* @param pfnProgress Progress callback. Optional.
* @param pvUser User argument for the progress callback.
* @thread Any thread.
* @vmstate Created, Suspended
* @vmstateto Suspended
*/
{
LogFlow(("VMR3Load: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
if (!pszFilename)
{
AssertMsgFailed(("Must specify a filename to load the state from, wise guy!\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT.
*/
int rc = VMR3ReqCall(pVM, 0 /* VCPU 0 */, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3Load, 4, pVM, pszFilename, pfnProgress, pvUser);
if (RT_SUCCESS(rc))
{
}
return rc;
}
/**
* Loads a new VM state.
*
* To restore a saved state on VM startup, call this function and then
* resume the VM instead of powering it on.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which state should be saved.
* @param pszFilename Name of the save state file.
* @param pfnProgress Progress callback. Optional.
* @param pvUser User argument for the progress callback.
* @thread EMT.
*/
static DECLCALLBACK(int) vmR3Load(PVM pVM, const char *pszFilename, PFNVMPROGRESS pfnProgress, void *pvUser)
{
LogFlow(("vmR3Load: pVM=%p pszFilename=%p:{%s} pfnProgress=%p pvUser=%p\n", pVM, pszFilename, pszFilename, pfnProgress, pvUser));
/*
* Validate input.
*/
{
return VMSetError(pVM, VERR_VM_INVALID_VM_STATE, RT_SRC_POS, N_("Invalid VM state (%s) for restoring state from '%s'"),
}
/*
* Change the state and perform the load.
*/
if (RT_SUCCESS(rc))
{
/* Not paranoia anymore; the saved guest might use different hypervisor selectors. We must call VMR3Relocate. */
VMR3Relocate(pVM, 0);
}
else
{
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);
}
return rc;
}
/**
* Power Off the VM.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which should be destroyed.
* @thread Any thread.
* @vmstate Suspended, Running, Guru Meditation, Load Failure
* @vmstateto Off
*/
{
/*
* Validate input.
*/
if (!pVM)
{
AssertMsgFailed(("Invalid VM pointer\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Request the operation in EMT. (in reverse order as VCPU 0 does the actual work)
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3PowerOff, 1, pVM);
if (RT_SUCCESS(rc))
{
}
else
return rc;
}
/**
* Power Off the VM.
*
* @returns 0 on success.
* @returns VBox error code on failure.
* @param pVM VM which should be destroyed.
* @thread EMT.
*/
{
/*
* Validate input.
*/
{
return VERR_VM_INVALID_VM_STATE;
}
/*
* EMT(0) does the actual power off work here *after* all the other EMTs
* have been thru and entered the STOPPED state.
*/
return VINF_EM_OFF;
/*
* For debugging purposes, we will log a summary of the guest state at this point.
*/
{
/* @todo SMP support? */
/** @todo make the state dumping at VMR3PowerOff optional. */
RTLogRelPrintf("****************** Guest state at power off ******************\n");
RTLogRelPrintf("***\n");
RTLogRelPrintf("***\n");
RTLogRelPrintf("***\n");
/** @todo dump guest call stack. */
#if 1 // temporary while debugging #1589
RTLogRelPrintf("***\n");
if ( CPUMGetGuestSS(pVCpu) == 0
{
RTLogRelPrintf("***\n"
"ss:sp=0000:%04x ", esp);
if (RT_SUCCESS(rc))
RTLogRelPrintf("0000:%04x TO 0000:%04x:\n"
"%.*Rhxd\n",
0x100, abBuf);
else
/* grub ... */
{
if (RT_SUCCESS(rc))
RTLogRelPrintf("0000:8000 TO 0000:87ff:\n"
"%.*Rhxd\n",
0x800, abBuf);
}
/* microsoft cdrom hang ... */
if (true)
{
if (RT_SUCCESS(rc))
RTLogRelPrintf("2000:0000 TO 2000:01ff:\n"
"%.*Rhxd\n",
0x200, abBuf);
}
}
#endif
RTLogRelPrintf("************** End of Guest state at power off ***************\n");
}
/*
* Change the state to OFF and notify the components.
*/
return VINF_EM_OFF;
}
/**
* Destroys the VM.
* The VM must be powered off (or never really powered on) to call this function.
* The VM handle is destroyed and can no longer be used up successful return.
*
* @returns VBox status code.
* @param pVM VM which should be destroyed.
* @thread Any thread but the emulation thread.
* @vmstate Off, Created
* @vmstateto N/A
*/
{
/*
* Validate input.
*/
if (!pVM)
return VERR_INVALID_PARAMETER;
/*
* Change VM state to destroying and unlink the VM.
*/
/** @todo lock this when we start having multiple machines in a process... */
if (g_pUVMsHead == pUVM)
else
{
}
/*
* Notify registered at destruction listeners.
* (That's the debugger console.)
*/
/*
* If we are the EMT of VCPU 0, then we'll delay the cleanup till later.
*/
if (VMMGetCpuId(pVM) == 0)
{
/* Inform all other VCPUs too. */
{
/*
* Request EMT to do the larger part of the destruction.
*/
if (RT_SUCCESS(rc))
}
}
else
{
/*
* Request EMT to do the larger part of the destruction. (in reverse order as VCPU 0 does the real cleanup)
*/
int rc = VMR3ReqCallU(pUVM, VMCPUID_ALL_REVERSE, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3Destroy, 1, pVM);
if (RT_SUCCESS(rc))
/*
* Now do the final bit where the heap and VM structures are freed up.
* This will also wait 30 secs for the emulation threads to terminate.
*/
}
LogFlow(("VMR3Destroy: returns VINF_SUCCESS\n"));
return VINF_SUCCESS;
}
/**
* Internal destruction worker.
*
* This will do nearly all of the job, including sacking the EMT.
*
* @returns VBox status.
* @param pVM VM handle.
*/
{
/* Only VCPU 0 does the full cleanup. */
return VINF_EM_TERMINATE;
/*
* Dump statistics to the log.
*/
#if defined(VBOX_WITH_STATISTICS) || defined(LOG_ENABLED)
#endif
#ifdef VBOX_WITH_STATISTICS
#else
LogRel(("************************* Statistics *************************\n"));
LogRel(("********************* End of statistics **********************\n"));
#endif
/*
* Destroy the VM components.
*/
#ifdef VBOX_WITH_DEBUGGER
#endif
/*
* We're done in this thread (EMT).
*/
return VINF_EM_TERMINATE;
}
/**
* Destroys the shared VM structure, leaving only UVM behind.
*
* This is called by EMT right before terminating.
*
* @param pUVM The UVM handle.
*/
{
{
/* VCPU 0 does all the cleanup work. */
return;
/*
* Modify state and then terminate MM.
* (MM must be delayed until this point so we don't destroy the callbacks and the request packet.)
*/
/*
* Tell GVMM to destroy the VM and free its resources.
*/
}
/*
* Did an EMT call VMR3Destroy and end up having to do all the work?
*/
}
/**
* Destroys the UVM portion.
*
* This is called as the final step in the VM destruction or as the cleanup
* in case of a creation failure. If EMT called VMR3Destroy, meaning
* VMINTUSERPERVM::fEMTDoesTheCleanup is true, it will call this as
* vmR3DestroyFinalBitFromEMT completes.
*
* @param pVM VM Handle.
* @param cMilliesEMTWait The number of milliseconds to wait for the emulation
* threads.
*/
{
/*
* Signal termination of each the emulation threads and
* wait for them to complete.
*/
/* Signal them. */
{
}
/* Wait for them. */
{
if ( hThread != NIL_RTTHREAD
{
: 2000,
NULL);
if (RT_SUCCESS(rc2))
}
}
/* Cleanup the semaphores. */
{
}
/*
* Free the event semaphores associated with the request packets.
*/
unsigned cReqs = 0;
{
{
}
}
/*
* Kill all queued requests. (There really shouldn't be any!)
*/
for (unsigned i = 0; i < 10; i++)
{
AssertMsg(!pReqHead, ("This isn't supposed to happen! VMR3Destroy caller has to serialize this.\n"));
if (!pReqHead)
break;
{
RTThreadSleep(2);
}
/* give them a chance to respond before we free the request memory. */
RTThreadSleep(32);
}
/*
* Now all queued VCPU requests (again, there shouldn't be any).
*/
{
for (unsigned i = 0; i < 10; i++)
{
AssertMsg(!pReqHead, ("This isn't supposed to happen! VMR3Destroy caller has to serialize this.\n"));
if (!pReqHead)
break;
{
RTThreadSleep(2);
}
/* give them a chance to respond before we free the request memory. */
RTThreadSleep(32);
}
}
/*
* Make sure the VMMR0.r0 module and whatever else is unloaded.
*/
/*
* Terminate the support library if initialized.
*/
{
}
/*
* Destroy the MM heap and free the UVM structure.
*/
#ifdef LOG_ENABLED
#endif
}
/**
* Enumerates the VMs in this process.
*
* @returns Pointer to the next VM.
* @returns NULL when no more VMs.
* @param pVMPrev The previous VM
* Use NULL to start the enumeration.
*/
{
/*
* This is quick and dirty. It has issues with VM being
* destroyed during the enumeration.
*/
if (pVMPrev)
else
pNext = g_pUVMsHead;
}
/**
* Registers an at VM destruction callback.
*
* @returns VBox status code.
* @param pfnAtDtor Pointer to callback.
* @param pvUser User argument.
*/
{
/*
* Check if already registered.
*/
while (pCur)
{
{
return VERR_INVALID_PARAMETER;
}
/* next */
}
/*
* Allocate new entry.
*/
if (!pVMAtDtor)
return VERR_NO_MEMORY;
return VINF_SUCCESS;
}
/**
* Deregisters an at VM destruction callback.
*
* @returns VBox status code.
* @param pfnAtDtor Pointer to callback.
*/
{
/*
* Find it, unlink it and free it.
*/
while (pCur)
{
{
if (pPrev)
else
return VINF_SUCCESS;
}
/* next */
}
return VERR_INVALID_PARAMETER;
}
/**
* Walks the list of at VM destructor callbacks.
* @param pVM The VM which is about to be destroyed.
*/
{
/*
* Find it, unlink it and free it.
*/
}
/**
* Reset the current VM.
*
* @returns VBox status code.
* @param pVM VM to reset.
*/
{
int rc = VINF_SUCCESS;
/*
* Check the state.
*/
if (!pVM)
return VERR_INVALID_PARAMETER;
{
return VERR_VM_INVALID_VM_STATE;
}
/*
* Queue reset request to the emulation thread
* and wait for it to be processed. (in reverse order as VCPU 0 does the real cleanup)
*/
if (RT_SUCCESS(rc))
return rc;
}
/**
* Worker which checks integrity of some internal structures.
* This is yet another attempt to track down that AVL tree crash.
*/
{
#ifdef VBOX_STRICT
#endif
}
/**
* Reset request processor.
*
* This is called by the emulation threads as a response to the
* reset request issued by VMR3Reset().
*
* @returns VBox status code.
* @param pVM VM to reset.
*/
{
/*
* EMT(0) does the full cleanup *after* all the other EMTs has been
* thru here and been told to enter the EMSTATE_WAIT_SIPI state.
*/
/* Clear all pending forced actions. */
{
return VINF_EM_RESET;
}
/*
* As a safety precaution we temporarily change the state while resetting.
* (If VMR3Reset was not called from EMT we might have change state... let's ignore that fact for now.)
*/
/*
* Reset the VM components.
*/
#ifdef LOG_ENABLED
/*
* Debug logging.
*/
RTLogPrintf("\n\nThe VM was reset:\n");
#endif
/*
* Restore the state.
*/
return VINF_EM_RESET;
}
/**
* Walks the list of at VM reset callbacks and calls them
*
* @returns VBox status code.
* Any failure is fatal.
* @param pUVM Pointe to the user mode VM structure.
*/
{
/*
* Walk the list and call them all.
*/
int rc = VINF_SUCCESS;
{
/* do the call */
{
case VMATRESETTYPE_DEV:
break;
case VMATRESETTYPE_INTERNAL:
break;
case VMATRESETTYPE_EXTERNAL:
break;
default:
return VERR_INTERNAL_ERROR;
}
if (RT_FAILURE(rc))
{
return rc;
}
}
return VINF_SUCCESS;
}
/**
* Internal registration function
*/
{
/*
* Allocate restration structure.
*/
if (pNew)
{
/* fill data. */
/* insert */
return VINF_SUCCESS;
}
return VERR_NO_MEMORY;
}
/**
* Registers an at VM reset callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pDevInst Device instance.
* @param pfnCallback Callback function.
* @param pvUser User argument.
* @param pszDesc Description (optional).
*/
VMMR3DECL(int) VMR3AtResetRegister(PVM pVM, PPDMDEVINS pDevInst, PFNVMATRESET pfnCallback, void *pvUser, const char *pszDesc)
{
/*
* Validate.
*/
if (!pDevInst)
{
AssertMsgFailed(("pDevIns is NULL!\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Create the new entry.
*/
if (RT_SUCCESS(rc))
{
/*
* Fill in type data.
*/
}
return rc;
}
/**
* Registers an at VM reset internal callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pfnCallback Callback function.
* @param pvUser User argument.
* @param pszDesc Description (optional).
*/
VMMR3DECL(int) VMR3AtResetRegisterInternal(PVM pVM, PFNVMATRESETINT pfnCallback, void *pvUser, const char *pszDesc)
{
/*
* Validate.
*/
if (!pfnCallback)
{
AssertMsgFailed(("pfnCallback is NULL!\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Create the new entry.
*/
if (RT_SUCCESS(rc))
{
/*
* Fill in type data.
*/
}
return rc;
}
/**
* Registers an at VM reset external callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pfnCallback Callback function.
* @param pvUser User argument.
* @param pszDesc Description (optional).
*/
VMMR3DECL(int) VMR3AtResetRegisterExternal(PVM pVM, PFNVMATRESETEXT pfnCallback, void *pvUser, const char *pszDesc)
{
/*
* Validate.
*/
if (!pfnCallback)
{
AssertMsgFailed(("pfnCallback is NULL!\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Create the new entry.
*/
if (RT_SUCCESS(rc))
{
/*
* Fill in type data.
*/
}
return rc;
}
/**
* Unlinks and frees a callback.
*
* @returns Pointer to the next callback structure.
* @param pUVM Pointer to the user mode VM structure.
* @param pCur The one to free.
* @param pPrev The one before pCur.
*/
{
/*
* Unlink it.
*/
if (pPrev)
{
if (!pNext)
}
else
{
if (!pNext)
}
/*
* Free it.
*/
return pNext;
}
/**
* Deregisters an at VM reset callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pDevIns Device instance.
* @param pfnCallback Callback function.
*/
{
int rc = VERR_VM_ATRESET_NOT_FOUND;
while (pCur)
{
&& ( !pfnCallback
{
rc = VINF_SUCCESS;
}
else
{
}
}
return rc;
}
/**
* Deregisters an at VM reset internal callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pfnCallback Callback function.
*/
{
int rc = VERR_VM_ATRESET_NOT_FOUND;
while (pCur)
{
{
rc = VINF_SUCCESS;
}
else
{
}
}
return rc;
}
/**
* Deregisters an at VM reset external callback.
*
* @returns VBox status code.
* @param pVM The VM.
* @param pfnCallback Callback function.
*/
{
int rc = VERR_VM_ATRESET_NOT_FOUND;
while (pCur)
{
{
rc = VINF_SUCCESS;
}
else
{
}
}
return rc;
}
/**
* Gets the current VM state.
*
* @returns The current VM state.
* @param pVM VM handle.
* @thread Any
*/
{
return pVM->enmVMState;
}
/**
* Gets the state name string for a VM state.
*
* @returns Pointer to the state name. (readonly)
* @param enmState The state.
*/
{
switch (enmState)
{
case VMSTATE_CREATING: return "CREATING";
case VMSTATE_CREATED: return "CREATED";
case VMSTATE_RUNNING: return "RUNNING";
case VMSTATE_LOADING: return "LOADING";
case VMSTATE_LOAD_FAILURE: return "LOAD_FAILURE";
case VMSTATE_SAVING: return "SAVING";
case VMSTATE_SUSPENDED: return "SUSPENDED";
case VMSTATE_RESETTING: return "RESETTING";
case VMSTATE_GURU_MEDITATION: return "GURU_MEDITATION";
case VMSTATE_OFF: return "OFF";
case VMSTATE_DESTROYING: return "DESTROYING";
case VMSTATE_TERMINATED: return "TERMINATED";
default:
return "Unknown!\n";
}
}
/**
* Sets the current VM state.
*
* @returns The current VM state.
* @param pVM VM handle.
* @param enmStateNew The new state.
*/
{
/*
* Validate state machine transitions before doing the actual change.
*/
switch (enmStateOld)
{
case VMSTATE_OFF:
break;
default:
/** @todo full validation. */
break;
}
LogRel(("Changing the VM state from '%s' to '%s'.\n", VMR3GetStateName(enmStateOld), VMR3GetStateName(enmStateNew)));
/*
* Call the at state change callbacks.
*/
{
break;
("You are not allowed to change the state while in the change callback, except "
"from destroying the VM. There are restrictions in the way the state changes "
"are propagated up to the EM execution loop and it makes the program flow very "
"difficult to follow.\n"));
}
}
/**
* Registers a VM state change callback.
*
* You are not allowed to call any function which changes the VM state from a
* state callback, except VMR3Destroy().
*
* @returns VBox status code.
* @param pVM VM handle.
* @param pfnAtState Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
{
/*
* Validate input.
*/
if (!pfnAtState)
{
AssertMsgFailed(("callback is required\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtStateRegisterU, 3, pVM->pUVM, pfnAtState, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Registers a VM state change callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtState Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
{
/*
* Allocate a new record.
*/
if (!pNew)
return VERR_NO_MEMORY;
/* fill */
/* insert */
return VINF_SUCCESS;
}
/**
* Deregisters a VM state change callback.
*
* @returns VBox status code.
* @param pVM VM handle.
* @param pfnAtState Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
{
/*
* Validate input.
*/
if (!pfnAtState)
{
AssertMsgFailed(("callback is required\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtStateDeregisterU, 3, pVM->pUVM, pfnAtState, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Deregisters a VM state change callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtState Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
{
/*
* Search the list for the entry.
*/
while ( pCur
{
}
if (!pCur)
{
return VERR_FILE_NOT_FOUND;
}
/*
* Unlink it.
*/
if (pPrev)
{
}
else
{
}
/*
* Free it.
*/
return VINF_SUCCESS;
}
/**
* Registers a VM error callback.
*
* @returns VBox status code.
* @param pVM The VM handle.
* @param pfnAtError Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
{
}
/**
* Registers a VM error callback.
*
* @returns VBox status code.
* @param pUVM The VM handle.
* @param pfnAtError Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
{
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)vmR3AtErrorRegisterU, 3, pUVM, pfnAtError, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Registers a VM error callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtError Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
{
/*
* Allocate a new record.
*/
if (!pNew)
return VERR_NO_MEMORY;
/* fill */
/* insert */
return VINF_SUCCESS;
}
/**
* Deregisters a VM error callback.
*
* @returns VBox status code.
* @param pVM The VM handle.
* @param pfnAtError Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
{
/*
* Validate input.
*/
if (!pfnAtError)
{
AssertMsgFailed(("callback is required\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtErrorDeregisterU, 3, pVM->pUVM, pfnAtError, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Deregisters a VM error callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtError Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
{
/*
* Search the list for the entry.
*/
while ( pCur
{
}
if (!pCur)
{
return VERR_FILE_NOT_FOUND;
}
/*
* Unlink it.
*/
if (pPrev)
{
}
else
{
}
/*
* Free it.
*/
return VINF_SUCCESS;
}
/**
* Ellipsis to va_list wrapper for calling pfnAtError.
*/
static void vmR3SetErrorWorkerDoCall(PVM pVM, PVMATERROR pCur, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
{
}
/**
* This is a worker function for GC and Ring-0 calls to VMSetError and VMSetErrorV.
* The message is found in VMINT.
*
* @param pVM The VM handle.
* @thread EMT.
*/
{
AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetErrorV! Contrats!\n"));
/*
* Unpack the error (if we managed to format one).
*/
const char *pszFunction = NULL;
const char *pszMessage;
if (pErr)
{
AssertCompile(sizeof(const char) == sizeof(uint8_t));
if (pErr->offFunction)
if (pErr->offMessage)
else
pszMessage = "No message!";
}
else
pszMessage = "No message! (Failed to allocate memory to put the error message in!)";
/*
* Call the at error callbacks.
*/
}
/**
* Creation time wrapper for vmR3SetErrorUV.
*
* @returns rc.
* @param pUVM Pointer to the user mode VM structure.
* @param rc The VBox status code.
* @param RT_SRC_POS_DECL The source position of this error.
* @param pszFormat Format string.
* @param ... The arguments.
* @thread Any thread.
*/
{
return rc;
}
/**
* Worker which calls everyone listening to the VM error messages.
*
* @param pUVM Pointer to the user mode VM structure.
* @param rc The VBox status code.
* @param RT_SRC_POS_DECL The source position of this error.
* @param pszFormat Format string.
* @param pArgs Pointer to the format arguments.
* @thread EMT
*/
DECLCALLBACK(void) vmR3SetErrorUV(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list *pArgs)
{
#ifdef LOG_ENABLED
/*
* Log the error.
*/
RTLogPrintf("\n");
#endif
/*
* Make a copy of the message.
*/
/*
* Call the at error callbacks.
*/
{
}
}
/**
* Registers a VM runtime error callback.
*
* @returns VBox status code.
* @param pVM The VM handle.
* @param pfnAtRuntimeError Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
VMMR3DECL(int) VMR3AtRuntimeErrorRegister(PVM pVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
{
LogFlow(("VMR3AtRuntimeErrorRegister: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
/*
* Validate input.
*/
if (!pfnAtRuntimeError)
{
AssertMsgFailed(("callback is required\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtRuntimeErrorRegisterU, 3, pVM->pUVM, pfnAtRuntimeError, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Registers a VM runtime error callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtRuntimeError Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
static DECLCALLBACK(int) vmR3AtRuntimeErrorRegisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
{
/*
* Allocate a new record.
*/
if (!pNew)
return VERR_NO_MEMORY;
/* fill */
/* insert */
return VINF_SUCCESS;
}
/**
* Deregisters a VM runtime error callback.
*
* @returns VBox status code.
* @param pVM The VM handle.
* @param pfnAtRuntimeError Pointer to callback.
* @param pvUser User argument.
* @thread Any.
*/
VMMR3DECL(int) VMR3AtRuntimeErrorDeregister(PVM pVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
{
LogFlow(("VMR3AtRuntimeErrorDeregister: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
/*
* Validate input.
*/
if (!pfnAtRuntimeError)
{
AssertMsgFailed(("callback is required\n"));
return VERR_INVALID_PARAMETER;
}
/*
* Make sure we're in EMT (to avoid the logging).
*/
int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3AtRuntimeErrorDeregisterU, 3, pVM->pUVM, pfnAtRuntimeError, pvUser);
if (RT_FAILURE(rc))
return rc;
return rc;
}
/**
* Deregisters a VM runtime error callback.
*
* @returns VBox status code.
* @param pUVM Pointer to the user mode VM structure.
* @param pfnAtRuntimeError Pointer to callback.
* @param pvUser User argument.
* @thread EMT
*/
static DECLCALLBACK(int) vmR3AtRuntimeErrorDeregisterU(PUVM pUVM, PFNVMATRUNTIMEERROR pfnAtRuntimeError, void *pvUser)
{
LogFlow(("vmR3AtRuntimeErrorDeregisterU: pfnAtRuntimeError=%p pvUser=%p\n", pfnAtRuntimeError, pvUser));
/*
* Search the list for the entry.
*/
while ( pCur
{
}
if (!pCur)
{
return VERR_FILE_NOT_FOUND;
}
/*
* Unlink it.
*/
if (pPrev)
{
}
else
{
}
/*
* Free it.
*/
return VINF_SUCCESS;
}
/**
* Worker for VMR3SetRuntimeErrorWorker and vmR3SetRuntimeErrorV.
*
* This does the common parts after the error has been saved / retrieved.
*
* @returns VBox status code with modifications, see VMSetRuntimeErrorV.
*
* @param pVM The VM handle.
* @param fFlags The error flags.
* @param pszErrorId Error ID string.
* @param pszFormat Format string.
* @param pVa Pointer to the format arguments.
*/
static int vmR3SetRuntimeErrorCommon(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list *pVa)
{
/*
* Take actions before the call.
*/
int rc = VINF_SUCCESS;
if (fFlags & VMSETRTERR_FLAGS_FATAL)
/** @todo Add some special VM state for the FATAL variant that isn't resumable.
* It's too risky for 2.2.0, do after branching. */
else if (fFlags & VMSETRTERR_FLAGS_SUSPEND)
/*
* Do the callback round.
*/
{
}
return rc;
}
/**
* Ellipsis to va_list wrapper for calling vmR3SetRuntimeErrorCommon.
*/
static int vmR3SetRuntimeErrorCommonF(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
{
return rc;
}
/**
* This is a worker function for RC and Ring-0 calls to VMSetError and
* VMSetErrorV.
*
* The message is found in VMINT.
*
* @returns VBox status code, see VMSetRuntimeError.
* @param pVM The VM handle.
* @thread EMT.
*/
{
AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetRuntimeErrorV! Congrats!\n"));
/*
* Unpack the error (if we managed to format one).
*/
const char *pszErrorId = "SetRuntimeError";
const char *pszMessage = "No message!";
if (pErr)
{
AssertCompile(sizeof(const char) == sizeof(uint8_t));
if (pErr->offErrorId)
if (pErr->offMessage)
}
/*
* Join cause with vmR3SetRuntimeErrorV.
*/
}
/**
* Worker for VMSetRuntimeErrorV for doing the job on EMT in ring-3.
*
* @returns VBox status code with modifications, see VMSetRuntimeErrorV.
*
* @param pVM The VM handle.
* @param fFlags The error flags.
* @param pszErrorId Error ID string.
* @param pszFormat Format string.
* @param pVa Pointer to the format arguments.
*
* @thread EMT
*/
DECLCALLBACK(int) vmR3SetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list *pVa)
{
/*
* Make a copy of the message.
*/
/*
* Join paths with VMR3SetRuntimeErrorWorker.
*/
}
/**
* Gets the ID virtual of the virtual CPU assoicated with the calling thread.
*
* @returns The CPU ID. NIL_VMCPUID if the thread isn't an EMT.
*
* @param pVM The VM handle.
*/
{
return pUVCpu
: NIL_VMCPUID;
}
/**
* Returns the native handle of the current EMT VMCPU thread.
*
* @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
* @param pVM The VM handle.
* @thread EMT
*/
{
if (!pUVCpu)
return NIL_RTNATIVETHREAD;
}
/**
* Returns the native handle of the current EMT VMCPU thread.
*
* @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
* @param pVM The VM handle.
* @thread EMT
*/
{
if (!pUVCpu)
return NIL_RTNATIVETHREAD;
}
/**
* Returns the handle of the current EMT VMCPU thread.
*
* @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
* @param pVM The VM handle.
* @thread EMT
*/
{
if (!pUVCpu)
return NIL_RTTHREAD;
}
/**
* Returns the handle of the current EMT VMCPU thread.
*
* @returns Handle if this is an EMT thread; NIL_RTNATIVETHREAD otherwise
* @param pVM The VM handle.
* @thread EMT
*/
{
if (!pUVCpu)
return NIL_RTTHREAD;
}